[ create a new paste ] login | about

Link: http://codepad.org/fjiLtIWw    [ raw code | fork ]

Plain Text, pasted on Nov 15:
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
Date: 11/15/12
Time: 05:38:15
--------------------------------------------------------------
Build 229
Steam initialized
Render Device: ATI Radeon HD 5800 Series (8.17.10.1140)
Sound Device: Speakers (IDT High Definition Audio CODEC) stereo
Record Device: Microphone (Logitech Mic (Webcam 600))
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.054972s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
Loading config://ConsoleBindings.json
Loading config://FavoriteServers.json
                     } TOC05 0.575801s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000002s M4::ClientWorld::Startup sections 
                 } TOC04 0.631218s M4::ClientWorld::Startup 
             } TOC03 0.631312s M4::ClientWorld::Initialize sections 
         } TOC02 0.631394s M4::ClientWorld::Initialize 
Main Menu Initialized at Version: 229
Steam Id: 36875920
     } TOC01 3.546354s M4::ClientGame::StartWorld sections 
 } TOC00 3.546520s M4::ClientGame::StartWorld 
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000013s M4::World::UnloadMap sections 
 } TOC00 0.000099s M4::World::UnloadMap 
Connecting to server 50.97.95.133:27515
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.036123s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.036819s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000002s M4::ClientWorld::Startup sections 
                 } TOC04 0.073317s M4::ClientWorld::Startup 
             } TOC03 0.073417s M4::ClientWorld::Initialize sections 
         } TOC02 0.073525s M4::ClientWorld::Initialize 
     } TOC01 0.841756s M4::ClientGame::StartWorld sections 
 } TOC00 0.841901s M4::ClientGame::StartWorld 
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000006s M4::World::UnloadMap sections 
 } TOC00 0.000177s M4::World::UnloadMap 
 { TIC00 M4::ClientGame::StartWorld
     { TIC01 M4::ClientGame::StartWorld sections
         { TIC02 M4::ClientWorld::Initialize
             { TIC03 M4::ClientWorld::Initialize sections
                 { TIC04 M4::ClientWorld::Startup
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.035611s M4::ClientWorld::Startup sections Before LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.036688s M4::ClientWorld::Startup sections LoadScript
                     { TIC05 M4::ClientWorld::Startup sections
                     } TOC05 0.000001s M4::ClientWorld::Startup sections 
                 } TOC04 0.072685s M4::ClientWorld::Startup 
             } TOC03 0.072779s M4::ClientWorld::Initialize sections 
         } TOC02 0.072861s M4::ClientWorld::Initialize 
     } TOC01 0.806166s M4::ClientGame::StartWorld sections 
 } TOC00 0.806306s M4::ClientGame::StartWorld 
 { TIC00 M4::ClientWorld::Initialize
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.001261s M4::ClientWorld::Initialize sections Loading
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000002s M4::ClientWorld::Initialize sections Mod stuff
     { TIC01 M4::ClientWorld::Initialize sections
         { TIC02 M4::ClientWorld::Startup
             { TIC03 M4::ClientWorld::Startup sections
             } TOC03 0.041510s M4::ClientWorld::Startup sections Before LoadScript
             { TIC03 M4::ClientWorld::Startup sections
Loading config://ConsoleBindings.json
Loading config://FavoriteServers.json
             } TOC03 2.707016s M4::ClientWorld::Startup sections LoadScript
             { TIC03 M4::ClientWorld::Startup sections
             } TOC03 0.000001s M4::ClientWorld::Startup sections 
         } TOC02 2.748871s M4::ClientWorld::Startup 
     } TOC01 2.748952s M4::ClientWorld::Initialize sections Startup
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000889s M4::ClientWorld::Initialize sections InitializingGame
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.005058s M4::ClientWorld::Initialize sections LoadingAssets
     { TIC01 M4::ClientWorld::Initialize sections
         { TIC02 M4::World::LoadMap
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::UnloadMap
                     { TIC05 M4::World::UnloadMap sections
                     } TOC05 0.000005s M4::World::UnloadMap sections 
                 } TOC04 0.000087s M4::World::UnloadMap 
             } TOC03 0.000166s M4::World::LoadMap sections After Unload map
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::OnPreLoad
                     { TIC05 M4::World::OnPreLoad sections
                     } TOC05 0.000050s M4::World::OnPreLoad sections 
                 } TOC04 0.000136s M4::World::OnPreLoad 
