-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoccer_seasons.csv
We can't make this file beautiful and searchable because it's too large.
16779 lines (16779 loc) · 979 KB
/
soccer_seasons.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,Season,home,visitor,FT,hgoal,vgoal,round,tie
0,1871,Barnes,Civil Service,2-0,2.0,0.0,1,initial
1,1871,Hitchin,Crystal Palace 1861,0-0,0.0,0.0,1,initial
2,1871,Maidenhead United,Marlow,2-0,2.0,0.0,1,initial
3,1871,Upton Park,Clapham Rovers,0-3,0.0,3.0,1,initial
4,1871,Crystal Palace 1861,Maidenhead United,3-0,3.0,0.0,2,initial
5,1871,Wanderers,Clapham Rovers,3-1,3.0,1.0,2,initial
6,1871,Barnes,Hampstead Heathens,1-1,1.0,1.0,2,initial
7,1871,Hampstead Heathens,Barnes,1-0,1.0,0.0,2,replay
8,1871,Hitchin,Royal Engineers,0-5,0.0,5.0,2,initial
9,1871,Wanderers,Crystal Palace 1861,0-0,0.0,0.0,3,initial
10,1871,Royal Engineers,Hampstead Heathens,3-0,3.0,0.0,3,initial
11,1871,Crystal Palace 1861,Royal Engineers,0-0,0.0,0.0,s,initial
12,1871,Queens Park,Wanderers,0-0,0.0,0.0,s,initial
13,1871,Royal Engineers,Crystal Palace 1861,3-0,3.0,0.0,s,replay
14,1871,Wanderers,Royal Engineers,1-0,1.0,0.0,f,initial
15,1871,Royal Engineers,Reigate Priory,1-1,1.880657,1.230657,1,initial
16,1871,Wanderers,Harrow Chequers,1-1,1.880657,1.230657,1,initial
17,1871,Hampstead Heathens,Liverpool,1-1,1.880657,1.230657,1,none
18,1871,Queens Park,Donington School,1-1,1.880657,1.230657,1,none
19,1871,Queens Park,Donington School,1-1,1.880657,1.230657,2,initial
20,1871,Queens Park,Liverpool,1-1,1.880657,1.230657,3,none
21,1871,Wanderers,Queens Park,1-1,1.880657,1.230657,s,initial
22,1872,Barnes,South Norwood,0-1,0.0,1.0,1,initial
23,1872,Civil Service,Royal Engineers,0-3,0.0,3.0,1,initial
24,1872,Crystal Palace,Oxford University,2-3,2.0,3.0,1,initial
25,1872,Maidenhead United,Marlow,1-0,1.0,0.0,1,initial
26,1872,Reigate Priory,Windsor Home Park,2-4,2.0,4.0,1,initial
27,1872,Upton Park,1st Surrey Rifles,0-2,0.0,2.0,1,initial
28,1872,1st Surrey Rifles,Maidenhead United,0-3,0.0,3.0,2,initial
29,1872,Clapham Rovers,Oxford University,0-3,0.0,3.0,2,initial
30,1872,South Norwood,Windsor Home Park,1-0,1.880657,1.230657,2,initial
31,1872,Windsor Home Park,South Norwood,3-0,3.0,0.0,1,replay
32,1872,Oxford University,Royal Engineers,1-0,1.0,0.0,3,initial
33,1872,Windsor Home Park,Maidenhead United,0-1,0.0,1.0,3,initial
34,1872,Oxford University,Maidenhead United,4-0,4.0,0.0,4,initial
35,1872,Wanderers,Oxford University,2-0,2.0,0.0,f,initial
36,1872,Clapham Rovers,Hitchin,1-1,1.880657,1.230657,1,initial
37,1872,Queens Park,Liverpool,1-1,1.880657,1.230657,1,none
38,1872,Queens Park,Liverpool,1-1,1.880657,1.230657,2,none
39,1872,Royal Engineers,Liverpool,1-1,1.880657,1.230657,2,none
40,1872,Queens Park,Liverpool,1-1,1.880657,1.230657,3,none
41,1872,Queens Park,Liverpool,1-1,1.880657,1.230657,4,none
42,1872,Oxford University,Queens Park,1-1,1.880657,1.230657,s,initial
43,1873,Marlow,Pilgrims,0-1,0.0,1.0,1,initial
44,1873,Royal Engineers,Brondesbury,5-0,5.0,0.0,1,initial
45,1873,Woodford Wells,Reigate Priory,3-2,3.0,2.0,1,initial
46,1873,Swifts,Crystal Palace,1-0,1.0,0.0,1,initial
47,1873,1st Surrey Rifles,Barnes,0-0,0.0,0.0,1,initial
48,1873,Cambridge University,South Norwood,1-0,1.0,0.0,1,initial
49,1873,Uxbridge,Gitanos,3-0,3.0,0.0,1,initial
50,1873,Upton Park,Oxford University,0-4,0.0,4.0,1,initial
51,1873,Shropshire Wanderers,Sheffield,0-0,0.0,0.0,1,initial
52,1873,Barnes,1st Surrey Rifles,1-0,1.0,0.0,1,replay
53,1873,Clapham Rovers,Cambridge University,1-1,1.0,1.0,2,initial
54,1873,Sheffield,Shropshire Wanderers,0-0,0.0,0.0,1,replay
55,1873,Maidenhead United,High Wycombe,1-0,1.0,0.0,2,initial
56,1873,Oxford University,Barnes,2-0,2.0,0.0,2,initial
57,1873,Sheffield,Pilgrims,1-0,1.0,0.0,2,initial
58,1873,Swifts,Woodford Wells,2-1,2.0,1.0,2,initial
59,1873,Royal Engineers,Uxbridge,2-1,2.0,1.0,2,initial
60,1873,Clapham Rovers,Cambridge University,1-1,1.0,1.0,2,replay
61,1873,Wanderers,Oxford University,1-1,1.0,1.0,3,initial
62,1873,Royal Engineers,Maidenhead United,7-0,7.0,0.0,3,initial
63,1873,Clapham Rovers,Cambridge University,4-1,4.0,1.0,2,replay2
64,1873,Clapham Rovers,Sheffield,2-1,2.0,1.0,3,initial
65,1873,Royal Engineers,Swifts,2-0,2.0,0.0,s,initial
66,1873,Oxford University,Wanderers,1-0,1.0,0.0,3,replay
67,1873,Oxford University,Clapham Rovers,1-0,1.0,0.0,s,initial
68,1873,Oxford University,Royal Engineers,2-0,2.0,0.0,f,initial
69,1873,Clapham Rovers,Amateur Athletic Club,1-1,1.880657,1.230657,1,initial
70,1873,High Wycombe,Old Etonians,1-1,1.880657,1.230657,1,initial
71,1873,Maidenhead United,Civil Service,1-1,1.880657,1.230657,1,initial
72,1873,Trojans,Farningham,1-1,1.880657,1.230657,1,initial
73,1873,Wanderers,Southall,1-1,1.880657,1.230657,1,initial
74,1873,Wanderers,Trojans,1-1,1.880657,1.230657,2,initial
75,1873,Swifts,Liverpool,1-1,1.880657,1.230657,3,none
76,1874,Pilgrims,South Norwood,3-1,3.0,1.0,1,initial
77,1874,Upton Park,Barnes,0-3,0.0,3.0,1,initial
78,1874,Oxford University,Brondesbury,6-0,6.0,0.0,1,initial
79,1874,Wanderers,Farningham,16-0,16.0,0.0,1,initial
80,1874,Woodford Wells,High Wycombe,1-0,1.0,0.0,1,initial
81,1874,Old Etonians,Swifts,0-0,0.0,0.0,1,initial
82,1874,Clapham Rovers,Panthers,3-0,3.0,0.0,1,initial
83,1874,Royal Engineers,Marlow,3-0,3.0,0.0,1,initial
84,1874,Cambridge University,Crystal Palace,0-0,0.0,0.0,1,initial
85,1874,Hitchin,Maidenhead United,0-1,0.0,1.0,1,initial
86,1874,Southall,Leyton,0-0,0.0,0.0,1,initial
87,1874,Swifts,Old Etonians,1-1,1.0,1.0,1,replay
88,1874,Shropshire Wanderers,Civil Service,1-0,1.0,0.0,2,initial
89,1874,Cambridge University,Crystal Palace,2-1,2.0,1.0,1,replay
90,1874,Wanderers,Barnes,5-0,5.0,0.0,2,initial
91,1874,Old Etonians,Swifts,3-0,3.0,0.0,1,replay2
92,1874,Leyton,Southall,0-5,0.0,5.0,1,replay
93,1874,Clapham Rovers,Pilgrims,2-0,2.0,0.0,2,initial
94,1874,Maidenhead United,Reigate Priory,2-1,2.0,1.0,2,initial
95,1874,Royal Engineers,Cambridge University,5-0,5.0,0.0,2,initial
96,1874,Woodford Wells,Southall,3-0,3.0,0.0,2,initial
97,1874,Old Etonians,Maidenhead United,1-0,1.0,0.0,3,initial
98,1874,Shropshire Wanderers,Woodford Wells,1-1,1.0,1.0,3,initial
99,1874,Royal Engineers,Clapham Rovers,3-2,3.0,2.0,3,initial
100,1874,Wanderers,Oxford University,1-2,1.0,2.0,3,initial
101,1874,Woodford Wells,Shropshire Wanderers,0-2,0.0,2.0,3,replay
102,1874,Old Etonians,Shropshire Wanderers,1-0,1.0,0.0,s,initial
103,1874,Royal Engineers,Oxford University,1-1,1.0,1.0,s,initial
104,1874,Royal Engineers,Oxford University,1-0,1.0,0.0,s,replay
105,1874,Royal Engineers,Old Etonians,1-1,1.0,1.0,f,initial
106,1874,Royal Engineers,Old Etonians,2-0,2.0,0.0,f,replay
107,1874,Civil Service,Harrow Chequers,1-1,1.880657,1.230657,1,initial
108,1874,Shropshire Wanderers,Sheffield,1-1,1.880657,1.230657,1,initial
109,1874,Windsor Home Park,Uxbridge,1-1,1.880657,1.230657,1,initial
110,1874,Reigate Priory,Liverpool,1-1,1.880657,1.230657,1,none
111,1874,Oxford University,Windsor Home Park,1-1,1.880657,1.230657,2,initial
112,1874,Old Etonians,Liverpool,1-1,1.880657,1.230657,2,none
113,1875,Maidenhead United,Ramblers,2-0,2.0,0.0,1,initial
114,1875,Upton Park,Southall,1-0,1.0,0.0,1,initial
115,1875,Wanderers,1st Surrey Rifles,5-0,5.0,0.0,1,initial
116,1875,Reigate Priory,Barnes,1-0,1.0,0.0,1,initial
117,1875,Swifts,Marlow,2-0,2.0,0.0,1,initial
118,1875,105th Regiment,Crystal Palace,0-0,0.0,0.0,1,initial
119,1875,Herts Rangers,Rochester,4-0,4.0,0.0,1,initial
120,1875,Oxford University,Forest School,6-0,6.0,0.0,1,initial
121,1875,Panthers,Woodford Wells,1-0,1.0,0.0,1,initial
122,1875,Old Etonians,Pilgrims,4-1,4.0,1.0,1,initial
123,1875,Royal Engineers,High Wycombe,15-0,15.0,0.0,1,initial
124,1875,Crystal Palace,105th Regiment,3-0,3.0,0.0,1,replay
125,1875,Old Etonians,Maidenhead United,8-0,8.0,0.0,2,initial
126,1875,Reigate Priory,Cambridge University,0-8,0.0,8.0,2,initial
127,1875,South Norwood,Swifts,0-5,0.0,5.0,2,initial
128,1875,Wanderers,Crystal Palace,3-0,3.0,0.0,2,initial
129,1875,Clapham Rovers,Leyton,12-0,12.0,0.0,2,initial
130,1875,Oxford University,Herts Rangers,8-2,8.0,2.0,2,initial
131,1875,Old Etonians,Clapham Rovers,1-0,1.0,0.0,3,initial
132,1875,Royal Engineers,Swifts,1-3,1.0,3.0,3,initial
133,1875,Wanderers,Sheffield,2-0,2.0,0.0,3,initial
134,1875,Cambridge University,Oxford University,0-4,0.0,4.0,3,initial
135,1875,Oxford University,Old Etonians,0-1,0.0,1.0,s,initial
136,1875,Wanderers,Swifts,2-1,2.0,1.0,s,initial
137,1875,Wanderers,Old Etonians,1-1,1.0,1.0,f,initial
138,1875,Wanderers,Old Etonians,3-0,3.0,0.0,f,replay
139,1875,Cambridge University,Civil Service,1-1,1.880657,1.230657,1,initial
140,1875,Clapham Rovers,Hitchin,1-1,1.880657,1.230657,1,initial
141,1875,Leyton,Harrow Chequers,1-1,1.880657,1.230657,1,initial
142,1875,Sheffield,Shropshire Wanderers,1-1,1.880657,1.230657,1,initial
143,1875,South Norwood,Clydesdale,1-1,1.880657,1.230657,1,initial
144,1875,Royal Engineers,Panthers,1-1,1.880657,1.230657,2,initial
145,1875,Sheffield,Upton Park,1-1,1.880657,1.230657,2,initial
146,1876,Pilgrims,Ramblers,4-1,4.0,1.0,1,initial
147,1876,Upton Park,Leyton,7-0,7.0,0.0,1,initial
148,1876,Forest School,Gresham,4-1,4.0,1.0,1,initial
149,1876,Herts Rangers,Marlow,1-2,1.0,2.0,1,initial
150,1876,Rochester,Highbury Union,5-0,5.0,0.0,1,initial
151,1876,Royal Engineers,Old Harrovians,2-1,2.0,1.0,1,initial
152,1876,South Norwood,Saxons,4-1,4.0,1.0,1,initial
153,1876,Swifts,Reading Hornets,2-0,2.0,0.0,1,initial
154,1876,Panthers,Wood Grange,3-0,3.0,0.0,1,initial
155,1876,105th Regiment,1st Surrey Rifles,3-0,3.0,0.0,1,initial
156,1876,Clapham Rovers,Reigate Priory,5-0,5.0,0.0,1,initial
157,1876,Marlow,Forest School,1-0,1.0,0.0,2,initial
158,1876,South Norwood,Sheffield,0-7,0.0,7.0,2,initial
159,1876,Pilgrims,Panthers,1-0,1.0,0.0,2,initial
160,1876,Royal Engineers,Shropshire Wanderers,3-0,3.0,0.0,2,initial
161,1876,Upton Park,Barnes,1-0,1.0,0.0,2,initial
162,1876,Oxford University,105th Regiment,6-1,6.0,1.0,2,initial
163,1876,Cambridge University,Clapham Rovers,2-1,2.0,1.0,2,initial
164,1876,Rochester,Swifts,1-0,1.0,0.0,2,initial
165,1876,Wanderers,Southall,6-0,6.0,0.0,2,initial
166,1876,Royal Engineers,Sheffield,1-0,1.0,0.0,3,initial
167,1876,Wanderers,Pilgrims,3-0,3.0,0.0,3,initial
168,1876,Upton Park,Marlow,2-2,2.0,2.0,3,initial
169,1876,Upton Park,Marlow,1-0,1.0,0.0,3,replay
170,1876,Cambridge University,Rochester,4-0,4.0,0.0,3,initial
171,1876,Cambridge University,Royal Engineers,1-0,1.0,0.0,4,initial
172,1876,Oxford University,Upton Park,0-0,0.0,0.0,4,initial
173,1876,Oxford University,Upton Park,1-0,1.0,0.0,4,replay
174,1876,Wanderers,Cambridge University,1-0,1.0,0.0,s,initial
175,1876,Wanderers,Oxford University,2-1,2.0,1.0,f,initial
176,1876,Barnes,Old Etonians,1-1,1.880657,1.230657,1,initial
177,1876,Cambridge University,High Wycombe,1-1,1.880657,1.230657,1,initial
178,1876,Oxford University,Old Salopians,1-1,1.880657,1.230657,1,initial
179,1876,Sheffield,Trojans,1-1,1.880657,1.230657,1,initial
180,1876,Shropshire Wanderers,Druids,1-1,1.880657,1.230657,1,initial
181,1876,Southall,Old Wykehamists,1-1,1.880657,1.230657,1,initial
182,1876,Wanderers,Saffron Walden Town,1-1,1.880657,1.230657,1,initial
183,1876,Queens Park,Liverpool,1-1,1.880657,1.230657,1,none
184,1876,Queens Park,Liverpool,1-1,1.880657,1.230657,2,none
185,1876,Oxford University,Queens Park,1-1,1.880657,1.230657,3,initial
186,1876,Wanderers,Liverpool,1-1,1.880657,1.230657,4,none
187,1876,Oxford University,Liverpool,1-1,1.880657,1.230657,s,none
188,1877,Grantham,Clapham Rovers,0-2,0.0,2.0,1,initial
189,1877,High Wycombe,Wood Grange,4-0,4.0,0.0,1,initial
190,1877,Maidenhead United,Reading Hornets,10-0,10.0,0.0,1,initial
191,1877,Cambridge University,Southall Park,3-1,3.0,1.0,1,initial
192,1877,Hawks,Minerva,5-2,5.0,2.0,1,initial
193,1877,Marlow,Hendon,2-0,2.0,0.0,1,initial
194,1877,Notts County,Sheffield,1-1,1.0,1.0,1,initial
195,1877,Oxford University,Herts Rangers,5-2,5.0,2.0,1,initial
196,1877,Pilgrims,Ramblers,0-0,0.0,0.0,1,initial
197,1877,105th Regiment,Old Harrovians,0-2,0.0,2.0,1,initial
198,1877,1st Surrey Rifles,Forest School,1-0,1.0,0.0,1,initial
199,1877,Darwen,Manchester,3-0,3.0,0.0,1,initial
200,1877,Reading,South Norwood,2-0,2.0,0.0,1,initial
201,1877,Remnants,St Stephen's,4-0,4.0,0.0,1,initial
202,1877,Swifts,Leyton,3-2,3.0,2.0,1,initial
203,1877,Upton Park,Rochester,3-0,3.0,0.0,1,initial
204,1877,Wanderers,Panthers,9-1,9.0,1.0,1,initial
205,1877,Pilgrims,Ramblers,1-0,1.0,0.0,1,replay
206,1877,Druids,Shropshire Wanderers,1-0,1.0,0.0,1,initial
207,1877,Sheffield,Notts County,3-0,3.0,0.0,1,replay
208,1877,Cambridge University,Maidenhead United,4-2,4.0,2.0,2,initial
209,1877,Royal Engineers,Pilgrims,6-0,6.0,0.0,2,initial
210,1877,Upton Park,Reading,1-0,1.0,0.0,2,initial
211,1877,Barnes,Marlow,3-1,3.0,1.0,2,initial
212,1877,High Wycombe,Wanderers,0-9,0.0,9.0,2,initial
213,1877,Oxford University,Old Foresters,1-0,1.0,0.0,2,initial
214,1877,Clapham Rovers,Swifts,4-0,4.0,0.0,2,initial
215,1877,Old Harrovians,1st Surrey Rifles,6-0,6.0,0.0,2,initial
216,1877,Remnants,Hawks,2-0,2.0,0.0,2,initial
217,1877,Sheffield,Darwen,1-0,1.0,0.0,2,initial
218,1877,Wanderers,Barnes,1-1,1.0,1.0,3,initial
219,1877,Upton Park,Remnants,3-0,3.0,0.0,3,initial
220,1877,Wanderers,Barnes,4-1,4.0,1.0,3,replay
221,1877,Royal Engineers,Druids,8-0,8.0,0.0,3,initial
222,1877,Old Harrovians,Cambridge University,2-2,2.0,2.0,3,initial
223,1877,Oxford University,Clapham Rovers,3-2,3.0,2.0,3,initial
224,1877,Old Harrovians,Cambridge University,2-2,2.0,2.0,3,replay
225,1877,Royal Engineers,Oxford University,3-3,3.0,3.0,4,initial
226,1877,Old Harrovians,Cambridge University,2-0,2.0,0.0,3,replay2
227,1877,Wanderers,Sheffield,3-0,3.0,0.0,4,initial
228,1877,Royal Engineers,Oxford University,2-2,2.0,2.0,4,replay
229,1877,Old Harrovians,Upton Park,3-1,3.0,1.0,4,initial
230,1877,Royal Engineers,Oxford University,4-2,4.0,2.0,4,replay2
231,1877,Royal Engineers,Old Harrovians,2-1,2.0,1.0,s,initial
232,1877,Wanderers,Royal Engineers,3-1,3.0,1.0,f,initial
233,1877,Barnes,St Mark's,1-1,1.880657,1.230657,1,initial
234,1877,Old Foresters,Old Wykehamists,1-1,1.880657,1.230657,1,initial
235,1877,Royal Engineers,Highbury Union,1-1,1.880657,1.230657,1,initial
236,1877,Queens Park,Liverpool,1-1,1.880657,1.230657,1,none
237,1877,Druids,Queens Park,1-1,1.880657,1.230657,2,initial
238,1877,Sheffield,Liverpool,1-1,1.880657,1.230657,3,none
239,1877,Wanderers,Liverpool,1-1,1.880657,1.230657,s,none
240,1878,Old Harrovians,Nottingham Forest,0-2,0.0,2.0,3,initial
241,1878,Barnes,Maidenhead United,1-1,1.0,1.0,1,initial
242,1878,Sheffield,Grantham,1-1,1.0,1.0,1,initial
243,1878,Upton Park,Saffron Walden Town,5-0,5.0,0.0,1,initial
244,1878,Forest School,Rochester,7-2,7.0,2.0,1,initial
245,1878,Old Harrovians,Southall Park,8-0,8.0,0.0,1,initial
246,1878,Oxford University,Wednesbury Strollers,7-0,7.0,0.0,1,initial
247,1878,Romford,Ramblers,3-1,3.0,1.0,1,initial
248,1878,Brentwood,Pilgrims,1-3,1.0,3.0,1,initial
249,1878,Cambridge University,Herts Rangers,2-0,2.0,0.0,1,initial
250,1878,Grey Friars,Marlow,2-1,2.0,1.0,1,initial
251,1878,Reading,Hendon,1-0,1.0,0.0,1,initial
252,1878,Royal Engineers,Old Foresters,3-0,3.0,0.0,1,initial
253,1878,Swifts,Hawks,2-1,2.0,1.0,1,initial
254,1878,Wanderers,Old Etonians,2-7,2.0,7.0,1,initial
255,1878,Maidenhead United,Barnes,0-4,0.0,4.0,1,replay
256,1878,Notts County,Nottingham Forest,1-3,1.0,3.0,1,initial
257,1878,Grantham,Sheffield,1-3,1.0,3.0,1,replay
258,1878,Cambridge University,South Norwood,3-0,3.0,0.0,2,initial
259,1878,Clapham Rovers,Forest School,10-1,10.0,1.0,2,initial
260,1878,Darwen,Eagley,0-0,0.0,0.0,2,initial
261,1878,Grey Friars,Minerva,0-3,0.0,3.0,2,initial
262,1878,Oxford University,Royal Engineers,4-0,4.0,0.0,2,initial
263,1878,Reading,Old Etonians,0-1,0.0,1.0,2,initial
264,1878,Nottingham Forest,Sheffield,2-0,2.0,0.0,2,initial
265,1878,Old Harrovians,Panthers,3-0,3.0,0.0,2,initial
266,1878,Remnants,Pilgrims,6-2,6.0,2.0,2,initial
267,1878,Swifts,Romford,3-1,3.0,1.0,2,initial
268,1878,Darwen,Eagley,4-1,4.0,1.0,2,replay
269,1878,Barnes,Upton Park,3-2,3.0,2.0,2,initial
270,1878,Old Etonians,Minerva,5-2,5.0,2.0,3,initial
271,1878,Remnants,Darwen,2-3,2.0,3.0,3,initial
272,1878,Clapham Rovers,Cambridge University,1-0,1.0,0.0,3,initial
273,1878,Oxford University,Barnes,2-1,2.0,1.0,3,initial
274,1878,Old Etonians,Darwen,5-5,5.0,5.0,4,initial
275,1878,Nottingham Forest,Oxford University,2-1,2.0,1.0,4,initial
276,1878,Clapham Rovers,Swifts,8-1,8.0,1.0,4,initial
277,1878,Old Etonians,Darwen,2-2,2.0,2.0,4,replay
278,1878,Old Etonians,Darwen,6-2,6.0,2.0,4,replay2
279,1878,Old Etonians,Nottingham Forest,2-1,2.0,1.0,s,initial
280,1878,Old Etonians,Clapham Rovers,1-0,1.0,0.0,f,initial
281,1878,Clapham Rovers,Finchley,1-1,1.880657,1.230657,1,initial
282,1878,Darwen,Birch,1-1,1.880657,1.230657,1,initial
283,1878,Minerva,105th Regiment,1-1,1.880657,1.230657,1,initial
284,1878,Panthers,Runnymede,1-1,1.880657,1.230657,1,initial
285,1878,Remnants,Unity,1-1,1.880657,1.230657,1,initial
286,1878,South Norwood,Leyton,1-1,1.880657,1.230657,1,initial
287,1878,Eagley,Liverpool,1-1,1.880657,1.230657,1,none
288,1878,Swifts,Liverpool,1-1,1.880657,1.230657,3,none
289,1878,Clapham Rovers,Liverpool,1-1,1.880657,1.230657,s,none
290,1879,Maidenhead United,Calthorpe,3-1,3.0,1.0,1,initial
291,1879,Blackburn Rovers,Tyne Association,5-1,5.0,1.0,1,initial
292,1879,Eagley,Darwen,0-1,0.0,1.0,1,initial
293,1879,Gresham,Kildare,3-0,3.0,0.0,1,initial
294,1879,Mosquitos,St Peter's Institute,3-1,3.0,1.0,1,initial
295,1879,Pilgrims,Clarence,5-2,5.0,2.0,1,initial
296,1879,South Norwood,Brentwood,4-2,4.0,2.0,1,initial
297,1879,Turton,Brigg,7-0,7.0,0.0,1,initial
298,1879,Oxford University,Marlow,1-1,1.0,1.0,1,initial
299,1879,Acton,Old Carthusians,0-4,0.0,4.0,1,initial
300,1879,Clapham Rovers,Romford,7-0,7.0,0.0,1,initial
301,1879,Finchley,Old Harrovians,1-2,1.0,2.0,1,initial
302,1879,Grey Friars,Hanover United,2-1,2.0,1.0,1,initial
303,1879,Hendon,Old Foresters,1-1,1.0,1.0,1,initial
304,1879,Hotspur,Argonauts,1-1,1.0,1.0,1,initial
305,1879,Nottingham Forest,Notts County,4-0,4.0,0.0,1,initial
306,1879,Stafford Road,Wednesbury Strollers,2-0,2.0,0.0,1,initial
307,1879,Marlow,Oxford University,0-1,0.0,1.0,1,replay
308,1879,Royal Engineers,Cambridge University,2-0,2.0,0.0,1,initial
309,1879,Herts Rangers,Minerva,2-1,2.0,1.0,1,initial
310,1879,Remnants,Upton Park,1-1,1.0,1.0,1,initial
311,1879,Rochester,Wanderers,0-6,0.0,6.0,1,initial
312,1879,Argonauts,Hotspur,0-1,0.0,1.0,1,replay
313,1879,Old Foresters,Hendon,2-2,2.0,2.0,1,replay
314,1879,Hendon,Old Foresters,3-1,3.0,1.0,1,replay2
315,1879,Upton Park,Remnants,5-2,5.0,2.0,1,replay
316,1879,Henley,Maidenhead United,1-3,1.0,3.0,2,initial
317,1879,Blackburn Rovers,Darwen,3-1,3.0,1.0,2,initial
318,1879,Stafford Road,Aston Villa,1-1,1.0,1.0,2,initial
319,1879,Turton,Nottingham Forest,0-6,0.0,6.0,2,initial
320,1879,West End,Hotspur,1-0,1.0,0.0,2,initial
321,1879,Sheffield,Sheffield Providence,3-3,3.0,3.0,2,initial
322,1879,Clapham Rovers,South Norwood,4-1,4.0,1.0,2,initial
323,1879,Grey Friars,Gresham,9-0,9.0,0.0,2,initial
324,1879,Hendon,Mosquitos,7-1,7.0,1.0,2,initial
325,1879,Royal Engineers,Upton Park,4-1,4.0,1.0,2,initial
326,1879,Sheffield,Sheffield Providence,3-0,3.0,0.0,2,replay
327,1879,Wanderers,Old Carthusians,1-0,1.0,0.0,2,initial
328,1879,Clapham Rovers,Pilgrims,7-0,7.0,0.0,3,initial
329,1879,Oxford University,Birmingham 1879,6-0,6.0,0.0,2,initial
330,1879,Aston Villa,Stafford Road,3-1,3.0,1.0,2,replay
331,1879,Old Etonians,Wanderers,3-1,3.0,1.0,3,initial
332,1879,Nottingham Forest,Blackburn Rovers,6-0,6.0,0.0,3,initial
333,1879,Royal Engineers,Old Harrovians,2-0,2.0,0.0,3,initial
334,1879,Old Etonians,West End,5-1,5.0,1.0,4,initial
335,1879,Clapham Rovers,Hendon,2-0,2.0,0.0,4,initial
336,1879,Maidenhead United,Oxford University,0-1,0.0,1.0,4,initial
337,1879,Royal Engineers,Grey Friars,1-0,1.0,0.0,4,initial
338,1879,Nottingham Forest,Sheffield,2-2,1.880657,1.230657,4,initial
339,1879,Clapham Rovers,Old Etonians,1-0,1.0,0.0,5,initial
340,1879,Oxford University,Royal Engineers,1-1,1.0,1.0,5,initial
341,1879,Oxford University,Royal Engineers,1-0,1.0,0.0,5,replay
342,1879,Oxford University,Nottingham Forest,1-0,1.0,0.0,s,initial
343,1879,Clapham Rovers,Oxford University,1-0,1.0,0.0,f,initial
344,1879,Birmingham 1879,Panthers,1-1,1.880657,1.230657,1,initial
345,1879,Henley,Reading,1-1,1.880657,1.230657,1,initial
346,1879,Old Etonians,Barnes,1-1,1.880657,1.230657,1,initial
347,1879,Sheffield,Queens Park,1-1,1.880657,1.230657,1,initial
348,1879,West End,Swifts,1-1,1.880657,1.230657,1,initial
349,1879,Aston Villa,Liverpool,1-1,1.880657,1.230657,1,none
350,1879,Sheffield Providence,Liverpool,1-1,1.880657,1.230657,1,none
351,1879,Pilgrims,Herts Rangers,1-1,1.880657,1.230657,2,initial
352,1879,Old Etonians,Liverpool,1-1,1.880657,1.230657,2,none
353,1879,Old Harrovians,Liverpool,1-1,1.880657,1.230657,2,none
354,1879,Oxford University,Aston Villa,1-1,1.880657,1.230657,3,initial
355,1879,Grey Friars,Liverpool,1-1,1.880657,1.230657,3,none
356,1879,Hendon,Liverpool,1-1,1.880657,1.230657,3,none
357,1879,Maidenhead United,Liverpool,1-1,1.880657,1.230657,3,none
358,1879,Sheffield,Liverpool,1-1,1.880657,1.230657,3,none
359,1879,West End,Liverpool,1-1,1.880657,1.230657,3,none
360,1879,Nottingham Forest,Liverpool,1-1,1.880657,1.230657,5,none
361,1879,Clapham Rovers,Liverpool,1-1,1.880657,1.230657,s,none
362,1880,Turton,Brigg Brittania,5-0,5.0,0.0,1,initial
363,1880,Old Carthusians,Saffron Walden Town,7-0,7.0,0.0,1,initial
364,1880,Astley Bridge,Eagley,4-0,4.0,0.0,1,initial
365,1880,Aston Villa,Wednesbury Strollers,5-3,5.0,3.0,1,initial
366,1880,Blackburn Rovers,Sheffield Providence,6-2,6.0,2.0,1,initial
367,1880,Marlow,Clarence,6-0,6.0,0.0,1,initial
368,1880,Sheffield,Blackburn Olympic,5-4,5.0,4.0,1,initial
369,1880,Notts County,Derbyshire,4-4,4.0,4.0,1,initial
370,1880,Brentwood,Old Etonians,0-10,0.0,10.0,1,initial
371,1880,Herts Rangers,Barnes,6-0,6.0,0.0,1,initial
372,1880,St Peter's Institute,Hendon,1-8,1.0,8.0,1,initial
373,1880,Stafford Road,Spilsby,7-0,7.0,0.0,1,initial
374,1880,Swifts,Old Foresters,1-1,1.0,1.0,1,initial
375,1880,West End,Hanover United,1-0,1.0,0.0,1,initial
376,1880,Calthorpe,Grantham,1-2,1.0,2.0,1,initial
377,1880,Acton,Kildare,1-1,1.0,1.0,1,initial
378,1880,Clapham Rovers,Finchley,15-0,15.0,0.0,1,initial
379,1880,Darwen,Brigg,8-0,8.0,0.0,1,initial
380,1880,Grey Friars,Windsor Home Park,0-0,0.0,0.0,1,initial
381,1880,Maidenhead United,Old Harrovians,1-1,1.0,1.0,1,initial
382,1880,Reading,Hotspur,5-1,5.0,1.0,1,initial
383,1880,Reading Abbey,St Albans,1-0,1.0,0.0,1,initial
384,1880,Rochester,Dreadnought,1-2,1.0,2.0,1,initial
385,1880,Romford,Reading Minster,1-1,1.0,1.0,1,initial
386,1880,Royal Engineers,Remnants,0-0,0.0,0.0,1,initial
387,1880,Upton Park,Mosquitos,8-1,8.0,1.0,1,initial
388,1880,Weybridge Swallows,Henley,3-1,3.0,1.0,1,initial
389,1880,Kildare,Acton,0-5,0.0,5.0,1,replay
390,1880,Old Foresters,Swifts,1-2,1.0,2.0,1,replay
391,1880,Old Harrovians,Maidenhead United,0-1,0.0,1.0,1,replay
392,1880,Remnants,Royal Engineers,0-1,0.0,1.0,1,replay
393,1880,Windsor Home Park,Grey Friars,1-3,1.0,3.0,1,replay
394,1880,Derbyshire,Notts County,2-4,2.0,4.0,1,replay
395,1880,Nottingham Forest,Aston Villa,1-2,1.0,2.0,2,initial
396,1880,Old Etonians,Hendon,2-0,2.0,0.0,2,initial
397,1880,Royal Engineers,Pilgrims,1-0,1.0,0.0,2,initial
398,1880,Grantham,Stafford Road,1-1,1.0,1.0,2,initial
399,1880,Grey Friars,Maidenhead United,1-0,1.0,0.0,2,initial
400,1880,Marlow,West End,4-0,4.0,0.0,2,initial
401,1880,Old Carthusians,Dreadnought,5-1,5.0,1.0,2,initial
402,1880,Reading Abbey,Acton,2-1,2.0,1.0,2,initial
403,1880,Stafford Road,Grantham,7-1,7.0,1.0,2,replay
404,1880,Astley Bridge,Turton,0-3,0.0,3.0,2,initial
405,1880,Blackburn Rovers,Sheffield Wednesday,0-4,0.0,4.0,2,initial
406,1880,Reading,Swifts,0-1,0.0,1.0,2,initial
407,1880,Sheffield,Darwen,1-5,1.0,5.0,2,initial
408,1880,Weybridge Swallows,Upton Park,0-3,0.0,3.0,2,initial
409,1880,Clapham Rovers,Swifts,2-1,2.0,1.0,3,initial
410,1880,Turton,Sheffield Wednesday,0-2,0.0,2.0,3,initial
411,1880,Herts Rangers,Old Etonians,0-3,0.0,3.0,3,initial
412,1880,Darwen,Sheffield Wednesday,5-2,5.0,2.0,4,initial
413,1880,Royal Engineers,Rangers (London),6-0,6.0,0.0,3,initial
414,1880,Notts County,Aston Villa,1-3,1.0,3.0,3,initial
415,1880,Romford,Reading Abbey,2-0,2.0,0.0,3,initial
416,1880,Clapham Rovers,Upton Park,5-4,5.0,4.0,4,initial
417,1880,Aston Villa,Stafford Road,2-3,2.0,3.0,4,initial
418,1880,Old Carthusians,Royal Engineers,2-0,2.0,0.0,4,initial
419,1880,Old Etonians,Grey Friars,4-0,4.0,0.0,4,initial
420,1880,Romford,Marlow,2-1,2.0,1.0,4,initial
421,1880,Darwen,Romford,15-0,15.0,0.0,5,initial
422,1880,Old Carthusians,Clapham Rovers,3-1,3.0,1.0,5,initial
423,1880,Stafford Road,Old Etonians,1-2,1.0,2.0,5,initial
424,1880,Old Carthusians,Darwen,4-1,4.0,1.0,s,initial
425,1880,Old Carthusians,Old Etonians,3-0,3.0,0.0,f,initial
426,1880,Nottingham Forest,Caius College,1-1,1.880657,1.230657,1,initial
427,1880,Pilgrims,Old Philberdians,1-1,1.880657,1.230657,1,initial
428,1880,Rangers (London),Wanderers,1-1,1.880657,1.230657,1,initial
429,1880,Sheffield Wednesday,Queens Park,1-1,1.880657,1.230657,1,initial
430,1880,Romford,Reading Minster,1-1,1.880657,1.230657,1,replay
431,1880,Clapham Rovers,Liverpool,1-1,1.880657,1.230657,2,none
432,1880,Herts Rangers,Liverpool,1-1,1.880657,1.230657,2,none
433,1880,Notts County,Liverpool,1-1,1.880657,1.230657,2,none
434,1880,Rangers (London),Liverpool,1-1,1.880657,1.230657,2,none
435,1880,Romford,Liverpool,1-1,1.880657,1.230657,2,none
436,1880,Darwen,Liverpool,1-1,1.880657,1.230657,3,none
437,1880,Grey Friars,Liverpool,1-1,1.880657,1.230657,3,none
438,1880,Marlow,Liverpool,1-1,1.880657,1.230657,3,none
439,1880,Stafford Road,Liverpool,1-1,1.880657,1.230657,3,none
440,1880,Upton Park,Liverpool,1-1,1.880657,1.230657,3,none
441,1880,Old Etonians,Liverpool,1-1,1.880657,1.230657,s,none
442,1881,Birmingham City,Derby Town,4-1,4.0,1.0,1,initial
443,1881,Sheffield Heeley,Lockwood Brothers,5-1,5.0,1.0,1,initial
444,1881,Bolton Wanderers,Eagley,5-5,5.0,5.0,1,initial
445,1881,Henley,Maidenhead United,0-2,0.0,2.0,1,initial
446,1881,Marlow,Brentwood,3-1,3.0,1.0,1,initial
447,1881,Upton Park,St Albans,3-0,3.0,0.0,1,initial
448,1881,Windsor Home Park,Reading Minster,0-1,0.0,1.0,1,initial
449,1881,Woodford Bridge,Reading Abbey,1-1,1.0,1.0,1,initial
450,1881,Acton,Finchley,0-0,0.0,0.0,1,initial
451,1881,Astley Bridge,Turton,2-2,2.0,2.0,1,initial
452,1881,Blackburn Rovers,Blackburn Park Road,9-1,9.0,1.0,1,initial
453,1881,Darwen,Blackburn Olympic,3-1,3.0,1.0,1,initial
454,1881,Reading,Hendon,5-0,5.0,0.0,1,initial
455,1881,Staveley,Spilsby,5-1,5.0,1.0,1,initial
456,1881,West End,Remnants,3-2,3.0,2.0,1,initial
457,1881,Aston Villa,Nottingham Forest,4-1,4.0,1.0,1,initial
458,1881,Barnes,Rochester,3-1,3.0,1.0,1,initial
459,1881,Bootle,Blackburn Law,2-1,2.0,1.0,1,initial
460,1881,Esher Leopold,Old Carthusians,0-5,0.0,5.0,1,initial
461,1881,Grantham,Brigg,6-0,6.0,0.0,1,initial
462,1881,Herts Rangers,Swifts,0-4,0.0,4.0,1,initial
463,1881,Hotspur,Highbury Union,1-0,1.0,0.0,1,initial
464,1881,Mosquitos,Pilgrims,1-1,1.0,1.0,1,initial
465,1881,Old Etonians,Clapham Rovers,2-2,2.0,2.0,1,initial
466,1881,Old Foresters,Morton Rangers,3-0,3.0,0.0,1,initial
467,1881,Olympic,Old Harrovians,2-4,2.0,4.0,1,initial
468,1881,Royal Engineers,Kildare,6-0,6.0,0.0,1,initial
469,1881,Sheffield,Brigg Brittania,8-0,8.0,0.0,1,initial
470,1881,Sheffield Wednesday,Sheffield Providence,2-0,2.0,0.0,1,initial
471,1881,Wednesbury Old Athletic,Birmingham St George's,9-1,9.0,1.0,1,initial
472,1881,Wednesbury Strollers,Stafford Road,3-1,3.0,1.0,1,initial
473,1881,Acton,Finchley,4-0,4.0,0.0,1,replay
474,1881,Eagley,Bolton Wanderers,0-1,0.0,1.0,1,replay
475,1881,Pilgrims,Mosquitos,5-0,5.0,0.0,1,replay
476,1881,Reading Abbey,Woodford Bridge,2-1,2.0,1.0,1,replay
477,1881,Turton,Astley Bridge,1-1,1.0,1.0,1,replay
478,1881,Clapham Rovers,Old Etonians,0-1,0.0,1.0,1,replay
479,1881,Astley Bridge,Turton,3-3,3.0,3.0,1,replay2
480,1881,Blackburn Rovers,Bolton Wanderers,6-2,6.0,2.0,2,initial
481,1881,Swifts,Old Harrovians,7-1,7.0,1.0,2,initial
482,1881,Notts County,Wednesbury Strollers,5-3,1.880657,1.230657,2,initial
483,1881,Turton,Astley Bridge,2-0,2.0,0.0,1,replay3
484,1881,Darwen,Accrington,3-1,3.0,1.0,2,initial
485,1881,Hanover United,Upton Park,1-3,1.0,3.0,2,initial
486,1881,Reading,West End,1-1,1.880657,1.230657,2,initial
487,1881,Reading Abbey,Hotspur,1-4,1.0,4.0,2,initial
488,1881,Sheffield,Sheffield Heeley,0-4,0.0,4.0,2,initial
489,1881,Staveley,Grantham,3-1,3.0,1.0,2,initial
490,1881,Marlow,St Bart's Hospital,2-0,2.0,0.0,2,initial
491,1881,Maidenhead United,Acton,2-1,2.0,1.0,2,initial
492,1881,Old Carthusians,Barnes,7-1,7.0,1.0,2,initial
493,1881,Old Foresters,Pilgrims,3-1,3.0,1.0,2,initial
494,1881,Reading Minster,Romford,3-1,3.0,1.0,2,initial
495,1881,Turton,Bootle,4-0,4.0,0.0,2,initial
496,1881,Wednesbury Old Athletic,Birmingham City,6-0,6.0,0.0,2,initial
497,1881,Notts County,Wednesbury Strollers,11-1,11.0,1.0,2,replay
498,1881,Darwen,Turton,4-1,4.0,1.0,3,initial
499,1881,Dreadnought,Marlow,1-2,1.0,2.0,3,initial
500,1881,Hotspur,Reading Minster,0-0,0.0,0.0,3,initial
501,1881,Old Etonians,Swifts,3-0,3.0,0.0,3,initial
502,1881,Old Carthusians,Royal Engineers,0-2,0.0,2.0,3,initial
503,1881,Hotspur,Reading Minster,2-0,2.0,0.0,3,replay
504,1881,Sheffield Wednesday,Staveley,2-2,2.0,2.0,3,initial
505,1881,Aston Villa,Notts County,2-2,2.0,2.0,3,initial
506,1881,Notts County,Aston Villa,2-2,2.0,2.0,3,replay
507,1881,Staveley,Sheffield Wednesday,0-0,0.0,0.0,3,replay
508,1881,Sheffield Wednesday,Staveley,5-1,5.0,1.0,3,replay2
509,1881,Aston Villa,Notts County,4-1,4.0,1.0,3,replay2
510,1881,Old Etonians,Maidenhead United,6-3,6.0,3.0,4,initial
511,1881,Old Foresters,Royal Engineers,2-1,2.0,1.0,4,initial
512,1881,Sheffield Wednesday,Sheffield Heeley,3-1,3.0,1.0,4,initial
513,1881,Upton Park,Hotspur,5-0,5.0,0.0,4,initial
514,1881,Wednesbury Old Athletic,Aston Villa,4-2,4.0,2.0,4,initial
515,1881,Blackburn Rovers,Darwen,5-1,5.0,1.0,4,initial
516,1881,Sheffield Wednesday,Upton Park,6-0,6.0,0.0,5,initial
517,1881,Blackburn Rovers,Wednesbury Old Athletic,3-1,3.0,1.0,5,initial
518,1881,Old Foresters,Marlow,0-0,0.0,0.0,5,initial
519,1881,Marlow,Old Foresters,1-0,1.0,0.0,5,replay
520,1881,Old Etonians,Marlow,5-0,5.0,0.0,s,initial
521,1881,Blackburn Rovers,Sheffield Wednesday,0-0,0.0,0.0,s,initial
522,1881,Sheffield Wednesday,Blackburn Rovers,1-5,1.0,5.0,s,replay
523,1881,Old Etonians,Blackburn Rovers,1-0,1.0,0.0,f,initial
524,1881,Accrington,Queens Park,1-1,1.880657,1.230657,1,initial
525,1881,Dreadnought,Caius College,1-1,1.880657,1.230657,1,initial
526,1881,Notts County,Calthorpe,1-1,1.880657,1.230657,1,initial
527,1881,Romford,Rangers (London),1-1,1.880657,1.230657,1,initial
528,1881,St Bart's Hospital,Wanderers,1-1,1.880657,1.230657,1,initial
529,1881,Hanover United,Liverpool,1-1,1.880657,1.230657,1,none
530,1881,Aston Villa,Liverpool,1-1,1.880657,1.230657,2,none
531,1881,Dreadnought,Liverpool,1-1,1.880657,1.230657,2,none
532,1881,Old Etonians,Liverpool,1-1,1.880657,1.230657,2,none
533,1881,Royal Engineers,Liverpool,1-1,1.880657,1.230657,2,none
534,1881,Sheffield Wednesday,Liverpool,1-1,1.880657,1.230657,2,none
535,1881,Blackburn Rovers,Liverpool,1-1,1.880657,1.230657,3,none
536,1881,Old Foresters,Liverpool,1-1,1.880657,1.230657,3,none
537,1881,Reading,Liverpool,1-1,1.880657,1.230657,3,none
538,1881,Upton Park,Liverpool,1-1,1.880657,1.230657,3,none
539,1881,Marlow,Reading,1-1,1.880657,1.230657,4,initial
540,1881,Old Etonians,Liverpool,1-1,1.880657,1.230657,5,none
541,1882,Church,Clitheroe,5-0,5.0,0.0,1,initial
542,1882,Darwen Ramblers,South Shore,5-2,5.0,2.0,1,initial
543,1882,Aston Villa,Walsall,4-1,4.0,1.0,1,initial
544,1882,Darwen,Blackburn Park Road,4-1,4.0,1.0,1,initial
545,1882,Dreadnought,South Reading,1-2,1.880657,1.230657,1,initial
546,1882,Etonian Ramblers,Romford,6-2,6.0,2.0,1,initial
547,1882,Halliwell,Great Lever,3-2,3.0,2.0,1,initial
548,1882,Liverpool Ramblers,Southport,1-1,1.0,1.0,1,initial
549,1882,Old Carthusians,Pilgrims,6-0,6.0,0.0,1,initial
550,1882,Royal Engineers,Woodford Bridge,3-1,3.0,1.0,1,initial
551,1882,Walsall Town,Staveley,4-1,4.0,1.0,1,initial
552,1882,Blackburn Rovers,Blackpool St John's,11-1,11.0,1.0,1,initial
553,1882,Barnes,Brentwood,2-4,2.0,4.0,1,initial
554,1882,Birmingham St George's,Calthorpe,4-1,4.0,1.0,1,initial
555,1882,Hornchurch,Marlow,0-2,0.0,2.0,1,initial
556,1882,Irwell Springs,Lower Darwen,2-5,2.0,5.0,1,initial
557,1882,Northwich Victoria,Astley Bridge,3-2,3.0,2.0,1,initial
558,1882,Blackburn Olympic,Accrington,6-3,6.0,3.0,1,initial
559,1882,Bolton Olympic,Eagley,4-7,4.0,7.0,1,initial
560,1882,Bolton Wanderers,Bootle,6-1,6.0,1.0,1,initial
561,1882,Chesterfield Spital,Wednesbury Old Athletic,1-7,1.0,7.0,1,initial
562,1882,Clapham Rovers,Kildare,3-0,3.0,0.0,1,initial
563,1882,Druids,Oswestry,1-1,1.0,1.0,1,initial
564,1882,Hanover United,Mosquitos,1-0,1.0,0.0,1,initial
565,1882,Lockwood Brothers,Macclesfield Town,4-3,4.0,3.0,1,initial
566,1882,Maidenhead United,Old Westminsters,0-2,0.0,2.0,1,initial
567,1882,Notts County,Sheffield,6-1,6.0,1.0,1,initial
568,1882,Old Etonians,Old Foresters,1-1,1.0,1.0,1,initial
569,1882,Rochester,Hotspur,2-0,2.0,0.0,1,initial
570,1882,Sheffield Wednesday,Spilsby,12-2,12.0,2.0,1,initial
571,1882,Swifts,Highbury Union,4-1,4.0,1.0,1,initial
572,1882,United Hospital,London Olympic,3-0,3.0,0.0,1,initial
573,1882,West End,Hendon,1-3,1.0,3.0,1,initial
574,1882,Windsor Home Park,Acton,3-0,3.0,0.0,1,initial
575,1882,Dreadnought,South Reading,1-2,1.0,2.0,1,replay
576,1882,Southport,Liverpool Ramblers,0-4,0.0,4.0,1,replay
577,1882,Birmingham City,Stafford Road,3-3,3.0,3.0,1,initial
578,1882,Old Etonians,Old Foresters,3-1,3.0,1.0,1,replay
579,1882,Oswestry,Druids,0-2,0.0,2.0,1,replay
580,1882,Stafford Road,Birmingham City,6-2,6.0,2.0,1,replay
581,1882,Aston Villa,Wednesbury Old Athletic,4-1,4.0,1.0,2,initial
582,1882,Grimsby Town,Phoenix Bessemer,1-9,1.0,9.0,2,initial
583,1882,Royal Engineers,Reading,8-0,8.0,0.0,2,initial
584,1882,Swifts,Upton Park,2-2,2.0,2.0,2,initial
585,1882,Windsor Home Park,United Hospital,3-1,3.0,1.0,2,initial
586,1882,Aston Unity,Birmingham St George's,3-1,3.0,1.0,2,initial
587,1882,Bolton Wanderers,Liverpool Ramblers,3-0,3.0,0.0,2,initial
588,1882,Clapham Rovers,Hanover United,7-1,7.0,1.0,2,initial
589,1882,Darwen,Blackburn Rovers,1-0,1.0,0.0,2,initial
590,1882,Darwen Ramblers,Haslingden,3-2,3.0,2.0,2,initial
591,1882,Eagley,Halliwell,3-1,3.0,1.0,2,initial
592,1882,Hendon,Chatham,2-1,2.0,1.0,2,initial
593,1882,Nottingham Forest,Sheffield Heeley,7-2,7.0,2.0,2,initial
594,1882,Old Carthusians,Etonian Ramblers,7-0,7.0,0.0,2,initial
595,1882,Old Etonians,Brentwood,2-1,2.0,1.0,2,initial
596,1882,Sheffield Wednesday,Lockwood Brothers,6-0,6.0,0.0,2,initial
597,1882,Walsall Town,Stafford Road,4-1,4.0,1.0,2,initial
598,1882,Swifts,Upton Park,3-2,3.0,2.0,2,replay
599,1882,Blackburn Olympic,Lower Darwen,8-1,8.0,1.0,2,initial
600,1882,Druids,Northwich Victoria,5-0,5.0,0.0,2,initial
601,1882,Blackburn Olympic,Darwen Ramblers,8-0,8.0,0.0,3,initial
602,1882,Old Carthusians,Old Westminsters,3-2,3.0,2.0,3,initial
603,1882,Old Etonians,Rochester,7-0,7.0,0.0,3,initial
604,1882,Notts County,Phoenix Bessemer,4-1,4.0,1.0,3,initial
605,1882,Aston Villa,Aston Unity,3-1,3.0,1.0,3,initial
606,1882,Church,Darwen,2-2,2.0,2.0,3,initial
607,1882,Clapham Rovers,Windsor Home Park,3-0,3.0,0.0,3,initial
608,1882,Druids,Bolton Wanderers,0-0,0.0,0.0,3,initial
609,1882,Hendon,South Reading,11-1,11.0,1.0,3,initial
610,1882,Nottingham Forest,Sheffield Wednesday,2-2,2.0,2.0,3,initial
611,1882,Sheffield Wednesday,Nottingham Forest,3-2,3.0,2.0,3,replay
612,1882,Darwen,Church,0-2,0.0,2.0,3,replay
613,1882,Bolton Wanderers,Druids,1-1,1.0,1.0,3,replay
614,1882,Old Etonians,Swifts,2-0,2.0,0.0,4,initial
615,1882,Old Carthusians,Royal Engineers,6-2,6.0,2.0,4,initial
616,1882,Aston Villa,Walsall Town,2-1,2.0,1.0,4,initial
617,1882,Druids,Bolton Wanderers,1-0,1.0,0.0,3,replay2
618,1882,Blackburn Olympic,Church,2-0,2.0,0.0,4,initial
619,1882,Marlow,Hendon,0-3,0.0,3.0,4,initial
620,1882,Druids,Eagley,2-1,2.0,1.0,4,initial
621,1882,Sheffield Wednesday,Notts County,1-4,1.0,4.0,4,initial
622,1882,Old Carthusians,Clapham Rovers,5-3,5.0,3.0,5,initial
623,1882,Blackburn Olympic,Druids,4-1,4.0,1.0,5,initial
624,1882,Hendon,Old Etonians,2-4,2.0,4.0,5,initial
625,1882,Notts County,Aston Villa,4-3,4.0,3.0,5,initial
626,1882,Blackburn Olympic,Old Carthusians,4-0,4.0,0.0,s,initial
627,1882,Old Etonians,Notts County,2-1,2.0,1.0,s,initial
628,1882,Blackburn Olympic,Old Etonians,2-1,2.0,1.0,f,initial
629,1882,Grimsby Town,Queens Park,1-1,1.880657,1.230657,1,initial
630,1882,Nottingham Forest,Brigg Brittania,1-1,1.880657,1.230657,1,initial
631,1882,Phoenix Bessemer,Grantham,1-1,1.880657,1.230657,1,initial
632,1882,Reading Minster,Remnants,1-1,1.880657,1.230657,1,initial
633,1882,Aston Unity,Liverpool,1-1,1.880657,1.230657,1,none
634,1882,Chatham,Liverpool,1-1,1.880657,1.230657,1,none
635,1882,Haslingden,Liverpool,1-1,1.880657,1.230657,1,none
636,1882,Reading,Liverpool,1-1,1.880657,1.230657,1,none
637,1882,Sheffield Heeley,Liverpool,1-1,1.880657,1.230657,1,none
638,1882,Upton Park,Liverpool,1-1,1.880657,1.230657,1,none
639,1882,Marlow,Reading Minster,1-1,1.880657,1.230657,2,initial
640,1882,Church,Liverpool,1-1,1.880657,1.230657,2,none
641,1882,Notts County,Liverpool,1-1,1.880657,1.230657,2,none
642,1882,Old Westminsters,Liverpool,1-1,1.880657,1.230657,2,none
643,1882,Rochester,Liverpool,1-1,1.880657,1.230657,2,none
644,1882,South Reading,Liverpool,1-1,1.880657,1.230657,2,none
645,1882,Eagley,Liverpool,1-1,1.880657,1.230657,3,none
646,1882,Marlow,Liverpool,1-1,1.880657,1.230657,3,none
647,1882,Royal Engineers,Liverpool,1-1,1.880657,1.230657,3,none
648,1882,Swifts,Liverpool,1-1,1.880657,1.230657,3,none
649,1882,Walsall Town,Liverpool,1-1,1.880657,1.230657,3,none
650,1882,Clapham Rovers,Liverpool,1-1,1.880657,1.230657,4,none
651,1883,Crewe Alexandra,Queens Park,0-10,0.0,10.0,1,initial
652,1883,Blackburn Olympic,Darwen Ramblers,5-1,5.0,1.0,1,initial
653,1883,Halliwell,Eagley,2-5,2.0,5.0,1,initial
654,1883,Birmingham City,Birmingham Excelsior,1-1,1.0,1.0,1,initial
655,1883,Blackburn Rovers,Southport,7-1,7.0,1.0,1,initial
656,1883,Great Lever,Astley Bridge,4-1,4.0,1.0,1,initial
657,1883,Hurst,Turton,3-1,3.0,1.0,1,initial
658,1883,Blackburn Park Road,Clitheroe Low Moor,6-0,6.0,0.0,1,initial
659,1883,Darwen,Church,2-2,2.0,2.0,1,initial
660,1883,Wolverhampton Wanderers,Long Eaton Rangers,4-1,4.0,1.0,1,initial
661,1883,Padiham,Lower Darwen,3-1,3.0,1.0,1,initial
662,1883,Bolton Association,Bradshaw,5-1,5.0,1.0,1,initial
663,1883,Hanover United,Brentwood,1-6,1.0,6.0,1,initial
664,1883,Hull Town,Grimsby Town,1-3,1.0,3.0,1,initial
665,1883,Old Westminsters,Chatham,3-0,3.0,0.0,1,initial
666,1883,Rochester,Uxbridge,2-1,2.0,1.0,1,initial
667,1883,Romford,Woodford Bridge,3-0,3.0,0.0,1,initial
668,1883,Church,Darwen,0-1,0.0,1.0,1,replay
669,1883,Accrington,Blackpool St John's,4-0,4.0,0.0,1,initial
670,1883,Acton,Upton Park,0-2,0.0,2.0,1,initial
671,1883,Bolton Wanderers,Bolton Olympic,9-0,9.0,0.0,1,initial
672,1883,Calthorpe,Walsall Town,0-9,0.0,9.0,1,initial
673,1883,Chesterfield Spital,Rotherham Town,1-1,1.0,1.0,1,initial
674,1883,Clitheroe,South Shore,3-3,3.0,3.0,1,initial
675,1883,Davenham,Macclesfield Town,2-0,2.0,0.0,1,initial
676,1883,Druids,Northwich Victoria,0-1,0.0,1.0,1,initial
677,1883,Grantham,Spilsby,3-2,3.0,2.0,1,initial
678,1883,Hendon,Old Etonians,3-2,3.0,2.0,1,initial
679,1883,Hornchurch,Marlow,0-9,0.0,9.0,1,initial
680,1883,Middlesbrough,Staveley,1-5,1.0,5.0,1,initial
681,1883,Mosquitos,Pilgrims,3-2,3.0,2.0,1,initial
682,1883,Notts County,Sheffield Heeley,3-1,3.0,1.0,1,initial
683,1883,Old Foresters,Dreadnought,2-1,2.0,1.0,1,initial
684,1883,Oswestry,Hartford St John's,2-0,2.0,0.0,1,initial
685,1883,Reading,South Reading,2-2,2.0,2.0,1,initial
686,1883,Reading Minster,Old Carthusians,1-10,1.0,10.0,1,initial
687,1883,Sheffield,Lockwood Brothers,1-4,1.0,4.0,1,initial
688,1883,Stafford Road,Aston Unity,5-1,5.0,1.0,1,initial
689,1883,Stoke City,Manchester,1-2,1.0,2.0,1,initial
690,1883,Upton Rangers,Old Wykehamists,0-7,0.0,7.0,1,initial
691,1883,Walsall,Aston Villa,1-5,1.0,5.0,1,initial
692,1883,Wednesbury Old Athletic,Birmingham St George's,5-0,5.0,0.0,1,initial
693,1883,West Bromwich Albion,Wednesbury Town,0-2,0.0,2.0,1,initial
694,1883,West End,Maidenhead United,1-0,1.0,0.0,1,initial
695,1883,Windsor Home Park,Royal Engineers,5-3,5.0,3.0,1,initial
696,1883,Birmingham Excelsior,Birmingham City,3-2,3.0,2.0,1,replay
697,1883,Rossendale,Irwell Springs,6-2,1.880657,1.230657,1,initial
698,1883,Rotherham Town,Chesterfield Spital,7-2,7.0,2.0,1,replay
699,1883,South Reading,Reading,0-4,0.0,4.0,1,replay
700,1883,South Shore,Clitheroe,3-2,3.0,2.0,1,replay
701,1883,Blackburn Park Road,Accrington,2-3,1.880657,1.230657,2,initial
702,1883,Northwich Victoria,Davenham,5-1,5.0,1.0,2,initial
703,1883,Old Carthusians,Old Foresters,2-7,2.0,7.0,2,initial
704,1883,Grantham,Grimsby Town,4-0,4.0,0.0,2,initial
705,1883,Birmingham Excelsior,Derby Midland,1-1,1.0,1.0,2,initial
706,1883,Bolton Wanderers,Bolton Association,3-0,3.0,0.0,2,initial
707,1883,Clapham Rovers,Rochester,7-0,7.0,0.0,2,initial
708,1883,Darwen,Blackburn Olympic,1-2,1.0,2.0,2,initial
709,1883,Hurst,Irwell Springs,3-2,1.880657,1.230657,2,initial
710,1883,Lockwood Brothers,Rotherham Town,3-1,3.0,1.0,2,initial
711,1883,Notts County,Nottingham Forest,3-0,3.0,0.0,2,initial
712,1883,Old Westminsters,Hendon,2-1,2.0,1.0,2,initial
713,1883,Preston North End,Great Lever,4-1,4.0,1.0,2,initial
714,1883,Queens Park,Manchester,15-0,15.0,0.0,2,initial
715,1883,Reading,West End,1-0,1.0,0.0,2,initial
716,1883,Romford,Mosquitos,3-1,3.0,1.0,2,initial
717,1883,South Shore,Blackburn Rovers,0-7,0.0,7.0,2,initial
718,1883,Stafford Road,Aston Villa,0-5,0.0,5.0,2,initial
719,1883,Staveley,Sheffield Wednesday,3-1,3.0,1.0,2,initial
720,1883,Swifts,Marlow,2-0,2.0,0.0,2,initial
721,1883,Walsall Town,Wednesbury Town,2-2,2.0,2.0,2,initial
722,1883,Wednesbury Old Athletic,Wolverhampton Wanderers,4-2,4.0,2.0,2,initial
723,1883,Windsor Home Park,Old Wykehamists,0-1,0.0,1.0,2,initial
724,1883,Wrexham,Oswestry,3-4,3.0,4.0,2,initial
725,1883,Wednesbury Town,Walsall Town,6-0,6.0,0.0,2,replay
726,1883,Derby Midland,Birmingham Excelsior,2-1,2.0,1.0,2,replay
727,1883,Grantham,Notts County,1-4,1.0,4.0,3,initial
728,1883,Clapham Rovers,Swifts,1-2,1.0,2.0,3,initial
729,1883,Reading,Upton Park,1-6,1.0,6.0,3,initial
730,1883,Blackburn Rovers,Padiham,3-0,3.0,0.0,3,initial
731,1883,Bolton Wanderers,Irwell Springs,8-1,8.0,1.0,3,initial
732,1883,Oswestry Town,Queens Park,1-7,1.0,7.0,3,initial
733,1883,Preston North End,Eagley,9-1,9.0,1.0,3,initial
734,1883,Romford,Brentwood,1-4,1.0,4.0,3,initial
735,1883,Staveley,Lockwood Brothers,1-0,1.0,0.0,3,initial
736,1883,Wednesbury Old Athletic,Aston Villa,4-7,4.0,7.0,3,initial
737,1883,Wednesbury Town,Derby Midland,1-0,1.0,0.0,3,initial
738,1883,Blackburn Olympic,Old Wykehamists,6-0,6.0,0.0,4,initial
739,1883,Blackburn Rovers,Staveley,5-1,5.0,1.0,4,initial
740,1883,Northwich Victoria,Brentwood,3-0,3.0,0.0,4,initial
741,1883,Notts County,Bolton Wanderers,2-2,2.0,2.0,4,initial
742,1883,Old Westminsters,Wednesbury Town,5-0,5.0,0.0,4,initial
743,1883,Preston North End,Upton Park,1-1,1.880657,1.230657,4,initial
744,1883,Queens Park,Aston Villa,6-1,6.0,1.0,4,initial
745,1883,Swifts,Old Foresters,2-1,2.0,1.0,4,initial
746,1883,Bolton Wanderers,Notts County,1-2,1.0,2.0,4,replay
747,1883,Blackburn Olympic,Northwich Victoria,9-1,9.0,1.0,5,initial
748,1883,Notts County,Swifts,1-1,1.0,1.0,5,initial
749,1883,Old Westminsters,Queens Park,0-1,0.0,1.0,5,initial
750,1883,Upton Park,Blackburn Rovers,0-3,0.0,3.0,5,initial
751,1883,Swifts,Notts County,0-1,0.0,1.0,5,replay
752,1883,Blackburn Rovers,Notts County,1-0,1.0,0.0,s,initial
753,1883,Queens Park,Blackburn Olympic,4-0,4.0,0.0,s,initial
754,1883,Blackburn Rovers,Queens Park,2-1,2.0,1.0,f,initial
755,1883,Clapham Rovers,Kildare,1-1,1.880657,1.230657,1,initial
756,1883,Nottingham Forest,Redcar,1-1,1.880657,1.230657,1,initial
757,1883,Wrexham,Liverpool Ramblers,1-1,1.880657,1.230657,1,initial
758,1883,Derby Midland,Liverpool,1-1,1.880657,1.230657,1,none
759,1883,Preston North End,Liverpool,1-1,1.880657,1.230657,1,none
760,1883,Sheffield Wednesday,Liverpool,1-1,1.880657,1.230657,1,none
761,1883,Swifts,Liverpool,1-1,1.880657,1.230657,1,none
762,1883,Brentwood,Liverpool,1-1,1.880657,1.230657,2,none
763,1883,Eagley,Liverpool,1-1,1.880657,1.230657,2,none
764,1883,Padiham,Liverpool,1-1,1.880657,1.230657,2,none
765,1883,Upton Park,Liverpool,1-1,1.880657,1.230657,2,none
766,1883,Irwell Springs,Hurst,1-1,1.880657,1.230657,2,replay
767,1883,Blackburn Olympic,Liverpool,1-1,1.880657,1.230657,3,none
768,1883,Northwich Victoria,Liverpool,1-1,1.880657,1.230657,3,none
769,1883,Old Foresters,Liverpool,1-1,1.880657,1.230657,3,none
770,1883,Old Westminsters,Liverpool,1-1,1.880657,1.230657,3,none
771,1883,Old Wykehamists,Liverpool,1-1,1.880657,1.230657,3,none
772,1884,Accrington,Southport Central,3-0,1.880657,1.230657,1,initial
773,1884,Blackburn Olympic,Oswaldtwistle Rovers,12-0,12.0,0.0,1,initial
774,1884,Blackburn Rovers,Rossendale,11-0,11.0,0.0,1,initial
775,1884,Darwen,Bradshaw,11-0,11.0,0.0,1,initial
776,1884,Higher Walton,Darwen Old Wanderers,1-1,1.0,1.0,1,initial
777,1884,Lower Darwen,Halliwell,4-1,4.0,1.0,1,initial
778,1884,Hurst,Church,2-3,2.0,3.0,1,initial
779,1884,Wrexham,Goldenhill,1-0,1.0,0.0,1,initial
780,1884,Chirk,Davenham,4-2,4.0,2.0,1,initial
781,1884,Derby Junction,West Bromwich Albion,1-7,1.0,7.0,1,initial
782,1884,Grantham,Grimsby Town,1-1,1.0,1.0,1,initial
783,1884,Aston Unity,Birmingham St George's,0-5,0.0,5.0,1,initial
784,1884,Aston Villa,Wednesbury Town,4-1,4.0,1.0,1,initial
785,1884,Darwen Ramblers,Fishwick Ramblers,1-2,1.0,2.0,1,initial
786,1884,Hull Town,Lincoln City,1-5,1.0,5.0,1,initial
787,1884,Old Foresters,Hoddesdon Town,8-0,8.0,0.0,1,initial
788,1884,Old Westminsters,Bournemouth Rovers,6-0,6.0,0.0,1,initial
789,1884,Romford,Clapton,3-2,3.0,2.0,1,initial
790,1884,Acton,Old Carthusians,1-7,1.0,7.0,1,initial
791,1884,Birmingham Excelsior,Birmingham City,2-0,2.0,0.0,1,initial
792,1884,Brentwood,Barnes,2-0,2.0,0.0,1,initial
793,1884,Clapham Rovers,Hendon,3-3,3.0,3.0,1,initial
794,1884,Crewe Alexandra,Oswestry,2-1,2.0,1.0,1,initial
795,1884,Derby County,Walsall Town,0-7,0.0,7.0,1,initial
796,1884,Derby Midland,Wednesbury Old Athletic,1-2,1.0,2.0,1,initial
797,1884,Druids,Liverpool Ramblers,6-1,6.0,1.0,1,initial
798,1884,Dulwich,Pilgrims,3-2,3.0,2.0,1,initial
799,1884,Hanover United,Reading Minster,1-0,1.0,0.0,1,initial
800,1884,Leek,Northwich Victoria,4-3,4.0,3.0,1,initial
801,1884,Lockwood Brothers,Sheffield,0-3,0.0,3.0,1,initial
802,1884,Long Eaton Rangers,Sheffield Wednesday,0-1,0.0,1.0,1,initial
803,1884,Luton Wanderers,Old Etonians,1-3,1.0,3.0,1,initial
804,1884,Macclesfield Town,Hartford St John's,9-0,9.0,0.0,1,initial
805,1884,Maidenhead United,Old Wykehamists,0-3,0.0,3.0,1,initial
806,1884,Marlow,Royal Engineers,10-1,10.0,1.0,1,initial
807,1884,Newark,Spilsby,7-3,7.0,3.0,1,initial
808,1884,Nottingham Forest,Rotherham Town,5-0,5.0,0.0,1,initial
809,1884,Notts County,Notts Olympic,2-0,2.0,0.0,1,initial
810,1884,Reading,Rochester,2-0,2.0,0.0,1,initial
811,1884,Redcar,Sunderland,3-1,3.0,1.0,1,initial
812,1884,Sheffield Heeley,Notts Wanderers,1-0,1.0,0.0,1,initial
813,1884,South Reading,Casuals,4-1,4.0,1.0,1,initial
814,1884,Staveley,Notts Rangers,4-1,4.0,1.0,1,initial
815,1884,Swifts,Old Brightonians,3-0,3.0,0.0,1,initial
816,1884,Uxbridge,Hotspur,1-3,1.0,3.0,1,initial
817,1884,Walsall,Stafford Road,0-0,0.0,0.0,1,initial
818,1884,West End,Upton Park,3-3,3.0,3.0,1,initial
819,1884,Wolverhampton Wanderers,Derby St Luke's,0-0,0.0,0.0,1,initial
820,1884,Darwen Old Wanderers,Higher Walton,4-1,4.0,1.0,1,replay
821,1884,Grimsby Town,Grantham,1-0,1.0,0.0,1,replay
822,1884,Walsall,Stafford Road,2-1,2.0,1.0,1,replay
823,1884,Derby St Luke's,Wolverhampton Wanderers,4-2,4.0,2.0,1,replay
824,1884,Hendon,Clapham Rovers,6-0,6.0,0.0,1,replay
825,1884,Fishwick Ramblers,Darwen,0-2,0.0,2.0,2,initial
826,1884,Southport,Clitheroe Low Moor,3-1,3.0,1.0,2,initial
827,1884,Chirk,Wrexham,4-1,4.0,1.0,2,initial
828,1884,Darwen Old Wanderers,Bolton Association,7-2,7.0,2.0,2,initial
829,1884,Hanover United,Old Foresters,2-1,2.0,1.0,2,initial
830,1884,Birmingham St George's,Birmingham Excelsior,2-2,2.0,2.0,2,initial
831,1884,Blackburn Rovers,Blackburn Olympic,3-2,3.0,2.0,2,initial
832,1884,Brentwood,Old Etonians,2-2,2.0,2.0,2,initial
833,1884,Chatham,Hendon,1-0,1.0,0.0,2,initial
834,1884,Derby St Luke's,Walsall,0-1,0.0,1.0,2,initial
835,1884,Grimsby Town,Redcar,3-1,3.0,1.0,2,initial
836,1884,Hotspur,Old Wykehamists,1-2,1.0,2.0,2,initial
837,1884,Macclesfield Town,Leek,1-5,1.0,5.0,2,initial
838,1884,Middlesbrough,Newark,4-1,4.0,1.0,2,initial
839,1884,Nottingham Forest,Sheffield Heeley,4-1,4.0,1.0,2,initial
840,1884,Old Carthusians,Marlow,5-3,5.0,3.0,2,initial
841,1884,Old Westminsters,Henley,7-0,7.0,0.0,2,initial
842,1884,Queens Park,Crewe Alexandra,2-1,2.0,1.0,2,initial
843,1884,Romford,Dulwich,3-0,3.0,0.0,2,initial
844,1884,Sheffield,Chesterfield Spital,4-1,4.0,1.0,2,initial
845,1884,South Shore,Church,2-3,2.0,3.0,2,initial
846,1884,Staveley,Notts County,0-2,0.0,2.0,2,initial
847,1884,Swifts,South Reading,3-2,3.0,2.0,2,initial
848,1884,Upton Park,Reading,3-1,3.0,1.0,2,initial
849,1884,Walsall Town,Aston Villa,0-2,0.0,2.0,2,initial
850,1884,West Bromwich Albion,Wednesbury Old Athletic,4-2,4.0,2.0,2,initial
851,1884,Newtown,Druids,1-1,1.0,1.0,2,initial
852,1884,Birmingham St George's,Birmingham Excelsior,2-0,2.0,0.0,2,replay
853,1884,Old Etonians,Brentwood,6-1,6.0,1.0,2,replay
854,1884,Lower Darwen,Darwen Old Wanderers,4-2,4.0,2.0,3,initial
855,1884,Blackburn Rovers,Witton,5-0,5.0,0.0,3,initial
856,1884,Druids,Newtown,6-0,6.0,0.0,2,replay
857,1884,Aston Villa,West Bromwich Albion,0-0,0.0,0.0,3,initial
858,1884,Church,Southport,10-0,10.0,0.0,3,initial
859,1884,Grimsby Town,Lincoln City,1-0,1.0,0.0,3,initial
860,1884,Hanover United,Chatham,0-2,0.0,2.0,3,initial
861,1884,Leek,Queens Park,2-3,2.0,3.0,3,initial
862,1884,Notts County,Sheffield,5-0,5.0,0.0,3,initial
863,1884,Old Wykehamists,Upton Park,2-1,2.0,1.0,3,initial
864,1884,Sheffield Wednesday,Nottingham Forest,1-2,1.0,2.0,3,initial
865,1884,Swifts,Old Westminsters,1-1,1.0,1.0,3,initial
866,1884,Birmingham St George's,Walsall,2-3,2.0,3.0,3,initial
867,1884,Druids,Chirk,4-1,4.0,1.0,3,initial
868,1884,West Bromwich Albion,Aston Villa,3-0,3.0,0.0,3,replay
869,1884,Old Westminsters,Swifts,2-2,2.0,2.0,3,replay
870,1884,Blackburn Rovers,Romford,8-0,8.0,0.0,4,initial
871,1884,Church,Darwen,3-0,3.0,0.0,4,initial
872,1884,Queens Park,Old Wykehamists,7-0,7.0,0.0,4,initial
873,1884,Swifts,Old Westminsters,2-1,2.0,1.0,3,replay2
874,1884,Chatham,Lower Darwen,1-0,1.0,0.0,4,initial
875,1884,Old Carthusians,Grimsby Town,3-0,3.0,0.0,4,initial
876,1884,Old Etonians,Middlesbrough,5-2,5.0,2.0,4,initial
877,1884,Swifts,Nottingham Forest,0-1,0.0,1.0,4,initial
878,1884,Walsall,Notts County,1-4,1.0,4.0,4,initial
879,1884,West Bromwich Albion,Druids,1-0,1.0,0.0,4,initial
880,1884,Chatham,Old Carthusians,0-3,0.0,3.0,5,initial
881,1884,Church,Old Carthusians,0-1,0.0,1.0,6,initial
882,1884,Notts County,Queens Park,2-2,2.0,2.0,6,initial
883,1884,Old Etonians,Nottingham Forest,0-2,0.0,2.0,6,initial
884,1884,West Bromwich Albion,Blackburn Rovers,0-2,0.0,2.0,6,initial
885,1884,Queens Park,Notts County,2-1,2.0,1.0,6,replay
886,1884,Blackburn Rovers,Old Carthusians,5-1,5.0,1.0,s,initial
887,1884,Nottingham Forest,Queens Park,1-1,1.0,1.0,s,initial
888,1884,Queens Park,Nottingham Forest,3-0,3.0,0.0,s,replay
889,1884,Blackburn Rovers,Queens Park,2-0,2.0,0.0,f,initial
890,1884,Bolton Association,Astley Bridge,1-1,1.880657,1.230657,1,initial
891,1884,Chatham,Windsor Home Park,1-1,1.880657,1.230657,1,initial
892,1884,Clitheroe Low Moor,Blackburn Park Road,1-1,1.880657,1.230657,1,initial
893,1884,Middlesbrough,Grimsby District,1-1,1.880657,1.230657,1,initial
894,1884,Newtown,Stafford Rangers,1-1,1.880657,1.230657,1,initial
895,1884,South Shore,Rawtenstall,1-1,1.880657,1.230657,1,initial
896,1884,Witton,Clitheroe,1-1,1.880657,1.230657,1,initial
897,1884,Chesterfield Spital,Liverpool,1-1,1.880657,1.230657,1,none
898,1884,Henley,Liverpool,1-1,1.880657,1.230657,1,none
899,1884,Queens Park,Stoke City,1-1,1.880657,1.230657,1,none
900,1884,Upton Park,West End,1-1,1.880657,1.230657,1,replay
901,1884,Lincoln City,Liverpool,1-1,1.880657,1.230657,2,none
902,1884,Lower Darwen,Liverpool,1-1,1.880657,1.230657,2,none
903,1884,Sheffield Wednesday,Liverpool,1-1,1.880657,1.230657,2,none
904,1884,Witton,Liverpool,1-1,1.880657,1.230657,2,none
905,1884,Darwen,Liverpool,1-1,1.880657,1.230657,3,none
906,1884,Middlesbrough,Liverpool,1-1,1.880657,1.230657,3,none
907,1884,Old Carthusians,Liverpool,1-1,1.880657,1.230657,3,none
908,1884,Old Etonians,Liverpool,1-1,1.880657,1.230657,3,none
909,1884,Romford,Liverpool,1-1,1.880657,1.230657,3,none
910,1884,Blackburn Rovers,Liverpool,1-1,1.880657,1.230657,5,none
911,1884,Church,Liverpool,1-1,1.880657,1.230657,5,none
912,1884,Nottingham Forest,Liverpool,1-1,1.880657,1.230657,5,none
913,1884,Notts County,Liverpool,1-1,1.880657,1.230657,5,none
914,1884,Old Etonians,Liverpool,1-1,1.880657,1.230657,5,none
915,1884,Queens Park,Liverpool,1-1,1.880657,1.230657,5,none
916,1884,West Bromwich Albion,Liverpool,1-1,1.880657,1.230657,5,none
917,1885,Accrington,Witton,5-4,5.0,4.0,1,initial
918,1885,Bolton Wanderers,Eagley,6-0,6.0,0.0,1,initial
919,1885,Darwen Old Wanderers,Burnley,11-0,11.0,0.0,1,initial
920,1885,Higher Walton,South Shore,3-4,3.0,4.0,1,initial
921,1885,Lincoln Lindum,Grimsby District,4-0,4.0,0.0,1,initial
922,1885,Third Lanark,Blackburn Park Road,4-2,4.0,2.0,1,initial
923,1885,Walsall Town,Aston Villa,0-5,0.0,5.0,1,initial
924,1885,Sheffield Heeley,Eckington Works,2-1,2.0,1.0,1,initial
925,1885,Bollington,Oswestry,0-5,0.0,5.0,1,initial
926,1885,Clitheroe,Blackburn Rovers,0-2,0.0,2.0,1,initial
927,1885,Gainsborough Trinity,Grantham,4-1,4.0,1.0,1,initial
928,1885,Hartford St John's,Newtown,1-3,1.0,3.0,1,initial
929,1885,Hendon,Clapton,0-4,0.0,4.0,1,initial
930,1885,Notts County,Rotherham Town,15-0,15.0,0.0,1,initial
931,1885,Port Vale,Chirk,3-0,3.0,0.0,1,initial
932,1885,Redcar,Sunderland,3-0,3.0,0.0,1,initial
933,1885,Rossendale,Clitheroe Low Moor,6-2,6.0,2.0,1,initial
934,1885,Upton Park,United London Swifts,4-2,4.0,2.0,1,initial
935,1885,Astley Bridge,Southport,3-2,3.0,2.0,1,initial
936,1885,Barnes,Lancing Old Boys,1-7,1.0,7.0,1,initial
937,1885,Birmingham City,Burton Wanderers,9-2,9.0,2.0,1,initial
938,1885,Blackburn Olympic,Church,4-2,1.880657,1.230657,1,initial
939,1885,Brentwood,Maidenhead United,3-0,3.0,0.0,1,initial
940,1885,Chatham,Old Carthusians,0-2,0.0,2.0,1,initial
941,1885,Clapham Rovers,1st Surrey Rifles,12-0,12.0,0.0,1,initial
942,1885,Darwen,Derby Junction,2-2,2.0,2.0,1,initial
943,1885,Davenham,Goldenhill,2-1,2.0,1.0,1,initial
944,1885,Derby County,Birmingham St George's,3-0,3.0,0.0,1,initial
945,1885,Derby Midland,Birmingham Excelsior,2-1,2.0,1.0,1,initial
946,1885,Dulwich,South Reading,1-2,1.0,2.0,1,initial
947,1885,Halliwell,Fishwick Ramblers,2-1,2.0,1.0,1,initial
948,1885,Hanover United,Romford,1-1,1.0,1.0,1,initial
949,1885,Hurst,Bradshaw,2-1,1.880657,1.230657,1,initial
950,1885,Leek,Wrexham,6-3,6.0,3.0,1,initial
951,1885,Lincoln City,Grimsby Town,0-2,0.0,2.0,1,initial
952,1885,Lockwood Brothers,Notts Rangers,2-2,2.0,2.0,1,initial
953,1885,Long Eaton Rangers,Sheffield Wednesday,2-0,2.0,0.0,1,initial
954,1885,Luton Wanderers,Chesham,3-2,3.0,2.0,1,initial
955,1885,Macclesfield Town,Northwich Victoria,4-1,4.0,1.0,1,initial
956,1885,Marlow,Luton Town,3-0,3.0,0.0,1,initial
957,1885,Newark,Sheffield,0-3,0.0,3.0,1,initial
958,1885,Nottingham Forest,Mellors,6-2,6.0,2.0,1,initial
959,1885,Notts Wanderers,Notts Olympic,2-2,2.0,2.0,1,initial
960,1885,Old Brightonians,Acton,2-1,2.0,1.0,1,initial
961,1885,Old Westminsters,Hotspur,3-1,3.0,1.0,1,initial
962,1885,Old Wykehamists,Uxbridge,5-0,5.0,0.0,1,initial
963,1885,Oswaldtwistle Rovers,Lower Darwen,3-1,3.0,1.0,1,initial
964,1885,Queens Park,Partick Thistle,5-1,5.0,1.0,1,initial
965,1885,Rochester,Reading,6-1,6.0,1.0,1,initial
966,1885,Royal Engineers,Old Foresters,1-5,1.0,5.0,1,initial
967,1885,Stafford Rangers,Druids,1-4,1.0,4.0,1,initial
968,1885,Stafford Road,Matlock,7-0,7.0,0.0,1,initial
969,1885,Staveley,Mexborough,1-1,1.0,1.0,1,initial
970,1885,Stoke City,Crewe Alexandra,2-2,2.0,2.0,1,initial
971,1885,Swifts,Casuals,7-1,7.0,1.0,1,initial
972,1885,Wednesbury Old Athletic,Burton Swifts,5-1,5.0,1.0,1,initial
973,1885,West Bromwich Albion,Aston Unity,4-1,4.0,1.0,1,initial
974,1885,Wolverhampton Wanderers,Derby St Luke's,7-0,7.0,0.0,1,initial
975,1885,Bradshaw,Hurst,1-1,1.880657,1.230657,1,replay
976,1885,Church,Blackburn Olympic,2-2,2.0,2.0,1,replay
977,1885,Crewe Alexandra,Stoke City,1-0,1.0,0.0,1,replay
978,1885,Darwen,Derby Junction,4-0,4.0,0.0,1,replay
979,1885,Notts Olympic,Notts Wanderers,4-1,4.0,1.0,1,replay
980,1885,Notts Rangers,Lockwood Brothers,4-0,4.0,0.0,1,replay
981,1885,Romford,Hanover United,3-0,3.0,0.0,1,replay
982,1885,Church,Blackburn Olympic,3-1,3.0,1.0,1,replay2
983,1885,Hurst,Bradshaw,3-2,3.0,2.0,1,replay2
984,1885,Birmingham City,Darwen,3-1,3.0,1.0,2,initial
985,1885,Brentwood Town,Lancing Old Boys,6-1,6.0,1.0,2,initial
986,1885,Derby County,Aston Villa,2-0,2.0,0.0,2,initial
987,1885,Hurst,Halliwell,3-1,1.880657,1.230657,2,initial
988,1885,Preston North End,Astley Bridge,11-3,11.0,3.0,2,initial
989,1885,Blackburn Rovers,Oswaldtwistle Rovers,1-0,1.0,0.0,2,initial
990,1885,Darwen Old Wanderers,Accrington,2-1,2.0,1.0,2,initial
991,1885,Davenham,Macclesfield Town,8-1,8.0,1.0,2,initial
992,1885,Derby Midland,Walsall,1-3,1.0,3.0,2,initial
993,1885,Druids,Port Vale,2-2,2.0,2.0,2,initial
994,1885,Gainsborough Trinity,Middlesbrough,1-2,1.0,2.0,2,initial
995,1885,Grimsby Town,Darlington,8-0,8.0,0.0,2,initial
996,1885,Long Eaton Rangers,Staveley,1-4,1.0,4.0,2,initial
997,1885,Marlow,Old Etonians,6-1,6.0,1.0,2,initial
998,1885,Nottingham Forest,Notts Olympic,4-1,4.0,1.0,2,initial