-
Notifications
You must be signed in to change notification settings - Fork 0
/
scraping_errors.log
1610 lines (1610 loc) · 150 KB
/
scraping_errors.log
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
2024-10-06 23:13:59,543 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:14:01,644 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:14:02,046 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:14:06,383 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:14:06,571 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:14:07,735 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:14:08,499 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:14:08,861 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:14:22,522 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:14:27,480 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:14:32,562 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:14:32,735 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:14:43,772 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:14:48,775 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:14:48,782 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:14:48,783 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:14:48,789 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:14:48,789 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:14:48,790 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:14:48,790 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:14:48,791 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:14:48,799 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:14:48,805 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:14:48,831 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:14:48,834 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:14:48,854 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:14:51,115 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:14:51,133 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:14:51,154 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:14:51,158 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:14:51,158 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:14:51,166 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:14:51,169 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:14:51,170 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:14:51,173 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:14:51,188 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:14:51,214 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:14:51,222 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:14:51,339 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:14:53,605 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:14:53,613 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:14:53,614 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:14:53,615 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:14:53,621 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:14:53,626 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:14:53,633 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:14:53,634 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:14:53,642 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:14:53,666 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:14:53,683 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:14:53,691 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:14:53,696 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:15:55,172 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:15:55,625 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:15:55,637 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:15:56,043 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:15:56,105 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:15:56,273 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:15:56,275 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:15:56,347 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:15:58,547 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:15:59,221 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:15:59,993 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:16:00,244 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:16:02,320 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:16:03,229 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:16:03,232 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:16:03,233 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:16:03,233 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:16:03,237 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:16:03,238 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:16:03,240 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:16:03,241 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:16:03,243 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:16:03,245 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:16:03,246 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:16:03,248 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:16:03,251 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:16:05,532 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:16:05,532 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:16:05,537 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:16:05,539 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:16:05,540 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:16:05,544 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:16:05,545 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:16:05,548 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:16:05,550 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:16:05,561 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:16:05,568 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:16:05,568 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:16:05,572 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:16:07,813 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:16:07,814 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:16:07,821 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:16:07,821 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:16:07,824 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:16:07,825 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:16:07,825 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:16:07,832 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:16:07,834 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:16:07,836 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:16:07,838 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:16:07,842 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:16:07,845 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:17:11,219 ERROR: Failed to fetch athlete ID 34: Status 404, Reason: Not Found
2024-10-06 23:17:14,584 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:17:15,158 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:17:15,170 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:17:15,543 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:17:15,669 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:17:15,731 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:17:15,761 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:17:15,826 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:17:17,946 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:17:18,671 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:17:19,419 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:17:19,622 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:17:21,357 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:17:23,825 ERROR: Failed to fetch athlete ID 2127: Status 404, Reason: Not Found
2024-10-06 23:17:23,982 ERROR: Failed to fetch athlete ID 2130: Status 404, Reason: Not Found
2024-10-06 23:17:26,749 ERROR: Failed to fetch athlete ID 2300: Status 404, Reason: Not Found
2024-10-06 23:17:46,707 ERROR: Failed to fetch athlete ID 3307: Status 404, Reason: Not Found
2024-10-06 23:17:46,872 ERROR: Failed to fetch athlete ID 3325: Status 404, Reason: Not Found
2024-10-06 23:17:48,462 ERROR: Failed to fetch athlete ID 3423: Status 404, Reason: Not Found
2024-10-06 23:17:49,487 ERROR: Failed to fetch athlete ID 3495: Status 404, Reason: Not Found
2024-10-06 23:17:52,333 ERROR: Failed to fetch athlete ID 3666: Status 404, Reason: Not Found
2024-10-06 23:17:53,062 ERROR: Failed to fetch athlete ID 3720: Status 404, Reason: Not Found
2024-10-06 23:17:55,367 ERROR: Failed to fetch athlete ID 3902: Status 404, Reason: Not Found
2024-10-06 23:17:55,619 ERROR: Failed to fetch athlete ID 3924: Status 404, Reason: Not Found
2024-10-06 23:18:00,746 ERROR: Failed to fetch athlete ID 4254: Status 404, Reason: Not Found
2024-10-06 23:18:00,768 ERROR: Failed to fetch athlete ID 4255: Status 404, Reason: Not Found
2024-10-06 23:18:00,787 ERROR: Failed to fetch athlete ID 4256: Status 404, Reason: Not Found
2024-10-06 23:18:00,794 ERROR: Failed to fetch athlete ID 4250: Status 404, Reason: Not Found
2024-10-06 23:18:00,831 ERROR: Failed to fetch athlete ID 4253: Status 404, Reason: Not Found
2024-10-06 23:18:00,866 ERROR: Failed to fetch athlete ID 4259: Status 404, Reason: Not Found
2024-10-06 23:18:00,872 ERROR: Failed to fetch athlete ID 4261: Status 404, Reason: Not Found
2024-10-06 23:18:00,887 ERROR: Failed to fetch athlete ID 4258: Status 404, Reason: Not Found
2024-10-06 23:18:00,897 ERROR: Failed to fetch athlete ID 4262: Status 404, Reason: Not Found
2024-10-06 23:18:00,897 ERROR: Failed to fetch athlete ID 4257: Status 404, Reason: Not Found
2024-10-06 23:18:00,911 ERROR: Failed to fetch athlete ID 4266: Status 404, Reason: Not Found
2024-10-06 23:18:00,916 ERROR: Failed to fetch athlete ID 4264: Status 404, Reason: Not Found
2024-10-06 23:18:00,921 ERROR: Failed to fetch athlete ID 4268: Status 404, Reason: Not Found
2024-10-06 23:18:00,927 ERROR: Failed to fetch athlete ID 4263: Status 404, Reason: Not Found
2024-10-06 23:18:00,927 ERROR: Failed to fetch athlete ID 4267: Status 404, Reason: Not Found
2024-10-06 23:18:00,927 ERROR: Failed to fetch athlete ID 4269: Status 404, Reason: Not Found
2024-10-06 23:18:00,928 ERROR: Failed to fetch athlete ID 4265: Status 404, Reason: Not Found
2024-10-06 23:18:00,974 ERROR: Failed to fetch athlete ID 4270: Status 404, Reason: Not Found
2024-10-06 23:18:00,975 ERROR: Failed to fetch athlete ID 4273: Status 404, Reason: Not Found
2024-10-06 23:18:00,977 ERROR: Failed to fetch athlete ID 4271: Status 404, Reason: Not Found
2024-10-06 23:18:00,994 ERROR: Failed to fetch athlete ID 4277: Status 404, Reason: Not Found
2024-10-06 23:18:01,002 ERROR: Failed to fetch athlete ID 4279: Status 404, Reason: Not Found
2024-10-06 23:18:01,012 ERROR: Failed to fetch athlete ID 4278: Status 404, Reason: Not Found
2024-10-06 23:18:01,036 ERROR: Failed to fetch athlete ID 4276: Status 404, Reason: Not Found
2024-10-06 23:18:01,041 ERROR: Failed to fetch athlete ID 4280: Status 404, Reason: Not Found
2024-10-06 23:18:01,060 ERROR: Failed to fetch athlete ID 4281: Status 404, Reason: Not Found
2024-10-06 23:18:01,083 ERROR: Failed to fetch athlete ID 4287: Status 404, Reason: Not Found
2024-10-06 23:18:01,086 ERROR: Failed to fetch athlete ID 4288: Status 404, Reason: Not Found
2024-10-06 23:18:01,086 ERROR: Failed to fetch athlete ID 4291: Status 404, Reason: Not Found
2024-10-06 23:18:01,136 ERROR: Failed to fetch athlete ID 4294: Status 404, Reason: Not Found
2024-10-06 23:18:01,136 ERROR: Failed to fetch athlete ID 4292: Status 404, Reason: Not Found
2024-10-06 23:18:01,137 ERROR: Failed to fetch athlete ID 4296: Status 404, Reason: Not Found
2024-10-06 23:18:01,140 ERROR: Failed to fetch athlete ID 4297: Status 404, Reason: Not Found
2024-10-06 23:18:01,140 ERROR: Failed to fetch athlete ID 4298: Status 404, Reason: Not Found
2024-10-06 23:18:01,142 ERROR: Failed to fetch athlete ID 4295: Status 404, Reason: Not Found
2024-10-06 23:18:01,145 ERROR: Failed to fetch athlete ID 4302: Status 404, Reason: Not Found
2024-10-06 23:18:01,158 ERROR: Failed to fetch athlete ID 4309: Status 404, Reason: Not Found
2024-10-06 23:18:01,226 ERROR: Failed to fetch athlete ID 4313: Status 404, Reason: Not Found
2024-10-06 23:18:01,235 ERROR: Failed to fetch athlete ID 4312: Status 404, Reason: Not Found
2024-10-06 23:18:01,236 ERROR: Failed to fetch athlete ID 4318: Status 404, Reason: Not Found
2024-10-06 23:18:01,237 ERROR: Failed to fetch athlete ID 4317: Status 404, Reason: Not Found
2024-10-06 23:18:01,243 ERROR: Failed to fetch athlete ID 4316: Status 404, Reason: Not Found
2024-10-06 23:18:01,244 ERROR: Failed to fetch athlete ID 4315: Status 404, Reason: Not Found
2024-10-06 23:18:01,244 ERROR: Failed to fetch athlete ID 4311: Status 404, Reason: Not Found
2024-10-06 23:18:01,244 ERROR: Failed to fetch athlete ID 4314: Status 404, Reason: Not Found
2024-10-06 23:18:01,259 ERROR: Failed to fetch athlete ID 4321: Status 404, Reason: Not Found
2024-10-06 23:18:01,288 ERROR: Failed to fetch athlete ID 4325: Status 404, Reason: Not Found
2024-10-06 23:18:01,339 ERROR: Failed to fetch athlete ID 4326: Status 404, Reason: Not Found
2024-10-06 23:18:01,368 ERROR: Failed to fetch athlete ID 4332: Status 404, Reason: Not Found
2024-10-06 23:18:01,375 ERROR: Failed to fetch athlete ID 4331: Status 404, Reason: Not Found
2024-10-06 23:18:01,378 ERROR: Failed to fetch athlete ID 4335: Status 404, Reason: Not Found
2024-10-06 23:18:01,473 ERROR: Failed to fetch athlete ID 4346: Status 404, Reason: Not Found
2024-10-06 23:18:01,494 ERROR: Failed to fetch athlete ID 4348: Status 404, Reason: Not Found
2024-10-06 23:18:01,528 ERROR: Failed to fetch athlete ID 4351: Status 404, Reason: Not Found
2024-10-06 23:18:01,532 ERROR: Failed to fetch athlete ID 4350: Status 404, Reason: Not Found
2024-10-06 23:18:01,537 ERROR: Failed to fetch athlete ID 4349: Status 404, Reason: Not Found
2024-10-06 23:18:01,558 ERROR: Failed to fetch athlete ID 4352: Status 404, Reason: Not Found
2024-10-06 23:18:01,560 ERROR: Failed to fetch athlete ID 4356: Status 404, Reason: Not Found
2024-10-06 23:18:01,575 ERROR: Failed to fetch athlete ID 4354: Status 404, Reason: Not Found
2024-10-06 23:18:01,588 ERROR: Failed to fetch athlete ID 4357: Status 404, Reason: Not Found
2024-10-06 23:18:01,592 ERROR: Failed to fetch athlete ID 4355: Status 404, Reason: Not Found
2024-10-06 23:18:01,592 ERROR: Failed to fetch athlete ID 4353: Status 404, Reason: Not Found
2024-10-06 23:18:01,637 ERROR: Failed to fetch athlete ID 4361: Status 404, Reason: Not Found
2024-10-06 23:18:01,663 ERROR: Failed to fetch athlete ID 4362: Status 404, Reason: Not Found
2024-10-06 23:18:09,382 ERROR: Failed to fetch athlete ID 4671: Status 404, Reason: Not Found
2024-10-06 23:18:14,124 ERROR: Failed to fetch athlete ID 4897: Status 404, Reason: Not Found
2024-10-06 23:18:23,057 ERROR: Failed to fetch athlete ID 5519: Status 404, Reason: Not Found
2024-10-06 23:18:23,531 ERROR: Failed to fetch athlete ID 5553: Status 404, Reason: Not Found
2024-10-06 23:18:24,978 ERROR: Failed to fetch athlete ID 5680: Status 404, Reason: Not Found
2024-10-06 23:18:27,004 ERROR: Failed to fetch athlete ID 5867: Status 404, Reason: Not Found
2024-10-06 23:18:27,022 ERROR: Failed to fetch athlete ID 5864: Status 404, Reason: Not Found
2024-10-06 23:18:27,048 ERROR: Failed to fetch athlete ID 5866: Status 404, Reason: Not Found
2024-10-06 23:18:27,218 ERROR: Failed to fetch athlete ID 5899: Status 404, Reason: Not Found
2024-10-06 23:18:28,225 ERROR: Failed to fetch athlete ID 5967: Status 404, Reason: Not Found
2024-10-06 23:18:30,971 ERROR: Failed to fetch athlete ID 6186: Status 404, Reason: Not Found
2024-10-06 23:18:44,356 ERROR: Failed to fetch athlete ID 7249: Status 404, Reason: Not Found
2024-10-06 23:18:45,942 ERROR: Failed to fetch athlete ID 7370: Status 404, Reason: Not Found
2024-10-06 23:18:47,279 ERROR: Failed to fetch athlete ID 7491: Status 404, Reason: Not Found
2024-10-06 23:18:51,011 ERROR: Failed to fetch athlete ID 7844: Status 404, Reason: Not Found
2024-10-06 23:18:52,818 ERROR: Failed to fetch athlete ID 8038: Status 404, Reason: Not Found
2024-10-06 23:18:57,006 ERROR: Failed to fetch athlete ID 8366: Status 404, Reason: Not Found
2024-10-06 23:19:00,529 ERROR: Failed to fetch athlete ID 8727: Status 404, Reason: Not Found
2024-10-06 23:19:08,910 ERROR: Failed to fetch athlete ID 9340: Status 404, Reason: Not Found
2024-10-06 23:19:14,793 ERROR: Failed to fetch athlete ID 9780: Status 404, Reason: Not Found
2024-10-06 23:19:15,048 ERROR: Failed to fetch athlete ID 9807: Status 404, Reason: Not Found
2024-10-06 23:19:15,111 ERROR: Failed to fetch athlete ID 9712: Status 404, Reason: Not Found
2024-10-06 23:19:18,955 ERROR: Failed to fetch athlete ID 10042: Status 404, Reason: Not Found
2024-10-06 23:19:19,040 ERROR: Failed to fetch athlete ID 10045: Status 404, Reason: Not Found
2024-10-06 23:19:19,965 ERROR: Failed to fetch athlete ID 10146: Status 404, Reason: Not Found
2024-10-06 23:19:20,365 ERROR: Failed to fetch athlete ID 10174: Status 404, Reason: Not Found
2024-10-06 23:19:22,322 ERROR: Failed to fetch athlete ID 10332: Status 404, Reason: Not Found
2024-10-06 23:19:22,427 ERROR: Failed to fetch athlete ID 10341: Status 404, Reason: Not Found
2024-10-06 23:19:22,445 ERROR: Failed to fetch athlete ID 10336: Status 404, Reason: Not Found
2024-10-06 23:19:25,193 ERROR: Failed to fetch athlete ID 10548: Status 404, Reason: Not Found
2024-10-06 23:19:25,858 ERROR: Failed to fetch athlete ID 10592: Status 404, Reason: Not Found
2024-10-06 23:19:28,789 ERROR: Failed to fetch athlete ID 10794: Status 404, Reason: Not Found
2024-10-06 23:19:29,310 ERROR: Failed to fetch athlete ID 10828: Status 404, Reason: Not Found
2024-10-06 23:19:31,476 ERROR: Failed to fetch athlete ID 11002: Status 404, Reason: Not Found
2024-10-06 23:19:31,500 ERROR: Failed to fetch athlete ID 11003: Status 404, Reason: Not Found
2024-10-06 23:19:34,350 ERROR: Failed to fetch athlete ID 11183: Status 404, Reason: Not Found
2024-10-06 23:19:35,176 ERROR: Failed to fetch athlete ID 11236: Status 404, Reason: Not Found
2024-10-06 23:19:37,166 ERROR: Error fetching results for athlete ID 10096: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,167 ERROR: Error fetching results for athlete ID 10091: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,170 ERROR: Error fetching results for athlete ID 10095: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,183 ERROR: Error fetching results for athlete ID 10098: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,184 ERROR: Error fetching results for athlete ID 10097: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,189 ERROR: Error fetching results for athlete ID 10101: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,189 ERROR: Error fetching results for athlete ID 10100: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,262 ERROR: Error fetching results for athlete ID 10102: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,278 ERROR: Error fetching results for athlete ID 10099: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,350 ERROR: Error fetching results for athlete ID 10104: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,351 ERROR: Error fetching results for athlete ID 10103: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,351 ERROR: Error fetching results for athlete ID 10094: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,351 ERROR: Error fetching results for athlete ID 10093: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,406 ERROR: Error fetching results for athlete ID 10105: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,411 ERROR: Error fetching results for athlete ID 10106: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,424 ERROR: Error fetching results for athlete ID 10108: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,424 ERROR: Error fetching results for athlete ID 10107: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,450 ERROR: Error fetching results for athlete ID 10092: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,450 ERROR: Error fetching results for athlete ID 10090: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:19:37,586 ERROR: Failed to fetch athlete ID 11407: Status 404, Reason: Not Found
2024-10-06 23:19:37,605 ERROR: Failed to fetch athlete ID 11392: Status 404, Reason: Not Found
2024-10-06 23:19:39,287 ERROR: Failed to fetch athlete ID 11532: Status 404, Reason: Not Found
2024-10-06 23:19:39,439 ERROR: Failed to fetch athlete ID 11539: Status 404, Reason: Not Found
2024-10-06 23:19:41,057 ERROR: Failed to fetch athlete ID 11649: Status 404, Reason: Not Found
2024-10-06 23:19:45,644 ERROR: Failed to fetch athlete ID 11924: Status 404, Reason: Not Found
2024-10-06 23:19:45,644 ERROR: Failed to fetch athlete ID 11922: Status 404, Reason: Not Found
2024-10-06 23:19:45,668 ERROR: Failed to fetch athlete ID 11925: Status 404, Reason: Not Found
2024-10-06 23:19:45,706 ERROR: Failed to fetch athlete ID 11927: Status 404, Reason: Not Found
2024-10-06 23:19:45,712 ERROR: Failed to fetch athlete ID 11926: Status 404, Reason: Not Found
2024-10-06 23:19:45,722 ERROR: Failed to fetch athlete ID 11928: Status 404, Reason: Not Found
2024-10-06 23:19:45,786 ERROR: Failed to fetch athlete ID 11931: Status 404, Reason: Not Found
2024-10-06 23:19:45,798 ERROR: Failed to fetch athlete ID 11932: Status 404, Reason: Not Found
2024-10-06 23:19:45,799 ERROR: Failed to fetch athlete ID 11929: Status 404, Reason: Not Found
2024-10-06 23:19:45,822 ERROR: Failed to fetch athlete ID 11933: Status 404, Reason: Not Found
2024-10-06 23:19:45,840 ERROR: Failed to fetch athlete ID 11934: Status 404, Reason: Not Found
2024-10-06 23:19:45,854 ERROR: Failed to fetch athlete ID 11936: Status 404, Reason: Not Found
2024-10-06 23:19:45,861 ERROR: Failed to fetch athlete ID 11935: Status 404, Reason: Not Found
2024-10-06 23:19:45,876 ERROR: Failed to fetch athlete ID 11937: Status 404, Reason: Not Found
2024-10-06 23:19:45,889 ERROR: Failed to fetch athlete ID 11943: Status 404, Reason: Not Found
2024-10-06 23:19:46,564 ERROR: Failed to fetch athlete ID 11987: Status 404, Reason: Not Found
2024-10-06 23:19:46,672 ERROR: Failed to fetch athlete ID 11923: Status 404, Reason: Not Found
2024-10-06 23:19:46,797 ERROR: Failed to fetch athlete ID 11997: Status 404, Reason: Not Found
2024-10-06 23:19:48,270 ERROR: Failed to fetch athlete ID 11930: Status 404, Reason: Not Found
2024-10-06 23:19:48,295 ERROR: Failed to fetch athlete ID 12091: Status 404, Reason: Not Found
2024-10-06 23:19:48,524 ERROR: Failed to fetch athlete ID 12106: Status 404, Reason: Not Found
2024-10-06 23:19:49,303 ERROR: Failed to fetch athlete ID 12115: Status 404, Reason: Not Found
2024-10-06 23:19:49,355 ERROR: Failed to fetch athlete ID 12167: Status 404, Reason: Not Found
2024-10-06 23:19:50,003 ERROR: Failed to fetch athlete ID 12205: Status 404, Reason: Not Found
2024-10-06 23:19:52,495 ERROR: Failed to fetch athlete ID 12373: Status 404, Reason: Not Found
2024-10-06 23:19:52,978 ERROR: Failed to fetch athlete ID 12403: Status 404, Reason: Not Found
2024-10-06 23:19:58,361 ERROR: Failed to fetch athlete ID 12711: Status 404, Reason: Not Found
2024-10-06 23:19:58,764 ERROR: Failed to fetch athlete ID 12740: Status 404, Reason: Not Found
2024-10-06 23:20:04,016 ERROR: Failed to fetch athlete ID 13121: Status 404, Reason: Not Found
2024-10-06 23:20:04,670 ERROR: Failed to fetch athlete ID 13166: Status 404, Reason: Not Found
2024-10-06 23:20:09,300 ERROR: Failed to fetch athlete ID 13394: Status 404, Reason: Not Found
2024-10-06 23:20:10,229 ERROR: Failed to fetch athlete ID 13448: Status 404, Reason: Not Found
2024-10-06 23:20:11,061 ERROR: Failed to fetch athlete ID 13501: Status 404, Reason: Not Found
2024-10-06 23:20:11,166 ERROR: Failed to fetch athlete ID 13514: Status 404, Reason: Not Found
2024-10-06 23:20:11,352 ERROR: Failed to fetch athlete ID 13513: Status 404, Reason: Not Found
2024-10-06 23:20:18,658 ERROR: Failed to fetch athlete ID 14078: Status 404, Reason: Not Found
2024-10-06 23:20:18,658 ERROR: Failed to fetch athlete ID 14080: Status 404, Reason: Not Found
2024-10-06 23:20:18,687 ERROR: Failed to fetch athlete ID 14082: Status 404, Reason: Not Found
2024-10-06 23:20:18,701 ERROR: Failed to fetch athlete ID 14081: Status 404, Reason: Not Found
2024-10-06 23:20:18,716 ERROR: Failed to fetch athlete ID 14083: Status 404, Reason: Not Found
2024-10-06 23:20:18,733 ERROR: Failed to fetch athlete ID 14084: Status 404, Reason: Not Found
2024-10-06 23:20:19,567 ERROR: Failed to fetch athlete ID 14160: Status 404, Reason: Not Found
2024-10-06 23:20:19,609 ERROR: Failed to fetch athlete ID 14167: Status 404, Reason: Not Found
2024-10-06 23:20:19,703 ERROR: Failed to fetch athlete ID 14079: Status 404, Reason: Not Found
2024-10-06 23:20:22,698 ERROR: Failed to fetch athlete ID 14429: Status 404, Reason: Not Found
2024-10-06 23:20:23,165 ERROR: Failed to fetch athlete ID 14466: Status 404, Reason: Not Found
2024-10-06 23:20:23,184 ERROR: Failed to fetch athlete ID 14467: Status 404, Reason: Not Found
2024-10-06 23:20:24,972 ERROR: Failed to fetch athlete ID 14630: Status 404, Reason: Not Found
2024-10-06 23:20:27,392 ERROR: Failed to fetch athlete ID 14812: Status 404, Reason: Not Found
2024-10-06 23:20:28,159 ERROR: Failed to fetch athlete ID 14927: Status 404, Reason: Not Found
2024-10-06 23:20:31,839 ERROR: Failed to fetch athlete ID 15266: Status 404, Reason: Not Found
2024-10-06 23:20:31,872 ERROR: Failed to fetch athlete ID 15275: Status 404, Reason: Not Found
2024-10-06 23:20:32,539 ERROR: Failed to fetch athlete ID 15339: Status 404, Reason: Not Found
2024-10-06 23:20:36,125 ERROR: Failed to fetch athlete ID 15581: Status 404, Reason: Not Found
2024-10-06 23:20:39,804 ERROR: Failed to fetch athlete ID 15902: Status 404, Reason: Not Found
2024-10-06 23:20:39,819 ERROR: Failed to fetch athlete ID 15903: Status 404, Reason: Not Found
2024-10-06 23:20:39,825 ERROR: Failed to fetch athlete ID 15905: Status 404, Reason: Not Found
2024-10-06 23:20:39,831 ERROR: Failed to fetch athlete ID 15904: Status 404, Reason: Not Found
2024-10-06 23:20:39,836 ERROR: Failed to fetch athlete ID 15901: Status 404, Reason: Not Found
2024-10-06 23:20:39,845 ERROR: Failed to fetch athlete ID 15906: Status 404, Reason: Not Found
2024-10-06 23:20:39,847 ERROR: Failed to fetch athlete ID 15900: Status 404, Reason: Not Found
2024-10-06 23:20:40,511 ERROR: Failed to fetch athlete ID 15992: Status 404, Reason: Not Found
2024-10-06 23:20:40,541 ERROR: Failed to fetch athlete ID 15993: Status 404, Reason: Not Found
2024-10-06 23:20:40,654 ERROR: Failed to fetch athlete ID 16003: Status 404, Reason: Not Found
2024-10-06 23:20:40,654 ERROR: Failed to fetch athlete ID 16004: Status 404, Reason: Not Found
2024-10-06 23:20:41,012 ERROR: Failed to fetch athlete ID 16027: Status 404, Reason: Not Found
2024-10-06 23:20:41,016 ERROR: Failed to fetch athlete ID 16028: Status 404, Reason: Not Found
2024-10-06 23:20:41,018 ERROR: Failed to fetch athlete ID 16026: Status 404, Reason: Not Found
2024-10-06 23:20:41,033 ERROR: Failed to fetch athlete ID 16030: Status 404, Reason: Not Found
2024-10-06 23:20:43,517 ERROR: Failed to fetch athlete ID 16305: Status 404, Reason: Not Found
2024-10-06 23:20:43,552 ERROR: Failed to fetch athlete ID 16317: Status 404, Reason: Not Found
2024-10-06 23:20:45,575 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:20:45,578 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:20:45,592 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:20:45,596 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:20:45,607 ERROR: Failed to fetch athlete ID 34: Status 404, Reason: Not Found
2024-10-06 23:20:45,607 ERROR: Failed to fetch athlete ID 3423: Status 404, Reason: Not Found
2024-10-06 23:20:45,608 ERROR: Failed to fetch athlete ID 2127: Status 404, Reason: Not Found
2024-10-06 23:20:45,608 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:20:45,608 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:20:45,608 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:20:45,609 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:20:45,609 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:20:45,609 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:20:45,611 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:20:45,612 ERROR: Failed to fetch athlete ID 3307: Status 404, Reason: Not Found
2024-10-06 23:20:45,612 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:20:45,614 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:20:45,616 ERROR: Failed to fetch athlete ID 2300: Status 404, Reason: Not Found
2024-10-06 23:20:45,618 ERROR: Failed to fetch athlete ID 3325: Status 404, Reason: Not Found
2024-10-06 23:20:45,622 ERROR: Failed to fetch athlete ID 2130: Status 404, Reason: Not Found
2024-10-06 23:20:45,795 ERROR: Failed to fetch athlete ID 3495: Status 404, Reason: Not Found
2024-10-06 23:20:45,803 ERROR: Failed to fetch athlete ID 3666: Status 404, Reason: Not Found
2024-10-06 23:20:45,819 ERROR: Failed to fetch athlete ID 3902: Status 404, Reason: Not Found
2024-10-06 23:20:45,830 ERROR: Failed to fetch athlete ID 3720: Status 404, Reason: Not Found
2024-10-06 23:20:45,843 ERROR: Failed to fetch athlete ID 3924: Status 404, Reason: Not Found
2024-10-06 23:20:45,848 ERROR: Failed to fetch athlete ID 4256: Status 404, Reason: Not Found
2024-10-06 23:20:45,849 ERROR: Failed to fetch athlete ID 4250: Status 404, Reason: Not Found
2024-10-06 23:20:45,849 ERROR: Failed to fetch athlete ID 4254: Status 404, Reason: Not Found
2024-10-06 23:20:45,854 ERROR: Failed to fetch athlete ID 4262: Status 404, Reason: Not Found
2024-10-06 23:20:45,854 ERROR: Failed to fetch athlete ID 4255: Status 404, Reason: Not Found
2024-10-06 23:20:45,856 ERROR: Failed to fetch athlete ID 4259: Status 404, Reason: Not Found
2024-10-06 23:20:45,859 ERROR: Failed to fetch athlete ID 4253: Status 404, Reason: Not Found
2024-10-06 23:20:45,859 ERROR: Failed to fetch athlete ID 4257: Status 404, Reason: Not Found
2024-10-06 23:20:45,864 ERROR: Failed to fetch athlete ID 4261: Status 404, Reason: Not Found
2024-10-06 23:20:45,865 ERROR: Failed to fetch athlete ID 4268: Status 404, Reason: Not Found
2024-10-06 23:20:45,866 ERROR: Failed to fetch athlete ID 4258: Status 404, Reason: Not Found
2024-10-06 23:20:45,866 ERROR: Failed to fetch athlete ID 4263: Status 404, Reason: Not Found
2024-10-06 23:20:45,869 ERROR: Failed to fetch athlete ID 4264: Status 404, Reason: Not Found
2024-10-06 23:20:45,870 ERROR: Failed to fetch athlete ID 4266: Status 404, Reason: Not Found
2024-10-06 23:20:45,873 ERROR: Failed to fetch athlete ID 4267: Status 404, Reason: Not Found
2024-10-06 23:20:46,012 ERROR: Failed to fetch athlete ID 4269: Status 404, Reason: Not Found
2024-10-06 23:20:46,026 ERROR: Failed to fetch athlete ID 4265: Status 404, Reason: Not Found
2024-10-06 23:20:46,043 ERROR: Failed to fetch athlete ID 4273: Status 404, Reason: Not Found
2024-10-06 23:20:46,047 ERROR: Failed to fetch athlete ID 4270: Status 404, Reason: Not Found
2024-10-06 23:20:46,086 ERROR: Failed to fetch athlete ID 4278: Status 404, Reason: Not Found
2024-10-06 23:20:46,089 ERROR: Failed to fetch athlete ID 4279: Status 404, Reason: Not Found
2024-10-06 23:20:46,091 ERROR: Failed to fetch athlete ID 4277: Status 404, Reason: Not Found
2024-10-06 23:20:46,092 ERROR: Failed to fetch athlete ID 4271: Status 404, Reason: Not Found
2024-10-06 23:20:46,094 ERROR: Failed to fetch athlete ID 4287: Status 404, Reason: Not Found
2024-10-06 23:20:46,094 ERROR: Failed to fetch athlete ID 4281: Status 404, Reason: Not Found
2024-10-06 23:20:46,097 ERROR: Failed to fetch athlete ID 4280: Status 404, Reason: Not Found
2024-10-06 23:20:46,099 ERROR: Failed to fetch athlete ID 4291: Status 404, Reason: Not Found
2024-10-06 23:20:46,103 ERROR: Failed to fetch athlete ID 4276: Status 404, Reason: Not Found
2024-10-06 23:20:46,107 ERROR: Failed to fetch athlete ID 4296: Status 404, Reason: Not Found
2024-10-06 23:20:46,110 ERROR: Failed to fetch athlete ID 4288: Status 404, Reason: Not Found
2024-10-06 23:20:46,110 ERROR: Failed to fetch athlete ID 4298: Status 404, Reason: Not Found
2024-10-06 23:20:46,110 ERROR: Failed to fetch athlete ID 4297: Status 404, Reason: Not Found
2024-10-06 23:20:46,115 ERROR: Failed to fetch athlete ID 4294: Status 404, Reason: Not Found
2024-10-06 23:20:46,116 ERROR: Failed to fetch athlete ID 4292: Status 404, Reason: Not Found
2024-10-06 23:20:46,121 ERROR: Failed to fetch athlete ID 4295: Status 404, Reason: Not Found
2024-10-06 23:20:46,231 ERROR: Failed to fetch athlete ID 4302: Status 404, Reason: Not Found
2024-10-06 23:20:46,236 ERROR: Failed to fetch athlete ID 4309: Status 404, Reason: Not Found
2024-10-06 23:20:46,261 ERROR: Failed to fetch athlete ID 4312: Status 404, Reason: Not Found
2024-10-06 23:20:46,282 ERROR: Failed to fetch athlete ID 4313: Status 404, Reason: Not Found
2024-10-06 23:20:46,316 ERROR: Failed to fetch athlete ID 4318: Status 404, Reason: Not Found
2024-10-06 23:20:46,328 ERROR: Failed to fetch athlete ID 4315: Status 404, Reason: Not Found
2024-10-06 23:20:46,332 ERROR: Failed to fetch athlete ID 4317: Status 404, Reason: Not Found
2024-10-06 23:20:46,334 ERROR: Failed to fetch athlete ID 4311: Status 404, Reason: Not Found
2024-10-06 23:20:46,339 ERROR: Failed to fetch athlete ID 4316: Status 404, Reason: Not Found
2024-10-06 23:20:46,341 ERROR: Failed to fetch athlete ID 4350: Status 404, Reason: Not Found
2024-10-06 23:20:46,342 ERROR: Failed to fetch athlete ID 4326: Status 404, Reason: Not Found
2024-10-06 23:20:46,344 ERROR: Failed to fetch athlete ID 4321: Status 404, Reason: Not Found
2024-10-06 23:20:46,348 ERROR: Failed to fetch athlete ID 4335: Status 404, Reason: Not Found
2024-10-06 23:20:46,348 ERROR: Failed to fetch athlete ID 4348: Status 404, Reason: Not Found
2024-10-06 23:20:46,348 ERROR: Failed to fetch athlete ID 4325: Status 404, Reason: Not Found
2024-10-06 23:20:46,349 ERROR: Failed to fetch athlete ID 4351: Status 404, Reason: Not Found
2024-10-06 23:20:46,351 ERROR: Failed to fetch athlete ID 4332: Status 404, Reason: Not Found
2024-10-06 23:20:46,351 ERROR: Failed to fetch athlete ID 4314: Status 404, Reason: Not Found
2024-10-06 23:20:46,352 ERROR: Failed to fetch athlete ID 4331: Status 404, Reason: Not Found
2024-10-06 23:20:46,358 ERROR: Failed to fetch athlete ID 4346: Status 404, Reason: Not Found
2024-10-06 23:20:46,449 ERROR: Failed to fetch athlete ID 4349: Status 404, Reason: Not Found
2024-10-06 23:20:46,467 ERROR: Failed to fetch athlete ID 4352: Status 404, Reason: Not Found
2024-10-06 23:20:46,467 ERROR: Failed to fetch athlete ID 4356: Status 404, Reason: Not Found
2024-10-06 23:20:46,493 ERROR: Failed to fetch athlete ID 4354: Status 404, Reason: Not Found
2024-10-06 23:20:46,528 ERROR: Failed to fetch athlete ID 4357: Status 404, Reason: Not Found
2024-10-06 23:20:46,550 ERROR: Failed to fetch athlete ID 4353: Status 404, Reason: Not Found
2024-10-06 23:20:46,561 ERROR: Failed to fetch athlete ID 4671: Status 404, Reason: Not Found
2024-10-06 23:20:46,563 ERROR: Failed to fetch athlete ID 4361: Status 404, Reason: Not Found
2024-10-06 23:20:46,568 ERROR: Failed to fetch athlete ID 4355: Status 404, Reason: Not Found
2024-10-06 23:20:46,571 ERROR: Failed to fetch athlete ID 4362: Status 404, Reason: Not Found
2024-10-06 23:20:46,578 ERROR: Failed to fetch athlete ID 4897: Status 404, Reason: Not Found
2024-10-06 23:20:46,579 ERROR: Failed to fetch athlete ID 5866: Status 404, Reason: Not Found
2024-10-06 23:20:46,579 ERROR: Failed to fetch athlete ID 5867: Status 404, Reason: Not Found
2024-10-06 23:20:46,581 ERROR: Failed to fetch athlete ID 5519: Status 404, Reason: Not Found
2024-10-06 23:20:46,584 ERROR: Failed to fetch athlete ID 5899: Status 404, Reason: Not Found
2024-10-06 23:20:46,589 ERROR: Failed to fetch athlete ID 6186: Status 404, Reason: Not Found
2024-10-06 23:20:46,590 ERROR: Failed to fetch athlete ID 5967: Status 404, Reason: Not Found
2024-10-06 23:20:46,590 ERROR: Failed to fetch athlete ID 5553: Status 404, Reason: Not Found
2024-10-06 23:20:46,590 ERROR: Failed to fetch athlete ID 5864: Status 404, Reason: Not Found
2024-10-06 23:20:46,591 ERROR: Failed to fetch athlete ID 5680: Status 404, Reason: Not Found
2024-10-06 23:20:46,667 ERROR: Failed to fetch athlete ID 7249: Status 404, Reason: Not Found
2024-10-06 23:20:46,681 ERROR: Failed to fetch athlete ID 7491: Status 404, Reason: Not Found
2024-10-06 23:20:46,684 ERROR: Failed to fetch athlete ID 7370: Status 404, Reason: Not Found
2024-10-06 23:20:46,708 ERROR: Failed to fetch athlete ID 7844: Status 404, Reason: Not Found
2024-10-06 23:20:46,740 ERROR: Failed to fetch athlete ID 8038: Status 404, Reason: Not Found
2024-10-06 23:20:46,768 ERROR: Failed to fetch athlete ID 8366: Status 404, Reason: Not Found
2024-10-06 23:20:46,778 ERROR: Failed to fetch athlete ID 8727: Status 404, Reason: Not Found
2024-10-06 23:20:46,797 ERROR: Failed to fetch athlete ID 9340: Status 404, Reason: Not Found
2024-10-06 23:20:46,802 ERROR: Failed to fetch athlete ID 9780: Status 404, Reason: Not Found
2024-10-06 23:20:46,802 ERROR: Failed to fetch athlete ID 9807: Status 404, Reason: Not Found
2024-10-06 23:20:46,811 ERROR: Failed to fetch athlete ID 10042: Status 404, Reason: Not Found
2024-10-06 23:20:46,820 ERROR: Failed to fetch athlete ID 9712: Status 404, Reason: Not Found
2024-10-06 23:20:46,828 ERROR: Failed to fetch athlete ID 10341: Status 404, Reason: Not Found
2024-10-06 23:20:46,828 ERROR: Failed to fetch athlete ID 10332: Status 404, Reason: Not Found
2024-10-06 23:20:46,828 ERROR: Failed to fetch athlete ID 10174: Status 404, Reason: Not Found
2024-10-06 23:20:46,828 ERROR: Failed to fetch athlete ID 10548: Status 404, Reason: Not Found
2024-10-06 23:20:46,831 ERROR: Failed to fetch athlete ID 10045: Status 404, Reason: Not Found
2024-10-06 23:20:46,835 ERROR: Failed to fetch athlete ID 10146: Status 404, Reason: Not Found
2024-10-06 23:20:46,842 ERROR: Failed to fetch athlete ID 10592: Status 404, Reason: Not Found
2024-10-06 23:20:46,843 ERROR: Failed to fetch athlete ID 10336: Status 404, Reason: Not Found
2024-10-06 23:20:46,883 ERROR: Failed to fetch athlete ID 10794: Status 404, Reason: Not Found
2024-10-06 23:20:46,892 ERROR: Failed to fetch athlete ID 11002: Status 404, Reason: Not Found
2024-10-06 23:20:46,896 ERROR: Failed to fetch athlete ID 10828: Status 404, Reason: Not Found
2024-10-06 23:20:46,927 ERROR: Failed to fetch athlete ID 11003: Status 404, Reason: Not Found
2024-10-06 23:20:46,959 ERROR: Failed to fetch athlete ID 11183: Status 404, Reason: Not Found
2024-10-06 23:20:46,979 ERROR: Failed to fetch athlete ID 11236: Status 404, Reason: Not Found
2024-10-06 23:20:47,193 ERROR: Failed to fetch athlete ID 11407: Status 404, Reason: Not Found
2024-10-06 23:20:47,238 ERROR: Failed to fetch athlete ID 11392: Status 404, Reason: Not Found
2024-10-06 23:20:47,312 ERROR: Failed to fetch athlete ID 11539: Status 404, Reason: Not Found
2024-10-06 23:20:47,314 ERROR: Failed to fetch athlete ID 11532: Status 404, Reason: Not Found
2024-10-06 23:20:47,332 ERROR: Failed to fetch athlete ID 11649: Status 404, Reason: Not Found
2024-10-06 23:20:47,360 ERROR: Failed to fetch athlete ID 11924: Status 404, Reason: Not Found
2024-10-06 23:20:47,366 ERROR: Failed to fetch athlete ID 11922: Status 404, Reason: Not Found
2024-10-06 23:20:47,369 ERROR: Failed to fetch athlete ID 11925: Status 404, Reason: Not Found
2024-10-06 23:20:47,372 ERROR: Failed to fetch athlete ID 11927: Status 404, Reason: Not Found
2024-10-06 23:20:47,386 ERROR: Failed to fetch athlete ID 11926: Status 404, Reason: Not Found
2024-10-06 23:20:47,396 ERROR: Failed to fetch athlete ID 11928: Status 404, Reason: Not Found
2024-10-06 23:20:47,401 ERROR: Failed to fetch athlete ID 11932: Status 404, Reason: Not Found
2024-10-06 23:20:47,405 ERROR: Failed to fetch athlete ID 11931: Status 404, Reason: Not Found
2024-10-06 23:20:47,407 ERROR: Failed to fetch athlete ID 11936: Status 404, Reason: Not Found
2024-10-06 23:20:47,408 ERROR: Failed to fetch athlete ID 11933: Status 404, Reason: Not Found
2024-10-06 23:20:47,408 ERROR: Failed to fetch athlete ID 11943: Status 404, Reason: Not Found
2024-10-06 23:20:47,414 ERROR: Failed to fetch athlete ID 11937: Status 404, Reason: Not Found
2024-10-06 23:20:47,415 ERROR: Failed to fetch athlete ID 11934: Status 404, Reason: Not Found
2024-10-06 23:20:47,424 ERROR: Failed to fetch athlete ID 11935: Status 404, Reason: Not Found
2024-10-06 23:20:47,428 ERROR: Failed to fetch athlete ID 11929: Status 404, Reason: Not Found
2024-10-06 23:20:47,453 ERROR: Failed to fetch athlete ID 11987: Status 404, Reason: Not Found
2024-10-06 23:20:47,520 ERROR: Failed to fetch athlete ID 11923: Status 404, Reason: Not Found
2024-10-06 23:20:47,532 ERROR: Failed to fetch athlete ID 11997: Status 404, Reason: Not Found
2024-10-06 23:20:47,542 ERROR: Failed to fetch athlete ID 11930: Status 404, Reason: Not Found
2024-10-06 23:20:47,571 ERROR: Failed to fetch athlete ID 12106: Status 404, Reason: Not Found
2024-10-06 23:20:47,573 ERROR: Failed to fetch athlete ID 12091: Status 404, Reason: Not Found
2024-10-06 23:20:47,578 ERROR: Failed to fetch athlete ID 12115: Status 404, Reason: Not Found
2024-10-06 23:20:47,581 ERROR: Failed to fetch athlete ID 12205: Status 404, Reason: Not Found
2024-10-06 23:20:47,597 ERROR: Failed to fetch athlete ID 12167: Status 404, Reason: Not Found
2024-10-06 23:20:47,607 ERROR: Failed to fetch athlete ID 12373: Status 404, Reason: Not Found
2024-10-06 23:20:47,611 ERROR: Failed to fetch athlete ID 12403: Status 404, Reason: Not Found
2024-10-06 23:20:47,634 ERROR: Failed to fetch athlete ID 13394: Status 404, Reason: Not Found
2024-10-06 23:20:47,634 ERROR: Failed to fetch athlete ID 12740: Status 404, Reason: Not Found
2024-10-06 23:20:47,637 ERROR: Failed to fetch athlete ID 13448: Status 404, Reason: Not Found
2024-10-06 23:20:47,638 ERROR: Failed to fetch athlete ID 13166: Status 404, Reason: Not Found
2024-10-06 23:20:47,641 ERROR: Failed to fetch athlete ID 12711: Status 404, Reason: Not Found
2024-10-06 23:20:47,642 ERROR: Failed to fetch athlete ID 13514: Status 404, Reason: Not Found
2024-10-06 23:20:47,642 ERROR: Failed to fetch athlete ID 13513: Status 404, Reason: Not Found
2024-10-06 23:20:47,645 ERROR: Failed to fetch athlete ID 13121: Status 404, Reason: Not Found
2024-10-06 23:20:47,645 ERROR: Failed to fetch athlete ID 13501: Status 404, Reason: Not Found
2024-10-06 23:20:47,667 ERROR: Failed to fetch athlete ID 14078: Status 404, Reason: Not Found
2024-10-06 23:20:47,732 ERROR: Failed to fetch athlete ID 14080: Status 404, Reason: Not Found
2024-10-06 23:20:47,744 ERROR: Failed to fetch athlete ID 14082: Status 404, Reason: Not Found
2024-10-06 23:20:47,761 ERROR: Failed to fetch athlete ID 14081: Status 404, Reason: Not Found
2024-10-06 23:20:47,782 ERROR: Failed to fetch athlete ID 14083: Status 404, Reason: Not Found
2024-10-06 23:20:47,786 ERROR: Failed to fetch athlete ID 14084: Status 404, Reason: Not Found
2024-10-06 23:20:47,788 ERROR: Failed to fetch athlete ID 14167: Status 404, Reason: Not Found
2024-10-06 23:20:47,791 ERROR: Failed to fetch athlete ID 14160: Status 404, Reason: Not Found
2024-10-06 23:20:47,819 ERROR: Failed to fetch athlete ID 14079: Status 404, Reason: Not Found
2024-10-06 23:20:47,823 ERROR: Failed to fetch athlete ID 14429: Status 404, Reason: Not Found
2024-10-06 23:20:47,832 ERROR: Failed to fetch athlete ID 14466: Status 404, Reason: Not Found
2024-10-06 23:20:47,852 ERROR: Failed to fetch athlete ID 14630: Status 404, Reason: Not Found
2024-10-06 23:20:47,856 ERROR: Failed to fetch athlete ID 14467: Status 404, Reason: Not Found
2024-10-06 23:20:47,867 ERROR: Failed to fetch athlete ID 15275: Status 404, Reason: Not Found
2024-10-06 23:20:47,868 ERROR: Failed to fetch athlete ID 15266: Status 404, Reason: Not Found
2024-10-06 23:20:47,874 ERROR: Failed to fetch athlete ID 15339: Status 404, Reason: Not Found
2024-10-06 23:20:47,877 ERROR: Failed to fetch athlete ID 15902: Status 404, Reason: Not Found
2024-10-06 23:20:47,878 ERROR: Failed to fetch athlete ID 14812: Status 404, Reason: Not Found
2024-10-06 23:20:47,878 ERROR: Failed to fetch athlete ID 15581: Status 404, Reason: Not Found
2024-10-06 23:20:47,878 ERROR: Failed to fetch athlete ID 15903: Status 404, Reason: Not Found
2024-10-06 23:20:47,885 ERROR: Failed to fetch athlete ID 14927: Status 404, Reason: Not Found
2024-10-06 23:20:47,941 ERROR: Failed to fetch athlete ID 15905: Status 404, Reason: Not Found
2024-10-06 23:20:47,956 ERROR: Failed to fetch athlete ID 15904: Status 404, Reason: Not Found
2024-10-06 23:20:47,970 ERROR: Failed to fetch athlete ID 15901: Status 404, Reason: Not Found
2024-10-06 23:20:47,995 ERROR: Failed to fetch athlete ID 15992: Status 404, Reason: Not Found
2024-10-06 23:20:47,997 ERROR: Failed to fetch athlete ID 15906: Status 404, Reason: Not Found
2024-10-06 23:20:48,001 ERROR: Failed to fetch athlete ID 15900: Status 404, Reason: Not Found
2024-10-06 23:20:48,002 ERROR: Failed to fetch athlete ID 15993: Status 404, Reason: Not Found
2024-10-06 23:20:48,035 ERROR: Failed to fetch athlete ID 16004: Status 404, Reason: Not Found
2024-10-06 23:20:48,035 ERROR: Failed to fetch athlete ID 16003: Status 404, Reason: Not Found
2024-10-06 23:20:48,046 ERROR: Failed to fetch athlete ID 16027: Status 404, Reason: Not Found
2024-10-06 23:20:48,066 ERROR: Failed to fetch athlete ID 16028: Status 404, Reason: Not Found
2024-10-06 23:20:48,066 ERROR: Failed to fetch athlete ID 16026: Status 404, Reason: Not Found
2024-10-06 23:20:48,087 ERROR: Failed to fetch athlete ID 16317: Status 404, Reason: Not Found
2024-10-06 23:20:48,087 ERROR: Failed to fetch athlete ID 16305: Status 404, Reason: Not Found
2024-10-06 23:20:48,087 ERROR: Failed to fetch athlete ID 16030: Status 404, Reason: Not Found
2024-10-06 23:20:50,335 ERROR: Failed to fetch athlete ID 2127: Status 404, Reason: Not Found
2024-10-06 23:20:50,338 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:20:50,354 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:20:50,360 ERROR: Failed to fetch athlete ID 34: Status 404, Reason: Not Found
2024-10-06 23:20:50,362 ERROR: Failed to fetch athlete ID 2300: Status 404, Reason: Not Found
2024-10-06 23:20:50,362 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:20:50,367 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:20:50,367 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:20:50,367 ERROR: Failed to fetch athlete ID 3325: Status 404, Reason: Not Found
2024-10-06 23:20:50,368 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:20:50,368 ERROR: Failed to fetch athlete ID 3307: Status 404, Reason: Not Found
2024-10-06 23:20:50,368 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:20:50,372 ERROR: Failed to fetch athlete ID 2130: Status 404, Reason: Not Found
2024-10-06 23:20:50,373 ERROR: Failed to fetch athlete ID 3423: Status 404, Reason: Not Found
2024-10-06 23:20:50,373 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:20:50,373 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:20:50,379 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:20:50,382 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:20:50,382 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:20:50,383 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:20:50,548 ERROR: Failed to fetch athlete ID 3666: Status 404, Reason: Not Found
2024-10-06 23:20:50,554 ERROR: Failed to fetch athlete ID 3495: Status 404, Reason: Not Found
2024-10-06 23:20:50,582 ERROR: Failed to fetch athlete ID 3902: Status 404, Reason: Not Found
2024-10-06 23:20:50,587 ERROR: Failed to fetch athlete ID 3924: Status 404, Reason: Not Found
2024-10-06 23:20:50,592 ERROR: Failed to fetch athlete ID 3720: Status 404, Reason: Not Found
2024-10-06 23:20:50,594 ERROR: Failed to fetch athlete ID 4256: Status 404, Reason: Not Found
2024-10-06 23:20:50,598 ERROR: Failed to fetch athlete ID 4254: Status 404, Reason: Not Found
2024-10-06 23:20:50,606 ERROR: Failed to fetch athlete ID 4268: Status 404, Reason: Not Found
2024-10-06 23:20:50,607 ERROR: Failed to fetch athlete ID 4250: Status 404, Reason: Not Found
2024-10-06 23:20:50,608 ERROR: Failed to fetch athlete ID 4259: Status 404, Reason: Not Found
2024-10-06 23:20:50,609 ERROR: Failed to fetch athlete ID 4258: Status 404, Reason: Not Found
2024-10-06 23:20:50,612 ERROR: Failed to fetch athlete ID 4262: Status 404, Reason: Not Found
2024-10-06 23:20:50,612 ERROR: Failed to fetch athlete ID 4266: Status 404, Reason: Not Found
2024-10-06 23:20:50,617 ERROR: Failed to fetch athlete ID 4253: Status 404, Reason: Not Found
2024-10-06 23:20:50,617 ERROR: Failed to fetch athlete ID 4263: Status 404, Reason: Not Found
2024-10-06 23:20:50,617 ERROR: Failed to fetch athlete ID 4255: Status 404, Reason: Not Found
2024-10-06 23:20:50,619 ERROR: Failed to fetch athlete ID 4264: Status 404, Reason: Not Found
2024-10-06 23:20:50,620 ERROR: Failed to fetch athlete ID 4261: Status 404, Reason: Not Found
2024-10-06 23:20:50,624 ERROR: Failed to fetch athlete ID 4257: Status 404, Reason: Not Found
2024-10-06 23:20:50,627 ERROR: Failed to fetch athlete ID 4267: Status 404, Reason: Not Found
2024-10-06 23:20:50,768 ERROR: Failed to fetch athlete ID 4269: Status 404, Reason: Not Found
2024-10-06 23:20:50,773 ERROR: Failed to fetch athlete ID 4265: Status 404, Reason: Not Found
2024-10-06 23:20:50,801 ERROR: Failed to fetch athlete ID 4270: Status 404, Reason: Not Found
2024-10-06 23:20:50,802 ERROR: Failed to fetch athlete ID 4273: Status 404, Reason: Not Found
2024-10-06 23:20:50,815 ERROR: Failed to fetch athlete ID 4278: Status 404, Reason: Not Found
2024-10-06 23:20:50,819 ERROR: Failed to fetch athlete ID 4277: Status 404, Reason: Not Found
2024-10-06 23:20:50,821 ERROR: Failed to fetch athlete ID 4279: Status 404, Reason: Not Found
2024-10-06 23:20:50,848 ERROR: Failed to fetch athlete ID 4287: Status 404, Reason: Not Found
2024-10-06 23:20:50,848 ERROR: Failed to fetch athlete ID 4276: Status 404, Reason: Not Found
2024-10-06 23:20:50,853 ERROR: Failed to fetch athlete ID 4291: Status 404, Reason: Not Found
2024-10-06 23:20:50,853 ERROR: Failed to fetch athlete ID 4280: Status 404, Reason: Not Found
2024-10-06 23:20:50,853 ERROR: Failed to fetch athlete ID 4271: Status 404, Reason: Not Found
2024-10-06 23:20:50,855 ERROR: Failed to fetch athlete ID 4281: Status 404, Reason: Not Found
2024-10-06 23:20:50,859 ERROR: Failed to fetch athlete ID 4292: Status 404, Reason: Not Found
2024-10-06 23:20:50,860 ERROR: Failed to fetch athlete ID 4298: Status 404, Reason: Not Found
2024-10-06 23:20:50,862 ERROR: Failed to fetch athlete ID 4296: Status 404, Reason: Not Found
2024-10-06 23:20:50,867 ERROR: Failed to fetch athlete ID 4288: Status 404, Reason: Not Found
2024-10-06 23:20:50,869 ERROR: Failed to fetch athlete ID 4294: Status 404, Reason: Not Found
2024-10-06 23:20:50,869 ERROR: Failed to fetch athlete ID 4295: Status 404, Reason: Not Found
2024-10-06 23:20:50,871 ERROR: Failed to fetch athlete ID 4297: Status 404, Reason: Not Found
2024-10-06 23:20:50,976 ERROR: Failed to fetch athlete ID 4309: Status 404, Reason: Not Found
2024-10-06 23:20:50,985 ERROR: Failed to fetch athlete ID 4302: Status 404, Reason: Not Found
2024-10-06 23:20:51,022 ERROR: Failed to fetch athlete ID 4313: Status 404, Reason: Not Found
2024-10-06 23:20:51,023 ERROR: Failed to fetch athlete ID 4312: Status 404, Reason: Not Found
2024-10-06 23:20:51,031 ERROR: Failed to fetch athlete ID 4318: Status 404, Reason: Not Found
2024-10-06 23:20:51,032 ERROR: Failed to fetch athlete ID 4317: Status 404, Reason: Not Found
2024-10-06 23:20:51,041 ERROR: Failed to fetch athlete ID 4315: Status 404, Reason: Not Found
2024-10-06 23:20:51,071 ERROR: Failed to fetch athlete ID 4311: Status 404, Reason: Not Found
2024-10-06 23:20:51,075 ERROR: Failed to fetch athlete ID 4316: Status 404, Reason: Not Found
2024-10-06 23:20:51,082 ERROR: Failed to fetch athlete ID 4321: Status 404, Reason: Not Found
2024-10-06 23:20:51,085 ERROR: Failed to fetch athlete ID 4326: Status 404, Reason: Not Found
2024-10-06 23:20:51,096 ERROR: Failed to fetch athlete ID 4335: Status 404, Reason: Not Found
2024-10-06 23:20:51,099 ERROR: Failed to fetch athlete ID 4332: Status 404, Reason: Not Found
2024-10-06 23:20:51,102 ERROR: Failed to fetch athlete ID 4325: Status 404, Reason: Not Found
2024-10-06 23:20:51,106 ERROR: Failed to fetch athlete ID 4314: Status 404, Reason: Not Found
2024-10-06 23:20:51,106 ERROR: Failed to fetch athlete ID 4346: Status 404, Reason: Not Found
2024-10-06 23:20:51,107 ERROR: Failed to fetch athlete ID 4331: Status 404, Reason: Not Found
2024-10-06 23:20:51,111 ERROR: Failed to fetch athlete ID 4351: Status 404, Reason: Not Found
2024-10-06 23:20:51,111 ERROR: Failed to fetch athlete ID 4350: Status 404, Reason: Not Found
2024-10-06 23:20:51,118 ERROR: Failed to fetch athlete ID 4348: Status 404, Reason: Not Found
2024-10-06 23:20:51,196 ERROR: Failed to fetch athlete ID 4349: Status 404, Reason: Not Found
2024-10-06 23:20:51,196 ERROR: Failed to fetch athlete ID 4352: Status 404, Reason: Not Found
2024-10-06 23:20:51,238 ERROR: Failed to fetch athlete ID 4356: Status 404, Reason: Not Found
2024-10-06 23:20:51,238 ERROR: Failed to fetch athlete ID 4353: Status 404, Reason: Not Found
2024-10-06 23:20:51,242 ERROR: Failed to fetch athlete ID 4354: Status 404, Reason: Not Found
2024-10-06 23:20:51,246 ERROR: Failed to fetch athlete ID 4357: Status 404, Reason: Not Found
2024-10-06 23:20:51,268 ERROR: Failed to fetch athlete ID 4671: Status 404, Reason: Not Found
2024-10-06 23:20:51,291 ERROR: Failed to fetch athlete ID 4355: Status 404, Reason: Not Found
2024-10-06 23:20:51,293 ERROR: Failed to fetch athlete ID 4361: Status 404, Reason: Not Found
2024-10-06 23:20:51,304 ERROR: Failed to fetch athlete ID 4897: Status 404, Reason: Not Found
2024-10-06 23:20:51,312 ERROR: Failed to fetch athlete ID 4362: Status 404, Reason: Not Found
2024-10-06 23:20:51,326 ERROR: Failed to fetch athlete ID 5867: Status 404, Reason: Not Found
2024-10-06 23:20:51,327 ERROR: Failed to fetch athlete ID 5519: Status 404, Reason: Not Found
2024-10-06 23:20:51,332 ERROR: Failed to fetch athlete ID 5967: Status 404, Reason: Not Found
2024-10-06 23:20:51,333 ERROR: Failed to fetch athlete ID 5553: Status 404, Reason: Not Found
2024-10-06 23:20:51,339 ERROR: Failed to fetch athlete ID 5866: Status 404, Reason: Not Found
2024-10-06 23:20:51,340 ERROR: Failed to fetch athlete ID 5864: Status 404, Reason: Not Found
2024-10-06 23:20:51,345 ERROR: Failed to fetch athlete ID 5680: Status 404, Reason: Not Found
2024-10-06 23:20:51,345 ERROR: Failed to fetch athlete ID 5899: Status 404, Reason: Not Found
2024-10-06 23:20:51,350 ERROR: Failed to fetch athlete ID 6186: Status 404, Reason: Not Found
2024-10-06 23:20:51,412 ERROR: Failed to fetch athlete ID 7249: Status 404, Reason: Not Found
2024-10-06 23:20:51,412 ERROR: Failed to fetch athlete ID 7491: Status 404, Reason: Not Found
2024-10-06 23:20:51,452 ERROR: Failed to fetch athlete ID 8366: Status 404, Reason: Not Found
2024-10-06 23:20:51,454 ERROR: Failed to fetch athlete ID 7844: Status 404, Reason: Not Found
2024-10-06 23:20:51,457 ERROR: Failed to fetch athlete ID 7370: Status 404, Reason: Not Found
2024-10-06 23:20:51,463 ERROR: Failed to fetch athlete ID 8038: Status 404, Reason: Not Found
2024-10-06 23:20:51,494 ERROR: Failed to fetch athlete ID 8727: Status 404, Reason: Not Found
2024-10-06 23:20:51,506 ERROR: Failed to fetch athlete ID 9780: Status 404, Reason: Not Found
2024-10-06 23:20:51,508 ERROR: Failed to fetch athlete ID 9340: Status 404, Reason: Not Found
2024-10-06 23:20:51,519 ERROR: Failed to fetch athlete ID 9807: Status 404, Reason: Not Found
2024-10-06 23:20:51,532 ERROR: Failed to fetch athlete ID 10042: Status 404, Reason: Not Found
2024-10-06 23:20:51,539 ERROR: Failed to fetch athlete ID 9712: Status 404, Reason: Not Found
2024-10-06 23:20:51,547 ERROR: Failed to fetch athlete ID 10174: Status 404, Reason: Not Found
2024-10-06 23:20:51,553 ERROR: Failed to fetch athlete ID 10341: Status 404, Reason: Not Found
2024-10-06 23:20:51,559 ERROR: Failed to fetch athlete ID 10045: Status 404, Reason: Not Found
2024-10-06 23:20:51,564 ERROR: Failed to fetch athlete ID 10146: Status 404, Reason: Not Found
2024-10-06 23:20:51,565 ERROR: Failed to fetch athlete ID 10332: Status 404, Reason: Not Found
2024-10-06 23:20:51,565 ERROR: Failed to fetch athlete ID 10548: Status 404, Reason: Not Found
2024-10-06 23:20:51,575 ERROR: Failed to fetch athlete ID 10336: Status 404, Reason: Not Found
2024-10-06 23:20:51,597 ERROR: Failed to fetch athlete ID 10592: Status 404, Reason: Not Found
2024-10-06 23:20:51,630 ERROR: Failed to fetch athlete ID 10794: Status 404, Reason: Not Found
2024-10-06 23:20:51,632 ERROR: Failed to fetch athlete ID 11002: Status 404, Reason: Not Found
2024-10-06 23:20:51,664 ERROR: Failed to fetch athlete ID 11183: Status 404, Reason: Not Found
2024-10-06 23:20:51,665 ERROR: Failed to fetch athlete ID 10828: Status 404, Reason: Not Found
2024-10-06 23:20:51,670 ERROR: Failed to fetch athlete ID 11236: Status 404, Reason: Not Found
2024-10-06 23:20:51,672 ERROR: Failed to fetch athlete ID 11003: Status 404, Reason: Not Found
2024-10-06 23:20:51,711 ERROR: Failed to fetch athlete ID 11407: Status 404, Reason: Not Found
2024-10-06 23:20:51,720 ERROR: Failed to fetch athlete ID 11539: Status 404, Reason: Not Found
2024-10-06 23:20:51,721 ERROR: Failed to fetch athlete ID 11392: Status 404, Reason: Not Found
2024-10-06 23:20:51,742 ERROR: Failed to fetch athlete ID 11532: Status 404, Reason: Not Found
2024-10-06 23:20:51,748 ERROR: Failed to fetch athlete ID 11649: Status 404, Reason: Not Found
2024-10-06 23:20:51,758 ERROR: Failed to fetch athlete ID 11924: Status 404, Reason: Not Found
2024-10-06 23:20:51,768 ERROR: Failed to fetch athlete ID 11922: Status 404, Reason: Not Found
2024-10-06 23:20:51,784 ERROR: Failed to fetch athlete ID 11925: Status 404, Reason: Not Found
2024-10-06 23:20:51,784 ERROR: Failed to fetch athlete ID 11931: Status 404, Reason: Not Found
2024-10-06 23:20:51,788 ERROR: Failed to fetch athlete ID 11926: Status 404, Reason: Not Found
2024-10-06 23:20:51,789 ERROR: Failed to fetch athlete ID 11928: Status 404, Reason: Not Found
2024-10-06 23:20:51,794 ERROR: Failed to fetch athlete ID 11932: Status 404, Reason: Not Found
2024-10-06 23:20:51,797 ERROR: Failed to fetch athlete ID 11927: Status 404, Reason: Not Found
2024-10-06 23:20:51,810 ERROR: Failed to fetch athlete ID 11936: Status 404, Reason: Not Found
2024-10-06 23:20:51,846 ERROR: Failed to fetch athlete ID 11933: Status 404, Reason: Not Found
2024-10-06 23:20:51,847 ERROR: Failed to fetch athlete ID 11943: Status 404, Reason: Not Found
2024-10-06 23:20:51,888 ERROR: Failed to fetch athlete ID 11934: Status 404, Reason: Not Found
2024-10-06 23:20:51,896 ERROR: Failed to fetch athlete ID 11937: Status 404, Reason: Not Found
2024-10-06 23:20:51,902 ERROR: Failed to fetch athlete ID 11929: Status 404, Reason: Not Found
2024-10-06 23:20:51,917 ERROR: Failed to fetch athlete ID 11935: Status 404, Reason: Not Found
2024-10-06 23:20:51,919 ERROR: Failed to fetch athlete ID 11987: Status 404, Reason: Not Found
2024-10-06 23:20:51,928 ERROR: Failed to fetch athlete ID 11923: Status 404, Reason: Not Found
2024-10-06 23:20:51,930 ERROR: Failed to fetch athlete ID 11997: Status 404, Reason: Not Found
2024-10-06 23:20:51,961 ERROR: Failed to fetch athlete ID 11930: Status 404, Reason: Not Found
2024-10-06 23:20:51,964 ERROR: Failed to fetch athlete ID 12106: Status 404, Reason: Not Found
2024-10-06 23:20:51,980 ERROR: Failed to fetch athlete ID 12115: Status 404, Reason: Not Found
2024-10-06 23:20:51,982 ERROR: Failed to fetch athlete ID 12091: Status 404, Reason: Not Found
2024-10-06 23:20:52,003 ERROR: Failed to fetch athlete ID 13394: Status 404, Reason: Not Found
2024-10-06 23:20:52,004 ERROR: Failed to fetch athlete ID 12205: Status 404, Reason: Not Found
2024-10-06 23:20:52,006 ERROR: Failed to fetch athlete ID 12373: Status 404, Reason: Not Found
2024-10-06 23:20:52,008 ERROR: Failed to fetch athlete ID 12403: Status 404, Reason: Not Found
2024-10-06 23:20:52,021 ERROR: Failed to fetch athlete ID 12167: Status 404, Reason: Not Found
2024-10-06 23:20:52,024 ERROR: Failed to fetch athlete ID 12740: Status 404, Reason: Not Found
2024-10-06 23:20:52,035 ERROR: Failed to fetch athlete ID 13448: Status 404, Reason: Not Found
2024-10-06 23:20:52,062 ERROR: Failed to fetch athlete ID 13166: Status 404, Reason: Not Found
2024-10-06 23:20:52,063 ERROR: Failed to fetch athlete ID 12711: Status 404, Reason: Not Found
2024-10-06 23:20:52,109 ERROR: Failed to fetch athlete ID 13514: Status 404, Reason: Not Found
2024-10-06 23:20:52,113 ERROR: Failed to fetch athlete ID 13513: Status 404, Reason: Not Found
2024-10-06 23:20:52,119 ERROR: Failed to fetch athlete ID 13121: Status 404, Reason: Not Found
2024-10-06 23:20:52,133 ERROR: Failed to fetch athlete ID 13501: Status 404, Reason: Not Found
2024-10-06 23:20:52,145 ERROR: Failed to fetch athlete ID 14082: Status 404, Reason: Not Found
2024-10-06 23:20:52,145 ERROR: Failed to fetch athlete ID 14078: Status 404, Reason: Not Found
2024-10-06 23:20:52,145 ERROR: Failed to fetch athlete ID 14080: Status 404, Reason: Not Found
2024-10-06 23:20:52,180 ERROR: Failed to fetch athlete ID 14083: Status 404, Reason: Not Found
2024-10-06 23:20:52,183 ERROR: Failed to fetch athlete ID 14081: Status 404, Reason: Not Found
2024-10-06 23:20:52,205 ERROR: Failed to fetch athlete ID 14167: Status 404, Reason: Not Found
2024-10-06 23:20:52,207 ERROR: Failed to fetch athlete ID 14084: Status 404, Reason: Not Found
2024-10-06 23:20:52,235 ERROR: Failed to fetch athlete ID 14429: Status 404, Reason: Not Found
2024-10-06 23:20:52,236 ERROR: Failed to fetch athlete ID 14079: Status 404, Reason: Not Found
2024-10-06 23:20:52,236 ERROR: Failed to fetch athlete ID 14160: Status 404, Reason: Not Found
2024-10-06 23:20:52,238 ERROR: Failed to fetch athlete ID 14466: Status 404, Reason: Not Found
2024-10-06 23:20:52,239 ERROR: Failed to fetch athlete ID 14467: Status 404, Reason: Not Found
2024-10-06 23:20:52,243 ERROR: Failed to fetch athlete ID 14630: Status 404, Reason: Not Found
2024-10-06 23:20:52,265 ERROR: Failed to fetch athlete ID 15275: Status 404, Reason: Not Found
2024-10-06 23:20:52,283 ERROR: Failed to fetch athlete ID 15339: Status 404, Reason: Not Found
2024-10-06 23:20:52,283 ERROR: Failed to fetch athlete ID 15266: Status 404, Reason: Not Found
2024-10-06 23:20:52,328 ERROR: Failed to fetch athlete ID 14812: Status 404, Reason: Not Found
2024-10-06 23:20:52,332 ERROR: Failed to fetch athlete ID 15581: Status 404, Reason: Not Found
2024-10-06 23:20:52,340 ERROR: Failed to fetch athlete ID 15902: Status 404, Reason: Not Found
2024-10-06 23:20:52,360 ERROR: Failed to fetch athlete ID 15904: Status 404, Reason: Not Found
2024-10-06 23:20:52,364 ERROR: Failed to fetch athlete ID 15905: Status 404, Reason: Not Found
2024-10-06 23:20:52,364 ERROR: Failed to fetch athlete ID 15903: Status 404, Reason: Not Found
2024-10-06 23:20:52,368 ERROR: Failed to fetch athlete ID 14927: Status 404, Reason: Not Found
2024-10-06 23:20:52,397 ERROR: Failed to fetch athlete ID 15992: Status 404, Reason: Not Found
2024-10-06 23:20:52,401 ERROR: Failed to fetch athlete ID 15901: Status 404, Reason: Not Found
2024-10-06 23:20:52,419 ERROR: Failed to fetch athlete ID 15906: Status 404, Reason: Not Found
2024-10-06 23:20:52,430 ERROR: Failed to fetch athlete ID 15900: Status 404, Reason: Not Found
2024-10-06 23:20:52,458 ERROR: Failed to fetch athlete ID 15993: Status 404, Reason: Not Found
2024-10-06 23:20:52,462 ERROR: Failed to fetch athlete ID 16003: Status 404, Reason: Not Found
2024-10-06 23:20:52,468 ERROR: Failed to fetch athlete ID 16004: Status 404, Reason: Not Found
2024-10-06 23:20:52,468 ERROR: Failed to fetch athlete ID 16027: Status 404, Reason: Not Found
2024-10-06 23:20:52,472 ERROR: Failed to fetch athlete ID 16028: Status 404, Reason: Not Found
2024-10-06 23:20:52,474 ERROR: Failed to fetch athlete ID 16026: Status 404, Reason: Not Found
2024-10-06 23:20:52,480 ERROR: Failed to fetch athlete ID 16317: Status 404, Reason: Not Found
2024-10-06 23:20:52,500 ERROR: Failed to fetch athlete ID 16305: Status 404, Reason: Not Found
2024-10-06 23:20:52,500 ERROR: Failed to fetch athlete ID 16030: Status 404, Reason: Not Found
2024-10-06 23:20:54,778 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:20:54,779 ERROR: Failed to fetch athlete ID 3325: Status 404, Reason: Not Found
2024-10-06 23:20:54,780 ERROR: Failed to fetch athlete ID 34: Status 404, Reason: Not Found
2024-10-06 23:20:54,785 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:20:54,786 ERROR: Failed to fetch athlete ID 2300: Status 404, Reason: Not Found
2024-10-06 23:20:54,786 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:20:54,789 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:20:54,793 ERROR: Failed to fetch athlete ID 2127: Status 404, Reason: Not Found
2024-10-06 23:20:54,793 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:20:54,794 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:20:54,794 ERROR: Failed to fetch athlete ID 3423: Status 404, Reason: Not Found
2024-10-06 23:20:54,794 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:20:54,795 ERROR: Failed to fetch athlete ID 2130: Status 404, Reason: Not Found
2024-10-06 23:20:54,799 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:20:54,800 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:20:54,800 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:20:54,805 ERROR: Failed to fetch athlete ID 3307: Status 404, Reason: Not Found
2024-10-06 23:20:54,807 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:20:54,808 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:20:54,813 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:20:55,034 ERROR: Failed to fetch athlete ID 3666: Status 404, Reason: Not Found
2024-10-06 23:20:55,036 ERROR: Failed to fetch athlete ID 3495: Status 404, Reason: Not Found
2024-10-06 23:20:55,044 ERROR: Failed to fetch athlete ID 3902: Status 404, Reason: Not Found
2024-10-06 23:20:55,054 ERROR: Failed to fetch athlete ID 3924: Status 404, Reason: Not Found
2024-10-06 23:20:55,057 ERROR: Failed to fetch athlete ID 3720: Status 404, Reason: Not Found
2024-10-06 23:20:55,061 ERROR: Failed to fetch athlete ID 4268: Status 404, Reason: Not Found
2024-10-06 23:20:55,065 ERROR: Failed to fetch athlete ID 4254: Status 404, Reason: Not Found
2024-10-06 23:20:55,066 ERROR: Failed to fetch athlete ID 4256: Status 404, Reason: Not Found
2024-10-06 23:20:55,073 ERROR: Failed to fetch athlete ID 4258: Status 404, Reason: Not Found
2024-10-06 23:20:55,076 ERROR: Failed to fetch athlete ID 4259: Status 404, Reason: Not Found
2024-10-06 23:20:55,079 ERROR: Failed to fetch athlete ID 4257: Status 404, Reason: Not Found
2024-10-06 23:20:55,080 ERROR: Failed to fetch athlete ID 4253: Status 404, Reason: Not Found
2024-10-06 23:20:55,081 ERROR: Failed to fetch athlete ID 4262: Status 404, Reason: Not Found
2024-10-06 23:20:55,081 ERROR: Failed to fetch athlete ID 4250: Status 404, Reason: Not Found
2024-10-06 23:20:55,086 ERROR: Failed to fetch athlete ID 4264: Status 404, Reason: Not Found
2024-10-06 23:20:55,086 ERROR: Failed to fetch athlete ID 4255: Status 404, Reason: Not Found
2024-10-06 23:20:55,090 ERROR: Failed to fetch athlete ID 4266: Status 404, Reason: Not Found
2024-10-06 23:20:55,091 ERROR: Failed to fetch athlete ID 4267: Status 404, Reason: Not Found
2024-10-06 23:20:55,103 ERROR: Failed to fetch athlete ID 4261: Status 404, Reason: Not Found
2024-10-06 23:20:55,103 ERROR: Failed to fetch athlete ID 4263: Status 404, Reason: Not Found
2024-10-06 23:20:55,265 ERROR: Failed to fetch athlete ID 4265: Status 404, Reason: Not Found
2024-10-06 23:20:55,268 ERROR: Failed to fetch athlete ID 4270: Status 404, Reason: Not Found
2024-10-06 23:20:55,268 ERROR: Failed to fetch athlete ID 4269: Status 404, Reason: Not Found
2024-10-06 23:20:55,288 ERROR: Failed to fetch athlete ID 4287: Status 404, Reason: Not Found
2024-10-06 23:20:55,292 ERROR: Failed to fetch athlete ID 4278: Status 404, Reason: Not Found
2024-10-06 23:20:55,295 ERROR: Failed to fetch athlete ID 4273: Status 404, Reason: Not Found
2024-10-06 23:20:55,296 ERROR: Failed to fetch athlete ID 4277: Status 404, Reason: Not Found
2024-10-06 23:20:55,303 ERROR: Failed to fetch athlete ID 4279: Status 404, Reason: Not Found
2024-10-06 23:20:55,312 ERROR: Failed to fetch athlete ID 4280: Status 404, Reason: Not Found
2024-10-06 23:20:55,312 ERROR: Failed to fetch athlete ID 4276: Status 404, Reason: Not Found
2024-10-06 23:20:55,320 ERROR: Failed to fetch athlete ID 4292: Status 404, Reason: Not Found
2024-10-06 23:20:55,321 ERROR: Failed to fetch athlete ID 4291: Status 404, Reason: Not Found
2024-10-06 23:20:55,326 ERROR: Failed to fetch athlete ID 4296: Status 404, Reason: Not Found
2024-10-06 23:20:55,327 ERROR: Failed to fetch athlete ID 4298: Status 404, Reason: Not Found
2024-10-06 23:20:55,328 ERROR: Failed to fetch athlete ID 4297: Status 404, Reason: Not Found
2024-10-06 23:20:55,328 ERROR: Failed to fetch athlete ID 4271: Status 404, Reason: Not Found
2024-10-06 23:20:55,331 ERROR: Failed to fetch athlete ID 4294: Status 404, Reason: Not Found
2024-10-06 23:20:55,335 ERROR: Failed to fetch athlete ID 4281: Status 404, Reason: Not Found
2024-10-06 23:20:55,336 ERROR: Failed to fetch athlete ID 4288: Status 404, Reason: Not Found
2024-10-06 23:20:55,341 ERROR: Failed to fetch athlete ID 4295: Status 404, Reason: Not Found
2024-10-06 23:20:55,492 ERROR: Failed to fetch athlete ID 4309: Status 404, Reason: Not Found
2024-10-06 23:20:55,495 ERROR: Failed to fetch athlete ID 4313: Status 404, Reason: Not Found
2024-10-06 23:20:55,505 ERROR: Failed to fetch athlete ID 4302: Status 404, Reason: Not Found
2024-10-06 23:20:55,521 ERROR: Failed to fetch athlete ID 4315: Status 404, Reason: Not Found
2024-10-06 23:20:55,524 ERROR: Failed to fetch athlete ID 4318: Status 404, Reason: Not Found
2024-10-06 23:20:55,532 ERROR: Failed to fetch athlete ID 4317: Status 404, Reason: Not Found
2024-10-06 23:20:55,535 ERROR: Failed to fetch athlete ID 4311: Status 404, Reason: Not Found
2024-10-06 23:20:55,540 ERROR: Failed to fetch athlete ID 4312: Status 404, Reason: Not Found
2024-10-06 23:20:55,547 ERROR: Failed to fetch athlete ID 4321: Status 404, Reason: Not Found
2024-10-06 23:20:55,550 ERROR: Failed to fetch athlete ID 4332: Status 404, Reason: Not Found
2024-10-06 23:20:55,556 ERROR: Failed to fetch athlete ID 4326: Status 404, Reason: Not Found
2024-10-06 23:20:55,560 ERROR: Failed to fetch athlete ID 4346: Status 404, Reason: Not Found
2024-10-06 23:20:55,560 ERROR: Failed to fetch athlete ID 4335: Status 404, Reason: Not Found
2024-10-06 23:20:55,560 ERROR: Failed to fetch athlete ID 4316: Status 404, Reason: Not Found
2024-10-06 23:20:55,562 ERROR: Failed to fetch athlete ID 4351: Status 404, Reason: Not Found
2024-10-06 23:20:55,563 ERROR: Failed to fetch athlete ID 4314: Status 404, Reason: Not Found
2024-10-06 23:20:55,569 ERROR: Failed to fetch athlete ID 4331: Status 404, Reason: Not Found
2024-10-06 23:20:55,570 ERROR: Failed to fetch athlete ID 4325: Status 404, Reason: Not Found
2024-10-06 23:20:55,572 ERROR: Failed to fetch athlete ID 4350: Status 404, Reason: Not Found
2024-10-06 23:20:55,582 ERROR: Failed to fetch athlete ID 4348: Status 404, Reason: Not Found
2024-10-06 23:20:55,716 ERROR: Failed to fetch athlete ID 4352: Status 404, Reason: Not Found
2024-10-06 23:20:55,716 ERROR: Failed to fetch athlete ID 4349: Status 404, Reason: Not Found
2024-10-06 23:20:55,721 ERROR: Failed to fetch athlete ID 4356: Status 404, Reason: Not Found
2024-10-06 23:20:55,746 ERROR: Failed to fetch athlete ID 4354: Status 404, Reason: Not Found
2024-10-06 23:20:55,751 ERROR: Failed to fetch athlete ID 4353: Status 404, Reason: Not Found
2024-10-06 23:20:55,755 ERROR: Failed to fetch athlete ID 4355: Status 404, Reason: Not Found
2024-10-06 23:20:55,762 ERROR: Failed to fetch athlete ID 4671: Status 404, Reason: Not Found
2024-10-06 23:20:55,765 ERROR: Failed to fetch athlete ID 4361: Status 404, Reason: Not Found
2024-10-06 23:20:55,770 ERROR: Failed to fetch athlete ID 4897: Status 404, Reason: Not Found
2024-10-06 23:20:55,788 ERROR: Failed to fetch athlete ID 5519: Status 404, Reason: Not Found
2024-10-06 23:20:55,793 ERROR: Failed to fetch athlete ID 4362: Status 404, Reason: Not Found
2024-10-06 23:20:55,794 ERROR: Failed to fetch athlete ID 5867: Status 404, Reason: Not Found
2024-10-06 23:20:55,794 ERROR: Failed to fetch athlete ID 5967: Status 404, Reason: Not Found
2024-10-06 23:20:55,801 ERROR: Failed to fetch athlete ID 5553: Status 404, Reason: Not Found
2024-10-06 23:20:55,803 ERROR: Failed to fetch athlete ID 5899: Status 404, Reason: Not Found
2024-10-06 23:20:55,807 ERROR: Failed to fetch athlete ID 5680: Status 404, Reason: Not Found
2024-10-06 23:20:55,807 ERROR: Failed to fetch athlete ID 4357: Status 404, Reason: Not Found
2024-10-06 23:20:55,810 ERROR: Failed to fetch athlete ID 5866: Status 404, Reason: Not Found
2024-10-06 23:20:55,813 ERROR: Failed to fetch athlete ID 6186: Status 404, Reason: Not Found
2024-10-06 23:20:55,824 ERROR: Failed to fetch athlete ID 5864: Status 404, Reason: Not Found
2024-10-06 23:20:55,962 ERROR: Failed to fetch athlete ID 7491: Status 404, Reason: Not Found
2024-10-06 23:20:55,962 ERROR: Failed to fetch athlete ID 8366: Status 404, Reason: Not Found
2024-10-06 23:20:55,968 ERROR: Failed to fetch athlete ID 7249: Status 404, Reason: Not Found
2024-10-06 23:20:55,975 ERROR: Failed to fetch athlete ID 7370: Status 404, Reason: Not Found
2024-10-06 23:20:55,983 ERROR: Failed to fetch athlete ID 7844: Status 404, Reason: Not Found
2024-10-06 23:20:55,995 ERROR: Failed to fetch athlete ID 9340: Status 404, Reason: Not Found
2024-10-06 23:20:55,995 ERROR: Failed to fetch athlete ID 8727: Status 404, Reason: Not Found
2024-10-06 23:20:55,997 ERROR: Failed to fetch athlete ID 8038: Status 404, Reason: Not Found
2024-10-06 23:20:56,003 ERROR: Failed to fetch athlete ID 9780: Status 404, Reason: Not Found
2024-10-06 23:20:56,017 ERROR: Failed to fetch athlete ID 9807: Status 404, Reason: Not Found
2024-10-06 23:20:56,022 ERROR: Failed to fetch athlete ID 10042: Status 404, Reason: Not Found
2024-10-06 23:20:56,022 ERROR: Failed to fetch athlete ID 10174: Status 404, Reason: Not Found
2024-10-06 23:20:56,025 ERROR: Failed to fetch athlete ID 10045: Status 404, Reason: Not Found
2024-10-06 23:20:56,027 ERROR: Failed to fetch athlete ID 10146: Status 404, Reason: Not Found
2024-10-06 23:20:56,030 ERROR: Failed to fetch athlete ID 10336: Status 404, Reason: Not Found
2024-10-06 23:20:56,031 ERROR: Failed to fetch athlete ID 9712: Status 404, Reason: Not Found
2024-10-06 23:20:56,033 ERROR: Failed to fetch athlete ID 10341: Status 404, Reason: Not Found
2024-10-06 23:20:56,036 ERROR: Failed to fetch athlete ID 10548: Status 404, Reason: Not Found
2024-10-06 23:20:56,038 ERROR: Failed to fetch athlete ID 10592: Status 404, Reason: Not Found
2024-10-06 23:20:56,041 ERROR: Failed to fetch athlete ID 10332: Status 404, Reason: Not Found
2024-10-06 23:20:56,179 ERROR: Failed to fetch athlete ID 10794: Status 404, Reason: Not Found
2024-10-06 23:20:56,188 ERROR: Failed to fetch athlete ID 10828: Status 404, Reason: Not Found
2024-10-06 23:20:56,190 ERROR: Failed to fetch athlete ID 11183: Status 404, Reason: Not Found
2024-10-06 23:20:56,195 ERROR: Failed to fetch athlete ID 11002: Status 404, Reason: Not Found
2024-10-06 23:20:56,211 ERROR: Failed to fetch athlete ID 11236: Status 404, Reason: Not Found
2024-10-06 23:20:56,219 ERROR: Failed to fetch athlete ID 11392: Status 404, Reason: Not Found
2024-10-06 23:20:56,221 ERROR: Failed to fetch athlete ID 11003: Status 404, Reason: Not Found
2024-10-06 23:20:56,223 ERROR: Failed to fetch athlete ID 11539: Status 404, Reason: Not Found
2024-10-06 23:20:56,229 ERROR: Failed to fetch athlete ID 11407: Status 404, Reason: Not Found
2024-10-06 23:20:56,248 ERROR: Failed to fetch athlete ID 11649: Status 404, Reason: Not Found
2024-10-06 23:20:56,255 ERROR: Failed to fetch athlete ID 11925: Status 404, Reason: Not Found
2024-10-06 23:20:56,257 ERROR: Failed to fetch athlete ID 11928: Status 404, Reason: Not Found
2024-10-06 23:20:56,259 ERROR: Failed to fetch athlete ID 11924: Status 404, Reason: Not Found
2024-10-06 23:20:56,259 ERROR: Failed to fetch athlete ID 11532: Status 404, Reason: Not Found
2024-10-06 23:20:56,264 ERROR: Failed to fetch athlete ID 11922: Status 404, Reason: Not Found
2024-10-06 23:20:56,265 ERROR: Failed to fetch athlete ID 11931: Status 404, Reason: Not Found
2024-10-06 23:20:56,267 ERROR: Failed to fetch athlete ID 11927: Status 404, Reason: Not Found
2024-10-06 23:20:56,269 ERROR: Failed to fetch athlete ID 11926: Status 404, Reason: Not Found
2024-10-06 23:20:56,272 ERROR: Failed to fetch athlete ID 11932: Status 404, Reason: Not Found
2024-10-06 23:20:56,274 ERROR: Failed to fetch athlete ID 11936: Status 404, Reason: Not Found
2024-10-06 23:20:56,398 ERROR: Failed to fetch athlete ID 11933: Status 404, Reason: Not Found
2024-10-06 23:20:56,398 ERROR: Failed to fetch athlete ID 11943: Status 404, Reason: Not Found
2024-10-06 23:20:56,403 ERROR: Failed to fetch athlete ID 11934: Status 404, Reason: Not Found
2024-10-06 23:20:56,408 ERROR: Failed to fetch athlete ID 11937: Status 404, Reason: Not Found
2024-10-06 23:20:56,429 ERROR: Failed to fetch athlete ID 11929: Status 404, Reason: Not Found
2024-10-06 23:20:56,435 ERROR: Failed to fetch athlete ID 11987: Status 404, Reason: Not Found
2024-10-06 23:20:56,435 ERROR: Failed to fetch athlete ID 11935: Status 404, Reason: Not Found
2024-10-06 23:20:56,444 ERROR: Failed to fetch athlete ID 11997: Status 404, Reason: Not Found
2024-10-06 23:20:56,458 ERROR: Failed to fetch athlete ID 11923: Status 404, Reason: Not Found
2024-10-06 23:20:56,464 ERROR: Failed to fetch athlete ID 11930: Status 404, Reason: Not Found
2024-10-06 23:20:56,484 ERROR: Failed to fetch athlete ID 12106: Status 404, Reason: Not Found
2024-10-06 23:20:56,485 ERROR: Failed to fetch athlete ID 12115: Status 404, Reason: Not Found
2024-10-06 23:20:56,489 ERROR: Failed to fetch athlete ID 12205: Status 404, Reason: Not Found
2024-10-06 23:20:56,492 ERROR: Failed to fetch athlete ID 12403: Status 404, Reason: Not Found
2024-10-06 23:20:56,494 ERROR: Failed to fetch athlete ID 13448: Status 404, Reason: Not Found
2024-10-06 23:20:56,496 ERROR: Failed to fetch athlete ID 12167: Status 404, Reason: Not Found
2024-10-06 23:20:56,499 ERROR: Failed to fetch athlete ID 13394: Status 404, Reason: Not Found
2024-10-06 23:20:56,502 ERROR: Failed to fetch athlete ID 12091: Status 404, Reason: Not Found
2024-10-06 23:20:56,502 ERROR: Failed to fetch athlete ID 12740: Status 404, Reason: Not Found
2024-10-06 23:20:56,507 ERROR: Failed to fetch athlete ID 12373: Status 404, Reason: Not Found
2024-10-06 23:20:56,618 ERROR: Failed to fetch athlete ID 12711: Status 404, Reason: Not Found
2024-10-06 23:20:56,624 ERROR: Failed to fetch athlete ID 13513: Status 404, Reason: Not Found
2024-10-06 23:20:56,625 ERROR: Failed to fetch athlete ID 13166: Status 404, Reason: Not Found
2024-10-06 23:20:56,627 ERROR: Failed to fetch athlete ID 13514: Status 404, Reason: Not Found
2024-10-06 23:20:56,642 ERROR: Failed to fetch athlete ID 13121: Status 404, Reason: Not Found
2024-10-06 23:20:56,652 ERROR: Failed to fetch athlete ID 13501: Status 404, Reason: Not Found
2024-10-06 23:20:56,654 ERROR: Failed to fetch athlete ID 14078: Status 404, Reason: Not Found
2024-10-06 23:20:56,659 ERROR: Failed to fetch athlete ID 14082: Status 404, Reason: Not Found
2024-10-06 23:20:56,668 ERROR: Failed to fetch athlete ID 14080: Status 404, Reason: Not Found
2024-10-06 23:20:56,675 ERROR: Failed to fetch athlete ID 14083: Status 404, Reason: Not Found
2024-10-06 23:20:56,704 ERROR: Failed to fetch athlete ID 14167: Status 404, Reason: Not Found
2024-10-06 23:20:56,713 ERROR: Failed to fetch athlete ID 14429: Status 404, Reason: Not Found
2024-10-06 23:20:56,716 ERROR: Failed to fetch athlete ID 14081: Status 404, Reason: Not Found
2024-10-06 23:20:56,724 ERROR: Failed to fetch athlete ID 14160: Status 404, Reason: Not Found
2024-10-06 23:20:56,724 ERROR: Failed to fetch athlete ID 14079: Status 404, Reason: Not Found
2024-10-06 23:20:56,725 ERROR: Failed to fetch athlete ID 14466: Status 404, Reason: Not Found
2024-10-06 23:20:56,725 ERROR: Failed to fetch athlete ID 14630: Status 404, Reason: Not Found
2024-10-06 23:20:56,725 ERROR: Failed to fetch athlete ID 14467: Status 404, Reason: Not Found
2024-10-06 23:20:56,726 ERROR: Failed to fetch athlete ID 15275: Status 404, Reason: Not Found
2024-10-06 23:20:56,737 ERROR: Failed to fetch athlete ID 14084: Status 404, Reason: Not Found
2024-10-06 23:20:56,845 ERROR: Failed to fetch athlete ID 15339: Status 404, Reason: Not Found
2024-10-06 23:20:56,849 ERROR: Failed to fetch athlete ID 15266: Status 404, Reason: Not Found
2024-10-06 23:20:56,852 ERROR: Failed to fetch athlete ID 14812: Status 404, Reason: Not Found
2024-10-06 23:20:56,856 ERROR: Failed to fetch athlete ID 15581: Status 404, Reason: Not Found
2024-10-06 23:20:56,857 ERROR: Failed to fetch athlete ID 15902: Status 404, Reason: Not Found
2024-10-06 23:20:56,876 ERROR: Failed to fetch athlete ID 15903: Status 404, Reason: Not Found
2024-10-06 23:20:56,876 ERROR: Failed to fetch athlete ID 15904: Status 404, Reason: Not Found
2024-10-06 23:20:56,882 ERROR: Failed to fetch athlete ID 14927: Status 404, Reason: Not Found
2024-10-06 23:20:56,883 ERROR: Failed to fetch athlete ID 15905: Status 404, Reason: Not Found
2024-10-06 23:20:56,893 ERROR: Failed to fetch athlete ID 15992: Status 404, Reason: Not Found
2024-10-06 23:20:56,926 ERROR: Failed to fetch athlete ID 15901: Status 404, Reason: Not Found
2024-10-06 23:20:56,943 ERROR: Failed to fetch athlete ID 15906: Status 404, Reason: Not Found
2024-10-06 23:20:56,944 ERROR: Failed to fetch athlete ID 15900: Status 404, Reason: Not Found
2024-10-06 23:20:56,961 ERROR: Failed to fetch athlete ID 16003: Status 404, Reason: Not Found
2024-10-06 23:20:56,966 ERROR: Failed to fetch athlete ID 16028: Status 404, Reason: Not Found
2024-10-06 23:20:56,972 ERROR: Failed to fetch athlete ID 16317: Status 404, Reason: Not Found
2024-10-06 23:20:56,972 ERROR: Failed to fetch athlete ID 16004: Status 404, Reason: Not Found
2024-10-06 23:20:57,014 ERROR: Failed to fetch athlete ID 16026: Status 404, Reason: Not Found
2024-10-06 23:20:57,018 ERROR: Failed to fetch athlete ID 16027: Status 404, Reason: Not Found
2024-10-06 23:20:57,019 ERROR: Failed to fetch athlete ID 15993: Status 404, Reason: Not Found
2024-10-06 23:20:57,069 ERROR: Failed to fetch athlete ID 16030: Status 404, Reason: Not Found
2024-10-06 23:20:57,078 ERROR: Failed to fetch athlete ID 16305: Status 404, Reason: Not Found
2024-10-06 23:32:53,702 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:32:54,909 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:32:54,956 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:32:56,018 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:32:56,028 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:32:56,534 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:32:56,781 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:32:56,887 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:33:05,355 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:33:08,330 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:33:10,917 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:33:11,220 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:33:15,604 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:33:17,150 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:33:17,154 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:33:17,157 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:33:17,163 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:33:17,165 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:33:17,167 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:33:17,170 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:33:17,172 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:33:17,174 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:33:17,175 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:33:17,177 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:33:17,180 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:33:17,371 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:33:19,678 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:33:19,680 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:33:19,684 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:33:19,688 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:33:19,689 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:33:19,691 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:33:19,693 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:33:19,693 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:33:19,695 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:33:19,695 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:33:19,700 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:33:19,701 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:33:19,704 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:34:36,994 ERROR: Failed to fetch athlete ID 34: Status 404, Reason: Not Found
2024-10-06 23:34:45,839 ERROR: Failed to fetch athlete ID 332: Status 404, Reason: Not Found
2024-10-06 23:34:49,595 ERROR: Failed to fetch athlete ID 453: Status 404, Reason: Not Found
2024-10-06 23:34:49,607 ERROR: Failed to fetch athlete ID 449: Status 404, Reason: Not Found
2024-10-06 23:34:52,724 ERROR: Failed to fetch athlete ID 545: Status 404, Reason: Not Found
2024-10-06 23:34:52,981 ERROR: Failed to fetch athlete ID 548: Status 404, Reason: Not Found
2024-10-06 23:34:53,506 ERROR: Failed to fetch athlete ID 581: Status 404, Reason: Not Found
2024-10-06 23:34:54,029 ERROR: Failed to fetch athlete ID 590: Status 404, Reason: Not Found
2024-10-06 23:34:54,559 ERROR: Failed to fetch athlete ID 608: Status 404, Reason: Not Found
2024-10-06 23:35:07,917 ERROR: Failed to fetch athlete ID 1096: Status 404, Reason: Not Found
2024-10-06 23:35:14,116 ERROR: Failed to fetch athlete ID 1253: Status 404, Reason: Not Found
2024-10-06 23:35:19,141 ERROR: Failed to fetch athlete ID 1414: Status 404, Reason: Not Found
2024-10-06 23:35:20,665 ERROR: Failed to fetch athlete ID 1460: Status 404, Reason: Not Found
2024-10-06 23:35:28,972 ERROR: Failed to fetch athlete ID 1861: Status 404, Reason: Not Found
2024-10-06 23:35:32,406 ERROR: Failed to fetch athlete ID 2127: Status 404, Reason: Not Found
2024-10-06 23:35:32,418 ERROR: Failed to fetch athlete ID 2130: Status 404, Reason: Not Found
2024-10-06 23:35:34,151 ERROR: Failed to fetch athlete ID 2300: Status 404, Reason: Not Found
2024-10-06 23:35:44,753 ERROR: Failed to fetch athlete ID 3307: Status 404, Reason: Not Found
2024-10-06 23:35:44,970 ERROR: Failed to fetch athlete ID 3325: Status 404, Reason: Not Found
2024-10-06 23:35:47,248 ERROR: Failed to fetch athlete ID 3423: Status 404, Reason: Not Found
2024-10-06 23:35:49,726 ERROR: Failed to fetch athlete ID 3495: Status 404, Reason: Not Found
2024-10-06 23:35:55,528 ERROR: Failed to fetch athlete ID 3666: Status 404, Reason: Not Found
2024-10-06 23:35:57,416 ERROR: Failed to fetch athlete ID 3720: Status 404, Reason: Not Found
2024-10-06 23:36:02,984 ERROR: Error fetching data for athlete ID 3346: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,030 ERROR: Error fetching data for athlete ID 3347: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,048 ERROR: Error fetching data for athlete ID 3349: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,048 ERROR: Error fetching data for athlete ID 3348: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,055 ERROR: Error fetching data for athlete ID 3351: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,055 ERROR: Error fetching data for athlete ID 3350: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))
2024-10-06 23:36:03,057 ERROR: Error fetching data for athlete ID 3352: ('Connection aborted.', TimeoutError(60, 'Operation timed out'))