forked from csuwildcat/DXCrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 492 should actually have 9 columns, instead of 12 in line 491.
7578 lines (7578 loc) · 398 KB
/
results.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
area, url, browserbite, browserDetection, cssprefixes, inputTypes, edge, jslibs, pluginfree
USA, https://www.google.com/?gws_rd=ssl, 1, 0, 0, 1, 1, 1, 1
USA, https://www.google.com/maps/preview?source=newuser-ws, 1, 0, 0, 1, 1, 1, 1
USA, http://www.bing.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.youtube.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.yahoo.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, https://www.facebook.com/, 0, 1, 0, 0, 0, 1, 1
USA, http://mail.google.com/, 0, 1, 1, 1, 0, 1, 1
USA, http://t.msn.com/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.naver.com/, 1, 0, 0, 0, 1, 1, 1
USA, https://www.yahoo.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://vk.com/, 1, 0, 0, 0, 0, 1, 1
USA, https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=12&ct=1412009858&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&lc=1033&id=64855&mkt=en-us&cbcxt=mai, 0, 1, 0, 1, 1, 1, 1
USA, http://seattle.craigslist.org/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.daum.net/, 0, 1, 0, 0, 0, 1, 1
USA, https://translate.google.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.ebay.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.amazon.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://fc2.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.ask.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://baidu.com/, 1, 1, 1, 1, 0, 1, 1
USA, https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=12&ct=1412009868&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&lc=1033&id=64855&mkt=en-us&cbcxt=mai, 0, 1, 0, 1, 1, 1, 1
USA, http://www.wikipedia.org/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.yandex.ru/, 1, 0, 0, 0, 1, 1, 1
USA, http://odnoklassniki.ru/, 1, 1, 0, 0, 1, 1, 1
USA, https://twitter.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.pixiv.net/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.leboncoin.fr/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.nicovideo.jp/, 1, 1, 0, 0, 0, 0, 1
USA, http://www.microsoft.com/en-us/default.aspx, 0, 0, 0, 0, 0, 1, 1
USA, http://xfinity.comcast.net/tt2/?cid=BBI, 0, 0, 0, 1, 0, 1, 1
USA, http://www.aol.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://ameblo.jp/, 1, 1, 0, 1, 1, 0, 1
USA, http://instagram.com/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.pinterest.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://news.msn.com/, 0, 1, 0, 1, 1, 1, 1
USA, https://www.netflix.com/?locale=en-US, 0, 0, 0, 1, 1, 0, 1
USA, http://www.nate.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.qq.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.uol.com.br/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.pof.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.bbc.co.uk/, 1, 0, 0, 0, 1, 1, 1
USA, http://go.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.163.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.taobao.com/market/global/index_new.php, 1, 1, 0, 1, 0, 0, 1
USA, http://www.toshiba.com/tai/, 1, 0, 0, 0, 1, 0, 1
USA, http://maps.yandex.ru/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.marktplaats.nl/, 1, 1, 0, 0, 1, 0, 1
USA, https://www.tumblr.com/, 1, 0, 0, 1, 0, 0, 1
USA, https://www.linkedin.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.trulia.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://my.screenname.aol.com/_cqr/login/login.psp?sitedomain=sns.webmail.aol.com&lang=en&seamless=novl&offerId=newmail-en-us-v2&authLev=0&siteState=ver%3A4%7Crt%3ASTANDARD%7Cat%3ASNS%7Cld%3Amail.aol.com%7Cuv%3AAOL%7Clc%3Aen-us%7Cmt%3AANGELIA%7Csnt%3AScreenName%7Csid%3A8cc857bb-4037-4593-8721-29f1bf3646d5&locale=us, 1, 0, 0, 0, 1, 0, 1
USA, http://www.booking.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.nifty.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.zillow.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://badoo.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.goo.ne.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://navinow.jp/, 1, 1, 0, 1, 1, 1, 1
USA, http://2ch.net/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.hao123.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.tagged.com/?, 1, 1, 0, 1, 1, 0, 1
USA, http://www.ancestry.com/, 1, 1, 0, 0, 1, 0, 1
USA, https://www.chase.com/, 1, 1, 1, 0, 0, 1, 1
USA, http://www.roblox.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://kakaku.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.kijiji.ca/, 1, 1, 0, 1, 1, 0, 1
USA, https://www.bankofamerica.com/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.aliexpress.com:80/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.sahibinden.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://biglobe.ne.jp/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.answers.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://www.adcash.com/en/index.php, 0, 1, 0, 0, 1, 1, 1
USA, http://www.adobe.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://zum.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.ifeng.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.jalan.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.walmart.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://lenovo.com/us/en/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.ninemsn.com.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://matome.naver.jp/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.nexon.com/Home/Game.aspx, 1, 1, 0, 0, 0, 0, 1
USA, http://www.sina.com.cn/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.deviantart.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://mail.yandex.ru/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.onclickads.net/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.ikea.com/, 1, 0, 0, 1, 0, 0, 1
USA, http://gmarket.co.kr/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.imdb.com/, 0, 0, 0, 1, 1, 1, 1
USA, https://www.wellsfargo.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.seznam.cz/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.dailymotion.com/us, 0, 0, 0, 1, 1, 0, 1
USA, http://cookpad.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.pogo.com/?sl=2, 0, 0, 1, 0, 1, 0, 1
USA, http://www.fmworld.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://cn.msn.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.livedoor.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://www.finn.no/, 1, 1, 0, 1, 1, 0, 1
USA, http://tabelog.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://syosetu.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://linkeyproject.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://11st.co.kr/, 0, 0, 1, 1, 0, 1, 1
USA, http://en.grepolis.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://news.google.com/, 0, 0, 0, 1, 0, 1, 1
USA, http://www.milliyet.com.tr/, 0, 0, 0, 1, 1, 1, 1
USA, https://www.paypal.com/home, 1, 0, 0, 1, 0, 0, 1
USA, http://www.avito.ru/, 1, 1, 0, 1, 1, 1, 1
USA, http://allegro.pl/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.apple.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://yahoo-mbga.jp/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.trademe.co.nz/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.blocket.se/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.cnn.com/, 1, 0, 0, 0, 1, 1, 1
USA, https://www.etsy.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://verizon.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://livesearchonline.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.jd.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://fotostrana.ru/start/main/noty1/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.funda.nl/, 1, 0, 0, 0, 1, 1, 1
USA, http://clkmon.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://home.bt.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.pch.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.macromill.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://ask.fm/, 1, 0, 0, 0, 1, 0, 1
USA, https://login.szn.cz/?returnURL=https%3a%2f%2femail.seznam.cz%2f&serviceId=email, 1, 0, 0, 0, 1, 1, 1
USA, http://www.orange.fr/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.cocacola.co.jp/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.globo.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://passport.weibo.com/visitor/visitor?a=enter&url=http%3A%2F%2Fweibo.com%2F&_rand=1412010019.1042, 0, 1, 1, 1, 1, 1, 1
USA, https://www.itau.com.br/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.twcc.com/select-provider#/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.pointtown.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.hurriyet.com.tr/anasayfa/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.foxnews.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.indeed.com/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.hangame.co.jp/, 1, 1, 0, 0, 0, 1, 1
USA, https://www.dropbox.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.salesforce.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://office.microsoft.com/en-us/sharepoint/, 1, 1, 0, 1, 0, 0, 1
USA, https://mixi.jp/, 0, 0, 0, 0, 0, 0, 1
USA, http://theprimead.co.kr/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.backpage.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.match.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.iminent.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://mapy.cz/, 1, 0, 1, 1, 1, 1, 1
USA, http://www.tmall.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.helpertrack.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://my.mail.ru/cgi-bin/login?page=http%3A%2F%2Fmy.mail.ru%2F, 0, 0, 0, 0, 1, 1, 1
USA, http://www.rightmove.co.uk/svr/1702, 1, 0, 0, 1, 1, 1, 1
USA, http://conduit.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://imgur.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://love.mail.ru/, 0, 0, 0, 0, 1, 1, 1
USA, http://pointclickcare.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.zulily.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://zozo.jp/, 0, 1, 0, 0, 1, 1, 1
USA, https://accounts.google.com/ServiceLogin?service=blogger&passive=1209600&continue=https://www.blogger.com/home&followup=https://www.blogger.com/home<mpl=start, 1, 0, 0, 1, 1, 1, 1
USA, http://www.realtor.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.avg.com/us-en/homepage, 0, 0, 0, 1, 1, 0, 1
USA, http://www.trovi.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://auction.co.kr/, 0, 0, 0, 1, 0, 1, 1
USA, https://chaturbate.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://live.nicovideo.jp/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.pandora.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://e.mail.ru/login, 1, 0, 0, 0, 1, 0, 1
USA, https://www.kbstar.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.hp.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.weather.com/, 1, 1, 0, 0, 1, 1, 1
USA, https://mail.ru/, 1, 0, 0, 0, 1, 1, 1
USA, http://centurylink.net/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.autohome.com.cn/, 1, 0, 0, 0, 1, 1, 1
USA, https://www.rakuten-sec.co.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.skype.com/en/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.target.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://kabu.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.hm.com/entrance.ahtml?orguri=/, 1, 0, 0, 1, 0, 1, 1
USA, http://www.twoo.com/, 1, 0, 0, 1, 1, 0, 1
USA, https://wordpress.com/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.mangahere.co/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.outbrain.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://siteencore.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.sohu.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.infoseek.co.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.verizonwireless.com/, 0, 0, 0, 1, 0, 0, 0
USA, http://www.ourtime.com:80/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.dmm.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://gnavi.co.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.timewarnercable.com/en/residential.html, 0, 0, 0, 1, 0, 0, 1
USA, https://www.fidelity.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.gmx.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://toshibaplaces.jp/tps/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.wikia.com/Wikia, 1, 0, 0, 0, 1, 1, 1
USA, http://www.t-online.de/, 0, 0, 0, 0, 1, 0, 1
USA, http://taleo.net/, 0, 1, 1, 1, 0, 1, 1
USA, http://beta.realtor.ca/index.aspx?cookiecheck=1, 0, 0, 0, 0, 1, 0, 1
USA, https://www.fanfiction.net/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.jal.co.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://office.microsoft.com/en-us/, 1, 1, 0, 1, 0, 0, 1
USA, http://suchen.mobile.de/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.reddit.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.google.com/doubleclick/, 1, 0, 0, 1, 1, 1, 1
USA, http://utorrent.softonic.de/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.foxsports.com/, 0, 0, 0, 1, 1, 0, 1
USA, https://email.t-online.de/em?page=Login, 1, 1, 1, 0, 0, 1, 1
USA, http://www.macys.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://search.seznam.cz/, 1, 0, 0, 0, 1, 1, 1
USA, http://certified-apps.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.4399.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.ana.co.jp/asw/index.jsp?type=e, 1, 0, 0, 0, 0, 1, 1
USA, http://www.homedepot.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.mcafee.com/us/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.att.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.nfl.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.directrev.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.hi5.com/?, 1, 1, 0, 1, 1, 0, 1
USA, http://www.subito.it/, 1, 1, 0, 1, 1, 1, 1
USA, http://uranai.nosv.org/, 1, 1, 0, 0, 1, 0, 1
USA, http://us.gameforge.com/home/index, 0, 0, 0, 0, 0, 0, 1
USA, https://www.flickr.com/, 0, 0, 0, 1, 0, 1, 1
USA, http://seiga.nicovideo.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.dailymail.co.uk/ushome/index.html, 1, 0, 0, 0, 1, 0, 1
USA, http://ponta.media-ad.jp/error/timeout, 0, 1, 0, 1, 1, 1, 1
USA, http://club.panasonic.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.gayromeo.com/, 1, 1, 1, 1, 1, 1, 1
USA, http://mlb.mlb.com/home, 1, 0, 0, 0, 1, 1, 1
USA, http://www.yr.no/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.inven.co.kr/webzine/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.telegraaf.nl/, 1, 0, 0, 0, 1, 0, 1
USA, http://ecnavi.jp/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.so.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.walla.co.il/, 0, 0, 0, 0, 0, 1, 1
USA, https://www.capitalone.com/, 0, 0, 0, 0, 1, 1, 1
USA, https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&UsingSSL=1&pUserId=&co_partnerId=2&siteid=0&ru=http%3A%2F%2Fmy.ebay.com%2Fws%2FeBayISAPI.dll%3FMyEbayBeta%26MyeBay%3D%26guest%3D1&pageType=3984, 1, 1, 0, 0, 1, 1, 1
USA, http://sakura.ne.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://friv.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://www.rbcroyalbank.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.gumtree.com/, 0, 1, 0, 1, 0, 1, 1
USA, http://www.mynet.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.sogou.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.startsiden.no/, 0, 0, 0, 0, 1, 1, 1
USA, http://jeu.info/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.huffingtonpost.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://news.livedoor.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.jcpenney.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.earthlink.net/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.onet.pl/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.bestbuy.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://hao.360.cn/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.phoenix.edu/, 1, 0, 0, 1, 1, 0, 1
USA, https://konto.onet.pl/login.html?client_id=poczta.onet.pl.front&ticket=1412010315, 0, 0, 0, 0, 1, 0, 1
USA, http://profil.wp.pl/ciasteczka_wylaczone.html?ticaid=11388b, 0, 0, 0, 1, 0, 1, 1
USA, http://www.dcinside.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.excite.co.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.about.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://www.otto.de/, 1, 1, 0, 1, 1, 0, 1
USA, https://login.live.com/login.srf?wa=wsignin1.0&ct=1412010346&rver=6.1.6206.0&sa=1&ntprob=-1&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2F%3Fowa%3D1%26owasuffix%3Dowa%252f&id=64855&snsc=1&cbcxt=mail, 0, 1, 0, 1, 1, 1, 1
USA, http://www.mercadolivre.com.br/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.youku.com/, 0, 0, 0, 0, 0, 1, 1
USA, https://mail.ziggo.nl/appsuite/, 1, 0, 0, 1, 1, 0, 1
USA, http://bellemaison.jp/, 0, 0, 0, 0, 1, 0, 1
USA, https://www.commbank.com.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.tistory.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://default-search.net/, 1, 1, 0, 1, 1, 1, 1
USA, http://go.mail.ru/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.gsshop.com/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.yandex.com.tr/, 1, 0, 0, 1, 1, 1, 1
USA, http://syosetu.org/, 1, 1, 0, 0, 1, 1, 1
USA, http://maho.jp/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.charter.net/, 1, 1, 0, 0, 1, 0, 1
USA, https://www.wattpad.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.ilbe.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.stardoll.com/en/, 1, 0, 0, 0, 1, 0, 1
USA, http://dietnavi.com/pc/, 1, 0, 0, 0, 1, 0, 1
USA, http://interpark.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.ancestry.co.uk/, 0, 1, 0, 0, 1, 0, 1
USA, http://ameblo.jp/, 1, 1, 0, 1, 1, 0, 1
USA, https://mijn.ing.nl/internetbankieren/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.allstate.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.battlefield.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://vube.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.hulu.com/, 0, 0, 1, 1, 1, 1, 1
USA, http://so-net.ne.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.willhaben.at/iad, 1, 0, 0, 0, 1, 1, 1
USA, http://www.yelp.com/seattle, 1, 1, 0, 0, 1, 1, 1
USA, http://olx.pl/, 1, 0, 0, 0, 1, 1, 1
USA, http://wedisk.co.kr/, 0, 1, 1, 1, 0, 1, 1
USA, https://us.venteprivee.com/main/, 1, 0, 0, 1, 1, 0, 1
USA, http://bk.mufg.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.mapquest.com/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.jw.org/en/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.sky.com/, 1, 0, 0, 1, 1, 1, 1
USA, https://www.okcupid.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://jra.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.inicis.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.bing.com/translator/, 1, 0, 0, 1, 1, 0, 1
USA, http://bb.com.br/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.dell.com/, 0, 1, 1, 1, 1, 0, 1
USA, http://www.hitta.se/, 1, 0, 0, 1, 1, 1, 1
USA, http://meb.gov.tr/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.virginmedia.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.bbc.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://smartfile.co.kr/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.nytimes.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://chosun.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.carsensor.net/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.mamba.ru/, 0, 1, 0, 0, 1, 1, 1
USA, http://nanos.jp/, 0, 1, 0, 1, 0, 1, 1
USA, http://www.ssg.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.goo-net.com/index.html, 0, 0, 0, 0, 1, 1, 1
USA, https://soundcloud.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.laposte.net/, 1, 0, 0, 0, 1, 0, 1
USA, http://afreeca.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.nikkansports.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://webssearches.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://java.com/en/, 1, 0, 0, 0, 0, 1, 1
USA, https://www.draugiem.lv/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.tripadvisor.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.tesco.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.mercadolibre.com.ar/, 1, 0, 0, 1, 1, 1, 1
USA, https://prerelease.achievematrix.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.wp.pl/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.geocaching.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://ppomppu.co.kr/, 0, 0, 0, 0, 0, 0, 1
USA, http://pdpop.com/, 0, 0, 0, 1, 0, 0, 1
USA, https://pigg.ameba.jp/, 1, 0, 0, 1, 1, 0, 1
USA, http://lotteimall.com/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.gap.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://pbskids.org/, 0, 0, 0, 1, 0, 1, 1
USA, http://www.mangareader.net/, 0, 1, 0, 1, 1, 1, 1
USA, http://blog.seesaa.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.ameba.jp/index.do?serviceId=100, 0, 1, 0, 0, 1, 0, 1
USA, http://hi-bogo.net/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.houzz.com/, 1, 1, 0, 0, 1, 1, 1
USA, https://www.americanexpress.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.slrclub.com/, 0, 0, 0, 0, 1, 1, 1
USA, https://www.wooribank.com/, 0, 1, 0, 0, 0, 0, 1
USA, http://www.lego.com/en-us/default.aspx, 1, 1, 0, 1, 1, 0, 1
USA, http://www.shutterfly.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.rediff.com/, 0, 0, 0, 0, 1, 1, 1
USA, https://en.mail.qq.com/cgi-bin/loginpage, 0, 1, 0, 0, 1, 1, 1
USA, http://www.autotrader.com/, 0, 1, 0, 1, 0, 0, 1
USA, http://www.warau.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://nk.pl/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.cox.com/myconnection/home.cox, 1, 1, 0, 0, 1, 1, 1
USA, http://www.gumtree.com.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://wemakeprice.com/, 0, 0, 0, 1, 0, 0, 1
USA, http://www.autotrader.co.uk/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.haberturk.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.yandex.ua/?ncrnd=4971&nocookiesupport=yes, 1, 0, 0, 0, 1, 1, 1
USA, http://www.chess.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://bancobrasil.com.br/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.sony.jp/, 1, 1, 0, 0, 1, 1, 1
USA, http://jmp9.com/, 0, 1, 1, 1, 1, 1, 1
USA, http://certified-toolbar.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.expedia.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://tankionline.com/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.zedo.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.kapaza.be/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.delta.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.accuweather.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://mail.sapo.pt/login/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.realestate.com.au/buy, 1, 0, 0, 1, 1, 1, 1
USA, https://www.alipay.com/?src=alipay.com, 1, 0, 0, 1, 0, 1, 1
USA, http://news.yandex.ru/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.sears.com/, 0, 0, 0, 1, 0, 0, 1
USA, http://www.terra.com.br/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.blackpeoplemeet.com:80/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.cbssports.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.argos.co.uk/, 1, 0, 1, 1, 1, 1, 1
USA, http://www.nissen.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://findagrave.com/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.hotels.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://baykoreans.net/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.lumosity.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.sfr.fr/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.iqiyi.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.bomnegocio.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.farmers.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://pokec.azet.sk/, 1, 1, 0, 0, 0, 1, 1
USA, http://gamer.com.tw/, 1, 0, 0, 1, 1, 1, 1
USA, http://post.japanpost.jp/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.blackboard.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.golfdigest.co.jp/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.ups.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://nos.nl/?npo_cc_skip_wall=1&npo_cc=na&npo_rnd=637881812, 1, 0, 0, 0, 1, 1, 1
USA, http://www.bing.com/maps/, 1, 0, 0, 0, 1, 1, 1
USA, http://web.de/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.twitch.tv/, 0, 1, 0, 0, 1, 0, 1
USA, http://adv.videomega.tv/, 1, 1, 1, 1, 0, 1, 1
USA, http://ca.gov/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.smugmug.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://say-move.org/, 1, 1, 0, 1, 1, 0, 1
USA, https://webmail1c.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.aftonbladet.se/, 1, 0, 0, 0, 1, 1, 1
USA, http://weathernews.jp/, 0, 0, 0, 1, 0, 0, 1
USA, http://www.olx.com.br/, 1, 1, 0, 1, 1, 0, 1
USA, https://webmail1m.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.nab.com.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.novinky.cz/, 0, 0, 0, 0, 1, 1, 1
USA, https://webmail1f.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.nu.nl/, 0, 0, 0, 1, 1, 1, 1
USA, https://www.scottrade.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://filenori.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.donga.com/, 1, 1, 0, 0, 0, 1, 1
USA, http://home.mywebsearch.com/index.jhtml, 1, 1, 0, 0, 1, 0, 1
USA, http://bleacherreport.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://prcm.jp/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.4shared.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://likes.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.bild.de/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.cdiscount.com/, 0, 0, 0, 1, 0, 0, 1
USA, http://php.g.tsite.jp/user/index.php?p=page__top_sp&guid=on&rnd=123, 1, 0, 0, 1, 1, 1, 1
USA, http://samsung.com/, 0, 1, 1, 1, 0, 1, 1
USA, http://mangafox.me/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.alibaba.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://photobucket.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.windstream.net/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.inbox.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.siteadvisor.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.dba.dk/, 0, 1, 1, 1, 1, 0, 1
USA, http://oryte.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.mercadolibre.com.mx/, 1, 0, 0, 1, 1, 1, 1
USA, http://buienradar.nl/, 1, 0, 0, 0, 1, 0, 1
USA, http://pex.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.ig.com.br/, 0, 1, 0, 0, 1, 1, 1
USA, http://us.battle.net/en/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.immobilienscout24.de/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.uniqlo.com/us/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.milanuncios.com/, 1, 1, 0, 0, 1, 1, 1
USA, https://www.tdameritrade.com/home.page, 1, 0, 0, 0, 1, 0, 1
USA, https://online.citibank.com/US/Welcome.c, 1, 0, 0, 1, 1, 0, 1
USA, http://www.shopathome.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.repubblica.it/, 0, 0, 0, 0, 1, 1, 1
USA, http://what-character-are-you.com/, 0, 0, 1, 1, 1, 1, 1
USA, http://bobaedream.co.kr/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.dm5.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.adp.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://www.icloud.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.akaqa.com/, 1, 1, 0, 0, 1, 0, 1
USA, https://www.abcmouse.com/, 1, 0, 0, 1, 1, 1, 1
USA, https://www.popads.net/, 1, 1, 0, 0, 1, 0, 1
USA, https://www.discover.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.pmang.com/, 0, 0, 0, 0, 0, 0, 0
USA, http://www.wow.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://moneta.co.kr/, 0, 0, 0, 0, 0, 0, 1
USA, http://us.ncsoft.com/en/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.legacy.com/ns/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.weather.gov/, 1, 1, 0, 0, 1, 0, 1
USA, http://keirin.jp/pc/dfw/dataplaza/guest/, 0, 0, 0, 0, 1, 0, 1
USA, http://salonboard.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.hangame.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.instiz.net/, 0, 0, 0, 1, 0, 0, 1
USA, http://v9.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://kmcert.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://myvaio.sony.jp/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.netmarble.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://jtb.co.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.chance.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.sabah.com.tr/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.walgreens.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://wikiwiki.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.usatoday.com/, 0, 0, 0, 0, 0, 0, 0
USA, https://webmail1e.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.yodobashi.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://imgsrc.ru/, 0, 1, 0, 1, 0, 1, 1
USA, http://www.tenki.jp/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.tple.co.kr/, 0, 1, 0, 0, 0, 1, 1
USA, http://www.southwest.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.smbcnikko.co.jp/index.html, 0, 0, 0, 0, 0, 0, 1
USA, http://www.kbb.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://daily.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.jappy.de/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.2ememain.be/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.hsbc.com.hk/1/2/home, 1, 0, 0, 0, 1, 1, 1
USA, http://news.qq.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://beauty.hotpepper.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.coupang.com/, 0, 1, 0, 0, 0, 1, 1
USA, http://www.y8.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://portal.cyberjapan.jp/, 0, 0, 1, 1, 1, 1, 1
USA, http://www.2dehands.be/, 1, 0, 0, 0, 1, 1, 1
USA, http://y001.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, https://webmail1j.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.hsbc.co.uk/1/2/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.boursorama.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://news.mail.ru/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.asos.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.swagbucks.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://mainichi.jp/, 1, 0, 0, 1, 1, 0, 1
USA, http://suumo.jp/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.telegraph.co.uk/, 0, 0, 0, 0, 1, 0, 1
USA, https://fetlife.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.tribalwars.com.pt/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.orange.co.uk/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.ynet.co.il/home/0,7340,L-8,00.html, 1, 0, 0, 0, 0, 0, 1
USA, http://www.people.com/people/, 0, 0, 0, 1, 0, 1, 1
USA, http://www.jiji.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.bom.gov.au/, 1, 0, 0, 0, 1, 1, 1
USA, http://www07.eyny.com/, 1, 1, 1, 0, 1, 1, 1
USA, http://lotte.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://bitecharge.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://work.go.kr/, 1, 0, 0, 1, 1, 1, 1
USA, http://bigfile.co.kr/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.goodgamestudios.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.twcc.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.rajce.idnes.cz/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.starfall.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.hln.be/, 0, 1, 0, 0, 1, 0, 1
USA, http://comicvip.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.groupon.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.yoox.com/us/women, 0, 0, 0, 1, 1, 1, 1
USA, http://www.zara.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.spiegel.de/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.wayfair.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://yw.b-boys.jp/member/menus/index/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.yesfile.com/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.ameba.jp/;jsessionid=B8FF674B2F2A0EACD46F84CC7E595578, 0, 1, 0, 0, 1, 0, 1
USA, http://www.ticketmonster.co.kr/home, 1, 0, 0, 1, 0, 0, 1
USA, http://file24.co.kr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.ed.gov/, 1, 0, 0, 1, 1, 1, 1
USA, https://www.national-lottery.co.uk/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.td.com/about-tdbfg/our-business/index.jsp, 1, 0, 0, 1, 1, 0, 1
USA, http://www.rakuten-bank.co.jp/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.olleh.com/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.nike.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://ekstrabladet.dk/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.6pm.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.fedex.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.iltalehti.fi/etusivu/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.mangago.com/, 0, 0, 0, 0, 0, 0, 1
USA, https://www.usbank.com/index.html, 1, 0, 0, 0, 1, 0, 1
USA, http://www.asda.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.anz.com/personal/, 1, 0, 0, 0, 1, 0, 1
USA, http://shopch.jp/JscTop.do, 1, 0, 0, 0, 1, 0, 1
USA, http://www.indiatimes.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://ebs.co.kr/, 1, 0, 1, 1, 0, 0, 1
USA, http://inclk.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.overstock.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.eastmoney.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://openadserving.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://gazetevatan.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.salesforce.com/platform/what/?d=70130000000lts8, 1, 0, 0, 0, 1, 1, 1
USA, http://www.laredoute.fr/, 1, 0, 0, 1, 0, 0, 1
USA, http://named.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.bluewin.ch/de/index.html, 0, 0, 0, 1, 1, 0, 1
USA, http://www.mobile01.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.westpac.com.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.priceline.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.softonic.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.ecollege.com/index.php, 1, 0, 0, 1, 1, 1, 1
USA, http://www.tradera.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.startpagina.nl/, 0, 0, 0, 0, 1, 1, 1
USA, http://weheartit.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.forever21.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://us.forgeofempires.com/?ref=dotcom, 0, 0, 0, 0, 1, 1, 1
USA, http://aws.amazon.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://himado.in/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.cafe24.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.seniorpeoplemeet.com:80/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.vg.no/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.bing.com/news, 1, 1, 0, 1, 1, 1, 1
USA, http://nih.gov/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.zol.com.cn/, 0, 0, 0, 0, 1, 0, 1
USA, http://sweetim.sweetpacks.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.tori.fi/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.cnet.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.ehow.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://allrecipes.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.quotev.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.careerbuilder.com/?cbRecursionCnt=1, 0, 0, 0, 0, 1, 0, 1
USA, http://www.cosme.net/, 0, 0, 0, 0, 1, 0, 1
USA, https://webmail1h.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, https://www.suntrust.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.mathxl.com/login.htm, 1, 1, 1, 1, 1, 1, 1
USA, http://www.super.cz/, 0, 0, 0, 0, 0, 1, 1
USA, http://youradexchange.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://toyota.jp/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.asus.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://fazenda.gov.br/, 1, 0, 0, 0, 1, 0, 1
USA, http://signin.ebay.com/, 1, 1, 1, 1, 0, 1, 1
USA, https://webmail1g.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://dinos.co.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://kbs.co.kr/, 0, 1, 1, 1, 0, 1, 1
USA, https://webmail1p.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.gsn.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.cjmall.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.boatrace.jp/index.html, 1, 0, 0, 0, 0, 0, 1
USA, http://shop.nordstrom.com/, 0, 1, 1, 1, 1, 1, 1
USA, http://drudgereport.com/, 1, 1, 0, 0, 0, 1, 1
USA, http://momoshop.com.tw/index.html, 0, 1, 1, 1, 0, 1, 1
USA, http://desjardins.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://mundopositivo.com.br/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.deloitte.com/view/en_US/us/index.htm, 1, 0, 0, 0, 0, 0, 1
USA, http://hyundaihmall.com/, 1, 0, 1, 1, 1, 1, 1
USA, http://www.newsnow.co.uk/h/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.rantlifestyle.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.showroomprive.com/?, 1, 0, 0, 0, 1, 0, 1
USA, http://www.baixaki.com.br/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.betradar.com/dp/, 1, 0, 0, 0, 1, 1, 1
USA, https://webmail1d.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.nicotto.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.bet365.com/en/, 1, 1, 0, 1, 0, 1, 1
USA, http://www.expressen.se/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.myvidster.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.xbox.com:80/en-US/, 1, 0, 0, 1, 1, 0, 1
USA, http://watchseries.lt/Watch, 0, 1, 0, 0, 1, 1, 1
USA, http://www.lightinthebox.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.royalgames.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.livescore.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.vrbo.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://adf.ly/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.monster.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.nbcnews.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.izlesene.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.equideow.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://omiga-plus.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.haber7.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.bt.dk/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.marksandspencer.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.garmin.com/en-US, 1, 0, 0, 1, 0, 0, 1
USA, https://mail.rambler.ru/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.instructure.com/, 1, 1, 0, 1, 1, 0, 1
USA, http://www.tokyodisneyresort.jp/top.html, 1, 0, 0, 1, 1, 0, 1
USA, http://www.dlsite.com/, 0, 0, 1, 1, 1, 0, 1
USA, http://www.ksl.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.cyworld.com/cymain/?f=cymain, 0, 0, 0, 0, 0, 0, 1
USA, http://www.klanlar.org/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.2345.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.7k7k.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.hotpepper.jp/, 0, 0, 0, 1, 1, 0, 1
USA, http://ck101.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://minwon.go.kr/, 0, 0, 1, 1, 0, 1, 1
USA, http://www.nicozon.net/, 0, 0, 0, 0, 1, 1, 1
USA, https://www.click-sec.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://sales.talktalk.co.uk/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.nickjr.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.point-ex.jp/, 0, 0, 0, 1, 1, 1, 1
USA, https://mail.ru/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.webmd.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.symbalooplaces.com/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.gov.uk/, 1, 0, 0, 1, 1, 0, 1
USA, https://www.usaa.com/inet/ent_logon/Logon?akredirect=true, 0, 1, 0, 1, 1, 1, 1
USA, http://pchome.com.tw/, 0, 1, 0, 0, 0, 1, 1
USA, http://officeally.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.delfi.lt/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.gunbroker.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.foodnetwork.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://121ware.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.pagesjaunes.fr/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.blick.ch/, 0, 0, 0, 0, 1, 0, 1
USA, http://clien.net/, 0, 0, 0, 0, 0, 0, 1
USA, http://hiroba.dqx.jp/sc/, 0, 1, 0, 1, 1, 0, 1
USA, http://dic.nicovideo.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.nieuwsblad.be/, 0, 0, 0, 1, 1, 0, 1
USA, http://tdisk.co.kr/, 0, 1, 1, 1, 0, 1, 1
USA, https://system.reins.jp/, 0, 1, 0, 1, 0, 1, 1
USA, http://4dsply.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://vimeo.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.racingpost.com/, 1, 1, 0, 1, 1, 0, 1
USA, https://www.usps.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://www.clicksvenue.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://tophotels.ru/, 0, 0, 0, 0, 1, 0, 1
USA, http://ugamsolutions.com/, 1, 1, 1, 0, 1, 1, 1
USA, http://skyrock.com/, 1, 0, 0, 0, 1, 0, 0
USA, http://www.cars.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.zappos.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.tripadvisor.com/, 0, 1, 0, 0, 1, 0, 1
USA, https://www.cibc.com/ca/personal.html, 0, 0, 0, 0, 1, 0, 1
USA, https://www.zoosk.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.alba.co.kr/main.asp, 0, 0, 0, 0, 0, 0, 1
USA, http://sprint.com/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.telekom.com/home, 0, 0, 0, 0, 0, 0, 1
USA, http://banamex.com.mx/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.aa.com/homePage.do, 0, 0, 0, 1, 1, 0, 0
USA, http://www.iltasanomat.fi/, 0, 0, 0, 0, 1, 0, 1
USA, https://accounts.google.com/ServiceLogin?service=blogger&passive=1209600&continue=https://www.blogger.com/home&followup=https://www.blogger.com/home<mpl=start, 1, 0, 0, 1, 1, 1, 1
USA, http://www.stuff.co.nz/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.wix.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.trovigo.com/?gd=GID12082014, 1, 1, 0, 1, 1, 1, 1
USA, http://actu.orange.fr/, 0, 0, 0, 1, 1, 1, 1
USA, http://search.jword.jp/, 1, 1, 0, 0, 0, 1, 1
USA, http://www.kddi.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.comcast.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.bobx.com/, 1, 0, 0, 1, 0, 1, 0
USA, http://www.rambler.ru/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.shinhan.com/, 0, 0, 1, 1, 0, 1, 1
USA, https://accounts.google.com/ServiceLogin?continue=https%3A%2F%2Fsites.google.com%2F&followup=https%3A%2F%2Fsites.google.com%2F&service=jotspot&passive=true&ul=1, 1, 0, 0, 1, 1, 1, 1
USA, http://www.dr.dk/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.thomson.co.uk/, 0, 0, 0, 1, 0, 0, 1
USA, http://www.buzzfeed.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://126.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.barnesandnoble.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.hsn.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.1688.com/, 0, 1, 0, 1, 1, 1, 1
USA, https://www.navyfederal.org/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.virginmedia.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.theguardian.com/us, 1, 1, 0, 0, 1, 0, 1
USA, http://www.yellowpages.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://mysearchresults.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.plala.or.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.lespac.com/index.jsa, 1, 1, 0, 0, 1, 0, 1
USA, http://www.lequipe.fr/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.seek.com.au/, 0, 0, 0, 1, 1, 0, 1
USA, http://sweet-page.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.nexusmods.com/games/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.ad.nl/, 0, 1, 0, 0, 1, 0, 1
USA, http://www.segundamano.es/, 1, 1, 1, 0, 0, 1, 1
USA, http://www.zenfolio.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.vistaprint.com/?dr=1, 1, 0, 1, 1, 0, 1, 1
USA, http://www.mapion.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.nikkeibp.co.jp/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.suggest.com/, 0, 1, 0, 0, 1, 0, 1
USA, https://webmail1m.orange.fr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.poptropica.com/, 0, 1, 0, 1, 0, 1, 1
USA, http://www.bol.com/nl/index.html, 1, 0, 0, 0, 1, 1, 1
USA, http://sozcu.com.tr/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.livejournal.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://potora.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.free-tv-video-online.me/, 0, 0, 0, 1, 0, 1, 1
USA, http://www.appbank.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.imvu.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.snapfish.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://abola.pt/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.worldwinner.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.oricon.co.jp/, 0, 1, 0, 1, 1, 0, 1
USA, http://lenovo.com.cn/, 0, 0, 0, 0, 1, 0, 1
USA, http://ikyu.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.zalando.de/, 1, 1, 0, 1, 1, 1, 1
USA, http://mrga.service-navi.jp/, 1, 1, 0, 1, 1, 1, 1
USA, http://coolmath-games.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.plus28.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.letv.com/, 1, 1, 0, 0, 1, 1, 1
USA, https://www.op.fi/, 0, 1, 1, 1, 0, 1, 1
USA, http://asiae.co.kr/, 0, 0, 1, 1, 0, 1, 1
USA, http://www.neopets.com/, 1, 1, 0, 0, 0, 0, 1
USA, http://www.zoopla.co.uk/, 1, 0, 0, 0, 1, 1, 1
USA, http://rurubu.travel/, 0, 0, 0, 0, 1, 1, 1
USA, http://netkeiba.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.brainfall.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.eonline.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://www.victoriassecret.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.pixnet.net/, 0, 1, 0, 0, 1, 0, 1
USA, http://qvc.jp/cont/top/Main, 1, 0, 0, 1, 1, 0, 1
USA, http://allabout.co.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://wetter.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.wunderground.com/, 0, 1, 0, 1, 1, 0, 1
USA, https://www.telenet.be/sso/ext/checksession.jsp?appid=webmail&state=fromCheckSession, 1, 1, 1, 1, 0, 1, 1
USA, http://kizi.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.coupons.com/, 1, 1, 0, 1, 0, 0, 1
USA, http://www.impress.co.jp/, 1, 1, 0, 1, 1, 0, 1
USA, https://www.secure.bnpparibas.net/banque/portail/particulier/HomePage?type=site, 1, 0, 0, 0, 1, 0, 1
USA, http://www.myfitnesspal.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://livedoor.blogimg.jp/, 1, 1, 1, 1, 0, 1, 1
USA, http://astromenda.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.autoscout24.de/, 0, 1, 0, 0, 1, 0, 1
USA, http://vancouver.craigslist.ca/, 0, 1, 0, 0, 1, 1, 1
USA, http://kakao.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.toysrus.com/shop/index.jsp?categoryId=2255956, 0, 0, 0, 0, 1, 0, 1
USA, http://www.saramin.co.kr/zf_user/, 0, 0, 0, 0, 0, 0, 1
USA, https://www.kintone.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.discas.net/netdvd/entrance/entrance01.html, 1, 0, 0, 1, 0, 0, 1
USA, http://www.ilmeteo.it/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.geneanet.org/, 1, 1, 0, 0, 1, 0, 1
USA, http://haberler.com/, 0, 0, 0, 0, 0, 1, 1
USA, https://archive.org/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.auctionzip.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.athome.co.jp/, 0, 0, 0, 1, 0, 0, 1
USA, http://www.bbt.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.sportsdirect.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.nosub.tv/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.mimibazar.cz/, 0, 1, 0, 0, 1, 1, 1
USA, http://alldatapro.com/includes/main.jsp, 1, 1, 0, 1, 1, 1, 1
USA, http://www.ticketmaster.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.cartoonnetwork.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://clkads.com/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.i-part.com.tw/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.agoda.com/, 1, 1, 0, 0, 0, 0, 1
USA, http://www.staples.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.chefkoch.de/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.mercadolibre.com.ve/, 1, 0, 0, 1, 1, 1, 1
USA, http://y025.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, http://www.howrse.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.movie4k.to/, 0, 1, 0, 0, 0, 0, 1
USA, http://shopgoodwill.com/, 0, 0, 0, 1, 0, 1, 1
USA, http://www.geny.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.clubpenguin.com/welcome, 1, 1, 0, 1, 0, 0, 1
USA, http://www.abc.net.au/, 0, 0, 0, 0, 1, 0, 1
USA, http://cars.auto.ru/, 0, 1, 0, 0, 1, 0, 1
USA, http://att.yahoo.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://gouv.qc.ca/portail/quebec/pgs/commun/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.meetme.com/, 1, 1, 0, 0, 1, 0, 1
USA, http://www.carsales.com.au/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.todayhumor.co.kr/, 0, 1, 0, 0, 0, 1, 1
USA, http://blog.dtiblog.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://club-t.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.suruga-ya.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://otomoto.pl/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.ricardo.ch/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.panoramio.com/, 0, 1, 0, 0, 0, 0, 1
USA, http://www.albamon.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://wiadomosci.onet.pl/, 0, 1, 0, 1, 1, 1, 1
USA, http://inchallah.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://minecraft.net/, 0, 1, 0, 1, 1, 0, 1
USA, http://osaifu.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://taboola.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://lohaco.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://news.mixi.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.homeplus.co.kr/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.kmart.com/, 0, 0, 0, 1, 0, 0, 1
USA, https://www.abnamro.nl/nl/prive/index.html, 0, 0, 0, 1, 1, 0, 1
USA, http://www.jobkorea.co.kr/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.walkerplus.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://udn.com/NEWS/mainpage.shtml, 0, 0, 0, 1, 1, 0, 1
USA, http://www.reuters.com/, 1, 1, 0, 0, 0, 0, 1
USA, http://y033.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, http://www.bmo.com/home, 1, 0, 0, 0, 0, 0, 1
USA, https://www.rivals.com/?, 0, 0, 0, 0, 0, 1, 1
USA, http://china.com/, 0, 0, 0, 0, 0, 1, 1
USA, https://us.etrade.com/home, 0, 1, 0, 0, 1, 1, 1
USA, http://www.united.com/web/en-US/default.aspx?root=1, 1, 0, 0, 0, 1, 0, 1
USA, http://www.goobike.com/index.html, 0, 0, 0, 0, 1, 1, 1
USA, http://www.sportinglife.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.sbs.co.kr/, 1, 1, 1, 1, 0, 1, 1
USA, http://www.cabelas.com/, 1, 0, 0, 0, 0, 1, 1
USA, https://www.surveymonkey.com/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.bnpparibasfortis.be/, 1, 1, 1, 1, 0, 1, 1
USA, http://y009.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, http://www.nokia.com/us-en/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.homes.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://ok.ru/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.r7.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://filev.co.kr/, 1, 1, 1, 1, 0, 1, 1
USA, http://58.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.alc.co.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://hankyu-travel.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.bigpoint.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.sanook.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.tmz.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.wehkamp.nl/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.datehookup.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.twoo.com/?utm_campaign=netlogmerger&login=0, 1, 0, 0, 1, 1, 0, 1
USA, http://www.nextmedia.com/select.html, 1, 1, 0, 1, 1, 1, 1
USA, https://flets.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.microsoftstore.com/store/msusa/en_US/home, 1, 0, 0, 1, 1, 0, 1
USA, http://www.gaiaonline.com/, 1, 0, 0, 0, 1, 1, 1
USA, https://www.ipko.pl/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.impots.gouv.fr/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.skysports.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.dagbladet.no/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.jimdo.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.confirmit.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.cathaypacific.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.dateinasia.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.yes24.com/Main/default.aspx, 0, 0, 0, 0, 0, 0, 1
USA, http://itemmania.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://smcb.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.usmagazine.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.intuit.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://disney.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://fr.mappy.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.worldstarhiphop.com/videos/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.suntory.co.jp/softdrink/boss/index.html, 1, 0, 0, 0, 1, 1, 1
USA, http://www.bradesco.com.br/, 1, 0, 1, 1, 1, 1, 1
USA, http://www.arcor.de/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.lablue.de/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.zakzak.co.jp/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.meteofrance.com/accueil, 0, 1, 0, 1, 1, 1, 1
USA, http://www.aastocks.com/tc/index.aspx, 1, 1, 1, 1, 0, 1, 1
USA, http://www.pizzahut.com/, 1, 0, 1, 1, 1, 0, 1
USA, http://y048.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, http://www.forbes.com/home_usa/, 1, 0, 0, 0, 1, 1, 0
USA, http://toto-dream.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.cnbc.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.guloggratis.dk/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.immoweb.be/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.funtrivia.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.dreammail.jp/, 0, 0, 0, 1, 1, 0, 1
USA, https://www.ukr.net/, 1, 0, 0, 0, 1, 1, 1
USA, http://megafile.co.kr/, 1, 1, 0, 1, 0, 1, 1
USA, http://www.livedoor.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://www.idealista.com/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.cymogene.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.scout.com/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.ravelry.com/account/login, 1, 1, 1, 0, 1, 1, 1
USA, http://ponta.jp/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.nick.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://richzhh.bluewin.ch/, 1, 1, 1, 1, 0, 1, 1
USA, http://h007.sengokuixa.jp/false/login_sessionout.php, 1, 1, 0, 1, 1, 0, 1
USA, http://www.fitbit.com/, 1, 0, 0, 1, 0, 0, 1
USA, http://www.advfn.com/, 1, 0, 0, 0, 1, 0, 1
USA, https://www.google.com/?gws_rd=ssl, 1, 0, 0, 1, 1, 1, 1
USA, http://www.duowan.com/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.svt.se/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.lectio.dk/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.modelmayhem.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.rbc.ru/, 0, 0, 0, 0, 1, 1, 1
USA, http://ocnk.net/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.hatena.ne.jp/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.shalove.net/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.wikimedia.org/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.oddspark.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.ranker.com/, 0, 1, 0, 0, 1, 0, 1
USA, http://richzhb.bluewin.ch/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.vip.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://orf.at/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.bilibili.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.aol.co.uk/, 0, 0, 0, 0, 0, 0, 1
USA, http://www3.hilton.com/en/index.html, 1, 0, 0, 0, 1, 0, 1
USA, http://www.melon.com/index.htm, 1, 0, 0, 1, 0, 0, 1
USA, http://www.liveleak.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://ebsi.co.kr/, 0, 0, 1, 1, 0, 1, 1
USA, http://www.wwe.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.whitepages.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://online.wsj.com/home-page, 0, 1, 0, 0, 1, 0, 1
USA, http://windows.microsoft.com/en-us/windows/home, 0, 0, 0, 1, 1, 1, 1
USA, http://privalia.com/, 1, 1, 0, 1, 1, 1, 1
USA, https://www.optimum.net/, 0, 0, 0, 0, 1, 1, 1
USA, http://missyusa.com/mainpage/content/index.asp, 0, 0, 1, 0, 0, 1, 1
USA, http://dyn.com/dns/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.goal.com/, 1, 1, 1, 1, 1, 1, 1
USA, https://www.m3.com/, 0, 1, 0, 0, 1, 0, 1
USA, https://www.yammer.com/, 1, 1, 0, 1, 1, 0, 1
USA, https://www.iy-net.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.noaa.gov/, 1, 0, 0, 0, 1, 0, 1
USA, http://cmsite.co.jp/, 0, 1, 1, 1, 0, 1, 1
USA, http://4travel.jp/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.marca.com/, 0, 0, 0, 0, 0, 1, 1
USA, http://www.elmundo.es/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.tomtom.com/en_us/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.interia.pl/, 0, 0, 0, 1, 1, 1, 1
USA, http://www.christianmingle.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://i-gamer.net/, 0, 1, 0, 0, 0, 1, 1
USA, http://milano.bakecaincontrii.com/, 0, 0, 0, 0, 1, 1, 1
USA, https://office.com/start/default.aspx, 1, 1, 0, 1, 0, 1, 1
USA, http://www.newyorkdress.com/, 0, 0, 0, 0, 1, 0, 0
USA, http://putlocker.is/, 0, 1, 0, 0, 1, 1, 1
USA, https://www.ato.gov.au/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.debenhams.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.qualtrics.com/, 0, 1, 0, 1, 1, 1, 1
USA, https://wwwd.caf.fr/wps/portal/caffr/login/!ut/p/a1/04_Sj9CPykssy0xPLMnMz0vMAfGjzOID_A3dPbyDDdz9A1yNDTxdzQNDXJ19DS0CjYAKIoEKDHAARwNC-sP1o8BK8JhQkBthkO6oqAgArtbX2Q!!/dl5/d5/L2dBISEvZ0FBIS9nQSEh/, 1, 0, 0, 0, 1, 0, 1
USA, http://adsterra.com/, 0, 1, 0, 0, 1, 1, 1
USA, http://www.bedbathandbeyond.com/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.one.com/en/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.eharmony.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.monotaro.com/, 0, 0, 0, 0, 0, 0, 1
USA, http://www.juno.com/, 1, 0, 0, 0, 0, 1, 1
USA, http://www.teacup.com/, 0, 1, 0, 1, 1, 0, 1
USA, http://www.teacherspayteachers.com/, 0, 0, 0, 1, 1, 0, 1
USA, http://www.premierleague.com/en-gb.html, 0, 0, 0, 0, 1, 0, 1
USA, http://com.nicovideo.jp/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.yandex.kz/?ncrnd=3306&nocookiesupport=yes, 1, 0, 0, 0, 1, 1, 1
USA, https://www.tvg.com/, 1, 0, 0, 1, 0, 0, 1
USA, http://danawa.com/, 0, 0, 0, 0, 0, 0, 1
USA, https://tatts.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.marketwatch.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://www.libero.it/?, 1, 0, 0, 0, 1, 1, 1
USA, http://www.theweathernetwork.com/us, 0, 0, 0, 0, 0, 1, 1
USA, http://www.zimbio.com/, 1, 1, 0, 0, 1, 1, 1
USA, https://research-panel.jp/, 1, 0, 0, 0, 1, 0, 1
USA, https://www.exoclick.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://www.cromimi.com/, 1, 0, 0, 0, 0, 0, 1
USA, http://cosp.jp/, 1, 1, 0, 0, 0, 0, 1
USA, http://www.abril.com.br/, 0, 1, 0, 1, 1, 0, 1
USA, http://pc.doraken.jp/, 0, 1, 0, 1, 0, 1, 1
USA, http://lpga.or.jp/, 0, 0, 0, 0, 1, 0, 0
USA, http://www.t-mobile.com/, 0, 0, 0, 0, 1, 0, 1
USA, http://www.groupon.jp/subscriptions-delp-ognc/?qaf=OGNC_101_1001, 0, 1, 0, 0, 1, 0, 1
USA, https://www.usajobs.gov/, 1, 0, 0, 0, 1, 1, 1
USA, http://www.gazo-ch.net/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.fussball.de/homepage, 1, 0, 0, 0, 1, 1, 1
USA, http://www.appledaily.com.tw/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.virgilio.it/, 0, 0, 0, 0, 1, 1, 1
USA, http://www.tf1.fr/, 0, 0, 0, 0, 1, 1, 1
USA, http://jorudan.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://people.com.cn/, 0, 0, 0, 0, 0, 0, 1
USA, http://profile.ameba.jp/general/ametsuna/list.do, 1, 1, 0, 1, 1, 0, 1
USA, http://id.orange.fr/auth_user2/bin/auth_user.cgi?date=1412011551&skey=86f74b2209a4444e2a7990c7a9efc3f4, 0, 1, 0, 0, 1, 0, 1
USA, http://www.papy.co.jp/, 0, 0, 0, 0, 1, 1, 1
USA, http://onvasortir.com/, 1, 1, 0, 1, 0, 1, 1
USA, http://english.ctrip.com/, 1, 0, 0, 1, 0, 1, 1
USA, http://www.ss.lv/, 1, 1, 0, 1, 1, 1, 1
USA, http://www.lge.co.kr/, 1, 0, 1, 1, 0, 1, 1
USA, http://metromsn.gazeta.pl/metromsn/0,0.html, 0, 0, 0, 0, 1, 0, 1
USA, https://candidat.pole-emploi.fr/candidat/espacepersonnel/authentification;JSESSIONID_CANDIDAT=8cKPJpWQvK1G0rDx4VNVG0hQysMTKGLRhrXvTXNB1mc0G1pTPQLq!668400777, 1, 0, 0, 0, 1, 0, 1
USA, http://www.sainsburys.co.uk/sol/index.jsp, 1, 0, 0, 0, 1, 1, 1
USA, http://gogorithm.com/blank.html, 0, 1, 1, 1, 1, 1, 1
USA, https://www.creditmutuel.fr/groupe/fr/index.html, 1, 0, 0, 0, 0, 0, 1
USA, http://kyfw.12306.cn/, 0, 1, 1, 1, 1, 1, 1
USA, http://www.bloomberg.com/, 0, 0, 0, 1, 0, 0, 1
USA, http://hometax.go.kr/, 0, 1, 1, 1, 0, 1, 1
USA, http://www.ancestry.com.au/, 1, 1, 0, 0, 1, 0, 1
USA, http://i.fhserve.com/, 1, 0, 0, 1, 1, 1, 1
USA, http://www.shaw.ca/store/, 1, 0, 0, 0, 0, 0, 1
USA, http://cox.com/, 1, 1, 0, 0, 1, 1, 1
USA, http://corporate.walmart.com/, 1, 0, 0, 1, 1, 0, 1
USA, http://www.a10.com/, 0, 1, 0, 1, 1, 1, 1
USA, http://www.voyages-sncf.com/, 0, 0, 0, 0, 1, 0, 1
USA, https://www.schwab.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://banorte.com/, 1, 1, 1, 1, 1, 1, 1
USA, http://ero-advertising.com/, 1, 0, 0, 0, 1, 0, 1
USA, http://www.dickssportinggoods.com/home/index.jsp, 1, 0, 0, 0, 1, 0, 1
USA, http://gcu.edu/, 1, 0, 0, 1, 1, 0, 1
USA, http://icbc.com.cn/, 0, 0, 1, 1, 0, 1, 1