-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathasync_app.log
1665 lines (1665 loc) · 179 KB
/
async_app.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-05-12 17:06:46,121 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 17:06:51,668 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 18:37:34,982 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 18:37:34,995 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 18:37:35,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 18:37:39,166 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 18:37:39,173 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=1
2024-05-12 18:37:40,446 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=1
2024-05-12 18:37:40,452 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profile/1
2024-05-12 18:37:41,662 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 18:37:41,683 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 18:37:41,685 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 18:37:41,687 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 18:37:41,695 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 18:37:41,698 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 18:38:08,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/about
2024-05-12 19:03:51,298 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 19:03:51,322 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 19:03:56,974 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:03:56,992 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:03:56,996 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:03:57,003 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:03:57,006 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:03:57,011 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:03:59,120 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:04:00,646 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:04:00,661 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:04:00,666 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:04:00,667 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:04:00,673 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:04:00,675 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:04:01,643 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/upload
2024-05-12 19:04:03,592 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/upload
2024-05-12 19:04:04,233 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:04:04,245 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:04:04,249 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:04:04,251 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:04:04,256 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:04:04,258 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:04:05,955 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:04:07,615 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:07:09,312 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:07:53,875 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:07:57,261 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:07:57,277 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:07:58,779 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/1
2024-05-12 19:08:00,905 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:08:00,926 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:08:00,934 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:08:00,942 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:08:00,943 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:08:00,947 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:08:02,719 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:08:04,056 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:08:25,093 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/1
2024-05-12 19:08:25,105 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:08:27,297 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/1
2024-05-12 19:10:29,735 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 19:10:29,777 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 19:10:35,330 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:10:35,365 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:10:35,379 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:10:35,384 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:10:35,398 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:10:35,418 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:11:21,650 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 19:11:21,714 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:11:23,167 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:11:23,204 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:11:32,255 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:11:36,623 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:11:46,811 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/register
2024-05-12 19:11:46,863 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style3.css
2024-05-12 19:12:05,597 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/register
2024-05-12 19:12:06,959 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 19:12:06,984 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:12:08,121 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:12:08,149 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:12:13,159 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:12:48,368 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:00,093 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:01,578 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:12,016 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:13,288 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:33,823 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:13:37,865 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:14:40,964 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 19:14:40,983 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 19:14:47,063 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:14:47,076 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/chatbot.js
2024-05-12 19:14:47,080 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:14:47,082 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:14:47,085 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/index_easter.js
2024-05-12 19:14:47,088 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/love.js
2024-05-12 19:21:02,824 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 19:21:02,842 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 19:21:08,453 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:21:08,483 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:21:08,486 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:21:57,863 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 19:21:57,878 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:22:00,603 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/register
2024-05-12 19:22:00,620 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style3.css
2024-05-12 19:22:04,248 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profilem
2024-05-12 19:22:19,071 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 19:22:19,089 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-12 19:22:25,390 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-12 19:22:25,397 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=1
2024-05-12 19:22:27,232 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=1
2024-05-12 19:22:27,247 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profile/1
2024-05-12 19:22:47,066 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:25:09,435 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profile/1
2024-05-12 19:25:09,576 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 19:25:38,042 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/upload
2024-05-12 19:25:38,088 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 19:26:09,105 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/upload
2024-05-12 19:26:09,813 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:26:09,830 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:26:09,832 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:26:11,079 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:26:12,269 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:26:38,623 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:27:16,034 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:27:16,049 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:27:17,562 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:29:54,066 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:29:55,508 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 19:30:08,493 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:30:08,508 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:30:08,512 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:30:09,852 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:30:11,115 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:32:02,248 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:32:02,265 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:32:03,540 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:33:15,664 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:33:15,682 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:33:15,683 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:33:16,922 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:33:18,091 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:33:28,359 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:33:28,371 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:33:29,571 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:33:33,137 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 19:33:33,154 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 19:33:33,158 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 19:33:35,967 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:34:01,910 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit/2
2024-05-12 19:34:01,925 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-12 19:34:03,263 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/view/2
2024-05-12 19:39:16,427 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-12 19:39:18,807 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 19:39:18,821 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 20:39:23,888 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 20:39:23,905 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 20:39:23,998 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 20:39:29,517 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 20:39:29,536 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 20:39:29,537 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 20:40:22,373 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 20:40:22,399 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 20:40:22,484 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 20:40:25,094 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 20:40:25,109 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 20:40:25,111 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 20:40:34,848 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 20:40:34,879 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 20:40:39,393 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 20:40:39,405 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 20:40:39,407 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-12 20:50:59,188 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-12 20:50:59,206 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/cithub.png
2024-05-12 20:50:59,291 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-12 20:51:03,802 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-12 20:51:03,824 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-12 20:51:03,826 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 12:34:53,398 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-19 12:37:25,926 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-19 12:37:25,959 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 12:37:26,088 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/favicon.ico
2024-05-19 12:37:30,580 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 12:37:30,614 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 12:37:30,616 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 12:37:32,920 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-19 12:37:32,943 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 12:37:40,000 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/termOfUse
2024-05-19 12:37:41,649 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/register
2024-05-19 12:37:41,678 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style3.css
2024-05-19 12:37:51,221 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/register
2024-05-19 12:37:51,269 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/WelcomeNewUser
2024-05-19 12:37:59,772 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/regSuc
2024-05-19 12:38:00,952 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-19 12:38:00,969 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 12:38:02,029 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-19 12:38:02,050 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 12:38:07,479 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/forget
2024-05-19 12:38:10,748 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/changepassword
2024-05-19 12:38:10,778 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style4.css
2024-05-19 12:38:22,204 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/confirm/InR1ZG8uaHVhbmdAZ21haWwuY29tIg.ZkmCLw.IKiEOZGan_5IfxIM1llfc6s8q-8
2024-05-19 12:38:35,169 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/confirm/InR1ZG8uaHVhbmdAZ21haWwuY29tIg.ZkmCLw.IKiEOZGan_5IfxIM1llfc6s8q-8
2024-05-19 12:39:42,037 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/changepassword
2024-05-19 12:39:42,063 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 12:39:42,073 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-19 12:39:55,030 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/changepassword
2024-05-19 12:39:55,046 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-19 12:39:55,063 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 12:39:58,549 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-19 12:39:58,553 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=1
2024-05-19 14:29:51,766 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-19 14:29:51,791 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 14:29:56,407 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 14:29:56,442 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 14:29:56,443 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 14:29:57,705 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/upload
2024-05-19 14:29:58,982 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/logout
2024-05-19 14:30:00,118 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 14:30:00,134 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 14:30:00,134 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 14:30:01,156 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-19 14:30:01,171 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-19 14:30:03,541 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/termOfUse
2024-05-19 14:30:05,215 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/files
2024-05-19 15:12:43,325 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 15:12:43,335 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 15:12:43,337 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 15:12:43,346 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-19 15:12:45,462 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 15:12:45,477 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 15:12:45,477 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 15:12:48,017 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-19 15:12:48,032 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 15:13:54,523 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 15:14:47,024 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 15:14:49,900 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 15:14:49,919 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 15:14:49,922 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 15:32:33,504 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-19 15:32:33,531 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-19 15:32:36,626 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 15:32:36,642 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 15:32:36,642 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-19 15:32:40,211 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/about
2024-05-19 15:32:41,361 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/slide
2024-05-19 15:32:41,394 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/Cithub
2024-05-19 15:32:58,046 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/slide
2024-05-19 15:32:58,057 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/Cithub
2024-05-19 15:32:58,066 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/Cithub
2024-05-19 15:33:00,868 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/Cithub
2024-05-19 15:33:00,874 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/Cithub
2024-05-19 15:33:21,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-19 15:33:21,112 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-19 15:33:21,115 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-20 15:06:32,482 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:06:32,636 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:06:33,011 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/favicon.ico
2024-05-20 15:07:07,309 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:07:55,354 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:07:55,490 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:07:55,828 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/favicon.ico
2024-05-20 15:08:00,302 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/index
2024-05-20 15:08:00,431 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/snow.js
2024-05-20 15:08:00,433 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/night.js
2024-05-20 15:08:00,525 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/favicon.ico
2024-05-20 15:08:02,612 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/termOfUse
2024-05-20 15:08:04,417 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:08:04,533 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style3.css
2024-05-20 15:08:20,789 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:08:20,951 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:08:21,112 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:08:21,224 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:08:29,813 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/regSuc
2024-05-20 15:08:31,136 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/login
2024-05-20 15:08:31,259 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style.css
2024-05-20 15:08:34,237 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:08:48,774 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:08:57,383 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/regSuc
2024-05-20 15:08:58,674 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/login
2024-05-20 15:08:58,840 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style.css
2024-05-20 15:08:59,645 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/forget
2024-05-20 15:08:59,782 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style.css
2024-05-20 15:09:04,056 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/forget
2024-05-20 15:09:07,328 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/changepassword
2024-05-20 15:09:07,459 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style4.css
2024-05-20 15:10:18,929 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:10:19,084 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:10:19,304 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/favicon.ico
2024-05-20 15:10:23,790 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/index
2024-05-20 15:10:23,914 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/snow.js
2024-05-20 15:10:23,914 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/night.js
2024-05-20 15:10:24,012 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/favicon.ico
2024-05-20 15:10:25,582 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/about
2024-05-20 15:10:26,949 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/slide
2024-05-20 15:10:27,094 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/Cithub
2024-05-20 15:10:27,278 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/Cithub
2024-05-20 15:10:27,368 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/Cithub
2024-05-20 15:10:50,444 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/index
2024-05-20 15:10:50,552 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/snow.js
2024-05-20 15:10:50,557 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/night.js
2024-05-20 15:10:54,064 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/law
2024-05-20 15:11:09,177 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/termOfUse
2024-05-20 15:11:11,016 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:11:11,126 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style3.css
2024-05-20 15:11:27,694 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:11:27,803 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:11:27,932 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:11:28,028 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:11:28,112 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/WelcomeNewUser
2024-05-20 15:11:36,699 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/regSuc
2024-05-20 15:11:46,401 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/login
2024-05-20 15:11:46,587 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style.css
2024-05-20 15:12:03,807 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:12:41,398 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/ADMINONLY
2024-05-20 15:12:51,055 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/adminonly
2024-05-20 15:12:57,227 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:12:57,334 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:13:02,126 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/index
2024-05-20 15:13:02,236 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/snow.js
2024-05-20 15:13:02,237 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/night.js
2024-05-20 15:13:04,260 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/register
2024-05-20 15:13:04,365 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style3.css
2024-05-20 15:13:11,109 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/profile/1
2024-05-20 15:13:26,088 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/edit-profile?user_id=1
2024-05-20 15:13:26,187 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/login
2024-05-20 15:13:26,301 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style.css
2024-05-20 15:13:53,474 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:34:57,833 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/changepassword
2024-05-20 15:34:57,930 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/style4.css
2024-05-20 15:34:58,021 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/favicon.ico
2024-05-20 15:35:05,593 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:35:07,212 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/
2024-05-20 15:35:07,311 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:35:07,454 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/video/HelloCITHUB
2024-05-20 15:35:10,872 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/index
2024-05-20 15:35:10,964 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/snow.js
2024-05-20 15:35:10,998 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/night.js
2024-05-20 15:35:11,079 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/static/favicon.ico
2024-05-20 15:36:45,785 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/termOfUse
2024-05-20 15:36:49,635 - async_logger - INFO - IP: 127.0.0.1, URL: http://199a-203-64-138-253.ngrok-free.app/noIn
2024-05-21 21:46:50,728 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/
2024-05-21 21:46:50,778 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/video/HelloCITHUB
2024-05-21 21:46:50,900 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/favicon.ico
2024-05-21 21:46:53,443 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/index
2024-05-21 21:46:53,480 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/snow.js
2024-05-21 21:46:53,482 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/night.js
2024-05-21 21:46:59,496 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profilem
2024-05-21 21:48:32,540 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profilem
2024-05-21 21:48:32,563 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/image.png
2024-05-21 21:48:32,613 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-21 21:48:59,153 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/profilem
2024-05-21 21:48:59,197 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/favicon.ico
2024-05-21 21:49:01,273 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/edit-profile?user_id=
2024-05-21 21:49:01,277 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/login
2024-05-21 21:49:01,293 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:5000/static/style.css
2024-05-21 21:49:06,017 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYfoH0WCyzLny95HVkFcbUozZGJxiYLLvBWIFBcvoNjgPQU2udhW2gZDBdVfGToa3w&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-21 21:50:10,581 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYfoH0WCyzLny95HVkFcbUozZGJxiYLLvBWIFBcvoNjgPQU2udhW2gZDBdVfGToa3w&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-21 21:50:10,926 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-21 21:50:13,628 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-21 21:50:13,641 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-21 21:50:17,146 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-21 21:50:17,161 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-21 21:50:17,161 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-21 21:50:18,600 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-21 21:50:18,614 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-21 21:50:25,259 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYdZcoKBOGg5U_8NI5AnSW8xepvQ2PmCDPBPWo-whQh2Q_Mg3ze9UHXLrJt_p6nxBg&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-21 21:51:53,359 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYdZcoKBOGg5U_8NI5AnSW8xepvQ2PmCDPBPWo-whQh2Q_Mg3ze9UHXLrJt_p6nxBg&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-21 21:51:53,712 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-21 21:51:56,542 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-21 21:51:56,560 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-21 21:52:01,064 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-21 21:52:01,087 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-21 21:52:01,090 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:11:49,439 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/
2024-05-22 10:11:49,454 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/video/HelloCITHUB
2024-05-22 10:11:49,526 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/favicon.ico
2024-05-22 10:11:53,614 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/index
2024-05-22 10:11:53,643 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/snow.js
2024-05-22 10:11:53,645 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/night.js
2024-05-22 10:11:53,657 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/favicon.ico
2024-05-22 10:11:55,172 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/files
2024-05-22 10:11:56,948 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/view/1
2024-05-22 10:11:59,364 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/login
2024-05-22 10:11:59,397 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:03,419 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/login
2024-05-22 10:12:03,448 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:06,431 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/login
2024-05-22 10:12:06,444 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:08,460 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/forget
2024-05-22 10:12:08,470 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:10,155 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/forget
2024-05-22 10:12:10,171 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:18,609 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/forget
2024-05-22 10:12:18,618 - async_logger - INFO - IP: 10.70.6.25, URL: http://10.70.6.25:5000/static/style.css
2024-05-22 10:12:22,799 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYdSv5HglodCee5U92OE1PVnrCvkAVe7DK9KArH1c2SI_59ojVlacdci_3pxhF6MOA&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-22 10:12:23,380 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:12:27,770 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:12:27,784 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:12:27,826 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/favicon.ico
2024-05-22 10:12:34,095 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:12:34,125 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:12:34,126 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:12:36,584 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:12:36,618 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:12:40,354 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYdVwAjJSCRiG779YF7rHoUOkCD-dqRptrhEQ_tExnFELpH5tiN8ZcH803fGdd9DCg&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-22 10:15:19,299 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYdVwAjJSCRiG779YF7rHoUOkCD-dqRptrhEQ_tExnFELpH5tiN8ZcH803fGdd9DCg&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-22 10:15:19,602 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:15:22,501 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:15:22,513 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:15:50,886 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:15:50,913 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:16:04,929 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:16:04,947 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:16:04,949 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:16:20,478 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:16:20,517 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:16:35,237 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYcSG2O9VE8J4S9feNz5Ns_SyQ8bs3qxs17KQJhpXU7n7Yy_X6W4AEbKYkzkdHHJpQ&scope=email+profile+openid+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=2&hd=gafe.cksh.tp.edu.tw&prompt=consent
2024-05-22 10:16:40,625 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:16:40,635 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:16:43,487 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/indx
2024-05-22 10:16:49,249 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:16:49,266 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:16:49,267 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:17:00,990 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback
2024-05-22 10:17:24,019 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:17:24,047 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:19:16,656 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:19:56,611 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:19:56,638 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:19:56,641 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:19:57,824 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:19:57,858 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:20:01,175 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYe-Z_L3bVojdnlGoyXxQQq25x38g26D57Q9_zywNMr0yXi13TuMaPVx3EeQyBjRSw&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-22 10:20:03,405 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:20:03,439 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:20:07,991 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/oauth2callback?code=4%2F0AdLIrYeQoz6UXnXKZbFK4N7-kerSa3gDVKtaESlF9yxe1Y6HA3aBsydM1WXUaVjZxuXvcA&scope=email%20profile%20openid%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile%20https:%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&authuser=0&prompt=consent
2024-05-22 10:20:08,929 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:20:12,253 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:20:12,266 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/profile/2
2024-05-22 10:20:25,055 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:20:41,083 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:20:41,104 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/profile/2
2024-05-22 10:20:59,651 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:21:55,949 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=2
2024-05-22 10:21:55,957 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/profile/2
2024-05-22 10:21:59,624 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:21:59,664 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.css
2024-05-22 10:21:59,672 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/chatbot.js
2024-05-22 10:21:59,674 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/index_easter.js
2024-05-22 10:21:59,675 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/love_ad.js
2024-05-22 10:21:59,676 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night_ad.js
2024-05-22 10:21:59,676 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:22:03,653 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/earthquake
2024-05-22 10:23:20,161 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/logout
2024-05-22 10:23:21,134 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:23:21,167 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:23:21,168 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:23:23,254 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:23:23,281 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:23:25,070 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:23:25,083 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:23:25,620 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:23:25,633 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:23:26,848 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:23:28,156 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/termOfUse
2024-05-22 10:23:31,989 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/register
2024-05-22 10:23:32,024 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style3.css
2024-05-22 10:23:41,990 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/register
2024-05-22 10:23:42,015 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/WelcomeNewUser
2024-05-22 10:23:50,537 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/regSuc
2024-05-22 10:24:02,716 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:24:02,750 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 10:24:03,913 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 10:24:03,918 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=3
2024-05-22 10:24:05,301 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/edit-profile?user_id=3
2024-05-22 10:24:05,308 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/profile/3
2024-05-22 10:24:08,359 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:24:08,395 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:24:08,397 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:25:10,886 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:25:10,900 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:25:10,902 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:25:10,907 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:26:29,849 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:26:29,862 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:26:29,864 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:26:29,870 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:28:09,131 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/files
2024-05-22 10:28:13,997 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/1
2024-05-22 10:28:20,450 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:28:20,486 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:28:20,489 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:28:24,543 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/law
2024-05-22 10:37:48,914 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 10:37:48,940 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 10:37:53,468 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:37:53,496 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:37:53,499 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:37:55,614 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/upload
2024-05-22 10:38:41,664 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/upload
2024-05-22 10:38:42,261 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 10:38:42,271 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 10:38:42,272 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 10:38:43,497 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/files
2024-05-22 10:38:44,617 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:39:06,315 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:39:18,866 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:39:52,754 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:39:53,431 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:40:07,712 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:40:08,521 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:40:40,857 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 10:40:41,553 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 10:42:07,672 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 11:25:15,571 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 11:25:17,588 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 11:25:52,256 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/2
2024-05-22 11:25:55,139 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 11:25:58,636 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 11:25:58,668 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 11:25:58,670 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 11:26:02,350 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/logout
2024-05-22 11:26:04,055 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 11:26:04,083 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 11:26:04,086 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 11:26:06,832 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/files
2024-05-22 11:26:08,995 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/view/1
2024-05-22 12:35:54,969 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 12:35:54,995 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 12:35:59,845 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 12:35:59,879 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 12:35:59,879 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 12:36:01,626 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 12:36:01,716 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:36:03,572 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:36:03,644 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:36:10,290 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:36:14,122 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:36:14,196 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style4.css
2024-05-22 12:39:08,831 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:40:04,987 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 12:40:05,037 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 12:40:05,037 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 12:40:05,113 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 12:41:46,894 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:41:46,921 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style4.css
2024-05-22 12:41:46,940 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 12:41:50,406 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/confirm/InR1ZG8uaHVhbmdAZ21haWwuY29tIg.Zk12Og.FX8VICWm3mJCdpLagJEpMbCqiig
2024-05-22 12:41:51,451 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:41:51,529 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:41:59,739 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:41:59,761 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:41:59,778 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/favicon.ico
2024-05-22 12:42:02,183 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/
2024-05-22 12:42:02,230 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/HelloCITHUB
2024-05-22 12:42:05,571 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 12:42:05,638 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 12:42:05,645 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 12:42:06,678 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/profilem
2024-05-22 12:42:09,567 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/logout
2024-05-22 12:42:10,928 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 12:42:11,003 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 12:42:11,021 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 12:42:13,108 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/login
2024-05-22 12:42:13,193 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:42:14,250 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:42:14,344 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:42:25,212 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:42:25,236 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:42:32,788 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:42:32,813 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style.css
2024-05-22 12:42:49,418 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:42:52,647 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/changepassword
2024-05-22 12:42:52,709 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/style4.css
2024-05-22 12:44:03,228 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/forget
2024-05-22 12:44:05,341 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/about
2024-05-22 12:44:11,173 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/about
2024-05-22 12:44:13,180 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/slide
2024-05-22 12:44:13,246 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/Cithub
2024-05-22 12:44:13,262 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/Cithub
2024-05-22 12:44:21,265 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/Cithub
2024-05-22 12:44:21,270 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/video/Cithub
2024-05-22 12:44:36,325 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/index
2024-05-22 12:44:36,385 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/snow.js
2024-05-22 12:44:36,397 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:5000/static/night.js
2024-05-22 13:54:26,395 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/
2024-05-22 13:54:26,556 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/video/HelloCITHUB
2024-05-22 13:54:26,805 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/favicon.ico
2024-05-22 13:54:30,762 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/count
2024-05-22 13:54:30,885 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/static/favicon.ico
2024-05-22 13:54:33,202 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/countdown
2024-05-22 13:57:44,207 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/countdown
2024-05-22 13:57:47,638 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/countdown
2024-05-22 13:59:53,287 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/countdown
2024-05-22 14:13:26,401 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/
2024-05-22 14:13:26,475 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/video/HelloCITHUB
2024-05-22 14:13:31,062 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/index
2024-05-22 14:13:31,129 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/static/snow.js
2024-05-22 14:13:31,140 - async_logger - INFO - IP: 127.0.0.1, URL: http://127.0.0.1:9999/static/night.js
2024-05-22 18:15:03,737 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-22 18:15:03,777 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-22 18:15:03,937 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/favicon.ico
2024-05-22 18:15:08,405 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:15:08,447 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:15:08,450 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:15:08,605 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 18:15:11,423 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 18:15:14,380 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/logout
2024-05-22 18:15:15,225 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:15:15,243 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:15:15,246 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:17:08,106 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:17:08,120 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:17:08,121 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:17:08,132 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 18:17:10,864 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:17:10,886 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-22 18:17:17,778 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:17:17,786 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=6
2024-05-22 18:17:19,271 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=6
2024-05-22 18:17:19,278 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/6
2024-05-22 18:17:19,409 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/images/dinosaur.jpg
2024-05-22 18:19:24,164 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/6
2024-05-22 18:19:24,186 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/images/dinosaur.jpg
2024-05-22 18:19:24,970 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 18:19:28,229 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=
2024-05-22 18:19:28,234 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:19:28,255 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:19:28,256 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:19:32,363 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=
2024-05-22 18:19:32,368 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:19:32,384 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:19:32,387 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:19:33,815 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 18:19:33,834 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/images/dinosaur.jpg
2024-05-22 18:19:37,416 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=
2024-05-22 18:19:37,421 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:19:37,437 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:19:37,438 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:19:44,909 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/logout
2024-05-22 18:19:45,878 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 18:19:45,893 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 18:19:45,894 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 18:19:47,086 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:19:47,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-22 18:19:48,921 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:19:48,934 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-22 18:19:50,177 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:19:52,905 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/termOfUse
2024-05-22 18:19:54,317 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 18:19:54,347 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style3.css
2024-05-22 18:20:02,860 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 18:20:02,904 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-22 18:20:11,432 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/regSuc
2024-05-22 18:20:12,424 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:20:12,439 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-22 18:20:15,347 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 18:20:15,353 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:20:51,244 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:23:25,593 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:23:25,622 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 18:23:32,514 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:23:32,531 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 18:24:39,243 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:24:41,937 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:24:41,952 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 18:27:42,287 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:28:10,465 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 18:28:10,481 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 18:28:35,897 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:09,670 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:12,091 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:12,107 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 19:15:25,646 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:25,662 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 19:15:31,360 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 19:15:36,670 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 19:15:37,390 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 19:15:37,406 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 19:15:37,407 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 19:15:38,888 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 19:15:42,623 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:44,056 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 19:15:44,062 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 19:15:46,312 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 19:16:14,328 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 19:16:14,864 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 19:16:14,875 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 19:16:14,877 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 19:16:15,958 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 19:16:21,162 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 19:16:21,177 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 19:16:21,179 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 19:16:23,113 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 19:16:24,657 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/2
2024-05-22 19:27:07,468 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/countdown
2024-05-22 20:55:32,777 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-22 20:55:32,806 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-22 20:55:37,466 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 20:55:37,487 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 20:55:37,489 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 20:55:40,284 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 20:55:43,314 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 20:55:49,917 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 20:55:49,930 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 20:56:47,391 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-22 20:56:47,413 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-22 20:56:51,412 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 20:56:51,434 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 20:56:51,435 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 20:56:53,147 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 20:56:55,329 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 20:56:59,477 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 20:56:59,484 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 20:59:54,969 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:00:01,462 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:00:01,482 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 21:00:01,631 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/uploads/2024-05-21_212218.png
2024-05-22 21:03:05,569 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:03:05,570 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:03:05,600 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/uploads/2024-05-21_212218.png
2024-05-22 21:03:05,611 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:03:08,977 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:03:08,994 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 21:03:09,109 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/uploads/2024-05-21_212218.png
2024-05-22 21:03:21,145 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:03:25,420 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:03:25,497 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 21:03:25,512 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/uploads/2024-05-21_212218.png
2024-05-22 21:04:24,972 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:04:32,992 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:33,003 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:37,676 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:37,683 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,092 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,100 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,275 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,282 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,585 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,592 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,746 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,752 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,907 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:41,913 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:42,074 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:04:42,082 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:04,234 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:04,254 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:05:05,348 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:05,354 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:08,859 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:08,868 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,022 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,027 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,195 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,201 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,356 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,362 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,517 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,523 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,673 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,679 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,822 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:09,828 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:28,090 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:05:28,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 21:05:28,252 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/uploads/2024-05-21_212218.png
2024-05-22 21:05:31,798 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:05:31,817 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:05:31,819 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:10:02,680 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:10:02,704 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:10:02,708 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:10:02,846 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:10:04,657 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:10:29,631 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:10:31,047 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:10:31,059 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:10:31,060 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:10:32,273 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:10:33,376 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:10:56,616 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:10:56,631 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:13:23,935 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:14:15,302 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:14:16,478 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:14:17,959 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/3
2024-05-22 21:14:19,849 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/
2024-05-22 21:14:19,936 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:14:22,587 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-22 21:14:22,605 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-22 21:14:27,123 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:14:27,146 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:14:27,149 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:14:27,894 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:14:38,168 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:16:40,174 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:16:47,401 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:16:48,117 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:16:48,133 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:16:48,135 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:16:49,146 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:16:50,457 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:16:50,474 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:16:50,475 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:16:51,256 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:16:53,174 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:16:53,882 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:16:53,893 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:16:53,896 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:16:54,694 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:16:57,835 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:16:57,851 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:16:57,852 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:17:36,746 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:17:36,763 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:17:36,765 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:17:36,884 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:17:38,854 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:17:42,702 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:17:43,183 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:17:43,198 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:17:43,201 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:17:44,686 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:17:47,211 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:17:47,226 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:17:47,229 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:17:51,634 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/logout
2024-05-22 21:17:52,701 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:17:52,717 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:17:52,719 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:18:30,357 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/termOfUse
2024-05-22 21:18:31,796 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:18:31,816 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style3.css
2024-05-22 21:18:39,568 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/law
2024-05-22 21:18:41,636 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:18:50,941 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:18:50,952 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style3.css
2024-05-22 21:18:59,477 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:22:23,934 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:22:23,951 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style3.css
2024-05-22 21:22:32,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-22 21:22:32,136 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-22 21:22:32,141 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-22 21:22:32,188 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-22 21:22:32,192 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-22 21:22:40,651 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/regSuc
2024-05-22 21:22:41,656 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 21:22:41,675 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-22 21:22:44,869 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-22 21:22:44,874 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:23:05,753 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile
2024-05-22 21:23:05,815 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profile/1
2024-05-22 21:23:05,920 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/uploads/rogo.png
2024-05-22 21:23:09,843 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:23:13,539 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:23:14,166 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:23:14,183 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/snow.js
2024-05-22 21:23:14,184 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/night.js
2024-05-22 21:23:15,017 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:23:16,066 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:17,881 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:17,895 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:18,885 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:18,897 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:19,717 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:19,731 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:20,372 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:20,385 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:21,057 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:21,068 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:21,618 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:21,632 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:22,141 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:22,153 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:22,634 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:22,649 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:23,172 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:23,184 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:23,732 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:23,744 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:24,432 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:24,446 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:24,973 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/like/1
2024-05-22 21:23:24,986 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:29,836 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:30,199 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:23:31,134 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:23:31,138 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:32,472 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:23:32,477 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:33,199 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:23:33,202 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:33,779 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:23:33,783 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:23:34,289 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:23:34,292 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:25:53,929 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/share/1
2024-05-22 21:25:53,933 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:27:25,443 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:27:26,108 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:29:53,306 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:29:54,020 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:32:29,562 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:32:29,594 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/share.js
2024-05-22 21:32:30,017 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:33:05,060 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:33:05,099 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/share.js
2024-05-22 21:33:05,565 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:36:31,921 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:36:32,079 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/share.js
2024-05-22 21:36:32,540 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-22 21:36:40,786 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-22 21:36:40,803 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-22 21:36:45,321 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:36:46,609 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/about
2024-05-22 21:36:47,721 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/slide
2024-05-22 21:36:47,753 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:36:47,766 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:36:47,812 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/favicon.ico
2024-05-22 21:36:49,581 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:36:49,583 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:37:24,216 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:39:18,235 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/about
2024-05-22 21:39:18,961 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/slide
2024-05-22 21:39:18,990 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:39:18,999 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:39:19,051 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/favicon.ico
2024-05-22 21:39:20,808 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:39:20,813 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/CITHUBIntro
2024-05-22 21:39:55,453 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:39:58,718 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/slide
2024-05-22 21:40:01,595 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/favicon.ico
2024-05-22 21:40:35,182 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-22 21:40:37,565 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:40:39,028 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:40:39,046 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/share.js
2024-05-22 21:40:58,078 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-22 21:40:58,104 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/uploads/rogo.png
2024-05-22 21:41:00,813 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:41:02,933 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-22 21:41:35,597 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/upload
2024-05-22 21:41:36,746 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-22 21:41:37,689 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/1
2024-05-22 21:41:37,707 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/view/share.js
2024-05-22 21:42:23,167 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/about
2024-05-23 17:04:53,646 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-23 17:04:53,669 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-23 17:05:04,546 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:05:05,835 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/files
2024-05-23 17:05:07,385 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-23 17:05:07,410 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/None
2024-05-23 17:05:40,662 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=
2024-05-23 17:05:40,668 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:05:42,009 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/logout
2024-05-23 17:05:43,056 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:05:43,995 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:05:44,009 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:05:46,427 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:05:46,441 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:05:46,896 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:05:49,776 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/termOfUse
2024-05-23 17:05:51,448 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-23 17:05:51,476 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style3.css
2024-05-23 17:06:05,022 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-23 17:06:05,070 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/WelcomeNewUser
2024-05-23 17:06:22,641 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/regSuc
2024-05-23 17:06:23,920 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:06:23,934 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:06:25,642 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/forget
2024-05-23 17:06:25,669 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:06:28,778 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/forget
2024-05-23 17:06:30,078 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/forget
2024-05-23 17:06:32,496 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/changepassword
2024-05-23 17:06:32,526 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style4.css
2024-05-23 17:07:47,159 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/confirm/InR1ZG8uaHVhbmdAZ21haWwuY29tIg.Zk8HFA.ttSe0NPGXdMDIOeQmS7zJNsjfnY
2024-05-23 17:09:20,798 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/changepassword
2024-05-23 17:09:20,825 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:09:20,836 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-23 17:09:33,636 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/changepassword
2024-05-23 17:09:33,643 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:09:33,666 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:09:36,867 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:09:36,872 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-23 17:23:50,540 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/
2024-05-23 17:23:50,570 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/video/HelloCITHUB
2024-05-23 17:23:55,691 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:23:55,727 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/None
2024-05-23 17:23:58,295 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/profilem
2024-05-23 17:23:58,316 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/None
2024-05-23 17:24:00,926 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/edit-profile?user_id=1
2024-05-23 17:24:04,458 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/logout
2024-05-23 17:24:05,737 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:24:31,580 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:24:32,411 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/changepassword
2024-05-23 17:24:33,113 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/forget
2024-05-23 17:24:34,670 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/register
2024-05-23 17:24:36,500 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/index
2024-05-23 17:24:36,534 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/favicon.ico
2024-05-23 17:24:39,183 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login
2024-05-23 17:24:39,202 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/static/style.css
2024-05-23 17:24:41,824 - async_logger - INFO - IP: 192.168.50.42, URL: http://192.168.50.42:9999/login