Loading 'maps/ns2_tram.level'
             } TOC03 0.000252s M4::World::LoadMap sections After OnPreLoad
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::GameLevel::Load
                     { TIC05 M4::GameLevel::Load sections
                     } TOC05 1.385599s M4::GameLevel::Load sections 
                 } TOC04 1.385785s M4::GameLevel::Load 
             } TOC03 1.385870s M4::World::LoadMap sections after level load
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::World::CreateMapEntities
                     { TIC05 M4::World::CreateMapEntities sections
                     } TOC05 2.844442s M4::World::CreateMapEntities sections 
                 } TOC04 2.844588s M4::World::CreateMapEntities 
             } TOC03 2.844729s M4::World::LoadMap sections after CreateMapEntities
             { TIC03 M4::World::LoadMap sections
Network logging set to level 3
             } TOC03 0.718309s M4::World::LoadMap sections after CreatePhysics
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.014038s M4::World::LoadMap sections after CreatePathingGeometry
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.000019s M4::World::LoadMap sections after Script_RegisterHeapObject
             { TIC03 M4::World::LoadMap sections
                 { TIC04 M4::ClientWorld::OnPostLoad
                     { TIC05 M4::ClientWorld::OnPostLoad sections
50.97.95.133 Client: Processing acknowledgement 13
50.97.95.133 Client: Processing reliable 56
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 56
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 14
50.97.95.133 Client: Processing acknowledgement 14
50.97.95.133 Client: Ping updated 73 ms
50.97.95.133 Client: Processing acknowledgement 14
50.97.95.133 Client: Processing reliable 57
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 57
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 15
50.97.95.133 Client: Processing acknowledgement 15
50.97.95.133 Client: Ping updated 68 ms
50.97.95.133 Client: Processing acknowledgement 15
50.97.95.133 Client: Processing reliable 58
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 58
50.97.95.133 Client: System packet received (PacketType_Ping)
                     } TOC05 2.407207s M4::ClientWorld::OnPostLoad sections After CreateRenderObjectsFromLevel
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                     } TOC05 0.027767s M4::ClientWorld::OnPostLoad sections After LoadSoundGeometry
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                         { TIC06 M4::World::OnPostLoad
                             { TIC07 M4::World::OnPostLoad sections
Building pathing mesh for level maps/ns2_tram.level
                                 { TIC08 M4::PathingMesh::BuildMesh
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.030879s M4::PathingMesh::BuildMesh sections After build normals
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.004423s M4::PathingMesh::BuildMesh sections After rcCalcBounds
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000061s M4::PathingMesh::BuildMesh sections After InitMeshConfig
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000040s M4::PathingMesh::BuildMesh sections After nav mesh init
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000011s M4::PathingMesh::BuildMesh sections After set area costs
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                         { TIC10 M4::PathingMesh::BuildMesh:md5Timer
                                         } TOC10 0.009544s M4::PathingMesh::BuildMesh:md5Timer 
OK! Loaded tile cache grid from maps/ns2_tram.level-client.tile_cache_grid
                                         { TIC10 M4::PathingMesh::PreProcessTiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
                                             } TOC11 0.000156s M4::PathingMesh::PreProcessTiles sections After adding tiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 16
50.97.95.133 Client: Processing acknowledgement 16
50.97.95.133 Client: Ping updated 74 ms
50.97.95.133 Client: Processing acknowledgement 16
50.97.95.133 Client: Processing reliable 59
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 59
50.97.95.133 Client: System packet received (PacketType_Ping)
                                             } TOC11 1.081192s M4::PathingMesh::PreProcessTiles sections After build navmesh tiles
                                             { TIC11 M4::PathingMesh::PreProcessTiles sections
                                             } TOC11 0.000001s M4::PathingMesh::PreProcessTiles sections 
                                         } TOC10 1.081727s M4::PathingMesh::PreProcessTiles 
                                     } TOC09 1.099480s M4::PathingMesh::BuildMesh sections After preprocess tiles
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000021s M4::PathingMesh::BuildMesh sections End
                                     { TIC09 M4::PathingMesh::BuildMesh sections
                                     } TOC09 0.000011s M4::PathingMesh::BuildMesh sections 
                                 } TOC08 1.135802s M4::PathingMesh::BuildMesh 
