-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkstoscrape.txt
1563 lines (1563 loc) · 184 KB
/
linkstoscrape.txt
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
'link': 'http://www.dwheeler.com/accuse/source.txt',
'link': 'http://countytimes.com/articles/2012/09/13/news/doc505232f4bb556476829573.txt?viewmode=default',
'link': 'http://www.zipworld.com.au/~hong/kibo4.txt',
'link': 'http://people.cs.pitt.edu/~wiebe/courses/CS1671/Lectures/chapter20part2studyguideSol.txt',
'link': 'http://www.pressandguide.com/articles/2012/08/27/sports/doc50337bc93dda9049668601.txt',
'link': 'http://news2.onlinenigeria.com/world/78494-Julian-Assange-anti-Semitic-row-accusing-journalists-Jewish-conspiracy-against-WikiLeaks.txt',
'link': 'http://bartmassey.github.io/samurai-detective/source.txt',
'link': 'http://www.kryogenix.org/afe/fanficdb/vermin.txt',
'link': 'http://zimbabwenewsonline.com/index.php/feed/politics/3077-mdc-t-youth-leader-arrested-for-accusing-president-of-failing-to-eradicate-poverty-and-corruption.txt',
'link': 'http://zimbabwenewsonline.com/index.php/feed/top_news/3112-former-education-minister-aeneas-chigwedere-taken-to-court-over-ownership-of-goblins.txt',
'link': 'http://portlandleader.net/articles/2016/07/01/news/doc5775350a3afd2119446055.txt',
'link': 'http://www.times.co.sz/feed/letters/98020-siftpa-needs-less-talk-and-more-action.txt',
'link': 'http://www.avapress.com/vdcfm0dy.w6deya7riw.txt',
'link': 'http://users.physics.harvard.edu/~wilson/HUMANRIGHTS/PALESTINE/JailedPalestinianteachersaysstrikecontinues.txt',
'link': 'http://www.afroamerica.net/pages/afrogreatlakes/kagame_usavisit2000.txt',
'link': 'http://www.electrasoft.com/readmee.txt',
'link': 'http://www.mainlinemedianews.com/articles/2011/12/21/sports/doc4ef0e1aa1c8a4475065562.txt',
'link': 'http://www.radiotelevisioncaraibes.com/feed/nouvelles/haiti/u_s_wants_to_avoid_one-man_rule_in_haiti.txt',
'link': 'http://www.montgomerynews.com/articles/2015/11/26/ambler_gazette/news/doc5655d7203c6bd409101189.txt',
'link': 'http://k--k.club/posts/46672.txt',
'link': 'http://www.site.uottawa.ca/~turcotte/teaching/csi-3540/lectures/lab-04/dd45/web/data/words.csv',
'link': 'http://code.metager.de/source/xref/Sahana/eden/modules/templates/MCOP/incidents.csv',
'link': 'http://flash.lakeheadu.ca/~maislam/Data/health/29-06-2012_01-53-54_new-york--usa_health.csv',
'link': 'http://tylermoore.ens.utulsa.edu/courses/econsec/data/databreaches-prc-2013-10-21.csv',
'link': 'http://nbviewer.jupyter.org/gist/amueller/3974344/train.csv',
'link': 'http://www.angelfire.com/oh5/handicap_parking/results.csv',
'link': 'http://qacprojects.wesleyan.edu/static/data/twitter_project/tmp_data_test/news_text_all.csv',
'link': 'http://qacprojects.wesleyan.edu/static/data/twitter_project/tmp_data_test/word-freq-news-all.csv',
'link': 'http://dev.robbywalker.name/words/words.csv',
'link': 'http://emerging-yt.wikispaces.com/file/view/3_5_day_sorted.csv',
'link': 'http://emerging-yt.wikispaces.com/file/view/3_5_week_sorted.csv',
'link': 'http://emerging-yt.wikispaces.com/file/view/3_5_month_sorted.csv',
'link': 'http://702.donotcall.website/7024752362.csv',
'link': 'http://614.donotcall.website/6142125827.csv',
'link': 'http://csc.sagepub.com/content/11/4/410.full.pdf',
'link': 'http://www.tandfonline.com/doi/pdf/10.1080/13534640802159179',
'link': 'http://onlinelibrary.wiley.com/doi/10.1002/9781444307894.index/pdf',
'link': 'http://www.springerlink.com/index/v2l04337235t076p.pdf',
'link': 'http://www.degruyter.com/dg/viewarticle.fullcontentlink:pdfeventlink/$002fj$002fzrgka.1991.77.issue-1$002fzrgka.1991.77.1.1$002fzrgka.1991.77.1.1.pdf?t:ac=j$002fzrgka.1991.77.issue-1$002fzrgka.1991.77.1.1$002fzrgka.1991.77.1.1.xml',
'link': 'http://www.newsbusters.org/blogs/culture/sarah-stites/2016/07/28/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Atrue,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%7B%22is_hds%22%3Afalse,%22video_id%22%3A%22993321584099401%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/scontent-ord1-1.xx.fbcdn.net%5C/v%5C/t42.9040-29%5C/10000000_580594812128450_1389342221_n.mp4?page=352',
'link': 'http://www.motherjones.com/M/MOJO/FILES/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Atrue,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%7B%22is_hds%22%3Afalse,%22video_id%22%3A%221284726384886670%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/video-atl3-1.xx.fbcdn.net%5C/v%5C/t42.1790-2%5C/12370532_783571911770935_1891467341_n.mp4?page=46',
'link': 'http://www.philstar.com/headlines/2016/02/16/1553698/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Atrue,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%5B%7B%22is_hds%22%3Afalse,%22video_id%22%3A%221527050634265624%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/video-iad3-1.xx.fbcdn.net%5C/hvideo-xlf1%5C/v%5C/t42.1790-2%5C/12760408_1024811514244506_1059485759_n.mp4?page=1',
'link': 'http://www.sunstar.com.ph/manila/local-news/2016/02/25/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Atrue,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%5B%7B%22is_hds%22%3Afalse,%22video_id%22%3A%2210153900868008396%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/video-iad3-1.xx.fbcdn.net%5C/v%5C/t42.1790-2%5C/12775682_211110595910504_1466293635_n.mp4?page=2',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=q50OGmW9mEw&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=lTwgAVHz5l4&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=ElfS5rgDKHU&format=5',
'link': 'http://www.bj21.com/internet/searchterms.idx',
'link': 'http://www.blather.net/search/Index.idx',
'link': 'http://www.sscnet.ucla.edu/southasia/ice/index.idx',
'link': 'http://baytephraim.com/mobile_site/search_index/EU_preparing_for_Call_for_Division_of_Jerusalem.idx',
'link': 'http://baytephraim.com/mobile_site/search_index/EU_preparing_for_Call_for_Division_of_Jerusalem.html.idx',
'link': 'http://www.emmanuellife.org/fts.idx',
'link': 'http://wordquests.info/htm/index.idx',
'link': 'http://svn.lliurex.net/leia/mods-backports/trunk/mythes/th_en_US_new.idx',
'link': 'http://iesalmenar.xtec.cat/departaments/deptecnologia/public_html/1%20PROGRAMES%20PER%20INSTALLAR/AplicacionesPortables/OpenOfficePortable/App/openoffice/share/dict/ooo/th_en_US_v2.idx',
'link': 'http://tiachopxanh.mobie.in/files/tudienanhvietnew.idx',
'link': 'http://bobs-burgers.wikia.com/wiki/File:S5E01.039_Gene_Accusing_Courtney_of_Stealing_His_Thunder.png',
'link': 'http://stoked.wikia.com/wiki/File:S2_E8_Reef_and_Johnny_apologise_for_accusing_Vlad_and_his_brothers_of_being_Vampires.png',
'link': 'http://zim.wikia.com/wiki/File:Dib_accusing_Dwicky.png',
'link': 'http://mlp.wikia.com/wiki/File:Vice_Principal_Luna_accusing_Sunset_Shimmer_EG2.png',
'link': 'http://themannycenturionstheclashofkaijudo.wikia.com/wiki/File:Vice_Principal_Luna_accusing_Sunset_Shimmer_EG2.png',
'link': 'http://madmax.wikia.com/wiki/File:Glory_the_child_as_the_accusing_dead.png',
'link': 'http://legendofthecryptids.wikia.com/wiki/File:(Accusing)_Underworld_Punishers.gif',
'link': 'http://moshinanigans.wikia.com/wiki/File:Tidus_accusing_people.gif',
'link': 'http://legendofthecryptids.wikia.com/wiki/File:(Accusing)_Underworld_Punishers_thumb.jpg',
'link': 'http://suffer-a-witch.wikia.com/wiki/File:Accusing_a_wizard.jpg',
'link': 'http://es.trueblood.wikia.com/wiki/Archivo:640px-3x09_-arlene_accusing_tommy_of_stealing_her_tips.jpg',
'link': 'http://english-3-1a-k-j.mvhs.acps.schoolfusion.us/modules/groups/homepagefiles/gwp/2361982/3965145/File/The%20Crucible/Arthur%20Miller%20article.docx?ad8dfa',
'link': 'http://archive.org/stream/beowulf16328gut/16328-8.txt',
'link': 'http://home.cogeco.ca/~rayser3/beotrial.txt',
'link': 'http://canonical.org/~kragen/beowulf-faq.txt',
'link': 'http://saturniancosmology.org/files/venus/beowulf.wiki.txt',
'link': "http://www.e-reading.link/bookreader.php/75690/Niven_-_Beowulf's_Children.txt",
'link': 'http://www.tldp.org/pub/Linux/docs/HOWTO/translations/fr/text/Beowulf-HOWTO.txt',
'link': 'http://www.lsc-group.phys.uwm.edu/beowulf/alpha/Proto-slave/noderoot_slave/etc/hosts.txt',
'link': 'http://orig01.deviantart.net/c404/f/2010/136/f/5/an_old_beowulf_script_by_altomarelatios.txt',
'link': 'http://www.academiclibrary.com/view/Mythology/Beowulf%20and%20the%20Song%20of%20Roland.txt',
'link': 'http://sourceforge.net/p/cerescp/svn/96/tree//ceresplus/CHANGELOG.txt?diff=50a9505104161f54686f7884:95',
'link': 'http://thekeep.org/~wombat/AmberRPG/UNSLogs/UnS_010.txt',
'link': 'http://www.frodo.ru/library/tolkien/On_Translating_Beowulf.txt',
'link': 'http://www.billstifler.org/HUM2130/files/longdesc/Beowulf_challenged_by_the_coastguard_by_E_Paul.txt',
'link': 'http://www.oocities.org/timessquare/battlefield/2740/Reis.txt',
'link': 'http://www.kiplingjournal.com/textfiles/KJ300.txt',
'link': 'http://evergreen.27names.org/academia/herotrad.txt',
'link': 'http://hawkweb.tripod.com/Texts/BEOWOLF.txt',
'link': 'http://www.beowulf.org/pipermail/beowulf-announce/2006-October.txt',
'link': 'http://nsfcac.rutgers.edu/TASSL/Projects/security/webpage/GrACE_files/README.txt',
'link': 'http://www.animelyrics.tv/game/devilmaycry3/dmc3suffer.txt',
'link': 'http://textfiles.com/phreak/divert.txt',
'link': 'http://lxr.free-electrons.com/source/Documentation/networking/bonding.txt?v=2.4.37',
'link': 'http://www.cs.wichita.edu/~chang/lecture/cs843/project/plan/jxl-plan.txt',
'link': 'http://spanettone.altervista.org/guide/ps2/devilmaycryse.txt',
'link': 'http://ftp.thinklogical.com/ftp/SCS/doc/networking/bonding.txt',
'link': 'http://pinartarhan.com/blog/wp-content/uploads/2009/11/wordpress.2009-11-16zoey.xml_.txt',
'link': 'http://www.dailyscript.com/scripts/Excalibur.txt',
'link': 'http://www.csulb.edu/~artg/524/beowulf.txt',
'link': 'http://www.barracudarecords.it/cdusati.txt',
'link': 'http://cscweb.kist.re.kr/code/namd/notes.txt',
'link': 'http://www.foodtimeline.org/questions.txt',
'link': 'http://ffcompendium.com/h/faqs/fftacticsswordseraph.txt',
'link': 'http://erick.guillen.com.mx/Codes/SNES%20Fire%20Emblem%204.txt',
'link': 'http://www.supercheats.com/playstation2/walkthroughs/devilmaycry3specialedition-walkthrough05.txt',
'link': 'http://www.culturebot.org/wp-content/uploads/2009/12/wordpress.2009-12-22.zip.txt',
'link': 'http://www.tinymux.org/readme.txt',
'link': 'http://lib.ru/TOLKIEN/list.txt',
'link': 'http://archives.pawpet.tv/albums//2013/2013-03-10/%25Captions-Tweets-IRC/pawpet-irc-log.txt',
'link': 'http://web.engr.illinois.edu/~sjha8/resources/reports/beowulf.txt',
'link': 'http://www.imaa.org.sg/en/images/stories/slideshow/beowulf.txt',
'link': 'http://archive.linux.or.jp/JF/JFdocs/kernel-docs-2.4/networking/bonding.txt',
'link': 'http://www.phantombabies.net/hosted/styleexpv1.txt',
'link': 'http://lists.mpich.org/pipermail/discuss/2016-March.txt',
'link': 'http://www.devils-lair.org/dmc3script.txt',
'link': 'http://www.cs.cmu.edu/Groups/AI/util/areas/nlp/corpora/names/male.txt',
'link': 'http://www.asgard.ethz.ch/coc.txt',
'link': 'http://new.math.uiuc.edu/im2008/dakkak/asciidoc/template.txt',
'link': 'http://gutenberg.net.au/ebooks06/0601791.txt',
'link': 'http://www.bookwolf.com/newsite1_No_Use/cgi-bin/yabb/Boards/Beowulf.txt',
'link': 'http://www.beowulf-underground.org/pipermail/pvfs2-users/2015-April.txt',
'link': 'http://docs10.minhateca.com.br/337335134,BR,0,0,Readme.txt',
'link': 'http://www.loc.gov/nls/foreignlanguage/OLDENGLI1.txt',
'link': 'http://lib.ui.ac.id/result.csv?query=subjek:%20%22Beowulf%22&metode=search&lokasi=lokal',
'link': 'http://www.inf.pucrs.br/peg/lucelenelopes/conceitos/pp_t_big.csv',
'link': 'http://www.inf.pucrs.br/peg/lucelenelopes/conceitos/pp_c_big.csv',
'link': 'http://datashare.is.ed.ac.uk/bitstream/handle/10283/380/General+Catalogue.csv?sequence=3',
'link': 'http://brunel.mybluemix.net/sample_data/BGG%20Top%202000%20Games.csv',
'link': 'http://www.rightline.net/calendar/082016.csv',
'link': 'http://reshare.ukdataservice.ac.uk/851859/1/CFIE_ARdataset_v2_Jan2016.csv',
'link': 'http://pages.cs.wisc.edu/~wcai/784files/tableB.csv',
'link': 'http://jsun.freeshell.org/100/top100s.csv',
'link': 'http://courses.cse.tamu.edu/caverlee/csce489_2013/hw/movies.csv',
'link': 'http://www.nada.kth.se/~lillt/bachelor_thesis/ml-latest-small/movies.csv',
'link': 'http://clueweb09.googlecode.com/svn-hist/trunk/Clueweb09/data/geoname.csv',
'link': 'http://www.bebelusulfericit.ro/supermarketro.csv',
'link': 'http://audiamo.com/export.csv',
'link': 'http://pixelbanane.de/yafu/4257290172/woerter.csv',
'link': 'http://www.portalgenial.com/loja_off/temp/Precos20091109.csv',
'link': 'http://www.scuc.txed.net/webpages/cmatthews/files/beowulf.pdf',
'link': 'http://jimab.eu/13-06-11%20Notice%20of%202013%20AGM%20NoticeBeowulf-1.pdf',
'link': 'http://www.tandfonline.com/doi/pdf/10.1080/00138386608597261',
'link': 'http://onlinelibrary.wiley.com/doi/10.1111/jpcu.12024/pdf',
'link': 'http://mlq.dukejournals.org/content/28/1/3.full.pdf',
'link': 'http://www.alluc.ee/stream/562.mp4?page=4',
'link': 'http://www.alluc.ee/stream/b1.mp4.mp4?page=9',
'link': 'http://www.alluc.ee/stream/nowhere+to+run+1993.mp4?page=2',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=YlwwPpcq4l4&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=zTmIKkWBgPY&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=lAaDuWb8blg&format=5',
'link': 'http://www.google.ca/url?url=http://shieldlands.wikia.com/wiki/File:Wilhelm-scream.ogg&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwjS4ZmUht7QAhVOz2MKHS_KDx4QFggUMAA&usg=AFQjCNHP9x4YmQugSKhXXSPfBAIRtMDFGA',
'link': 'http://www.google.ca/url?url=http://skullgirls.wikia.com/wiki/File:Charconfirm_beowulf.ogg&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwjS4ZmUht7QAhVOz2MKHS_KDx4QFggWMAE&usg=AFQjCNGIZqeyc-yMvcKKYx7NzGoramvWtA',
'link': 'http://www.google.ca/url?url=http://es.skullgirls.wikia.com/wiki/Archivo:Selecci%25C3%25B3n_confirmada_-_Beowulf.ogg&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwjS4ZmUht7QAhVOz2MKHS_KDx4QFggbMAI&usg=AFQjCNHqdZdpR8i56oHvpWFe0fqbExYGPg',
'link': 'http://lcweb2.loc.gov/mbrs/showmus/name.idx',
'link': 'http://memory.loc.gov/mbrs/showmus/title.idx',
'link': 'http://www.homepagers.com/general/gen1.idx',
'link': 'http://www.homepagers.com/general/gen.idx',
'link': 'http://svn.lliurex.net/leia/mods-backports/trunk/mythes/th_en_US_new.idx',
'link': 'http://iesalmenar.xtec.cat/departaments/deptecnologia/public_html/1%20PROGRAMES%20PER%20INSTALLAR/AplicacionesPortables/OpenOfficePortable/App/openoffice/share/dict/ooo/th_en_US_v2.idx',
'link': 'http://chomikuj.pl/tomedk/Ksi*c4*85*c5*bcki/Elektronika+Praktyczna/Elektronika+Praktyczna+1997/02.97/ep2_97/index,4124267896.idx',
'link': 'http://chomikuj.pl/akira5/Filmy+HD/Cz*c5*82owiek+znik*c4*85d+720p+Napisy+PL/The.Man.From.Nowhere.2010.PL.SUB.720p.BRRip.XviD.AC3-inTGrity,2748407243.idx',
'link': 'http://minhateca.com.br/criquinhas/Series+com+legendas+a+testar/Bewitched_PT-SUBS_S1*2c2*2c3*2c4*2c5*2c6*2c7/S1+(carlosmcd)/Bewitched.S01E19.A.Nice.Little.Dinner.Party.DVDRip.XviD,940070865.idx',
'link': 'http://skullgirls.wikia.com/wiki/File:Beowulf.png',
'link': 'http://skullgirls.wikia.com/wiki/File:Beowulf_and_Annie.png',
'link': 'http://www.sourcenewspapers.com/articles/2013/03/16/opinion/doc51437774558ab911581559.txt',
'link': 'http://saifmohammad.com/WebDocs/LC-data/closest-to-oppQs-for-WordNet-opposites/adverbs.txt',
'link': 'http://www.asstr.org/~Kristen/celeb/nikkic.txt',
'link': 'http://www.asstr.org/files/Collections/Alt.Sex.Stories.Moderated/Year1998/9646.txt?textonly=Text+Only',
'link': 'http://www.montgomerynews.com/articles/2008/08/19/ticket%20entertainment/20081040.txt',
'link': 'http://www.galtheraldonline.com/articles/2011/02/09/lifestyle/doc4d53220745ebe768758893.txt',
'link': 'http://www.buckslocalnews.com/articles/2016/07/24/entertainment/doc57684851c31ce760671666.txt',
'link': 'http://www.rockapella.com/rplyrics/blah.txt',
'link': 'http://www.wctc.net/~mtbarnes/My%20Music/Poetry/Lyrics/Unhappily%20Ever%20After.txt',
'link': 'http://home.in.tum.de/~paula/mwc/text/FAQ/FAQ_MWC.txt',
'link': 'http://www.soniadelhiescorts.in/38/IINUl/urllist.txt',
'link': 'http://www.fallenprincesses.com/flash/interviews-textual.txt',
'link': 'http://www.mainlinemedianews.com/articles/2010/08/26/main_line_suburban_life/opinion/doc4c7434c0df280311413032.txt',
'link': 'http://lists.ibiblio.org/pipermail/desertcity/2006-February.txt',
'link': 'http://akmhcweb.org/articles/peopleinbondage.txt',
'link': 'http://frontiers.loc.gov/service/gdc/massbkdif/ital/yinn/inet/eent/00la/ti__/italyinnineteent00lati/data/italyinnineteent00lati_djvu_json/00111.txt',
'link': 'http://www.aria-database.com/translations/fidelio04_gold.txt',
'link': 'http://www.countytimes.com/articles/2012/06/14/news/doc4fd8b8ad9b02d778644682.txt',
'link': 'http://www.delconewsnetwork.com/articles/2011/04/02/news_of_delaware_county/news/doc4d8ffa6e63302454056994.txt',
'link': 'http://www.delconewsnetwork.com/articles/2013/11/11/life/doc527d31fec5961346335549.txt',
'link': 'http://ftp.sunet.se/mirror/archive/ftp.sunet.se/pub/os/amiga/aminet/docs/rview/SportsterModem.txt',
'link': 'http://www.antivirus.hu/virved/pages/h053.txt',
'link': 'http://files.usgwarchives.net/la/union/newspapers/articles/1900s-taylor-mcqueen.txt',
'link': 'http://ohhla.com/anonymous/misc/r_and_b/iwishrmx.crl.txt',
'link': 'http://www.swil.org/SWILnews/Fall01/Fa01_09.txt',
'link': 'http://soar.wichita.edu/bitstream/10057/3296/3/t10005_Celestin.pdf.txt',
'link': 'http://project64.c64.org/games/0-l/221BBakerCase.txt',
'link': 'http://www.biblebb.com/files/ryle/warn6.txt',
'link': 'http://www.geocities.ws/veblenite/txt/praecox.txt',
'link': 'http://www.taekwankim.com/code/FinalCut.txt',
'link': 'http://www.oldcolo.com/McNamara/mcnamara.txt',
'link': 'http://gutenberg.net.au/ebooks/fr100169.txt',
'link': 'http://www.st-minutiae.com/resources/scripts/269.txt',
'link': 'http://oregonnews.uoregon.edu/lccn/sn88086023/2015-12-18/ed-1/seq-16/ocr.txt',
'link': 'http://www.thevalkyrie.com/stories/uplifted/emw1.txt',
'link': 'http://www.keyofx.org/fiction_Sarah%20Segretti-99%20and%20fourfifths%20done.txt',
'link': 'http://rsi.unl.edu/text/piano.txt',
'link': 'http://www.oocities.org/hollywood/set/3937/tvb0fil.txt',
'link': 'http://textfiles.com/sex/EROTICA/S/sallystory.txt',
'link': 'http://nldslab.soe.ucsc.edu/charactercreator/film_corpus/film_20100519/output/even-cowgirls-get-the-blues-chink.txt',
'link': 'http://trombone.org/trombone-l/archives/0301/030114.txt',
'link': 'http://lib.ru/SHAKESPEARE/shks_66s.txt',
'link': 'http://www.ekingofcontent.net/content/plrblowout/plrblowout/100000plr/Health_Fitness/Overweight__Have_You_Given_Away_Your_Power_.txt',
'link': 'http://img.watchitvideos.org/imdbcache/tt0196723.txt',
'link': 'http://www.ttales.net/fic/alexanderrasmussen/hot.txt',
'link': 'http://www1.udel.edu/CIS/105/tharvey/06S/projects/project3/ghos.txt',
'link': 'http://web.media.mit.edu/~minsky/papers/sciam.inherit.txt',
'link': 'http://www.philosophyinaction.com/blogger/comments/3876119551702962374.txt',
'link': 'http://www.techadre.com/sites/techadre.com/files/Perl_AD_PasswdExpire.txt',
'link': 'http://www.thespankingcorner.com/stories/daria/party_time.txt',
'link': 'http://users.ox.ac.uk/~ousfg/zool/zool3/ep04a.txt',
'link': 'http://ftp.icm.edu.pl/packages/aminet/docs/rview/SportsterModem.txt',
'link': 'http://www.constitution.org/jm/17990123_foreign.txt',
'link': 'http://www.astrolog.org/home/centers.txt',
'link': 'http://franklin.library.upenn.edu/export-print.txt?ids=5834380',
'link': 'http://www.stat.yale.edu/~tba3/class_data/aclImdb/train/unsup/26712_0.txt',
'link': 'http://www.stat.yale.edu/~tba3/class_data/aclImdb/train/unsup/33079_0.txt',
'link': 'http://www.personal.uni-jena.de/~mu65qev/data/Gast2015os.csv',
'link': 'http://dev.robbywalker.name/words/words.csv',
'link': 'http://sf.oxfordjournals.org/content/84/1/451.full.pdf',
'link': 'http://www.tandfonline.com/doi/pdf/10.1386/sfc.8.3.189_1',
'link': 'http://lawschool.ualberta.ca/-/media/law/student-resources/courses%20registration%20and%20resources/upper-year%20student%20spring%20update/vice-deans-letter.pdf',
'link': 'http://www.nejm.org/doi/pdf/10.1056/NEJM182210010110403',
'link': 'http://onlinelibrary.wiley.com/doi/10.1111/j.1467-6494.1935.tb02012.x/pdf',
'link': 'http://rosemarycounter.com/wp-content/uploads/2010/11/GlobeHampson.pdf',
'link': 'http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2843053_code470399.pdf?abstractid=2843053&mirid=1',
'link': 'http://bjp.rcpsych.org/content/63/263/587.full-text.pdf',
'link': 'http://www.dwc.knaw.nl/DL/publications/PU00016640.pdf',
'link': 'http://search.proquest.com/openview/bfd5e0ff9992ac28845eff9e97f854b9/1.pdf?pq-origsite=gscholar',
'link': 'http://prx.sagepub.com/content/21/3/770.full.pdf',
'link': 'http://www.taxpolicycenter.org/UploadedPDF/411142_impact_marriage.pdf',
'link': 'http://www.alluc.ee/download/317.mp4?page=1',
'link': 'http://www.alluc.ee/download/jennie.mp4?page=1',
'link': 'http://tiachopxanh.mobie.in/files/tudienanhvietnew.idx',
'link': 'http://scratchpad.wikia.com/wiki/File:Big_Mac_walks_unhappily_S5E17.png',
'link': 'http://mlp.wikia.com/wiki/File:Big_Mac_walks_unhappily_S5E17.png',
'link': 'http://mlp.wikia.com/wiki/File:Twilight_Sparkle_looking_at_Discord_unhappily_S04E02.png',
'link': 'http://mlp.wikia.com/wiki/File:Greta_walking_unhappily_S5E8.png',
'link': "http://disney.wikia.com/wiki/File:Lightning_listening_to_Francesco's_briefing_unhappily.jpg",
'link': 'http://grojband.wikia.com/wiki/File:But_she_is_unhappily_shocked.jpg',
'link': 'http://pet.nfe.go.th/nfe7603/index.php/webboard_upload/images/mobile_plan57.xlsx?name=news&file=readnews&id=49',
'link': 'http://higheresolutions.com/7elephants/G%20LINK/ARCHIVE/REPORTS/VENDOR%20ORDER%20REPORTS/RAW%20DATA%20FOR%20VENDORS/JIAXING%20XINGHUI%20(OTI).xlsx',
'link': 'http://www.montgomerynews.com/articles/2011/06/08/parents_express/columns/doc4ddc2b84d4efd540869758.txt',
'link': 'http://chipbras.com.br/.st/where-to-buy-cialis-or-viagra.txt',
'link': 'http://chipbras.com.br/.st/online-order-of-viagra.txt',
'link': 'http://vinova.sg/keywords/2of4brif.txt',
'link': 'http://www.parallelcrypto.com/pcc/words.txt',
'link': 'http://web.mit.edu/moforj/Public/wordsEn.txt',
'link': 'http://lspwww.epfl.ch/teaching/prog3ssc/files/LaboB/lists/list-full.txt',
'link': 'http://www.mscs.mu.edu/~mikes/cosc1020/Source_Code_5e/ch03/words.txt',
'link': 'http://phillipmfeldman.org/English/large.txt',
'link': 'http://www.cims.nyu.edu/~brettb/dsSum2016/Lab4/wordlist.txt',
'link': 'http://www.cims.nyu.edu/~brettb/dsSum2016/Lab4/wordlistout.txt',
'link': 'http://www.cise.ufl.edu/~s03020ab/wordsSort.txt',
'link': 'http://cgi.di.uoa.gr/~mema/courses/k24/homeworks/words.txt',
'link': 'http://www.math.uic.edu/~leon/mcs360-f07/projects/3-4/dictionary-small-rand.txt',
'link': 'http://www.eecs.wsu.edu/~holder/courses/CptS223/spr09/dictionary.txt',
'link': 'http://www.scrabble.org.nz/CSW15.txt',
'link': 'http://www.psych.ualberta.ca/~westburylab/downloads/westburylab.frequencies.txt',
'link': 'http://euclid.nmu.edu/~randy/Classes/CS122/OldStuff/Assignments/Hash/list1.txt',
'link': 'http://users.dsic.upv.es/~nprieto/clases/EDA0203/T7/Exps/distinct.txt',
'link': 'http://www.telecom.tuc.gr/~iosife/downloads/adsms/en_voc.txt',
'link': 'http://reu.dimacs.rutgers.edu/~apantel/words/cryptograms2.txt',
'link': 'http://bogumilkaminski.pl/share/TWL2006.txt',
'link': 'http://www.cs.ucr.edu/~msalloum/CS62/lectures/L18/words3.txt',
'link': 'http://marcoagpinto.cidadevirtual.pt/wordlist_marcoagpinto_20161101_162325w.txt',
'link': 'http://www.circlemud.org/pub/jelson/boggle/unpacked/dictionaries/scrabble.txt',
'link': 'http://www.circlemud.org/pub/jelson/boggle/unpacked/dictionaries/ALL-DICTIONARIES.txt',
'link': 'http://www.di.unipi.it/~ferragin/Libraries/BWI/Testi%20-altro/words.txt',
'link': 'http://erkankarabacak.weebly.com/uploads/7/8/1/3/7813797/e_lemma.txt',
'link': 'http://nameless.cis.udel.edu/class_data/cisc181/words.txt',
'link': 'http://gutenberg.polytechnic.edu.na/2/8/286/286.txt',
'link': 'http://www.lalena.com/Games/games/dictionary/wordlist.txt',
'link': 'http://math.nemcc.edu/courses/cp2/data/dictionary.txt',
'link': 'http://pages.cs.wisc.edu/~o-laughl/twl06/twl06.txt',
'link': 'http://vh216602.truman.edu/agarvey/cs170/wordlist.txt',
'link': 'http://www.codecooker.com/projects_programming/php/wordguess/wordlist.txt',
'link': 'http://spod.cx/TWL98.txt',
'link': 'http://kosbie.net/cmu/summer-09/15-100/resources/sortedDictionary.txt',
'link': 'http://www.cs.sbu.edu/dlevine/PreviousCourses/Fall%202002/CS132Fall2002/Labs/words.txt',
'link': 'http://www.cs.cornell.edu/courses/cs1110/2014fa/assignments/assignment4/code/complete.txt',
'link': 'http://www.cs.nmsu.edu/~hfugal/cs167/labs/words.txt',
'link': 'http://jimi.ithaca.edu/~dturnbull/courses/cs171/lab/09/WordCount.txt',
'link': 'http://cse.iitkgp.ac.in/~abhij/course/lab/DAA/Autumn04/dictionary.txt',
'link': 'http://ocw.nust.na/gutenberg/3/6/1/0/36101/36101.txt',
'link': 'http://www.cs.utexas.edu/users/mitra/csFall2015/cs303/assgn/words.txt',
'link': 'http://www.cm.ph.bham.ac.uk/cpp/projects/words/words.txt',
'link': 'http://t2.hhg.to/words.txt',
'link': 'http://courses.washington.edu/englhtml/engl563/keywords_demo/e_lemma_list_no_hyphen.txt',
'link': 'http://www.canadianshakespeares.ca/Chronos%202/dict.txt',
'link': 'http://mumtaz-thebarefootcare.org/.st/mumtaz-thebarefootcare.org%7C%3Fart=Spielen-Sie-echte-Bingo-auf-ipad.txt',
'link': 'http://mumtaz-thebarefootcare.org/.st/mumtaz-thebarefootcare.org%7C%3Fart=Cassino-Bumerang.txt',
'link': 'http://ibcomp.fis.edu/methods/wordlist.txt',
'link': 'http://www.eudict.com/index.php/js/js/form.txt?lang=engger&word=spur%20gears',
'link': 'http://staff.cs.buu.ac.th/~sunisa/886210/1_2558/test02.txt',
'link': 'http://fazail-raza.synthasite.com/resources/S@=.txt',
'link': 'http://oregonnews.uoregon.edu/lccn/sn84022644/1867-03-30/ed-1/seq-4/ocr.txt',
'link': 'http://www.cyberhorse.com.au/dcforum/equestrian/Data/14250.txt',
'link': 'http://www.biotec.tu-dresden.de/fileadmin/groups/schroeder/teaching/ils/english-words-40.txt',
'link': 'http://images.neopets.com/games/g1167/dictionary/S/9/list.txt',
'link': 'http://www.bastropcages.com/robots.txt',
'link': 'http://www.chinchillas.org/ebooks/Chinchilla%20Cage.txt',
'link': 'http://lib.ru/SONGS/sting/scages.txt',
'link': 'http://www.lukemiller.org/journal/journal_pics/cages/Cage_primer.txt',
'link': 'http://www.rmca.org/Resources/mouse-faq.txt',
'link': 'http://caravanofthieves.com/lyrics/angels.txt',
'link': 'http://www.galtheraldonline.com/articles/2009/07/01/news/doc4a4b937891bf6174664783.txt',
'link': 'http://repository.seafdec.org.ph/bitstream/10862/1512/3/iwpccf_p089-092.pdf.txt',
'link': 'http://www.southjerseylocalnews.com/articles/2015/12/23/news/doc567aea28c019e137799343.txt',
'link': 'http://www.newhavenregister.com/articles/2011/03/09/news/shoreline/doc4d76c7c9d2867577681266.txt',
'link': 'http://marcua.net/notes/6.830/lec2_ancienthistory.txt',
'link': 'http://www.repositorio.ieo.es/e-ieo/bitstream/10508/375/6/FGANDARAEAS2011.pdf.txt',
'link': 'http://pascencio.cos.ucf.edu/classes/Methods/2013/WEEK%2011.5/Nested%20&%20Block/pollination.txt',
'link': 'http://ntp.niehs.nih.gov/ntp-db/ntp_reports/ntp_pathology_tbls/98007_tables/04e35.txt',
'link': 'http://users.ics.aalto.fi/mjj/benchmarks/sat05/README.hjkn-mod2.txt',
'link': 'http://www.rabbit.org/faq/faq.txt',
'link': 'http://netvet.wustl.edu/species/hamsters/phodopus.txt',
'link': 'http://files.usgwarchives.net/la/state/court/afriamer/cage.txt',
'link': 'http://www.sourcenewspapers.com/articles/2013/04/23/news/doc516ff3fe8d35b671253138.txt',
'link': 'http://www.navycthistory.com/WullenweberArticle.txt',
'link': 'http://inmotionmar.com/wp-content/uploads/2014/08/014-Press-Release-Kinetic-Twenty20-Bottle-Cages-and-Speed-Bags1.txt',
'link': 'http://is.muni.cz/el/1411/jaro2016/BOAJ0222/um/61966796/63361594/18991689/Reading-paragraphs.txt',
'link': 'http://sundownsupply.info/urllist.txt',
'link': 'http://pcnhhalifax.com/archives/txt/2004/12/12/GOLD0007.TXT',
'link': 'http://www.jfbouch.fr/crypto/m209/cages.txt',
'link': 'http://perso.fundp.ac.be/~jvandyck/abeilco/IntroReines.txt',
'link': 'http://www.supercheats.com/3ds/walkthroughs/rayman3d-walkthrough01.txt',
'link': 'http://www.va.gov/vetapp92/files2/9211830.txt',
'link': 'http://www.times.co.sz/feed/news/107039-elephants-finally-off-to-us-after-26hrs-in-cages.txt',
'link': "http://www.thealmightyguru.com/Music/Lyrics/Tim%20Minchin/I'm%20In%20a%20Cage.txt",
'link': 'http://www.genuki.org.uk/files/eng/LAN/Haydock/MINEGLOS.txt',
'link': 'http://www.dli.gov.in/data/upload/0024/907/TXT/000000008.txt',
'link': 'http://qspace.qu.edu.qa/bitstream/handle/10576/10556/Knockout%20mice%20Is%20it%20just%20genetics%20Effect%20of%20enriched%20housing%20on%20fibulin42%20mice.pdf.txt?sequence=3',
'link': 'http://www.thenewsherald.com/articles/2016/07/23/news/doc5790cd6ce69ec024445330.txt?viewmode=4',
'link': 'http://ohhla.com/anonymous/rap_comp/llounge2/oh_no.ll2.txt',
'link': 'http://www.cnweekly.com/articles/2013/09/17/sports/doc5232382d3b028507931482.txt',
'link': 'http://www.imm.ki.se/biostatistics/lqreg/pa_luts_ex.txt',
'link': 'http://www.aka-sohn.de/angebot.txt',
'link': 'http://www.aka-sohn.de/nachfrage.txt',
'link': 'http://cd.textfiles.com/thegreatunsorted/texts/term_papers/anmrit2.txt',
'link': 'http://www.cheatcc.com/ps3/sg/ico.txt',
'link': 'http://www.huffstrategy.com/MediaManager/Media/Text/1179000353_WSPA.txt',
'link': 'http://psychadelicbus.tripod.com/shelby.txt',
'link': 'http://www.montgomerynews.com/articles/2011/01/19/springford_reporter_valley_item/news/doc4d30a25d7b47b602966709.txt',
'link': 'http://carteretnewstimes.com/articles/2011/07/18/news-times/news/doc4e2211217a8ff100926329.txt',
'link': 'http://www.thevalkyrie.com/stories/1misc21/slavebrother01.txt',
'link': 'http://documents.worldbank.org/curated/en/652871468044370908/text/843160PROP00P00Box0382136B00PUBLIC0.txt',
'link': 'http://www.portlandleader.net/articles/2009/10/08/news/15568748.txt',
'link': 'http://echives.grimfandango.org/smallcages.txt',
'link': 'http://www-ist.cea.fr/publicea/exl-doc/200600007471__PDF.txt',
'link': 'http://www.hcnonline.com/articles/2010/03/14/101houston/10_for_20/20-choo_choo.txt',
'link': 'http://www.voicenews.com/articles/2013/09/22/news/doc523cae33e3fcf277445006.txt',
'link': 'http://trove.nla.gov.au/newspaper/rendition/nla.news-article11839156.txt',
'link': 'http://nsarchive.gwu.edu/radiation/dir/mstreet/commeet/meet6/brief6/tab_l/br6l1g.txt',
'link': 'http://www.alllifting.com.au/wp-content/uploads/csvimport/woo-export_products-20140224%20(4).csv',
'link': 'http://www.impetus.uni-koeln.de/malaris/data/ng.csv',
'link': 'http://www.parasitesandvectors.com/content/supplementary/s13071-015-0955-6-s1.csv',
'link': 'http://ets.aeso.ca/outage_reports/csvData/_2013-07-26_17-17-47_qryOpPlanTransmissionTable_1.csv',
'link': 'http://datacompass.lshtm.ac.uk/75/1/Supplementary_information_H7N9_linelist.csv',
'link': 'http://www.glsc.usgs.gov/publications/1991/br_spot.csv?field_publication_year_value=3&page=8',
'link': 'http://www.machs.mshp.dps.mo.gov/MSHPWeb/PatrolDivisions/CRID/ChargeCodeCSV2016-1-12.csv',
'link': 'http://www.vidcap.net/adultcheck/Charlie_20080815_3936.csv',
'link': 'http://www.truckingplanet.co/wp-content/uploads/participants-database/WY2011.csv',
'link': 'http://boris.unibe.ch/90317/6/S2%20Data_flowchart.csv',
'link': 'http://landa-corp2.tripod.com/marina.csv',
'link': 'http://torstenhal.tripod.com/music/AllTitles.csv',
'link': 'http://swof.ph2.mobi/work1201.csv',
'link': 'http://qacprojects.wesleyan.edu/static/data/twitter_project/tmp_data_test/word-freq-news-all.csv',
'link': 'http://qacprojects.wesleyan.edu/static/data/twitter_project/tmp_data_test/news_text_all.csv',
'link': 'http://flash.lakeheadu.ca/~maislam/Data/education/30-06-2012_12-08-13_usa_computer-science.csv',
'link': 'http://flash.lakeheadu.ca/~maislam/Data/sports/28-06-2012_23-50-00__football.csv',
'link': 'http://cityouterwear.com/itemlist/itemlist.csv',
'link': 'http://dev.robbywalker.name/words/words.csv',
'link': 'http://smartcycleshopper.com/wp-content/uploads/scs_tblArticle_V2.csv',
'link': '/interstitial?url=http://www.backlinkal.com/upload/save_csv/09151759_55f7de012a72b.csv',
'link': 'http://www.icons.umd.edu/data/4952/messages.csv',
'link': 'http://www.gameonsport.com.au/app/locale/en_US/Mage_Page.csv',
'link': 'http://www.myfpvshop.com/f02fbe65-18522187.csv',
'link': 'http://www.myfpvshop.com/5eb0ddcd-1877066.csv',
'link': 'http://www.myfpvshop.com/b75cb07a-14170811.csv',
'link': 'http://855.donotcall.website/8552711679.csv',
'link': 'http://www.tzfansub.net/cosme/common/list/item_base.csv',
'link': 'http://www.pnas.org/content/113/31/8681.full.pdf',
'link': 'http://magicseaweed.com/news/xxxl-shark-deep-blue-is-a-symbol-of-hope/7915/%7B%22auto_hd%22:false,%22autoplay_reason%22:%22unknown%22,%22default_hd%22:true,%22disable_native_controls%22:true,%22inline_player%22:false,%22pixel_ratio%22:1,%22preload%22:false,%22start_muted%22:false,%22rtmp_stage_video%22:true,%22rtmp_buffer%22:false,%22rtmp_buffer_time%22:0,%22rtmp_buffer_time_max%22:0,%22video_data%22:%7B%22progressive%22:[%7B%22is_hds%22:false,%22video_id%22:%2210153621649200955%22,%22is_live_stream%22:false,%22rotation%22:0,%22sd_src_no_ratelimit%22:%22https:%5C/%5C/video-ord1-1.xx.fbcdn.net%5C/hvideo-xta1%5C/v%5C/t42.1790-2%5C/11826243_10153621666905955_1922782725_n.mp4?lang=en',
'link': 'http://biggod.biz/lyrics/No%CC%82ze%20-%20Swimming%20Circles%20Remix.mp4?id=pVOhaYbU5kc',
'link': 'http://www.smosh.com/smosh-pit/memes/best-of-net-noob-meme/media/sample.mp4?sort_by=created&sort_order=DESC&page=10&qt-homepage_music_forums=1',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=x3-_WQ_ho1E&format=5',
'link': 'http://bioshock.wikia.com/wiki/File:Jaremiah_Fink_-_Solution_to_Your_Problems.ogg',
'link': 'http://www.componentsandparts.com/Northwest-/Automotive-/Rorty-no-3-tube-bender-roll-bender-dual-plans-package.idx',
'link': 'http://www.componentsandparts.com/Midwest-/Shipping-and-Receiving-/Used-813-sqft-mikropul-cylind-dust-collector-1889.idx',
'link': 'http://www.tabitamago.jp/wiki/data/index/w5.idx',
'link': 'http://www301.pair.com/epsb/saddleblanket/cgi-bin/tseek/admin/data/search.idx',
'link': 'http://www.webdelsol.com/bbs/arts/searchterms.idx',
'link': 'http://chomikuj.pl/michalkosecki/Seriale/The+Bible/The.Bible.S01E05.BDRip.XviD-GECKOS/the.bible.s01e05.bdrip.xvid-geckos.subs/the.bible.s01e05.bdrip.xvid-geckos,2673671833.idx',
'link': 'http://www.subtitles.at/war+z+720p.idx',
'link': '/url?q=http://cgmo.myftp.biz/jkaqbjd2.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggeMAM&usg=AFQjCNHL2Hgych9vxQh45qlJz-p9_uyZBw',
'link': '/url?q=http://moodle.wbhs.org.za/pluginfile.php/16642/mod_folder/content/0/grammar%2520gremlin%2520questions.docx%3Fforcedownload%3D1&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggjMAQ&usg=AFQjCNH-DdrMb7QEq9hRRduvZD1kgtTmNw',
'link': '/url?q=http://andrewjamesnaturopath.com/wp-content/uploads/2014/02/Gremlin-ID.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggoMAU&usg=AFQjCNGBzFK9jcwKXjbzOd2eWCBEd6BSPg',
'link': '/url?q=http://hpjr.servebeer.com/xfbjfup1.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggqMAY&usg=AFQjCNGMrD9MyenirkeX1OEIxR1wJ4wtgg',
'link': '/url?q=http://diskokosmiko.mx/trivianita/caratulas-de-comedia-31071/gremlins-1984-zach-galligan-phoebe-cates,284008.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggvMAc&usg=AFQjCNGO532R7A9EjlEKDKgbM5yiw2GZSA',
'link': '/url?q=http://eyqk.onthewifi.com/vcnnlkd4.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFggyMAg&usg=AFQjCNFkp6yYpcxz58uJXeKK9ZbbQCPrvw',
'link': '/url?q=http://files.leagueathletics.com/Text/Documents/9300/63611.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgg3MAk&usg=AFQjCNEOe_-L9eMGcWFUmo3aV12aC9iCDA',
'link': '/url?q=http://www.mosmanfootball.com/wp-content/uploads/2013/11/SJ-coaching-timetable.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgg5MAo&usg=AFQjCNF2l9ZkPpZ1_i-5vzdgyo9oqTUzZg',
'link': '/url?q=http://www.mosmanfootball.com/wp-content/uploads/2014/06/SJ-coaching-timetable-updated-June-2014.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgg-MAs&usg=AFQjCNEq1R1vBTsawTfw2Yq-UzbUWDNNHg',
'link': '/url?q=http://www.lcps.org/cms/lib4/VA01000195/Centricity/Domain/16296/4thGrade7thWeekEstimateAndCheck.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghDMAw&usg=AFQjCNEJvy3AVnNrT9dQh32DAqbgVFhtSw',
'link': '/url?q=http://trebuchetlegal.com/wp-content/uploads/2014/03/ResourcesHandout.Katie_.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghIMA0&usg=AFQjCNHlbPpzdsoooTzrWTsWRPlXOY3r4g',
'link': '/url?q=http://hotchilliconnect.com/sites/default/files/Testimonials%2520from%2520Talented%2520Women%2520Workshop%2520HCC_0.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghSMA8&usg=AFQjCNF9ek_VcmO_KJwOtCWRzjjSHYJ5Xw',
'link': '/url?q=http://www.academiccoachingandwriting.org/downloads/ACW_Imposter_Syndrome_Script_2016.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghcMBE&usg=AFQjCNEQWwqKVp7Ud29krf5h-U0Bh2cRgQ',
'link': '/url?q=http://www.amic.sk/priloha/5410a73e615ba/tm-gremlins-sk-fin.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghnMBM&usg=AFQjCNGliCDExkAFThHV-NZ399aTtL92qw',
'link': '/url?q=http://www.watershed.co.uk/sites/default/files/post/inline_file/2015-11-20/roalddahlcentenaryeoifinal.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFghtMBQ&usg=AFQjCNGl2a8ua4Mor3Nlf0TL-qPl19_5Cg',
'link': '/url?q=http://www.yoursmallbusinesscoach.com/wp-content/uploads/2016/02/invoice_template.-1.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgh5MBY&usg=AFQjCNHlOLc_jA-9SaK2p8ARINe-kxzAyQ',
'link': '/url?q=http://blog.ar.tcmla.com/wp-content/uploads/2015/01/Documento-de-destacados-de-Programaci%25C3%25B3n_TCM-MARZO-2015-AR.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgh-MBc&usg=AFQjCNGGtJ6tHdXApeJewxU9hxS8-_1OPw',
'link': '/url?q=http://www.washcosoccer.com/uploads/2/3/8/7/23878190/studio-soccer_2016_portrait_schedule_a.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiFATAZ&usg=AFQjCNF-TlO1EB03trGj6NCnU9m2WTTpRg',
'link': '/url?q=http://rakowskisroom.weebly.com/uploads/9/3/7/2/9372003/slo_prompt_with_article.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiKATAa&usg=AFQjCNFJDFQLskPAoi218ULH9gN8Z2fnCw',
'link': '/url?q=http://www.hotchilliconsulting.com/wp-content/uploads/Authentic-Leadership-Workshop.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiPATAb&usg=AFQjCNFtA8qiFIZYVHEEo_9sQ9j8yKdsIw',
'link': '/url?q=http://www.peachtreemg.com/uploads/Electrical_Gremlins_-_July_2008.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiUATAc&usg=AFQjCNH8x9RM8RXy-RlexkjWQIV68P-www',
'link': '/url?q=http://nwrdkb.whisinternet.org/download/planning/appendix%25204%2520peer%25202%2520peer.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgihATAf&usg=AFQjCNHxh6T8Wl0ypFbqaJqfilOcycy6Xg',
'link': '/url?q=http://ngha.med.sa/English/Professionals/Documents/SABCS_Program.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgijATAg&usg=AFQjCNFOdTj9G9fyqFP7qT8WMkySVVZvGg',
'link': '/url?q=http://core.ecu.edu/psyc/wuenschk/Sedona-Help/Petition_Re-Petition.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgi7ATAl&usg=AFQjCNGTw71_StJ2xKQmIvc5PQhJ1Ilq9g',
'link': '/url?q=http://lionsgatepublicity.com/uploads/assets/WAXWORK%2520I%2520%2520II%2520Fact%2520Sheet%2520FINAL_2.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjAATAm&usg=AFQjCNHphYve_BUckokb64ZS73yU_H-E9A',
'link': '/url?q=http://www.armymotorsports.co.uk/Content/Oulton.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjHATAo&usg=AFQjCNHKWDOE9aQdNTimSqt8Osh4Gka_Dg',
'link': '/url?q=http://www.gymsportsfnq.com.au/wp-content/uploads/2016/03/2016CompetitionEventsCalendar.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjMATAp&usg=AFQjCNFT75pFTgyw0FO2IFqxFbVB7qvuLw',
'link': '/url?q=http://files.bulldogamopsklub.webnode.sk/200000016-2c4982e3c5/bull2012.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjWATAr&usg=AFQjCNH6mRv0RtdesLqLEj30Prg6g1YkIQ',
'link': '/url?q=http://www.literacywagoll.com/uploads/3/1/3/1/31318533/roald_dahl.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjYATAs&usg=AFQjCNGUpih1-SsdkPZXYBVdHNQusedREA',
'link': '/url?q=http://www.egr.msu.edu/sites/default/files/content/DER/E-funding%252010-16-15.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjfATAu&usg=AFQjCNEoTjjGzfpB1F3V7B96CKpvpsXlQQ',
'link': '/url?q=http://ww1.prweb.com/prfiles/2016/06/06/13468179/Roald%2520Dahl%2520bio-2016FIN.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjlATAv&usg=AFQjCNHLWBTCmZ4o5TQU8-qddIBx8IEVhg',
'link': '/url?q=http://electro-music.com/forum/phpbb-files/modifications_to_eti4600_517.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjrATAw&usg=AFQjCNHzaNjIrF6mRjfdf5qqZdrUFEk8uA',
'link': '/url?q=http://www.mesnelea.salford.sch.uk/files/Topic%2520Webs/2016/Topic_Web_Year_5_Autumn_1617_(1).docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjwATAx&usg=AFQjCNEHszck5CwCCWpCvDnV09nG0ksqmg',
'link': '/url?q=http://www.brisbanenetball.org.au/wp-content/uploads/2012/04/WINTER-TEANS-2015.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgj_ATA0&usg=AFQjCNG4m6UosswYIk0RBN3Gp3vac_2i_Q',
'link': '/url?q=http://isma.org.uk/wp-content/uploads/SE-Seminar.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiFAjA1&usg=AFQjCNGYspgZQi_J2vbX4kc9Xxn_FljMAQ',
'link': '/url?q=http://www.nikkistewartaplang.com/uploads/5/9/5/3/59535933/elimination_words.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiKAjA2&usg=AFQjCNGWDJVBPJTNe-37pfrSCxm9lC4hIA',
'link': '/url?q=http://www.jacksonsd.org/site/handlers/filedownload.ashx%3Fmoduleinstanceid%3D10151%26dataid%3D8821%26FileName%3DOctober_Newsletter2016.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiPAjA3&usg=AFQjCNELJtdoIbbkMjDV7utkIIg5952cSw',
'link': '/url?q=http://marquenq.com.au/wp-content/uploads/2012/12/Greeting-Marquers-Decxember-issue.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiUAjA4&usg=AFQjCNF99YGc5Un-oRzzhFScIq69HtCjGA',
'link': '/url?q=http://www.suefrance.com/wp-content/uploads/2015/01/2-Day-Workshop-for-The-Definitive-Professional-Assistant-with-2-Day-Twos-to-choose-from-one-choice-of-Day-Two-includes-TetraMap-Behavioural-profiling.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiZAjA5&usg=AFQjCNHzx-qrYOddlv9VeXk5L1-dc-PCfA',
'link': '/url?q=http://www.mooreschools.com/cms/lib/OK01000367/Centricity/Domain/32/In%2520the%2520Hall%2520of%2520the%2520Mountain%2520King%2520-%2520Review%2520Questions.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgieAjA6&usg=AFQjCNEfiuQVSAuE1B3E6gDNT4Y_uwHkdA',
'link': '/url?q=http://www.dringhouses-church.org.uk/wc%25202nd%2520October%25202016.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgijAjA7&usg=AFQjCNHnzXiDBOwNB7lgAyPQ7RPSCNnXag',
'link': '/url?q=http://ontargetleading.com/_pdfs/Event_Questionnaire.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgipAjA8&usg=AFQjCNGK7hTOhYSRbeVLkr9zLKcNpgo2GA',
'link': '/url?q=http://www.teaschools.k12.sd.us/cms/lib07/SD01001447/Centricity/Domain/92/Sen%2520Writing/Paper%25201%2520-%2520Evaluative%2520Essay.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgiuAjA9&usg=AFQjCNGz5yRbmTwSBXNUy1XDuE24yLWyMw',
'link': '/url?q=http://bgte.serveirc.com/wrqteol7.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgizAjA-&usg=AFQjCNH2LKLlC6XAqwRMw9gzpydrPvrg2g',
'link': '/url?q=http://www.leaguelineup.com/covinaviking/files/football%2520handout%25202012.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgi4AjA_&usg=AFQjCNFi5b17U3JZiEQ86q1NqyHv3YqkBA',
'link': '/url?q=http://www.campervanhireyorkshire.com/Games%2520List.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgi-AjBA&usg=AFQjCNG1_pR3AgF9WqFIsRXuGwlX3Kt9ww',
'link': '/url?q=http://www.amamusicagency.ie/wp-content/uploads/Jemson-Green-Bio.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjJAjBC&usg=AFQjCNHlJ94XbLkEFtqR6tpU9jXVGUxlTQ',
'link': '/url?q=http://www.nepadsanbio.org/sites/default/files/Nodes_Business_Plan_Development_Workshop_v1.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjTAjBE&usg=AFQjCNEcvVFREpbJuqKJc0JQx8Jc94c_Xg',
'link': '/url?q=http://www.chisd.com/cms/lib5/TX01917715/Centricity/Domain/409/Barney%2520Cell%2520Analogy%25202016-2017.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjZAjBF&usg=AFQjCNGHBPmw4Fn5t5_PcQfcMo5sUckRpg',
'link': '/url?q=http://www.wsfcs.k12.nc.us/cms/lib/NC01001395/Centricity/Domain/9906/CellAnalogyProjectandRubric.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjeAjBG&usg=AFQjCNH1hmeu3En14dog6Gh3FQ1TTXb54g',
'link': '/url?q=http://old.cyprusrally.com.cy/2014/wp-content/uploads/2014/09/PRESS-RELEASE-SATURDAY-MID-DAY-ENG.docx&sa=U&ved=0ahUKEwiAwO6ciuHQAhUJ9WMKHQ5tAgIQFgjoAjBI&usg=AFQjCNENWWWF8valFindKl6FIh4wyciOCw',
'link': 'http://readgur.com/doc/1773279/interclubs-16-17-version-10-ao-373t.xlsx',
'link': 'http://textlab.io/doc/1805188/metal-oxide-windshield-list-04-03-15.xlsx',
'link': 'http://frdocs.com/doc/1844362/barrages-2015-2016--20160425-.xlsx',
'link': 'http://www.nola.com/photos/t-p/ncaaslideshow/soundslide.txt',
'link': 'http://www.mlive.com/saginawnews/slideshows/todaystakes080514/soundslide.txt?cache=88306',
'link': 'http://www.nytimes.com/packages/images/movies/20070601_BROOKS2_FEATURE/BROOKS22_SSLIDES/publish_to_web/soundslide.txt',
'link': 'http://www55.pair.com/rachelpi/temp/logs.txt',
'link': 'http://www.theage.com.au/multimedia/centuryofpictures/dailylife/soundslide.txt?cache=146',
'link': 'http://media.mgnetwork.com/scp/blog/photogs/soundslides/POW3-9=3-15-09/soundslide.txt?cache=58189',
'link': 'http://pjstarpeoria.com/multimedia/JunePOM/soundslide.txt?cache=9171',
'link': 'http://portfolio.thelevel.org/news/soundslide.txt?cache=69817',
'link': 'http://www.nsf.gov/news/newsmedia/algal_blooms/soundslide.txt?cache=56067',
'link': 'http://sj.farmonline.com.au/files/52/14/02/000021452/publish_to_web/soundslide.txt?cache=717',
'link': 'http://lang.presstelegram.com/flash/2007_10_marathon/everythingelse/soundslide.txt?cache=4340',
'link': 'http://fos.textfiles.com/TORRENTLIST/stpattysgang.torrent.txt',
'link': 'http://media.wickedlocal.com/patriotledger/slideshows/2009/DrawMom/StMarysMoms/soundslide.txt?cache=56067',
'link': 'http://www.cyberhorse.com.au/dcforum/racing/arc_database.txt',
'link': 'http://www.cyberhorse.com.au/dcforum/DCForumID2/Data/288.txt',
'link': 'http://www.racoon.com/dcforum/DCForumID8/arc_database.txt',
'link': 'http://www.cyberhorse.com.au/dcforum/DCForumID6/Data/698.txt',
'link': 'http://svn.onelab.eu/lxc/2016.09.02--f23/testlogs/node.qemu.vnode10.pl.sophia.inria.fr.txt',
'link': 'http://www.podatki.biz/interpretacje/0371983.txt',
'link': 'http://apps.tahoedailytribune.com/photos/corey_rich/soundslide.txt?cache=53797',
'link': 'http://winnersdontquitassociation.com/wp-content/plugins/keywords_with_video/keywords_with_video.txt',
'link': 'http://jesusrave.com/inc/text.txt',
'link': 'http://www.trendy.indygobox.com/sitemap.txt',
'link': 'http://www.dewon.kielce.com.pl/opis_zmian_kw.txt',
'link': 'http://aei.pitt.edu/51245/3/indexcodes.txt',
'link': 'http://www.jma.go.jp/jma/kishou/books/station/station.txt',
'link': 'http://www.sawmill.net/dcforum/DCForumID2/database.txt',
'link': 'http://oa.upm.es/268/9/indexcodes.txt',
'link': 'http://trove.nla.gov.au/newspaper/rendition/nla.news-article1326585.txt',
'link': 'http://fromthereporter.com/galleries/2009/122409_JR09/soundslide.txt?cache=56067',
'link': 'http://www.mwracingnews.com/feed/race_tracks/waynesfield-raceway-park/6724-hicks-henning-hall-schroeder-yoder-see-waynesfield-victory-lane.txt',
'link': 'http://www.microimages.de/ftp/produktinfo/projektionen.txt',
'link': "http://www.premierathome.com/library/Reference/Webster's%201806%20Dictionary.txt",
'link': "http://www.asstr.org/files/Authors/direwolf/katie/Teen%20Katie's%20Diary%202%20The%20Gathering%201%20(DireWolf).txt",
'link': 'http://nebnewspapers.unl.edu/lccn/sn99021999/1913-06-22/ed-1/seq-56/ocr.txt',
'link': 'http://ai.stanford.edu/~bangpeng/download/writing_on_a_book/writing_on_a_book/man_doing_homework/meta.txt',
'link': 'http://www.ics.uci.edu/~newman/nsf/aug27/vocab.propercase.txt',
'link': 'http://a03.blueapple.mobi/base/base3.blueapple.mobi/2015-07/2015-07-30.txt',
'link': 'http://www.lysator.liu.se/nordic/scripts/tracking/engines_2002-09-02.txt',
'link': 'http://www.co.kerr.tx.us/commcrt/minutes/2001%20-%202010/2006/523094.txt',
'link': 'http://stats.powersource.cx/awstats/cgi-bin/awstats062006.eendje.be.txt',
'link': 'http://www.numatrix.com/mp3_goth/servers/data/%7B00332%7D-key.txt',
'link': 'http://www.revolvy.com/sitemap/1.txt',
'link': 'http://www.tlcafrica.com/dcforum/DCForumID1/Data/1692.txt',
'link': 'http://www.ominous-valve.com/airports.txt',
'link': 'http://collections.banq.qc.ca:81/lapresse/src/cahiers/1986/03/19/13/82812_1986031913.txt',
'link': 'http://www.thisweeknews.com/content/flash/2011/11/01/spotlight_on_sports_1104/soundslide.txt?cache=56067',
'link': 'http://faculty.chemeketa.edu/ascholer/cs260/Labs/Lab02/25000AddressesB.txt',
'link': 'http://www.axtellfamily.org/axplaces.txt',
'link': 'http://newbrunswick.archivalweb.com/scans/AppomattoxCL/The%20Hopewell%20News/0105_1976-05-01%20-%201976-08-30/0000472.txt',
'link': 'http://documents.worldbank.org/curated/en/813011468770718834/text/multi0page.txt',
'link': 'http://www.inspiredbythis.com/wp-content/uploads/2014/01/inspiredbythisblog.wordpress.2014-01-024.xml_3.txt',
'link': 'http://lists.osgeo.org/pipermail/postgis-users/2008-September.txt',
'link': 'http://studiostatesboro.statesboroherald.com/2011_eyes_on_community/soundslide.txt?cache=56067',
'link': 'http://www.yaq.com/dir/cache/reference!biography!full-index.htm.txt',
'link': 'http://dinis2.linguateca.pt/acesso/tokens/lemapos.condiv.txt',
'link': 'http://data.giss.nasa.gov/gistemp/stdata/v3.temperature.inv.txt',
'link': 'http://data.giss.nasa.gov/gistemp/station_data_v2/v2.temperature.inv.txt',
'link': 'http://gutenberg.polytechnic.edu.na/1/1/6/4/11642/11642-8.txt',
'link': 'http://mail.kppm.cz/pipermail/konference.kppm.cz/2004-August.txt',
'link': 'http://www.redandwhitecatering.com/awstats/data/awstats042015.redandwhitecatering.com.txt',
'link': 'http://oregonnews.uoregon.edu/lccn/sn96061150/1887-08-23/ed-1/seq-3/ocr.txt',
'link': 'http://lists.herald.co.uk/pipermail/lois-bujold/2007-May.txt',
'link': 'http://www.sts98.com/huangguan/20150430/69315/4788/org/go.txt',
'link': 'http://www.mathcs.emory.edu/~cheung/Courses/171/CS171-2012-Li/share/book/UPC.csv',
'link': 'http://www.gminazorawina.pl/sites/default/files/news/files/ulotka_0.pdf',
'link': 'http://www.rlstevenson.net/ourpages/auto/2013/3/23/56635256/Judge%20throws%20out%20Walker_s%20union%20bargaining%20law.pdf',
'link': 'http://supremalex.pl/files/File/audyt/e-Analizator.pdf',
'link': 'http://www.google.ca/url?url=http://enforcement.trade.gov/frn/2010/1011frn/2010-27890.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFggnMAQ&usg=AFQjCNFxebHYGVojdvqwc69C1Rl4rBmbYw',
'link': 'http://www.google.ca/url?url=http://enforcement.trade.gov/frn/summary/germany/01-1382-1.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFggtMAU&usg=AFQjCNEmOLhCGqe_5X5hv9z-JJsXwRAIEQ',
'link': 'http://www.google.ca/url?url=http://documents.worldbank.org/curated/en/622421467990359987/text/521650BRI0AEI01ive0Workshop0Session.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFggyMAY&usg=AFQjCNE25h-fR3LrMdAo4pw0XYZDtPVP4w',
'link': 'http://www.google.ca/url?url=http://documents.worldbank.org/curated/en/249571468137729475/text/333540SSNPrimerNote4.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgg3MAc&usg=AFQjCNGPOsWWXXNDodkvpZFbNTw9mJX1lw',
'link': 'http://www.google.ca/url?url=http://www.worksupport.com/documents/subsidybrief.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgg8MAg&usg=AFQjCNGVgsoC3mVIFT8ygFFsIKpcii8AOg',
'link': 'http://www.google.ca/url?url=http://www.uscg.mil/announcements/alcoast/493-13_ALCOAST.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghBMAk&usg=AFQjCNHYbxNZIl6ybENKDnlZ0PazYXa_3Q',
'link': 'http://www.google.ca/url?url=http://www.uscg.mil/announcements/alcoast/461-12_alcoast.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghHMAo&usg=AFQjCNGUwBron10PlC0WnOmGa_Ams7rwWA',
'link': 'http://www.google.ca/url?url=http://documents.banquemondiale.org/curated/fr/472431468005686051/text/435590v30P0961990Box367922B00PUBLIC0.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghTMA0&usg=AFQjCNG75Lv4wgSZQLCoiU2kpLIZZbANyw',
'link': 'http://www.google.ca/url?url=http://ia.ita.doc.gov/frn/2007/0703frn/E7-5869.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghYMA4&usg=AFQjCNH9K-nt19APa_wq1_T72L64tyxvpA',
'link': 'http://www.google.ca/url?url=http://documentos.bancomundial.org/curated/es/326401468770067765/text/ISR0Disclosabl010201201339337121480.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghdMA8&usg=AFQjCNFs-Ol33Gg-ALaEDIPoXkRRfOPshQ',
'link': 'http://www.google.ca/url?url=http://www.amara.org/en/subtitles/9frtuHxGM6Jh/en/1/download/Subsidies.en.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghnMBE&usg=AFQjCNG8QblArO3n58WEDZgGd7GI10DAYg',
'link': 'http://www.google.ca/url?url=http://www.gsbca.gsa.gov/relo/r1482505.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghpMBI&usg=AFQjCNGVD1qZLCxvbgmamhueTwENEgLjqQ',
'link': 'http://www.google.ca/url?url=http://www.finaid.org/educators/2007subsidycuts.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFghzMBQ&usg=AFQjCNFcnREBU2OgaqfFIgw15_YYlb-T7g',
'link': 'http://www.google.ca/url?url=http://www.disasterhousing.gov/offices/adm/hudclips/notices/acg/96-3.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgh5MBU&usg=AFQjCNEnGuc7N0PRPoPcW7uYxIZFeV8t-A',
'link': 'http://www.google.ca/url?url=http://www.suny.edu/SUTEC/docs/StudentTeacher%2520Candidates1.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgh-MBY&usg=AFQjCNHYyS8gnOLd72e8I4ncmyPRFJ2_sA',
'link': 'http://www.google.ca/url?url=http://administrative.sanfranciscocode.org/48/48.1.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiEATAX&usg=AFQjCNG1VpTi97qa0QWQfs-tEs1SjrE8Gg',
'link': 'http://www.google.ca/url?url=http://courses.wcupa.edu/rbove/eco338/040Trade-debt/Commodities/040428cotton2.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiJATAY&usg=AFQjCNGRqT_6S1YhqR1qEsiuij0N9_w-1g',
'link': 'http://www.google.ca/url?url=http://www.bcrnews.com/2008/05/10/new-rental-subsidy-program-is-awarded/aqriqsz/doc4824f8bc5dda5702236052.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiUATAa&usg=AFQjCNFvWLJydd7OqB3SlpuYM1oymmPRig',
'link': 'http://www.google.ca/url?url=http://www.tei-c.org/Vault/SC/teib06.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgidATAc&usg=AFQjCNE39mXKrc1ndw4vi2ZqFX8DGLD88Q',
'link': 'http://www.google.ca/url?url=http://brittlebooks.library.illinois.edu/brittlebooks_open/books2008-08/greabr0001inqass/greabr0001inqassv00005/greabr0001inqassv00005_ocr.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgioATAe&usg=AFQjCNFBh_h6J1cYgFmvnFAAM3ExaR3gRw',
'link': 'http://www.google.ca/url?url=http://www.mainlinemedianews.com/articles/2011/02/16/main_line_times/news/doc4d5bcf9780949115885265.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiqATAf&usg=AFQjCNFYXX4k60MJ7Rs0z-fWs1VzibemDA',
'link': 'http://www.google.ca/url?url=http://corporatewelfare.org/articles/welfare/time-cw.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgi7ATAi&usg=AFQjCNHGKv4IxOmQX9QhU93npVKKMhT9ag',
'link': 'http://www.google.ca/url?url=http://tamuweb.tamu.edu/faculty/gawande/Quizzes/Ch8.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjBATAj&usg=AFQjCNGFilszXHyYyb84NX3Wf2_LzdCsZg',
'link': 'http://www.google.ca/url?url=http://econ.ucsb.edu/~tedb/Courses/Ec1S2001/TFQuiz3.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjOATAm&usg=AFQjCNGFip5RIncSt3iJ_47m55QYwv9OZA',
'link': 'http://www.google.ca/url?url=http://www.daily-chronicle.com/2001/09/10/farm-aid-subsidies-go-to-few-of-nations-farm-owners/aqriqsz/export6485.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjdATAp&usg=AFQjCNGI2wUFrfhteswJ1QO6gizS_z9Z0w',
'link': 'http://www.google.ca/url?url=http://mail.sarai.net/pipermail/reader-list_mail.sarai.net/2006-October.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjpATAr&usg=AFQjCNFcKF8aizuM7hkl_4cpdwYDDPmTCg',
'link': 'http://www.google.ca/url?url=http://www.thenewsherald.com/articles/2016/05/31/news/doc574db8afa3351649353559.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjvATAs&usg=AFQjCNHUzBMTl_XFxdbMyzwBnSYF3S_xaw',
'link': 'http://www.google.ca/url?url=http://www.montgomerynews.com/articles/2011/01/27/souderton_independent/news/doc4d3df7c40d0d5695579804.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgj1ATAt&usg=AFQjCNGH3PQnntJ2X1le57BaaONbj_w4Dg',
'link': 'http://www.google.ca/url?url=http://www.edi.cornell.edu/publications/PPBriefs/PP_5.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiLAjAx&usg=AFQjCNE6NdJJgqUj-3nbdJ3_iljiw40sEA',
'link': 'http://www.google.ca/url?url=http://web.mit.edu/cron/project/uncertainty/Dowd_Data/Baum_Snow/boston-history.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiRAjAy&usg=AFQjCNG7Wd_B2jXni6TiC8iMaZufXWlu0A',
'link': 'http://www.google.ca/url?url=http://www.journalstar.com/articles/2005/08/23/editorial_main/doc430a72463c208780654902.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiXAjAz&usg=AFQjCNFQJ3ERInRw3fZzBBo3sQuHq2N5Og',
'link': 'http://www.google.ca/url?url=http://www.theindependent.com/articles/2011/03/30/opinions/columnists/robert_pore/doc4d937413695ad513918377.txt%3Futm_source%3Dtwitterfeed%26utm_medium%3Dtwitter&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgidAjA0&usg=AFQjCNGSdEtuYhdHLGE-UiomZFlSHcCekw',
'link': 'http://www.google.ca/url?url=http://cancerunion.org/files/UACT-Froman-dasatinib.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgigAjA1&usg=AFQjCNFM-5BlngsSmFWtkhENw8I6TQ3UfA',
'link': 'http://www.google.ca/url?url=http://www.newhavenregister.com/articles/2010/07/20/news/new_haven/doc4c450eb715573402336092.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFginAjA2&usg=AFQjCNFmu_hB7nVAmIEJMIOikOf-nbOpWw',
'link': 'http://www.google.ca/url?url=http://www2.ca3.uscourts.gov/opinarch/993775.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiuAjA3&usg=AFQjCNFFSlOU10jJY-F1UcP4cw0gJbMjhw',
'link': 'http://www.google.ca/url?url=http://www.yankton.net/articles/2010/03/20/news/doc4ba45f190c93c428176174.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgi1AjA4&usg=AFQjCNEZQmv1qHB13PeCbbPeVVA1OhncxA',
'link': 'http://www.google.ca/url?url=http://www.tdn.com/articles/2007/07/24/biz/news02.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgi9AjA6&usg=AFQjCNF1OYGf4U_yThrxZd4KOHL47z0Qbw',
'link': 'http://www.google.ca/url?url=http://www.siouxcityjournal.com/articles/2007/06/28/news/latest_news/67b87ec09fe8bc31862573080012ed6a.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjDAjA7&usg=AFQjCNHrvh80zIdbkcVRauqUhbwX3GF8_g',
'link': 'http://www.google.ca/url?url=http://www.ennaharonline.com/en/economy/12957.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjTAjA-&usg=AFQjCNEkl0ePDNhOnrtcp6HuiBN5YgAxIQ',
'link': 'http://www.google.ca/url?url=http://www.irp.wisc.edu/publications/focus/textver/17.2.a/edin.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjcAjBA&usg=AFQjCNEoNGF1kGCGAhkhpkWErvv-38Zvhg',
'link': 'http://www.google.ca/url?url=http://www.mass.gov/eohhs/docs/masshealth/bull-2013/all-240.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjiAjBB&usg=AFQjCNF1D2flx3kojapyPGqXFqBXi8DMdQ',
'link': 'http://www.google.ca/url?url=http://aman-alliance.org/mednews/F2/12/Lusa%2520-%2520Business%2520News%2520-%2520Angola%2520Fuel%2520subsidies%2520cost%2520almost%2520EURO%25202%2520billion.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjoAjBC&usg=AFQjCNEhVRaGelGHKdZUTgOuXEU5tUh7WA',
'link': 'http://www.google.ca/url?url=http://education.eserver.org/employer-sponsored-training.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgjqAjBD&usg=AFQjCNEPvDJ40olUwLi4LlI6L_uSTBDKEg',
'link': 'http://www.google.ca/url?url=http://www.pressandguide.com/articles/2011/08/29/opinion/doc4e53da8880f43434351666.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiGAzBI&usg=AFQjCNGN-lnOkXjQovIATy2Qt-uVfgSAMQ',
'link': 'http://www.google.ca/url?url=http://www.census.gov/govs/fedfin/94federl.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiMAzBJ&usg=AFQjCNHbMjV2mxRKkhVcIB2DkIi4y_A45A',
'link': 'http://www.google.ca/url?url=http://download.gridcoin.us/download/guiminer_scrypt_alpha.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiRAzBK&usg=AFQjCNHlmYl9VTZgyZiyGqw69UOZNPWmNQ',
'link': 'http://www.google.ca/url?url=http://de.idec2005.org/data.dl/newsletter_03_en.txt&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwj1gN6siuHQAhVJxWMKHULRDrAQFgiWAzBL&usg=AFQjCNFzjkv-2RQe_93c8BCvKQ9Vy73xVQ',
'link': 'http://www.transparency.ri.gov/awards/awardsummary.csv',
'link': 'http://www.glsc.usgs.gov/publications/1991/br_spot.csv?field_publication_year_value=1&page=4',
'link': 'http://www.mpha.org/page/14/associations/9746/files/Medicare/Pharmacy%20Technical%20Contact%20Inforamtion%20by%20Contract%20ID.csv',
'link': 'http://unitythunder.org/Football/FlagRegistrations_2012.csv',
'link': 'http://reporting.sunlightfoundation.com/lobbying/firm/friedlander-group.csv',
'link': 'http://www.iconomical.com/svnrepos/wdmmg/trunk/data/PESA%20tables/chapter5/5.3-Table%201.csv',
'link': 'http://ec.europa.eu/agriculture/rica/database/help/infometa.csv',
'link': 'http://www.nature.com/ncomms/2016/160906/ncomms12793/extref/ncomms12793-s4.csv',
'link': 'http://www.foodsecurityportal.org/api/countries/inflation.csv?order=__num_1984&sort=asc',
'link': 'http://www.machs.mshp.dps.mo.gov/MSHPWeb/PatrolDivisions/CRID/ChargeCodeCSV2016-1-12.csv',
'link': 'http://online.realag.spb.ru/upload/analyze.csv',
'link': 'http://www.donaldgooch.com/CFR_ALLDATA_CORRECTED6.csv',
'link': 'http://www.nj.gov/transparency/revenue/data/rev_multi_year.csv',
'link': 'http://www.communityfutures.com/cms/fileadmin/Documents/Books.csv',
'link': 'http://www.torbay.gov.uk/torbayover500-0414.csv',
'link': 'http://max.nzfsa.govt.nz/statistics/forestry/annual/nzstats2000/fsection/f16.csv',
'link': 'http://data.gov.ru/opendata/asfas/data-20140820T0800-structure-20140820T0800.csv?query=&page=85&sort=field_dataset_standard&order=desc&language=en',
'link': 'http://www.state.nj.us/transparency/revenue/data/revenue_mfy_rawdata.csv',
'link': 'http://new.surreycc.gov.uk/__data/assets/file/0007/34378/1415-Q2-Procurement-information-above-5000-Final-Reviewed.csv',
'link': 'http://data.okfn.org/data/os-data/os-gb-gov-cra/r/pogs.csv',
'link': 'http://flash.lakeheadu.ca/~maislam/Data/health/29-06-2012_01-53-54_new-york--usa_health.csv',
'link': 'http://www.data.gov/media/2013/10/data_export/GSA.csv',
'link': 'http://www.tor-bay-harbour.co.uk/over500-022013.csv',
'link': 'http://www.tor-bay-harbour.co.uk/external_torbay_over_500_2010_05.csv',
'link': 'http://journal.sjdm.org/14/14517/data.csv',
'link': 'http://faculty.washington.edu/jwilker/559/Notebooks/FOMC0508b.csv',
'link': 'http://webapp1.dlib.indiana.edu/virtual_disk_library/index.cgi/4255049/FID1879/sheets/db/receipts.csv',
'link': 'http://www.durham.ca/departments/social/childcare/FeeSubsidyParentHandbook.pdf',
'link': 'http://2015.newclimateeconomy.report/wp-content/uploads/2015/11/Fossil-fuel-subsidy-reform_from-rhetoric-to-reality.pdf',
'link': 'http://www.sunstar.com.ph/cebu/local-news/2016/05/10/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Afalse,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%5B%7B%22is_hds%22%3Afalse,%22video_id%22%3A%2210154112412533396%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/scontent-atl3-1.xx.fbcdn.net%5C/v%5C/t42.1790-29%5C/13205467_1190724560947262_767469794_n.mp4?page=1173',
'link': 'http://www.sunstar.com.ph/pampanga/local-news/2015/10/14/mikey-arroyo-files-coc-mom-435777/media/sample.mp4?page=25',
'link': 'http://www.pcrm.org/nbBlog/index.php/2015/04/page/www.pcrm.org/www.pcrm.org/%7B%22auto_hd%22%3Afalse,%22autoplay_reason%22%3A%22unknown%22,%22default_hd%22%3Atrue,%22disable_native_controls%22%3Atrue,%22inline_player%22%3Afalse,%22pixel_ratio%22%3A1,%22preload%22%3Afalse,%22start_muted%22%3Afalse,%22rtmp_stage_video%22%3Atrue,%22rtmp_buffer%22%3Afalse,%22rtmp_buffer_time%22%3A0,%22rtmp_buffer_time_max%22%3A0,%22video_data%22%3A%7B%22progressive%22%3A%7B%22is_hds%22%3Afalse,%22video_id%22%3A%2210154534032418487%22,%22is_live_stream%22%3Afalse,%22rotation%22%3A0,%22sd_src_no_ratelimit%22%3A%22https%3A%5C/%5C/video-atl3-1.xx.fbcdn.net%5C/v%5C/t42.1790-2%5C/14149875_672685709549379_1519161133_n.mp4?page=13',
'link': 'http://krist.blog.is/blog/krist/%7B%22auto_hd%22:false,%22autoplay_reason%22:%22unknown%22,%22default_hd%22:true,%22disable_native_controls%22:true,%22inline_player%22:false,%22pixel_ratio%22:1,%22preload%22:false,%22start_muted%22:false,%22rtmp_stage_video%22:true,%22rtmp_buffer%22:false,%22rtmp_buffer_time%22:0,%22rtmp_buffer_time_max%22:0,%22video_data%22:%7B%22progressive%22:%5B%7B%22is_hds%22:false,%22video_id%22:%221031360440342550%22,%22is_live_stream%22:false,%22rotation%22:0,%22sd_src_no_ratelimit%22:%22https:%5C/%5C/video-atl3-1.xx.fbcdn.net%5C/v%5C/t42.1790-2%5C/13211224_1709949895942052_886649627_n.mp4?offset=732',
'link': 'http://gthg.blog.is/blog/gthg/%7B%22autoplay%22:false,%22auto_hd%22:false,%22autoplay_reason%22:%22unknown%22,%22autoplay_setting%22:null,%22autorewind%22:true,%22default_hd%22:false,%22dtsg%22:%22AQG4eTGUs8fe%22,%22inline_player%22:false,%22lsd%22:%22AVqmdsj-%22,%22min_progress_update%22:300,%22pixel_ratio%22:1,%22player_origin%22:%22unknown%22,%22preload%22:false,%22source%22:%22embedded%22,%22start_index%22:0,%22start_muted%22:false,%22stream_type%22:%22stream%22,%22use_spotlight%22:false,%22video_data%22:%5B%7B%22hd_src%22:%22https:%5C/%5C/fbcdn-video-m-a.akamaihd.net%5C/hvideo-ak-xfp1%5C/v%5C/t43.1792-2%5C/769102_4974557174402_16677_n.mp4?offset=270',
'link': 'http://krist.blog.is/blog/krist/%7B%22auto_hd%22:false,%22autoplay_reason%22:%22unknown%22,%22default_hd%22:true,%22disable_native_controls%22:true,%22inline_player%22:false,%22pixel_ratio%22:1,%22preload%22:false,%22start_muted%22:false,%22rtmp_stage_video%22:true,%22rtmp_buffer%22:false,%22rtmp_buffer_time%22:0,%22rtmp_buffer_time_max%22:0,%22video_data%22:%7B%22progressive%22:%7B%22is_hds%22:false,%22video_id%22:%221031360440342550%22,%22is_live_stream%22:false,%22rotation%22:0,%22sd_src_no_ratelimit%22:%22https:%5C/%5C/video-ams3-1.xx.fbcdn.net%5C/v%5C/t42.1790-2%5C/13211224_1709949895942052_886649627_n.mp4?offset=720',
'link': 'http://en.wikipedia.org/wiki/File:State_of_the_Union_Address_(January_27,_2010)_Barack_Obama.ogg',
'link': 'http://www.componentsandparts.com/Southeast-/New-china-biomass-com-re-able-bio-fuel-bio-mass-energy.idx',
'link': 'http://www.blather.net/search/Index.idx',
'link': 'http://www.telecom.tuc.gr/~iosife/downloads/lex_resources/network.vocab.idx',
'link': 'http://tiachopxanh.mobie.in/files/tudienanhvietnew.idx',
'link': 'http://subsidy.wikia.com/wiki/File:Snow_Boading.png',
'link': 'http://esim.wikia.com/wiki/File:Alliance.png',
'link': 'http://esim.wikia.com/wiki/File:Hahaha2323232.png',
'link': 'http://uncyclopedia.wikia.com/wiki/File:Chewing.gif',
'link': 'http://esim.wikia.com/wiki/File:Fl_kanada.gif',
'link': 'http://esim.wikia.com/wiki/File:Fernando_pessoa.gif',
'link': 'http://esim.wikia.com/wiki/File:Subsidy.jpg',
'link': 'http://media.loyolapress.com/assets/games/col2009/STS_Gr6_Unit3.txt',
'link': 'http://www.cobal.org/cgi-bin/cobal-log/http---www.cobal.org-sigilkitty-library.html_refer.txt',
'link': 'http://ultimacodex.com/archive/ftp/text/walk/mdwalk.txt',
'link': 'http://www.rocktime.org/stats/awstats122012.www.rocktime.org.txt',
'link': 'http://extras.marinij.com/multimedia/nmij1120brvall/soundslide.txt?cache=56067',
'link': 'http://www.smh.com.au/multimedia/2007/national/murray-hartin-rain-from-nowhere/soundslide.txt?cache=56067',
'link': 'http://www.smh.com.au/multimedia/2008/national/100-years-of-herald-photography/slideshow01/soundslide.txt?cache=56067',
'link': 'http://www.racoon.com/dcforum/news/Data/1205.txt',
'link': 'http://static.mgnetwork.com/rdc/slideshows/2009freecomicbookday/soundslide.txt?cache=48052',
'link': "http://www.premierathome.com/library/Reference/Webster's%201806%20Dictionary.txt",
'link': 'http://nebnewspapers.unl.edu/lccn/sn95069780/1908-10-22/ed-1/seq-7/ocr.txt',
'link': 'http://www.americamagazine.org/content/slideshows/arssacra/soundslide.txt?cache=56067',
'link': 'http://mailman.anu.edu.au/pipermail/link/2010-February.txt',
'link': 'http://www.grahamkendall.org/HP48-49/D-119.txt',
'link': 'http://sphinxsearch.com/snapshots/dict-en.txt',
'link': 'http://www.lysator.liu.se/~tomca/genesis/My%20files/Herbs.txt',
'link': 'http://eremita.di.uminho.pt/gutenberg/1/3/3/7/13376/13376.txt',
'link': 'http://saturniancosmology.org/files/exodus/exodus.html.txt',
'link': 'http://monstermuleys.info/dcforum/DCForumID5/arc_database.txt',
'link': 'http://startrekfreedom.com/fleet/compiles/STA%202.txt',
'link': 'http://archive-web.org/download/jstor-4548924/4548924_djvu.txt',
'link': 'http://www.ics.uci.edu/~newman/nsf/aug27/vocab.propercase.txt',
'link': 'http://www.tlcafrica.com/dcforum/DCForumID1/Data/7108.txt',
'link': 'http://newbrunswick.archivalweb.com/scans/AppomattoxCL/The%20Hopewell%20News/0082_1970-01-01%20-%201970-03-30/0000208.txt',
'link': 'http://molbiol.ru/forums/uploads/lit/Oski_s_Pediatrics_Principles_and_Practice_ed3.txt',
'link': 'http://gutenberg.polytechnic.edu.na/1/6/5/9/16594/16594.txt',
'link': 'http://www.potatobugs.com/cgi-bin/dcforum/interfuel/subscription.txt',
'link': 'http://aei.pitt.edu/47996/3/indexcodes.txt',
'link': 'http://www.mirrorservice.org/sites/ftp.ibiblio.org/pub/docs/books/gutenberg/6/6/0/6603/6603.txt',
'link': 'http://www.northcravenheritage.org.uk/NCHT/RoyPriceArchive/ARTICLES&BOOKS/landandfamily.txt',
'link': 'http://overproof.projectcomputing.com/datasets/dataset1/rawTextAndHumanCorrectionPairs/smh1904.txt',
'link': 'http://libsysdigi.library.uiuc.edu/oca/Books2007-10/chicagodailynews/chicagodailynews1908chic/chicagodailynews1908chic_djvu.txt',
'link': 'http://libsysdigi.library.illinois.edu/ilharvest/Africana/Books2011-05/3064634/3064634_1931/3064634_1931_ocr.txt',
'link': 'http://brittlebooks.library.illinois.edu/brittlebooks_open/Books2009-01/wilkwi0001rispro/wilkwi0001rispro_ocr.txt',
'link': 'http://gh.ffshrine.org/hurrah.txt',
'link': 'http://www.supercheats.com/xbox360/walkthroughs/assassinscreed4blackflag-walkthrough01.txt',
'link': 'http://www.under-score.org.uk/pipermail/underscore/2014-July.txt',
'link': 'http://www.cjoint.com/15mi/EEbnnSJRUau_zhpdiag.txt',
'link': 'http://is.muni.cz/th/401887/pedf_b/Royal_Wedding_Protocol_and_Etiquette_-30.3..txt',
'link': 'http://img.atwikiimg.com/www24.atwiki.jp/morrowind/attach/118/257/Morrowind_%E3%82%AF%E3%82%A8%E3%82%B9%E3%83%88%E9%9B%86(%E4%B8%80%E9%83%A8).txt',
'link': 'http://www.numatrix.com/mp3_goth/servers/data/%7B00332%7D-key.txt',
'link': 'http://www.numatrix.com/mp3_goth/servers/data/%7B00350%7D-key.txt',
'link': 'http://lists.spc.int/pipermail/poetcom/2013-July.txt',
'link': 'http://skyrim.nexusmods.com/mods/110/readmes/T3nd0s%20Skyrim%20Redone_readme.txt',
'link': 'http://www.worldofradio.com/dxld5083.txt',
'link': 'http://www.cheapcharlies.slowboat.org/awstats/data/awstats072015.cheapcharlies.slowboat.org.txt',
'link': 'http://www.middleeast.org/launch/redirect/9309.txt',
'link': 'http://scholar.sun.ac.za/bitstream/10019.1/5159/3/ndlovu_examination_2010+.pdf.txt',
'link': 'http://ota.ox.ac.uk/text/5469.txt',
'link': 'http://www.humanities.manchester.ac.uk/medialibrary/llc/files/ARCHER/wordlist_3-2.txt',
'link': 'http://epc.buffalo.edu/poetics/archive/logs/txt/1999_08.txt',
'link': 'http://open.bu.edu/bitstream/handle/2144/1048/modernreligiousm025064mbp.txt?seque..',
'link': 'http://uir.unisa.ac.za/bitstream/handle/10500/5966/thesis_cripps_e.pdf.txt?sequence=3',
'link': 'http://zephyrz.net/wp-content/uploads/2016/11/ZEPHYRZ-VOL-1.txt',
'link': 'http://www.shemesh.co.il/pipermail/list/2015-October.txt',
'link': 'http://two.pairlist.net/pipermail/cbi-main/2008.txt',
'link': 'http://a03.blueapple.mobi/base/base18.blueapple.mobi/2015-01/2015-01-13.txt',
'link': 'http://www.ladysbase.com/stream/BibleDictionary.williamSmithEditor.HackettAbbotFullerEtc.American/06.DictionaryBible.AntiqBiogGeogNatHist.v2p2.E..J.SirWillSmith.Fuller.2nd.1893_djvu.txt',
'link': 'http://ac.els-cdn.com/S1743919105000890/1-s2.0-S1743919105000890-main.pdf?_tid=fb5b863e-3195-11e4-8adb-00000aab0f01&acdnat=1409548276_d7da9749405853e0458da05bfbb93412',
'link': "http://futuredirections.org.au/wp-content/uploads/2011/10/Workshop%20Report%20-%20India's%20Strategic%20Objectives%20in%20the%20Indian%20Ocean%20Region.pdf",
'link': 'http://www.eisenkraftcpa.com/articles/How%20to%20Survive%20and%20Prosper%20...pdf',
'link': 'http://www.tandfonline.com/doi/pdf/10.1080/00138387008597388',
'link': 'http://www.dtic.mil/dtic/tr/fulltext/u2/753289.pdf',
'link': 'http://catholicsaintrelics.com/media/Saint$20bio$27s$20and$20relic$20pictures.pdf',
'link': "http://flightrising.wikia.com/wiki/File:Death's-Head_Stag.png",
'link': "http://reign.wikia.com/wiki/File:Louis-and-Elizabeth's-Wedding.gif",
'link': "http://twobestfriendsplay.wikia.com/wiki/File:Five_Nights_at_Freddy's.jpg",
'link': 'http://minhateca.com.br/luiz_ef/Documentos/BIBLIOTECA+MICHEL+06-2014/ebook+ingles/dicionarios-incicloperida+ingles/THE+INTERPRETER*27S+BIBLE+DICTIONARY/THE+INTERPRETER*27S+BIBLE+DICTIONARY+A-F,63990871.docx',
'link': 'http://chomikuj.pl/sigebryht/Dokumenty/SCIENCE/Richard+Dawkins/2003+A+Devil*27s+Chaplain/Richard+Dawkins-+A+Devil*27s+Chaplin+Chap+3+Sect2a,5107577942.docx',
'link': 'http://beta.images.theglobeandmail.com/static/national/cityvotesford/soundslide.txt?cache=56067',
'link': 'http://www.torinboyd.com/Galleries_recent/Japanese_elections/soundslide.txt?cache=18222',
'link': 'http://www.baylor.edu/baylorproud/galleries/victory_integrity_celebrate/soundslide.txt?cache=56067',
'link': 'http://graphics8.nytimes.com/interactive/2008/10/26/weekinreview/20081026_WINTER_MULTIMEDIA/chapter01/soundslide.txt',
'link': 'http://gaia.adage.com/images/random/0610/starch0610/soundslide.txt?cache=56067',
'link': 'http://www.npr.org/blogs/sundaysoapbox/2009/05/evinprison/soundslide.txt?cache=67363',
'link': 'http://external.bangordailynews.com/galleries/hillary/soundslide.txt?cache=36910',
'link': 'http://www.uni.edu/fabos/thc/pdprojects/1888a/soundslide.txt?cache=56067',
'link': 'http://www.grove-marketing.com/cd/gallery03.txt',
'link': 'http://www.enoughproject.org/files/slideshow/union-station/soundslide.txt?cache=88353',
'link': 'http://www.grove-marketing.com/cd/gallery01.txt',
'link': 'http://www.tampabay.com/specials/2008/audio_slideshows/FloridaElnAnalysis/soundslide.txt?cache=94838',
'link': 'http://www.tampabay.com/specials/2009/photo_galleries/2009_election/soundslide.txt?cache=3829',
'link': 'http://onlineathens.com/multimedia/news/07ortega/ortega_slideshow/soundslide.txt',
'link': 'http://jonathanlyons.com/portfolio/support/definitions.txt',
'link': 'http://www.tmonique.com/content/home.txt',
'link': 'http://www.zenfinancial.com/rightNav.txt',
'link': 'http://cache.boston.com/politics/campaign2008/clinton_interview/soundslide/soundslide.txt?cache=48375',
'link': 'http://www.smh.com.au/multimedia/thorpe/soundslide.txt',
'link': 'http://stlouisreview.com/sites/default/files/soundslides/2010-40days/soundslide.txt?cache=56067',
'link': 'http://www.carolinaphotojournalism.org/Election/2008/soundslides/4/soundslide.txt?cache=56067',
'link': 'http://www.rep-am.com/slideshows/111507_4/soundslide.txt?cache=56067',
'link': 'http://www.joelpage.com/Portfolio/soundslide.txt?cache=41653',
'link': 'http://www.roadhockey.net/111009/soundslide.txt?cache=56067',
'link': 'http://mayorwashington.com/harold/soundslide.txt?cache=8274',
'link': 'http://e.eltiempo.com/media/produccion/anna_kournikova/soundslide.txt?cache=20905',
'link': 'http://www.salsen.com/work/info.txt',
'link': 'http://www.post-gazette.com/slides/OCONNOR_OBIT_SS_0830/soundslide.txt',
'link': 'http://www3.allaroundphilly.com/timesherald/slideshow/pres51508/soundslide.txt?cache=87841',
'link': 'http://www.24.com/news/2009/soundslides/Elections/call_for_election_posters/soundslide.txt?cache=56067',
'link': 'http://www.politico.com/audioslideshows/electioncollection/soundslide.txt?cache=56067',
'link': 'http://www.singsinthetimber.com/slideshows/rb_presidential_election/soundslide.txt?cache=56067',
'link': 'http://extras.marinij.com/multimedia/nmij1103election/soundslide.txt?cache=56067',
'link': 'http://www.theage.com.au/multimedia/2007/national/steve-bracks-quits/soundslide.txt?cache=56067',
'link': 'http://www.michaeltregan.com/slideshows/electionday08/soundslide.txt?cache=27953',
'link': 'http://www.wildwoodcreative.co.uk/portfolio_data/portfolio_text/portfolio_text.txt',
'link': 'http://www.blueskycreative.com/gallery03.txt',
'link': 'http://www.eyrie.net/Forum-docs/DCForumID5/Data/179.txt',
'link': 'http://rauchdesigns.com/portfolio022.txt',
'link': 'http://idahoptv.org/elections/2008/soundslide/soundslide.txt?cache=10448',
'link': 'http://richmondbizsense.com/static/cursed/cursed/soundslide.txt',
'link': 'http://www.preservationnation.org/magazine/2008/march-april/audio-slideshow/soundslide.txt',
'link': 'http://www.fao.org/english/newsroom/photos/en_red_locust_gallery/soundslide.txt?cache=88957',
'link': 'http://rotter.net/forum/kafe/Data/21479.txt',
'link': 'http://publicsource.org/sites/default/files/video/women-in-politics/soundslide.txt?cache=56067',
'link': 'http://boards.law.af.mil/ARMY/BCMR/CY2009/20090018802.txt',
'link': 'http://designandtime.com/vf/imgs/content.txt',
'link': 'http://www.emory.edu/EMORY_REPORT/_docs/slideshows/july_2010/soundslide.txt?cache=56067',
'link': 'http://www.billgood.com/daughterscampaign/presentation/data/t91.txt',
'link': 'http://cdn.mg.co.za/multimedia/slideshows/2011/06/09/ANCYL_conf_Maile/soundslide.txt?cache=56067',
'link': 'http://slideshows.metroland.com/BUR_EARTHDAY2008/soundslide.txt?cache=1418',
'link': 'http://www.spitfirehiphop.com/wp-content/uploads/essb_cache/395c7f2f5287fd30afdfb94148a31591_cache.txt',
'link': 'http://multimedia.timeslive.co.za/photostory/080109anc_bday1/soundslide.txt?cache=29928',
'link': 'http://www.brandingcampaign.net/dynamic_text/our_services.txt',
'link': 'http://seattletimes.com/audio/news/sports/openingday/soundslide.txt?cache=48375',
'link': 'http://www.supercheats.com/playstation2/walkthroughs/acecombatzerothebelkanwar-walkthrough06.txt',
'link': 'http://asiasociety.org/files/story/multimedia/valentines_day_2011/soundslide.txt?cache=56067',
'link': 'http://cnsmaryland.org/slideshows/trayvonhoodie/soundslide.txt?cache=56067',
'link': 'http://www.santacruzlive.com/slideshows/clinton08/soundslide.txt?cache=56067',
'link': 'http://ebooks.library.cornell.edu/m/moawar/text/waro0013.txt',
'link': 'http://hosted.ap.org/specials/interactives/_national/depth_chicago_reax/project/soundslide.txt?cache=14551',
'link': 'http://media.theaustralian.com.au/multimedia/2009/09/04-kelly/soundslide.txt?cache=505',
'link': 'http://nwitimes.com/app/multimedia/slideshows/photosoftheyear2008/soundslide.txt?cache=56067',
'link': 'http://www.jsu.edu/news/yip09/soundslide.txt?cache=56067',
'link': 'http://www.stockinjectionplan.org/mccain/soundslide.txt?cache=11827',
'link': 'http://www.magicvalley.com/app/slideshows/2010/10/week_in_photos_1018/soundslide.txt?cache=56067',
'link': 'http://www.nccah-ccnsa.ca/media/soundslider/about_us5_publish_to_web/soundslide.txt?cache=56067',
'link': 'http://www.ipsnews.net/slideshows/angola/soundslide.txt',
'link': 'http://winnersdontquitassociation.com/wp-content/plugins/keywords_with_video/keywords_with_video.txt',
'link': 'http://ids.snu.ac.kr/w/images/1/15/Wiki.csv',
'link': 'http://archaeologydataservice.ac.uk/catalogue/adsdata/arch-282-7/dissemination/csv/VA_Dend_2015Update/Ind_full.csv',
'link': 'http://pages.cs.wisc.edu/~rashmi/condor_src/url_map.csv',
'link': 'http://www.cs.tut.fi/~tikas/arkisto/harjoitustyo2002/_osa_4/_populointi4/tuotelista.csv',
'link': 'http://www.mathcs.emory.edu/~cheung/Courses/171/CS171-2012-Li/share/book/UPC.csv',
'link': "http://www.extension.purdue.edu/ecd/unlocking%20purdue's%20treasures%201.10.05.pdf",
'link': 'http://counterstrike.wikia.com/wiki/File:Csgo-op_bloodhound_turner_shame.ogg',
'link': 'http://ensemble-stars.wikia.com/wiki/File:Ensemble_Stars_Radio_04-27-15_part_1.ogg',
'link': 'http://callofduty.wikia.com/wiki/File:Rnixon_MeetReznov_Sound_BO.ogg',
'link': 'http://www.va.gov/vetapp10/files2/1016211.txt',
'link': 'http://www.pdmusic.org/civilwar2/63bfatd.txt',
'link': 'http://forums.radioreference.com/attachments/texas-radio-discussion-forum/42879d1378564905-champion-ems-protocol-medical-dispatch-codes.txt',
'link': 'http://www.medicalmassagetacoma.com/uploads/3/3/0/5/3305732/fainting.txt',
'link': 'http://orig05.deviantart.net/817b/f/2013/042/8/b/despite_the_hour__i_was_taken_by_fainting_goat-d5unli7.txt',
'link': 'http://nvcdn.am_master.answerstv.com/065%20-%20Fainting.txt',
'link': 'http://crawl.berotato.org/crawl/morgue//Fourl/morgue-Fourl-20160816-173432.txt',
'link': 'http://lahnborg.tripod.com/new_logs/my_plan_worked.txt',
'link': 'http://webzook.net/soup/morgue/trunk/salmon/morgue-salmon-20160905-141703.txt',
'link': 'http://webzook.net/soup/morgue/trunk/rlaaudwnd/morgue-rlaaudwnd-20160911-090215.txt',
'link': 'http://crawl.berotato.org/crawl/morgue/Chickenballs200/morgue-Chickenballs200-20160518-194247.txt',
'link': 'http://www.avapress.com/vdciqyaq.t1a552lict.txt',
'link': 'http://crawl.xtahua.com/crawl/morgue/ReniFell/morgue-ReniFell-20160405-045716.txt',
'link': 'http://crawl.xtahua.com/crawl/morgue/nixmar/morgue-nixmar-20160913-065030.txt',
'link': 'http://foxbororeporter.com/articles/2010/10/13/sports/8097449.txt',
'link': 'http://drama.eserver.org/plays/renaissance/shakespeare/tragedies/antony-and-cleopatra.txt',
'link': 'http://fast.hevs.ch/images/imagesets/pubmedcentral-current/Clin_Auton_Res/Clin_Auton_Res_2009_Aug_26_19(4)_231-236.txt',
'link': 'http://k--k.club/posts/61289.txt',
'link': 'http://staff.washington.edu/griffin/fainting.txt',
'link': 'http://space.mit.edu/home//nss/obslist_hetg_jan2011.txt',
'link': 'http://eslprof.com/handouts/Reading/Sunday%20in%20the%20Park.txt',
'link': 'http://iopscience.iop.org/0067-0049/209/2/27/suppdata/apjs485824t1_ascii.txt',
'link': 'http://pokemondarkrisinghq.weebly.com/uploads/3/2/2/6/32269477/order_destroyed_survivor_handbook_complete_booklet.txt',
'link': 'http://www.ccohs.ca/otherhsinfo/alerts/alert74.txt',
'link': 'http://messier.seds.org/xtra/12months/m-jan.txt',
'link': 'http://sistemic.udea.edu.co/wp-content/uploads/2015/11/Readme1.txt',
'link': 'http://www.ascii-art.de/ascii/ghi/goat.txt',
'link': 'http://www.asstr.org/~Kristen/57/afaintingspell.txt',
'link': 'http://www.xguitar.com/guitar-tabs/linkin_park/meteora/faint.txt',
'link': 'http://www.supercheats.com/gameboyadvance/walkthroughs/pokemonsapphire-walkthrough46.txt',
'link': 'http://www.lysator.liu.se/~tomca/genesis/My%20files/Imbuements.txt',
'link': 'http://lazy-life.ddo.jp:8080/morgue/eggegg/morgue-eggegg-20160830-044626.txt',
'link': 'http://heracles.astro.berkeley.edu/sndb/static/BSNIPII/ben_vel.txt',
'link': 'http://dhss.delaware.gov/dph/files/methetkefaq.txt',
'link': 'http://www.ssc.wisc.edu/nsfh/wave3/medicalcodes.txt',
'link': 'http://www.buckslocalnews.com/articles/2013/02/17/the_advance/news/doc510ca04edbc95007026259.txt?viewmode=default',
'link': 'http://www.ntl.matrix.com.br/pfilho/html/lyrics/v/visitors.txt',
'link': 'http://www.myrecordjournal.com/articles/2005/11/15/news/news11.txt',
'link': 'http://m.bcrnews.com/2007/07/07/racing-bug-bites-early/asi1llf/doc468bee2307010153593593.txt',
'link': 'http://astroweb.case.edu/hos/Virgo/Virgogalaxy.txt',
'link': 'http://lcweb2.loc.gov/service/gdc/massbkdif/newc/entu/ryho/mebo/00de/pu__/newcenturyhomebo00depu/data/newcenturyhomebo00depu_djvu_json/00275.txt',
'link': 'http://mold.sourceforge.net/dream/damage.txt',
'link': 'http://cogprints.org/5036/3/indexcodes.txt',
'link': 'http://www.mainlinemedianews.com/articles/2011/11/07/people/flair/doc4e8e067ae16e1632189792.txt',
'link': 'http://www.eldrbarry.net/paulmcqm/_portfolio/541_SFU_Mars_Chamber_PMc.txt',
'link': 'http://www.lycaeum.org/paranoia/stories/other/n2o-at-dentist.txt',
'link': 'http://healthdesignchallenge.com/files/more-fields.txt',
'link': 'http://www.newsexaminer.com/articles/2015/09/23/local_news/doc5601b6ec1cb7a736309658.txt',
'link': 'http://www.astro.caltech.edu/events/tea_talks/tea_2016_2017/abstracts/ji.txt',
'link': 'http://www.aip.de/gallery/brown_dwarfs/W359.txt',
'link': 'http://www.theeplab.com/B-The-Members-Center/C-Cardiac-AnatomyPhysiology/H-Sympathetic-or-Not/NCS-Syndrome.txt',
'link': 'http://compo.toastyx.net/archive/2013/07/27/M2/386.txt',
'link': 'http://articles.ghanagrio.com/feed/uk/22728-greek-finance-minister-vassilis-rapanos-rushed-to-hospital-after-fainting.txt',
'link': 'http://files.fobby.net/0000/09a2/mother.txt',
'link': 'http://www.ekingofcontent.net/content/plrblowout/plrblowout/100000plr/Health_Fitness/Syncope_or_Sudden_Fainting.txt',
'link': 'http://lymeaware.free.fr/lyme/Research%20to%20share/Lyme_Resources_from_Scott_Adam/1%20-%20Lyme_Resources/Treatments/Herbal%20and%20Supplements/Lyme_Aid_Buhner%20Re%20Night%20Sweats%20fainting%20feeling.txt',
'link': 'http://thehealthlinksolutions.com/masterdrugdb/monograph/SGML/d04214v1.txt',
'link': 'http://www.codehappy.net/nethack/barbsmash/27b6-0078.txt',
'link': 'http://www.adasoutheast.org/ada/publications/legal/Greenberg_v_Bellsouth.txt',
'link': 'http://www.planetary.brown.edu/planetary/text/HST1194.txt',
'link': 'http://home.olemiss.edu/~mudws/texts/Dialogue.txt',
'link': 'http://www.holisticmed.com/aspartame/adverse.txt',
'link': 'http://www.google.com/url?url=http://k4macdon.fatcow.com/sorin/2007VAERSDATA.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgglMAQ&usg=AFQjCNFPr5l8wv-aIwNgl8s0Gh1PVyUvqQ',
'link': 'http://www.google.com/url?url=http://www.panix.com/~kludge/arisia_film_collection.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFggrMAc&usg=AFQjCNHHifPerx-tAFdKSW5Kde9-7M4hrw',
'link': 'http://www.google.com/url?url=http://authors.library.caltech.edu/44676/13/table1.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFggwMAg&usg=AFQjCNGg6vSfhWQKioxMqZfIbwis_evsag',
'link': 'http://www.google.com/url?url=http://egg.astro.cornell.edu/alfalfa/data/a40files/a40.datafile2.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgg5MAo&usg=AFQjCNH6GoyyvW7W9LM5Fr87AkUG8qG8gg',
'link': 'http://www.google.com/url?url=http://vlm1.uta.edu/~haijing/asl/csv/annotations_with_compounds/processed_annotations/ASL_2008_05_29a_annotate.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghJMA0&usg=AFQjCNF2Nqfx4NmmeA47SL_IV127grDleg',
'link': 'http://www.google.com/url?url=http://journal.sjdm.org/14/14517/data.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghOMA4&usg=AFQjCNFlhn3qvYROYTl8v6QQsYs1a6GU6A',
'link': 'http://www.google.com/url?url=http://dev.robbywalker.name/words/words.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghbMBE&usg=AFQjCNGtHsMEeEhQCk1QcBqI6VupVYLgEA',
'link': 'http://www.google.com/url?url=http://www.astro.gsu.edu/~taylor/catalogpub/webout-003.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghhMBI&usg=AFQjCNFW0uoz9yFUwdEEICjL5j6q2JzxjA',
'link': 'http://www.google.com/url?url=http://archaeologydataservice.ac.uk/catalogue/adsdata/arch-1080-1/dissemination/csv/Finds/SpecialistFindsData/Wood/PSH02.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghmMBM&usg=AFQjCNGkSphu6aWdNRpDFLfWqhS-VQeewQ',
'link': 'http://www.google.com/url?url=http://ecovision.mit.edu/~sai/paocdat.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFghxMBU&usg=AFQjCNF122-UDe14ib8cMLrruJiv1xAMsg',
'link': 'http://www.google.com/url?url=http://datacompass.lshtm.ac.uk/228/2/S14_DataDictionary_CSV.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgh2MBY&usg=AFQjCNGOVrcosDxy6rY1mxwHK1MJIj8lZw',
'link': 'http://www.google.com/url?url=http://graphics.cs.wisc.edu/WP/wp-content/blogs.dir/12/files/2011/12/sr-Folio-notwords.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgh7MBc&usg=AFQjCNFBZRFAqK7WvqWar37jJ07yXoKblA',
'link': 'http://www.google.com/url?url=http://witw935.com/wp-content/uploads/2010/10/11-0711.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiAATAY&usg=AFQjCNHWiwKDCsX3VuJ1weBV0rY5x8TWUA',
'link': 'http://www.google.com/url?url=http://www.conabio.gob.mx/institucion/proyectos/resultados/W020/control_de_calidad/SNIB-W020-ejemplar-sin-coordenadas.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiFATAZ&usg=AFQjCNGKLWaiOGUoYSVIXJQIVaE0LdYhuw',
'link': 'http://www.google.com/url?url=http://datashare.is.ed.ac.uk/bitstream/handle/10283/392/Arthur%252520the%252520Rat.csv%3Fsequence%3D4&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiKATAa&usg=AFQjCNHOeBT453SBg8pxYd2gG-R3xftPXg',
'link': 'http://www.google.com/url?url=http://www.springer.com/cda/content/document/cda_downloaddocument/justre%2B1209E_titlelist.csv%3FSGWID%3D0-0-45-1349437-0&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiTATAc&usg=AFQjCNGCOZbU7mx2Ne9v-xwzl0f4xnpXvQ',
'link': 'http://www.google.com/url?url=http://www.betfairpromo.com/betfairsp/prices/dwbfpricesausplace10072015.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiVATAd&usg=AFQjCNGnKehEG7_HUFonhsBRs_p4vPLcJQ',
'link': 'http://www.google.com/url?url=http://hardcodex.ru/temp/Wizard/16-05-28-204053-lindsey-wizard-rituals.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiaATAe&usg=AFQjCNHNHNcdWejavmYdqM7ibY5jtORKxg',
'link': 'http://www.google.com/url?url=http://www.helsinki.fi/varieng/series/volumes/16/dorgeloh_kunter/non-locative-inversion%2520-%2520Dorgeloh%2520and%2520Kunter%2520-%2520Varieng%2520eSeries%2520vol%252016.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgigATAf&usg=AFQjCNFoNZWkbXOeCQw89tK1iJabYUCuZQ',
'link': 'http://www.google.com/url?url=http://www.makeitorbreakit.com/cgi-bin/playlist.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiiATAg&usg=AFQjCNHx9qIV2SApf7IXw-O4NLZQYis0Lg',
'link': 'http://www.google.com/url?url=http://git.veekun.com/pokedex.git/blob/05a24b48d0105e5a5d09df9ef5593152b91f7cd8:/pokedex/data/csv/pokemon_flavor_text.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFginATAh&usg=AFQjCNGo82NUhuvd_niIfM66w8RYp-8c0g',
'link': 'http://www.google.com/url?url=http://r-forge.r-project.org/scm/viewvc.php/*checkout*/pkg/inst/xkcd/xkcd.csv%3Froot%3Drxkcd%26revision%3D42%26content-type%3Dtext/plain%26pathrev%3D42&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgivATAj&usg=AFQjCNF-H0xk9RscMQE6jbyFAkpZpKgKmw',
'link': 'http://www.google.com/url?url=http://wmsmir.cits.rncan.gc.ca/index.html/pub/geott/MarineGeoscienceData/Seabed_Photo_Collection/90035/90035_4216.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi1ATAk&usg=AFQjCNH3V3tF1y-XSH7nU8Rl2k7HmsSZpw',
'link': 'http://www.google.com/url?url=http://wmsmir.cits.rncan.gc.ca/index.html/pub/geott/MarineGeoscienceData/Seabed_Photo_Collection/90035/90035_3343.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi6ATAl&usg=AFQjCNHeNYaxe9cLnvUqFrNOFxYnQGLvgQ',
'link': 'http://www.google.com/url?url=http://wmsmir.cits.rncan.gc.ca/index.html/pub/geott/MarineGeoscienceData/Seabed_Photo_Collection/90035/90035_4213.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi_ATAm&usg=AFQjCNELs-9PWcoiJxt_a9TjOehDabONAA',
'link': 'http://www.google.com/url?url=http://reptile-database.reptarium.cz/interfaces/export/common_names.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjEATAn&usg=AFQjCNG3_1ybxzsUHsLazU2zF4IRIP-W5Q',
'link': 'http://www.google.com/url?url=http://homepage.usask.ca/~yuz703/General%2520word%2520reference.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjLATAp&usg=AFQjCNHS7yLEBTS-CJPxZDbbAheoPMAKTg',
'link': 'http://www.google.com/url?url=http://cs.marlboro.edu/courses/spring2012/jims_tutorials/elias/2012-02-01.attachments/mobydick.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjQATAq&usg=AFQjCNGr2sSbinK0vU-z5zxs8sA13aBmwg',
'link': 'http://www.google.com/url?url=http://www.hartley-kent.org.uk/history/documents/burials.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjVATAr&usg=AFQjCNGyygZfGQZb8iFZVa2V2wT2i8bH9w',
'link': 'http://www.google.com/url?url=http://opendata.s3.amazonaws.com/archaeogical-sites-and-monuments.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjaATAs&usg=AFQjCNG71_BJDHLLo09il57II9NjMdFodA',
'link': 'http://www.google.com/url?url=http://www.site.uottawa.ca/~turcotte/teaching/csi-3540/lectures/lab-04/dd45/web/data/words.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjhATAu&usg=AFQjCNGvGxsZMIZ85EqI52rUbzYIsJ0-KQ',
'link': 'http://www.google.com/url?url=http://a100.gov.bc.ca/appsdata/acat/documents/r2124/SEI_9914_ecp_1177962375481_1e38f7f7aab74f629adf994800750847.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjjATAv&usg=AFQjCNHIJhKH445vLYH-r8KkbuMuSMe9CQ',
'link': 'http://www.google.com/url?url=http://ch.lepage.free.fr/vieux_site/tcm/Chinese_Herbs.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjlATAw&usg=AFQjCNEP-mGzLTI7XyG1_GWR895Y8xA1gw',
'link': 'http://www.google.com/url?url=http://www.smh.com.au/dbj/MAIN-smh-final.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjvATAy&usg=AFQjCNH4-1QiI9tq4XQHc5QFYXcAiiz-Ww',
'link': 'http://www.google.com/url?url=http://test.cardhunter.com/data/gameplay/Prompts/Prompt.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjxATAz&usg=AFQjCNE7uiuRuH83tJxaQpk5nkBL-lETYA',
'link': 'http://www.google.com/url?url=http://zeigma.com/impact/data/fullData.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgj3ATA0&usg=AFQjCNFKE7lEig0qA-dKyY2bxfJFtrQOCg',
'link': 'http://www.google.com/url?url=http://www5e.biglobe.ne.jp/~bisaya/dic.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgj8ATA1&usg=AFQjCNGUKSrIpDyyr4LEoyuw6QVvKCs6-g',
'link': 'http://www.google.com/url?url=http://smartcycleshopper.com/wp-content/uploads/scs_tblArticle_V2.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiEAjA3&usg=AFQjCNEsHsmO5t0kQEFSPuLRMniDd3dc-A',
'link': 'http://www.google.com/url?url=http://www3.cs.stonybrook.edu/~ychoi/connotation/data/connotation_lexicon_a.0.1.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiJAjA4&usg=AFQjCNGLf-1p_WbPVTqWrc4a6PgVigyYSw',
'link': 'http://www.google.com/url?url=http://roman-de-renart.googlecode.com/svn-history/r63/trunk/data/verses.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiLAjA5&usg=AFQjCNFoI0yI4nFnGCB8H4GoVFNydVoamw',
'link': 'http://www.google.com/url?url=http://chinese-character-flashcards.googlecode.com/svn/trunk/hanzi/data/src/main/resources/com/plr/cvstojson/HSK_Level_6_(New_HSK).csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiNAjA6&usg=AFQjCNHJ9e35Rb1U3DEVpUe6rtek3Vat1Q',
'link': 'http://www.google.com/url?url=http://condor.depaul.edu/ntomuro/courses/594/coursenotes/otherfiles/Yelp-Phases-positive.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiPAjA7&usg=AFQjCNHRD5E1jGGCPKm24twjExYg-0WS_A',
'link': 'http://www.google.com/url?url=http://www.cbc.ca/news2/interactives/pipeline-incidents/data/pipeline_incidents_neb_2000_2012.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiRAjA8&usg=AFQjCNFQc_o7ZAQSRFNTjaob5Szt5dQnJw',
'link': 'http://www.google.com/url?url=http://www.cslu.ogi.edu/~gormanky/courses/CS662/MPs/MP3/horo-train.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiXAjA9&usg=AFQjCNGa6x6UUcGPhQC5tpDzcddOxbiReg',
'link': 'http://www.google.com/url?url=http://interoperability.ucsd.edu/docs/project/01semantics/biblio/bib9096_sdsc/sdsc-biblio1_mac.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiZAjA-&usg=AFQjCNHit6yix7MAmBCfdTWUe3AJQmpONA',
'link': 'http://www.google.com/url?url=http://flash.lakeheadu.ca/~maislam/Data/politics/28-06-2012_07-54-00_united-states_obama.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgibAjA_&usg=AFQjCNEAqcDnGEUG6jA_WSGVe5HdMCWigw',
'link': 'http://www.google.com/url?url=http://flash.lakeheadu.ca/~maislam/Data/sports/29-06-2012_01-54-18_new-york--usa_football.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgigAjBA&usg=AFQjCNEHw3plbVFnYxYwNnpw1eX4l3zMVQ',
'link': 'http://www.google.com/url?url=http://www.davidmckie.com/OilSpillsData.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgiiAjBB&usg=AFQjCNETrG-fh8j9LW626EfOjlH0k0DZUw',
'link': 'http://www.google.com/url?url=http://goodtogreate.tistory.com/attachment/cfile3.uf%40226E00445632F4C51693F4.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFginAjBC&usg=AFQjCNHGgZMfV9qOTeScMx3TSH2p5RXAqw',
'link': 'http://www.google.com/url?url=http://survey.perlfoundation.org/Data-PerlSurvey-2010/R/17_opinions_words/17_opinions_words.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgisAjBD&usg=AFQjCNEko0ZYFLGva0vUDC1KbhdOKtpEvg',
'link': 'http://www.google.com/url?url=http://thefray.ru/wp-content/plugins/related-posts/lib/unigrams.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgixAjBE&usg=AFQjCNGjr4LgsOxw8WwdWfwKMME6t-JwIQ',
'link': 'http://www.google.com/url?url=http://b-t.ima-achu.com/cgi-bin/data/bt.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi2AjBF&usg=AFQjCNGg3OHpc-tCjl5Qj84IOiwTVcOXrQ',
'link': 'http://www.google.com/url?url=http://swrc.kaist.ac.kr/dbsync/file/url/redirect_ko.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi8AjBG&usg=AFQjCNHEtlTp7dChLI0igAFkRiL0kA0DJw',
'link': 'http://www.google.com/url?url=http://swrc.kaist.ac.kr/dbsync/file/iri/redirect_ko.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgi-AjBH&usg=AFQjCNE6DC08E4QBxRzWUA5yThRPjVmtXA',
'link': 'http://www.google.com/url?url=http://emerging-yt.wikispaces.com/file/view/3_5_day_sorted.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjAAjBI&usg=AFQjCNERdM1KZcybylSOAEX967_Yt4qjwQ',
'link': 'http://www.google.com/url?url=http://emerging-yt.wikispaces.com/file/view/3_5_month_sorted.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjGAjBJ&usg=AFQjCNGnW-pj_8CrC-R--VIfi4BfcUjypw',
'link': 'http://www.google.com/url?url=http://emerging-yt.wikispaces.com/file/view/3_5_week_sorted.csv&rct=j&frm=1&q=&esrc=s&sa=U&ved=0ahUKEwiOiL3gtuLQAhXKrVQKHVGqCe8QFgjMAjBK&usg=AFQjCNHU0EXkPKrJij0WyWC2vPhmo8EZ_Q',
'link': 'http://www.medtronic.com/reveallanding/downloads/1404aEN13.pdf',
'link': 'http://circ.ahajournals.org/content/circulationaha/23/6/901.full.pdf',
'link': 'http://onlinelibrary.wiley.com/doi/10.1113/jphysiol.1946.sp004136/pdf',
'link': 'http://ac.els-cdn.com/S0140673600741730/1-s2.0-S0140673600741730-main.pdf?_tid=846a5f1e-b233-11e3-b29f-00000aab0f26&acdnat=1395542188_b9b5b3e44918904078d23fe272388085',
'link': 'http://www.medtronicdiagnostics.com/wcm/groups/mdtcom_sg/@mdt/documents/documents/about-unexplained-fainting.pdf',
'link': 'http://www.neurology.org/content/45/3/498.full.pdf',
'link': 'http://www.faintinggoat.com/downloads/forms/brochureout.pdf',
'link': 'http://www.tandfonline.com/doi/pdf/10.1080/00168899909597388',
'link': 'http://www.thelancet.com/pdfs/journals/lancet/PIIS0140-6736(05)63557-X.pdf',
'link': 'http://nj.gov/health/ems/documents/uncons.pdf',
'link': 'http://ajp.psychiatryonline.org/doi/pdf/10.1176/ajp.140.6.771',
'link': 'http://jamanetwork.com/data/Journals/JAMA/4943/JPG0908.pdf',
'link': 'http://www.viddler.com/file/d/94ab55a9.mp4?vfid=70870d594723dad4bff3a8c0d6c9fb7d',
'link': 'http://www.alluc.ee/download/Female+College.mp4?page=1',
'link': 'http://www.alluc.ee/download/1-21.mp4.mp4?page=39',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=FqNwfWemCIo&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=pxsr1SENSzE&format=5',
'link': 'http://helpwap.com/sers/getvideo.mp4?ytube=ozlspIH0788&format=5',
'link': 'http://legaia.wikia.com/wiki/File:Noa_Faint_2.ogg',
'link': 'http://2007.runescape.wikia.com/wiki/File:Faint_noise.ogg',
'link': 'http://claymorenew.wikia.com/wiki/File:Teresa_of_the_Faint_Smile_ru.ogg',
'link': 'http://www.cancereffects.com/search_index/Chronic-Myelogenous-Leukemia-Treatment-Options.html.idx',
'link': 'http://www.d20radio.com/gmholocron/data/index/w5.idx',
'link': 'http://www.bj21.com/internet/searchterms.idx',
'link': 'http://www.blather.net/search/Index.idx',
'link': 'http://www.sscnet.ucla.edu/southasia/ice/index.idx',
'link': 'http://wordquests.info/htm/index.idx',
'link': 'http://www.romaine.net/cgi/search/ice/index.idx',
'link': 'http://www.webdelsol.com/bbs/arts/searchterms.idx',
'link': 'http://tiachopxanh.mobie.in/files/tudienanhvietnew.idx',
'link': 'http://iesalmenar.xtec.cat/departaments/deptecnologia/public_html/1%20PROGRAMES%20PER%20INSTALLAR/AplicacionesPortables/OpenOfficePortable/App/openoffice/share/dict/ooo/th_en_US_v2.idx',
'link': 'http://svn.lliurex.net/leia/mods-backports/trunk/mythes/th_en_US_new.idx',
'link': 'http://fairytail.wikia.com/wiki/File:Fainting_in_Agony_Zone.png',
'link': 'http://onepiece.wikia.com/wiki/File:Boa_Hancock_Fainting.png',
'link': 'http://fairytailfanon.wikia.com/wiki/File:Fainting_in_Agony_Zone.png',
'link': "http://spongebob.wikia.com/wiki/File:Gary's_fainting_from_hunger.png",
'link': 'http://phineasandferb.wikia.com/wiki/File:202a-_candace_fainting.png',
'link': 'http://mlp.wikia.com/wiki/File:Lily_Fainting_S01E04.png',
'link': 'http://mlp.wikia.com/wiki/File:Spike_fainting_again_S4E01.png',
'link': 'http://winx.wikia.com/wiki/File:Fainted.png',
'link': 'http://glee.wikia.com/wiki/File:Fainting.gif',
'link': 'http://glee.wikia.com/wiki/File:Rachel_fainting.gif',
'link': 'http://glee.wikia.com/wiki/File:Fainting_3.gif',
'link': 'http://vampirediaries.wikia.com/wiki/File:GIF-dead-faint-fainting-OMG-pass-out-surprised-GIF.gif',
'link': 'http://degrassi.wikia.com/wiki/File:Kahlan_Fainting.gif',
'link': 'http://glee.wikia.com/wiki/File:Faints.gif',
'link': 'http://muppet.wikia.com/wiki/File:Kermit-faint.gif',
'link': 'http://fiftyshadesofgrey.wikia.com/wiki/File:Fainting.gif',
'link': 'http://dragonage.wikia.com/wiki/File:Faint.gif',
'link': 'http://glee.wikia.com/wiki/File:Fainting_girl.gif',
'link': 'http://degrassi.wikia.com/wiki/File:Rachel_fainting.gif',
'link': 'http://mlp.wikia.com/wiki/File:Manly_fainting_noises.gif',
'link': 'http://victorious.wikia.com/wiki/File:Cat-fainting-victorious-a.gif',
'link': 'http://fairytail.wikia.com/wiki/File:Terrain_Effect_Fainting_in_Agony_Zone.gif',
'link': 'http://glee.wikia.com/wiki/File:Fainting-reporter-animated-gif.gif',
'link': 'http://venturiantale-fandom.wikia.com/wiki/File:Fainting-GIF.gif',
'link': 'http://walkingdead.wikia.com/wiki/File:Ben_Legit_Faint.gif',
'link': 'http://glee.wikia.com/wiki/File:Merida_faint.gif',
'link': 'http://muppet.wikia.com/wiki/File:Walter-Faint.gif',
'link': 'http://muppet.wikia.com/wiki/File:Elmo-faint.gif',
'link': 'http://degrassi.wikia.com/wiki/File:Rick_fainting.gif',
'link': 'http://gangsta.wikia.com/wiki/File:Fainting_Angel_Dino.gif',
'link': 'http://kishin-douji-zenki.wikia.com/wiki/File:Zenki_faint_Battle_Raiden.gif',
'link': 'http://es.minecraft.wikia.com/wiki/Archivo:Fainting_toy_freddy_chat_icon_by_gold94chica-d8oa850.gif',
'link': 'http://aceattorney.wikia.com/wiki/File:Robin_Newman_(female)_-_fainting.gif',
'link': 'http://narutocouple.wikia.com/wiki/File:Tomoyo-faint.gif',
'link': 'http://gate-jsdf.wikia.com/wiki/File:Fainted_Itami.gif',
'link': 'http://the-saft-squad.wikia.com/wiki/File:Max_Faint.gif',
'link': 'http://glee.wikia.com/wiki/File:Rachel_-_faint.gif',
'link': 'http://vi.fairytail.wikia.com/wiki/T%E1%BA%ADp_tin:Terrain_Effect;_Fainting_in_Agony_Zone.gif',
'link': 'http://memory-alpha.wikia.com/wiki/File:Fainting_Worf.jpg',
'link': 'http://superfriends.wikia.com/wiki/File:Fainting.jpg',
'link': 'http://glee.wikia.com/wiki/File:Fainting_(1).jpg',
'link': 'http://custombionicle.wikia.com/wiki/File:Fainting_Grievois.jpg',
'link': 'http://www.neurology.org/content/suppl/2013/04/24/WNL.0b013e318293e1c7.DC1/Appendix_e-1.docx',
'link': 'http://www.evodevojournal.com/content/supplementary/s13227-015-0010-x-s1.xlsx',
'link': 'http://www.actaneurocomms.org/content/supplementary/s40478-014-0173-z-s1.xlsx',
'link': 'http://www.cyberhorse.com.au/dcforum/equestrian/Data/12245.txt',
'link': 'http://www.nola.com/photos/t-p/LSUend.ptw/soundslide.txt?cache=39669',
'link': 'http://www.annemergmed.com/pb/assets/raw/health%20advance/journals/ymem/Additional_Resources/RecReferences.txt',
'link': 'http://media.npr.org/news/specials/obits/wagoner/gallery/soundslide.txt?cache=56067',
'link': 'http://www.worldofradio.com/dxld5043.txt',
'link': 'http://wattpadsoftcopys.weebly.com/uploads/6/2/6/9/62694665/book_2_the_good_girls_revenge.txt',
'link': 'http://www.maga-zine.com.ar/marzo2015/files/res/other/search.txt',
'link': 'http://www.zoldautd.net/uploads/pendientes.txt',
'link': 'http://plymouthshop.com/foodlist.txt',
'link': 'http://www.mnst.go.th/dicpharmacy/boardtxt/question/R4296.txt',
'link': 'http://rabida.uhu.es/dspace/bitstream/handle/10272/3537/b13099504-2.pdf.txt?sequence=9',
'link': 'http://www.tdx.cat/bitstream/handle/10803/1607/04.MDGM_4de12.pdf.txt?sequence=21',
'link': 'http://www.dlsi.ua.es/~inesta/LCDM/Archivo/lcdm0772.txt',
'link': 'http://listas.debiancolombia.org/pipermail/general/2008-November.txt',
'link': 'http://libsysdigi.library.uiuc.edu/OCA/Books2009-11/3600971/3600971_2/3600971_2_djvu.txt',
'link': 'http://dspace.uah.es/dspace/bitstream/handle/10017/6150/Presencia%20Universitaria%20Salmantina%20en%20las%20Primeras%20Universidades%20Americanas.pdf.txt?sequence=3',
'link': "http://www.premierathome.com/library/Reference/Webster's%201806%20Dictionary.txt",
'link': 'http://www.avmagazine.it/sitemap.txt',
'link': 'http://www.w4uvh.net/dxld1013.txt',
'link': 'http://www.actagile.fr/workspace/classe-virtuelle/data/pages/grilling-fruits--sumptuous-pineapples-pears-and-apples-964.txt',
'link': 'http://libsysdigi.library.illinois.edu/oca/Books2009-01/3438811/3438811_djvu.txt',
'link': 'http://www.doorsclosing.com/echidnoyle/gamemusic3/board/New%20Folder/0.4/boardposts.txt',
'link': 'http://www.mirrorservice.org/sites/ftp.ibiblio.org/pub/docs/books/gutenberg/4/4/3/3/44332/44332-8.txt',
'link': 'http://epc.buffalo.edu/poetics/archive/logs/txt/2008_01.txt',
'link': 'http://www.cfs.purdue.edu/richardfeinberg/sjf/Beverage/Pepsi/PepsiFile16.txt',
'link': 'http://helvia.uco.es/xmlui/bitstream/handle/10396/2694/6.2.pdf.txt?sequence=3',
'link': 'http://www.eunet.lv/library/lat/LYNX/WASILXEW/blades.txt',
'link': 'http://saf-unite.org/learn/landscapes/soundslides/publish_to_web-isidro/soundslide.txt?cache=56067',
'link': 'http://www.media-ecology.org/list/mediaecology/2003-12.txt',
'link': 'http://oregonnews.uoregon.edu/lccn/sn84006724/1899-07-13/ed-1/seq-3/ocr.txt',
'link': 'http://www.makedonija.com/dcforum/DCForumID28/Data/772.txt',
'link': 'http://gutenberg.polytechnic.edu.na/5/1/8/7/51877/51877-0.txt',
'link': 'http://chroniclingamerica.loc.gov/lccn/sn85042437/1865-12-20/ed-1/seq-1/ocr.txt',
'link': 'http://segal-gould.com/TXTs/Individual%20Newspaper%20TXTs/New%20York%20NY%20Times%201860%20Oct-Dec%20Grayscale%20(24).txt',
'link': 'http://www.cs.cornell.edu/~luwang/polinformatics/retrieved/financial_innovation_and_complexity.retrieved.txt',
'link': 'http://oa.upm.es/268/3/indexcodes.txt',
'link': 'http://conservancy.umn.edu/bitstream/11299/94288/3/Williams_umn_0130E_11125.pdf.txt',
'link': 'http://documents.worldbank.org/curated/en/987511468742518524/text/multi0page.txt',
'link': 'http://www.georgiaseitz.com/2012/logs/20120718log.txt',
'link': 'http://sphinxsearch.com/snapshots/dict-en.txt',
'link': 'http://collections.banq.qc.ca:81/jrn03/lecourrierdesthyacinthe/src/1983/03/09/02/82592_1983-03-09_02.txt',
'link': 'http://lists.evolt.org/thesitearchive/2001-March.txt',
'link': 'http://oaktrust.library.tamu.edu/bitstream/handle/1969.1/91899/Suppl_1%20A%20to%20B.pdfa.pdf.txt',
'link': 'http://www.angelfire.com/art/weaverswords/WeaversWordsV6I33.txt',
'link': 'http://www.lakshayarora.com/Perl/Lexicon/lexicon_archive.txt',