Client  : 0.000000 : TIME ..1.000000s InitPathing
Client  : 0.000000 : TIME ..0.000000s CreateDSPs
Client  : 0.000000 : TIME ..0.000000s Scoreboard_Clear
Client  : 0.000000 : TIME ..0.000000s CheckRules
                             } TOC07 1.169957s M4::World::OnPostLoad sections 
                         } TOC06 1.170043s M4::World::OnPostLoad 
                     } TOC05 1.170129s M4::ClientWorld::OnPostLoad sections After World::OnPostLoad
                     { TIC05 M4::ClientWorld::OnPostLoad sections
                     } TOC05 0.000001s M4::ClientWorld::OnPostLoad sections 
                 } TOC04 3.605600s M4::ClientWorld::OnPostLoad 
Finished loading 'maps/ns2_tram.level'
             } TOC03 3.605720s M4::World::LoadMap sections after OnPostLoad
             { TIC03 M4::World::LoadMap sections
             } TOC03 0.000001s M4::World::LoadMap sections 
         } TOC02 8.570026s M4::World::LoadMap 
     } TOC01 8.570111s M4::ClientWorld::Initialize sections LoadingMap
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000001s M4::ClientWorld::Initialize sections Before PredictWorld init
     { TIC01 M4::ClientWorld::Initialize sections
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 17
50.97.95.133 Client: Processing acknowledgement 17
50.97.95.133 Client: Ping updated 69 ms
50.97.95.133 Client: Processing acknowledgement 17
50.97.95.133 Client: Processing reliable 60
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 60
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 18
50.97.95.133 Client: Processing acknowledgement 18
50.97.95.133 Client: Ping updated 65 ms
50.97.95.133 Client: Processing acknowledgement 18
50.97.95.133 Client: Processing reliable 61
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending ack 61
         { TIC02 M4::World::CreateMapEntities
             { TIC03 M4::World::CreateMapEntities sections
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 19
50.97.95.133 Client: Processing acknowledgement 19
50.97.95.133 Client: Ping updated 61 ms
             } TOC03 0.213347s M4::World::CreateMapEntities sections 
         } TOC02 0.213501s M4::World::CreateMapEntities 
     } TOC01 2.074426s M4::ClientWorld::Initialize sections PredictWorld init
     { TIC01 M4::ClientWorld::Initialize sections
     } TOC01 0.000004s M4::ClientWorld::Initialize sections 
 } TOC00 13.401699s M4::ClientWorld::Initialize 
50.97.95.133 Client: Processing acknowledgement 19
50.97.95.133 Client: Processing reliable 62
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 62
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 20
50.97.95.133 Client: Processing acknowledgement 20
50.97.95.133 Client: Ping updated 59 ms
50.97.95.133 Client: Processing acknowledgement 20
50.97.95.133 Client: Processing reliable 63
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending ack 63
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 21
50.97.95.133 Client: Processing acknowledgement 21
50.97.95.133 Client: Ping updated 57 ms
50.97.95.133 Client: Processing acknowledgement 21
50.97.95.133 Client: Processing reliable 64
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 64
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 22
50.97.95.133 Client: Processing acknowledgement 22
50.97.95.133 Client: Ping updated 55 ms
50.97.95.133 Client: Processing acknowledgement 22
50.97.95.133 Client: Processing reliable 65
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 65
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 23
50.97.95.133 Client: Processing acknowledgement 23
50.97.95.133 Client: Ping updated 53 ms
50.97.95.133 Client: Processing acknowledgement 23
50.97.95.133 Client: Processing reliable 66
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 66
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 24
50.97.95.133 Client: Processing acknowledgement 24
50.97.95.133 Client: Ping updated 52 ms
50.97.95.133 Client: Processing acknowledgement 24
50.97.95.133 Client: Processing reliable 67
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 67
50.97.95.133 Client: System packet received (PacketType_Ping)
 { TIC00 M4::World::UnloadMap
     { TIC01 M4::World::UnloadMap sections
     } TOC01 0.000006s M4::World::UnloadMap sections 
 } TOC00 0.000090s M4::World::UnloadMap 
50.97.95.133 Client: Sending reliable 25
50.97.95.133 Client: Processing acknowledgement 25
50.97.95.133 Client: Ping updated 65 ms
50.97.95.133 Client: Processing reliable 68
50.97.95.133 Client: Started receiving a new packet of 8 bytes
50.97.95.133 Client: Processing unreliable 0
50.97.95.133 Client: Started receiving a new packet of 5389 bytes
50.97.95.133 Client: Sending reliable 26
50.97.95.133 Client: Processing unreliable 1
50.97.95.133 Client: Processing acknowledgement 26
50.97.95.133 Client: Ping updated 68 ms
50.97.95.133 Client: Processing unreliable 2
50.97.95.133 Client: Processing unreliable 3
50.97.95.133 Client: Sending unreliable 0
50.97.95.133 Client: Processing unreliable 4
50.97.95.133 Client: Started receiving a new packet of 5389 bytes
50.97.95.133 Client: Processing unreliable 5
50.97.95.133 Client: Processing unreliable 6
50.97.95.133 Client: Processing unreliable 7
50.97.95.133 Client: Started receiving a new packet of 82 bytes
50.97.95.133 Client: Sending reliable 27
50.97.95.133 Client: Sending unreliable 1
50.97.95.133 Client: Processing acknowledgement 26
50.97.95.133 Client: Processing reliable 69
50.97.95.133 Client: Started receiving a new packet of 39 bytes
50.97.95.133 Client: Started receiving a new packet of 39 bytes
50.97.95.133 Client: Processing acknowledgement 27
50.97.95.133 Client: Ping updated 76 ms
50.97.95.133 Client: Processing reliable 70
50.97.95.133 Client: Started receiving a new packet of 263 bytes
50.97.95.133 Client: Sending ack 70
50.97.95.133 Client: Sending unreliable 2
50.97.95.133 Client: Processing unreliable 8
50.97.95.133 Client: Started receiving a new packet of 83 bytes
50.97.95.133 Client: Processing unreliable 9
50.97.95.133 Client: Started receiving a new packet of 72 bytes
50.97.95.133 Client: Sending unreliable 3
50.97.95.133 Client: Sending unreliable 4
50.97.95.133 Client: Processing unreliable 10
50.97.95.133 Client: Started receiving a new packet of 72 bytes
50.97.95.133 Client: Sending unreliable 5
50.97.95.133 Client: Processing unreliable 11
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 6
50.97.95.133 Client: Processing unreliable 12
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 7
50.97.95.133 Client: Processing unreliable 13
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 8
50.97.95.133 Client: Processing unreliable 14
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 9
50.97.95.133 Client: Processing unreliable 15
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 10
50.97.95.133 Client: Processing unreliable 16
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 11
50.97.95.133 Client: Sending unreliable 12
50.97.95.133 Client: Processing unreliable 17
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 13
50.97.95.133 Client: Processing unreliable 18
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 14
50.97.95.133 Client: Processing unreliable 19
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 15
50.97.95.133 Client: Processing unreliable 20
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 16
50.97.95.133 Client: Processing unreliable 21
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 17
50.97.95.133 Client: Processing unreliable 22
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 18
50.97.95.133 Client: Processing unreliable 23
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 19
50.97.95.133 Client: Processing unreliable 24
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 20
50.97.95.133 Client: Sending unreliable 21
50.97.95.133 Client: Processing unreliable 25
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 28
50.97.95.133 Client: Sending unreliable 22
50.97.95.133 Client: Processing unreliable 26
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 27
50.97.95.133 Client: Processing reliable 71
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 71
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Processing acknowledgement 28
50.97.95.133 Client: Ping updated 72 ms
50.97.95.133 Client: Sending unreliable 23
50.97.95.133 Client: Processing acknowledgement 28
50.97.95.133 Client: Processing reliable 72
50.97.95.133 Client: Started receiving a new packet of 39 bytes
50.97.95.133 Client: Processing unreliable 27
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending ack 72
50.97.95.133 Client: Sending unreliable 24
50.97.95.133 Client: Processing unreliable 28
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 25
50.97.95.133 Client: Processing unreliable 29
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 26
50.97.95.133 Client: Processing unreliable 30
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 27
50.97.95.133 Client: Processing unreliable 31
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 28
50.97.95.133 Client: Processing unreliable 32
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 29
50.97.95.133 Client: Processing unreliable 33
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 30
50.97.95.133 Client: Processing unreliable 34
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 31
50.97.95.133 Client: Sending unreliable 32
50.97.95.133 Client: Processing unreliable 35
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 33
50.97.95.133 Client: Processing unreliable 36
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 34
50.97.95.133 Client: Processing unreliable 37
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 35
50.97.95.133 Client: Processing unreliable 38
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 36
50.97.95.133 Client: Processing unreliable 39
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 37
50.97.95.133 Client: Processing unreliable 40
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 38
50.97.95.133 Client: Processing unreliable 41
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 39
50.97.95.133 Client: Processing unreliable 42
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 40
50.97.95.133 Client: Processing unreliable 43
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 41
50.97.95.133 Client: Processing unreliable 44
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 42
50.97.95.133 Client: Sending unreliable 43
50.97.95.133 Client: Processing unreliable 45
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 29
50.97.95.133 Client: Sending unreliable 44
50.97.95.133 Client: Processing unreliable 46
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 29
50.97.95.133 Client: Ping updated 67 ms
50.97.95.133 Client: Sending unreliable 45
50.97.95.133 Client: Processing acknowledgement 29
50.97.95.133 Client: Processing reliable 73
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Processing unreliable 47
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending ack 73
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 46
50.97.95.133 Client: Processing unreliable 48
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 47
50.97.95.133 Client: Processing unreliable 49
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 48
50.97.95.133 Client: Processing unreliable 50
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 49
50.97.95.133 Client: Processing unreliable 51
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Started receiving a new packet of 13 bytes
50.97.95.133 Client: Sending unreliable 50
50.97.95.133 Client: Processing unreliable 52
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 51
50.97.95.133 Client: Processing unreliable 53
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 52
50.97.95.133 Client: Processing unreliable 54
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 53
50.97.95.133 Client: Sending unreliable 54
50.97.95.133 Client: Processing unreliable 55
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 55
50.97.95.133 Client: Processing unreliable 56
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 56
50.97.95.133 Client: Processing unreliable 57
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 57
50.97.95.133 Client: Processing unreliable 58
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 58
50.97.95.133 Client: Processing unreliable 59
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 59
50.97.95.133 Client: Processing unreliable 60
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 60
50.97.95.133 Client: Processing unreliable 61
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 61
50.97.95.133 Client: Processing unreliable 62
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 62
50.97.95.133 Client: Processing unreliable 63
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 63
50.97.95.133 Client: Processing unreliable 64
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 64
50.97.95.133 Client: Sending unreliable 65
50.97.95.133 Client: Processing unreliable 65
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 30
50.97.95.133 Client: Sending unreliable 66
50.97.95.133 Client: Processing unreliable 66
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 67
50.97.95.133 Client: Processing acknowledgement 30
50.97.95.133 Client: Ping updated 65 ms
50.97.95.133 Client: Processing unreliable 67
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 30
50.97.95.133 Client: Processing reliable 74
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 74
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 68
50.97.95.133 Client: Processing unreliable 68
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 69
50.97.95.133 Client: Processing unreliable 69
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 70
50.97.95.133 Client: Processing unreliable 70
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 71
50.97.95.133 Client: Processing unreliable 71
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 72
50.97.95.133 Client: Processing unreliable 72
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 73
50.97.95.133 Client: Processing unreliable 73
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 74
50.97.95.133 Client: Sending unreliable 75
50.97.95.133 Client: Processing unreliable 74
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 76
50.97.95.133 Client: Processing unreliable 75
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 77
50.97.95.133 Client: Processing unreliable 76
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 78
50.97.95.133 Client: Processing unreliable 77
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 79
50.97.95.133 Client: Processing unreliable 78
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 80
50.97.95.133 Client: Processing unreliable 79
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 81
50.97.95.133 Client: Processing unreliable 80
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 82
50.97.95.133 Client: Processing unreliable 81
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 83
50.97.95.133 Client: Processing unreliable 82
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 84
50.97.95.133 Client: Processing unreliable 83
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 85
50.97.95.133 Client: Processing unreliable 84
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 86
50.97.95.133 Client: Sending unreliable 87
50.97.95.133 Client: Processing unreliable 85
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 88
50.97.95.133 Client: Processing unreliable 86
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 31
50.97.95.133 Client: Sending unreliable 89
50.97.95.133 Client: Processing acknowledgement 31
50.97.95.133 Client: Ping updated 64 ms
50.97.95.133 Client: Processing reliable 75
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Processing unreliable 87
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending ack 75
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 90
50.97.95.133 Client: Processing unreliable 88
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing unreliable 89
50.97.95.133 Client: Started receiving a new packet of 13 bytes
50.97.95.133 Client: Sending unreliable 91
50.97.95.133 Client: Processing unreliable 90
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 92
50.97.95.133 Client: Processing unreliable 91
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 93
50.97.95.133 Client: Processing unreliable 92
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 94
50.97.95.133 Client: Processing unreliable 93
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 95
50.97.95.133 Client: Sending unreliable 96
50.97.95.133 Client: Processing unreliable 94
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing unreliable 95
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 97
50.97.95.133 Client: Sending unreliable 98
50.97.95.133 Client: Processing unreliable 96
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 99
50.97.95.133 Client: Processing unreliable 97
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 100
50.97.95.133 Client: Processing unreliable 98
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 101
50.97.95.133 Client: Processing unreliable 99
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 102
50.97.95.133 Client: Processing unreliable 100
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 103
50.97.95.133 Client: Processing unreliable 101
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 104
50.97.95.133 Client: Processing unreliable 102
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 105
50.97.95.133 Client: Processing unreliable 103
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 106
50.97.95.133 Client: Processing unreliable 104
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 107
50.97.95.133 Client: Sending unreliable 108
50.97.95.133 Client: Processing unreliable 105
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 109
50.97.95.133 Client: Processing unreliable 106
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 110
50.97.95.133 Client: Processing unreliable 107
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 32
50.97.95.133 Client: Sending unreliable 111
50.97.95.133 Client: Processing acknowledgement 31
50.97.95.133 Client: Processing reliable 76
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Processing unreliable 108
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending ack 76
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Processing acknowledgement 32
50.97.95.133 Client: Ping updated 64 ms
50.97.95.133 Client: Sending unreliable 112
50.97.95.133 Client: Processing unreliable 109
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 113
50.97.95.133 Client: Processing unreliable 110
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 114
50.97.95.133 Client: Processing unreliable 111
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 115
50.97.95.133 Client: Processing unreliable 112
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 116
50.97.95.133 Client: Processing unreliable 113
50.97.95.133 Client: Started receiving a new packet of 13 bytes
50.97.95.133 Client: Processing unreliable 114
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 117
50.97.95.133 Client: Processing unreliable 115
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 118
50.97.95.133 Client: Sending unreliable 119
50.97.95.133 Client: Processing unreliable 116
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 120
50.97.95.133 Client: Processing unreliable 117
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 121
50.97.95.133 Client: Processing unreliable 118
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 122
50.97.95.133 Client: Processing unreliable 119
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 123
50.97.95.133 Client: Processing unreliable 120
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 124
50.97.95.133 Client: Processing unreliable 121
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 125
50.97.95.133 Client: Processing unreliable 122
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 126
50.97.95.133 Client: Processing unreliable 123
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 127
50.97.95.133 Client: Processing unreliable 124
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 128
50.97.95.133 Client: Sending unreliable 129
50.97.95.133 Client: Processing unreliable 125
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 130
50.97.95.133 Client: Processing unreliable 126
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 131
50.97.95.133 Client: Processing unreliable 127
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 132
50.97.95.133 Client: Processing unreliable 128
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 33
50.97.95.133 Client: Sending unreliable 133
50.97.95.133 Client: Processing unreliable 129
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 32
50.97.95.133 Client: Processing reliable 77
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 77
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 134
50.97.95.133 Client: Processing acknowledgement 33
50.97.95.133 Client: Ping updated 63 ms
50.97.95.133 Client: Processing unreliable 130
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 135
50.97.95.133 Client: Processing unreliable 131
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 136
50.97.95.133 Client: Processing unreliable 132
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 137
50.97.95.133 Client: Processing unreliable 133
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 138
50.97.95.133 Client: Processing unreliable 134
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 139
50.97.95.133 Client: Sending unreliable 140
50.97.95.133 Client: Processing unreliable 135
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 141
50.97.95.133 Client: Processing unreliable 136
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 142
50.97.95.133 Client: Processing unreliable 137
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 143
50.97.95.133 Client: Processing unreliable 138
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 144
50.97.95.133 Client: Processing unreliable 139
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 145
50.97.95.133 Client: Processing unreliable 140
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 146
50.97.95.133 Client: Processing unreliable 141
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 147
50.97.95.133 Client: Processing unreliable 142
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 148
50.97.95.133 Client: Processing unreliable 143
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 149
50.97.95.133 Client: Processing unreliable 144
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 150
50.97.95.133 Client: Sending unreliable 151
50.97.95.133 Client: Processing unreliable 145
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 152
50.97.95.133 Client: Processing unreliable 146
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 153
50.97.95.133 Client: Processing unreliable 147
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 154
50.97.95.133 Client: Processing unreliable 148
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 155
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 34
50.97.95.133 Client: Processing acknowledgement 33
50.97.95.133 Client: Processing reliable 78
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 78
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Processing unreliable 149
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 156
50.97.95.133 Client: Processing acknowledgement 34
50.97.95.133 Client: Ping updated 60 ms
50.97.95.133 Client: Processing unreliable 150
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 157
50.97.95.133 Client: Processing unreliable 151
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 158
50.97.95.133 Client: Processing unreliable 152
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 159
50.97.95.133 Client: Processing unreliable 153
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 160
50.97.95.133 Client: Processing unreliable 154
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 161
50.97.95.133 Client: Sending unreliable 162
50.97.95.133 Client: Processing unreliable 155
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 163
50.97.95.133 Client: Processing unreliable 156
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 164
50.97.95.133 Client: Processing unreliable 157
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 165
50.97.95.133 Client: Processing unreliable 158
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 166
50.97.95.133 Client: Processing unreliable 159
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 167
50.97.95.133 Client: Processing unreliable 160
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 168
50.97.95.133 Client: Processing unreliable 161
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 169
50.97.95.133 Client: Processing unreliable 162
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 170
50.97.95.133 Client: Processing unreliable 163
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 171
50.97.95.133 Client: Processing unreliable 164
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 172
50.97.95.133 Client: Processing unreliable 165
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 173
50.97.95.133 Client: Sending unreliable 174
50.97.95.133 Client: Processing unreliable 166
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 175
50.97.95.133 Client: Processing unreliable 167
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 176
50.97.95.133 Client: Processing unreliable 168
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 177
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 35
50.97.95.133 Client: Processing acknowledgement 34
50.97.95.133 Client: Processing reliable 79
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Processing unreliable 169
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending ack 79
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 178
50.97.95.133 Client: Processing acknowledgement 35
50.97.95.133 Client: Ping updated 60 ms
50.97.95.133 Client: Processing unreliable 170
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 179
50.97.95.133 Client: Processing unreliable 171
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 180
50.97.95.133 Client: Processing unreliable 172
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 181
50.97.95.133 Client: Processing unreliable 173
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 182
50.97.95.133 Client: Processing unreliable 174
50.97.95.133 Client: Started receiving a new packet of 13 bytes
50.97.95.133 Client: Processing unreliable 175
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 183
50.97.95.133 Client: Processing unreliable 176
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 184
50.97.95.133 Client: Sending unreliable 185
50.97.95.133 Client: Processing unreliable 177
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 186
50.97.95.133 Client: Processing unreliable 178
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 187
50.97.95.133 Client: Processing unreliable 179
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 188
50.97.95.133 Client: Processing unreliable 180
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 189
50.97.95.133 Client: Processing unreliable 181
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 190
50.97.95.133 Client: Processing unreliable 182
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 191
50.97.95.133 Client: Processing unreliable 183
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 192
50.97.95.133 Client: Processing unreliable 184
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 193
50.97.95.133 Client: Sending unreliable 194
50.97.95.133 Client: Processing unreliable 185
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 195
50.97.95.133 Client: Processing unreliable 186
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 196
50.97.95.133 Client: Processing unreliable 187
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 197
50.97.95.133 Client: Processing unreliable 188
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 198
50.97.95.133 Client: Processing unreliable 189
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 199
50.97.95.133 Client: Processing unreliable 190
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 35
50.97.95.133 Client: Processing reliable 80
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 36
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Sending unreliable 200
50.97.95.133 Client: Processing unreliable 191
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 36
50.97.95.133 Client: Ping updated 59 ms
50.97.95.133 Client: Sending unreliable 201
50.97.95.133 Client: Processing unreliable 192
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 202
50.97.95.133 Client: Processing unreliable 193
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 203
50.97.95.133 Client: Sending unreliable 204
50.97.95.133 Client: Processing unreliable 194
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing unreliable 195
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 205
50.97.95.133 Client: Sending unreliable 206
50.97.95.133 Client: Processing unreliable 196
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 207
50.97.95.133 Client: Processing unreliable 197
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 208
50.97.95.133 Client: Processing unreliable 198
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 209
50.97.95.133 Client: Processing unreliable 199
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 210
50.97.95.133 Client: Processing unreliable 200
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 211
50.97.95.133 Client: Processing unreliable 201
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 212
50.97.95.133 Client: Processing unreliable 202
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 213
50.97.95.133 Client: Processing unreliable 203
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 214
50.97.95.133 Client: Processing unreliable 204
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 215
50.97.95.133 Client: Sending unreliable 216
50.97.95.133 Client: Processing unreliable 205
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 217
50.97.95.133 Client: Processing unreliable 206
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 218
50.97.95.133 Client: Processing unreliable 207
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 219
50.97.95.133 Client: Processing unreliable 208
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 220
50.97.95.133 Client: Processing unreliable 209
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 221
50.97.95.133 Client: Processing unreliable 210
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 36
50.97.95.133 Client: Processing reliable 81
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 37
50.97.95.133 Client: Sending unreliable 222
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: Processing unreliable 211
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 223
50.97.95.133 Client: Processing acknowledgement 37
50.97.95.133 Client: Ping updated 60 ms
50.97.95.133 Client: Processing unreliable 212
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 224
50.97.95.133 Client: Processing unreliable 213
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 225
50.97.95.133 Client: Processing unreliable 214
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 226
50.97.95.133 Client: Processing unreliable 215
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 227
50.97.95.133 Client: Sending unreliable 228
50.97.95.133 Client: Processing unreliable 216
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 229
50.97.95.133 Client: Processing unreliable 217
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 230
50.97.95.133 Client: Processing unreliable 218
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 231
50.97.95.133 Client: Processing unreliable 219
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 232
50.97.95.133 Client: Processing unreliable 220
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 233
50.97.95.133 Client: Processing unreliable 221
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 234
50.97.95.133 Client: Processing unreliable 222
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 235
50.97.95.133 Client: Processing unreliable 223
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 236
50.97.95.133 Client: Processing unreliable 224
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 237
50.97.95.133 Client: Sending unreliable 238
50.97.95.133 Client: Processing unreliable 225
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 239
50.97.95.133 Client: Processing unreliable 226
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 240
50.97.95.133 Client: Processing unreliable 227
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 241
50.97.95.133 Client: Processing unreliable 228
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 242
50.97.95.133 Client: Processing unreliable 229
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 243
50.97.95.133 Client: Processing unreliable 230
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing acknowledgement 37
50.97.95.133 Client: Processing reliable 82
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 82
50.97.95.133 Client: Sending unreliable 244
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 38
50.97.95.133 Client: Processing unreliable 231
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 245
50.97.95.133 Client: Processing acknowledgement 38
50.97.95.133 Client: Ping updated 57 ms
50.97.95.133 Client: Processing unreliable 232
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 246
50.97.95.133 Client: Processing unreliable 233
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 247
50.97.95.133 Client: Sending unreliable 248
50.97.95.133 Client: Processing unreliable 234
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Processing unreliable 235
50.97.95.133 Client: Started receiving a new packet of 13 bytes
50.97.95.133 Client: Sending unreliable 249
50.97.95.133 Client: Processing unreliable 236
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 250
50.97.95.133 Client: Processing unreliable 237
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 251
50.97.95.133 Client: Processing unreliable 238
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 252
50.97.95.133 Client: Processing unreliable 239
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 253
50.97.95.133 Client: Processing unreliable 240
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 254
50.97.95.133 Client: Processing unreliable 241
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 255
50.97.95.133 Client: Processing unreliable 242
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 256
50.97.95.133 Client: Sending unreliable 257
50.97.95.133 Client: Processing unreliable 243
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 258
50.97.95.133 Client: Processing unreliable 244
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 259
50.97.95.133 Client: Processing unreliable 245
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 260
50.97.95.133 Client: Processing unreliable 246
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 261
50.97.95.133 Client: Processing unreliable 247
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 262
50.97.95.133 Client: Processing unreliable 248
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 263
50.97.95.133 Client: Processing unreliable 249
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 264
50.97.95.133 Client: Processing unreliable 250
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 265
50.97.95.133 Client: Processing unreliable 251
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 266
50.97.95.133 Client: Processing acknowledgement 38
50.97.95.133 Client: Processing reliable 83
50.97.95.133 Client: Started receiving a new packet of 1 bytes
50.97.95.133 Client: Sending ack 83
50.97.95.133 Client: System packet received (PacketType_Ping)
50.97.95.133 Client: System packet sent (PacketType_Ping)
50.97.95.133 Client: Sending reliable 39
50.97.95.133 Client: Processing unreliable 252
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 267
50.97.95.133 Client: Processing acknowledgement 39
50.97.95.133 Client: Ping updated 55 ms
50.97.95.133 Client: Processing unreliable 253
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 268
50.97.95.133 Client: Sending unreliable 269
50.97.95.133 Client: Processing unreliable 254
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 270
50.97.95.133 Client: Processing unreliable 255
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 271
50.97.95.133 Client: Processing unreliable 256
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 272
50.97.95.133 Client: Processing unreliable 257
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 273
50.97.95.133 Client: Processing unreliable 258
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 274
50.97.95.133 Client: Processing unreliable 259
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 275
50.97.95.133 Client: Processing unreliable 260
50.97.95.133 Client: Started receiving a new packet of 45 bytes
50.97.95.133 Client: Sending unreliable 276
50.97.9


Create a new paste based on this one


Comments: