Newer
Older
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
require.js:11 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/.
require @ require.js:11
:8383/favicon.ico Failed to load resource: net::ERR_EMPTY_RESPONSE
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
Failed to load resource: net::ERR_EMPTY_RESPONSE
(anonymous) @ VM3915:1
http://localhost:8383./network.js:419 [160780]: 0: got ACK from 99. RTT = 164.22222222222223
http://localhost:8383./network.js:419 [160841]: 9: got ACK from 90. RTT = 129.77777777777777
http://localhost:8383./network.js:419 [160851]: 0: got ACK from 99. RTT = 305.1111111111111
http://localhost:8383./network.js:419 [160881]: 0: got ACK from 99. RTT = 197.41666666666666
http://localhost:8383./network.js:419 [160941]: 9: got ACK from 90. RTT = 75
http://localhost:8383./network.js:419 [160952]: 0: got ACK from 99. RTT = 274.77777777777777
http://localhost:8383./network.js:419 [160971]: 9: got ACK from 90. RTT = 320.27777777777777
http://localhost:8383./network.js:419 [160982]: 0: got ACK from 99. RTT = 197.97222222222223
http://localhost:8383./network.js:419 [161042]: 9: got ACK from 90. RTT = 133.36111111111111
http://localhost:8383./network.js:419 [161053]: 0: got ACK from 99. RTT = 255.38888888888889
http://localhost:8383./network.js:419 [161083]: 0: got ACK from 99. RTT = 153.16666666666666
http://localhost:8383./network.js:419 [161141]: 9: got ACK from 90. RTT = 77.77777777777777
http://localhost:8383./network.js:419 [161154]: 0: got ACK from 99. RTT = 233.47222222222223
http://localhost:8383./network.js:419 [161171]: 9: got ACK from 90. RTT = 248.05555555555554
http://localhost:8383./network.js:419 [161184]: 0: got ACK from 99. RTT = 172.63888888888889
http://localhost:8383./network.js:419 [161243]: 9: got ACK from 90. RTT = 175.05555555555554
http://localhost:8383./network.js:419 [161255]: 0: got ACK from 99. RTT = 139.27777777777777
http://localhost:8383./network.js:419 [161285]: 0: got ACK from 99. RTT = 203.27777777777777
http://localhost:8383./network.js:419 [161341]: 9: got ACK from 90. RTT = 191.66666666666666
http://localhost:8383./network.js:419 [161356]: 0: got ACK from 99. RTT = 175.11111111111111
http://localhost:8383./network.js:419 [161371]: 9: got ACK from 90. RTT = 139.19444444444446
http://localhost:8383./network.js:419 [161386]: 0: got ACK from 99. RTT = 323.27777777777777
http://localhost:8383./network.js:419 [161443]: 9: got ACK from 90. RTT = 191.69444444444446
http://localhost:8383./network.js:419 [161457]: 0: got ACK from 99. RTT = 286.55555555555554
http://localhost:8383./network.js:419 [161487]: 0: got ACK from 99. RTT = 317.80555555555554
http://localhost:8383./network.js:419 [161541]: 9: got ACK from 90. RTT = 333.30555555555554
http://localhost:8383./network.js:419 [161558]: 0: got ACK from 99. RTT = 361.5833333333333
http://localhost:8383./network.js:419 [161588]: 0: got ACK from 99. RTT = 164.38888888888889
http://localhost:8383./network.js:419 [161641]: 9: got ACK from 90. RTT = 88.88888888888889
http://localhost:8383./network.js:419 [161659]: 0: got ACK from 99. RTT = 147.72222222222223
http://localhost:8383./network.js:419 [161671]: 9: got ACK from 90. RTT = 223.05555555555554
http://localhost:8383./network.js:419 [161689]: 0: got ACK from 99. RTT = 245.22222222222223
http://localhost:8383./network.js:419 [161742]: 9: got ACK from 90. RTT = 83.36111111111111
http://localhost:8383./network.js:419 [161760]: 0: got ACK from 99. RTT = 214.22222222222223
http://localhost:8383./network.js:419 [161780]: 9: got ACK from 90. RTT = 262.19444444444446
http://localhost:8383./network.js:419 [161790]: 0: got ACK from 99. RTT = 255.91666666666666
http://localhost:8383./network.js:419 [161861]: 9: got ACK from 90. RTT = 92.22222222222223
http://localhost:8383./network.js:419 [161861]: 0: got ACK from 99. RTT = 213.91666666666666
http://localhost:8383./network.js:419 [161891]: 0: got ACK from 99. RTT = 378.3611111111111
http://localhost:8383./network.js:419 [161899]: 9: got ACK from 90. RTT = 151.61111111111111
http://localhost:8383./network.js:419 [161962]: 0: got ACK from 99. RTT = 172.80555555555554
http://localhost:8383./network.js:419 [161980]: 9: got ACK from 90. RTT = 92.75
http://localhost:8383./network.js:419 [161992]: 0: got ACK from 99. RTT = 154.19444444444446
http://localhost:8383./network.js:419 [162061]: 9: got ACK from 90. RTT = 267.22222222222223
http://localhost:8383./network.js:419 [162063]: 0: got ACK from 99. RTT = 364.22222222222223
http://localhost:8383./network.js:419 [162093]: 0: got ACK from 99. RTT = 292.44444444444446
http://localhost:8383./network.js:419 [162141]: 9: got ACK from 90. RTT = 155
http://localhost:8383./network.js:419 [162164]: 0: got ACK from 99. RTT = 194.47222222222223
http://localhost:8383./network.js:419 [162182]: 9: got ACK from 90. RTT = 198.30555555555554
http://localhost:8383./network.js:419 [162194]: 0: got ACK from 99. RTT = 362.5833333333333
http://localhost:8383./network.js:419 [162262]: 9: got ACK from 90. RTT = 95.02777777777777
http://localhost:8383./network.js:419 [162265]: 0: got ACK from 99. RTT = 222.88888888888889
http://localhost:8383./network.js:419 [162295]: 0: got ACK from 99. RTT = 306.75
http://localhost:8383./network.js:419 [162342]: 9: got ACK from 90. RTT = 272.25
http://localhost:8383./network.js:419 [162366]: 0: got ACK from 99. RTT = 269.94444444444446
http://localhost:8383./network.js:419 [162381]: 9: got ACK from 90. RTT = 226.11111111111111
http://localhost:8383./network.js:419 [162396]: 0: got ACK from 99. RTT = 182.05555555555554
http://localhost:8383./network.js:419 [162460]: 9: got ACK from 90. RTT = 97.75
http://localhost:8383./network.js:419 [162467]: 0: got ACK from 99. RTT = 300.5833333333333
http://localhost:8383./network.js:419 [162497]: 0: got ACK from 99. RTT = 200.91666666666666
http://localhost:8383./network.js:419 [162541]: 9: got ACK from 90. RTT = 241.66666666666666
http://localhost:8383./network.js:419 [162568]: 0: got ACK from 99. RTT = 266.55555555555554
http://localhost:8383./network.js:419 [162579]: 9: got ACK from 90. RTT = 98.27777777777777
http://localhost:8383./network.js:419 [162598]: 0: got ACK from 99. RTT = 229.05555555555554
http://localhost:8383./network.js:419 [162660]: 9: got ACK from 90. RTT = 242.19444444444446
http://localhost:8383./network.js:419 [162669]: 0: got ACK from 99. RTT = 170.22222222222223
http://localhost:8383./network.js:419 [162699]: 0: got ACK from 99. RTT = 268.22222222222223
http://localhost:8383./network.js:419 [162741]: 9: got ACK from 90. RTT = 169.44444444444446
http://localhost:8383./network.js:419 [162770]: 0: got ACK from 99. RTT = 230.75
http://localhost:8383./network.js:419 [162779]: 9: got ACK from 90. RTT = 226.05555555555554
http://localhost:8383./network.js:419 [162841]: 0: got ACK from 99. RTT = 377.75
http://localhost:8383./network.js:419 [162861]: 9: got ACK from 90. RTT = 169.66666666666666
http://localhost:8383./network.js:419 [162871]: 0: got ACK from 99. RTT = 139.72222222222223
http://localhost:8383./network.js:419 [162942]: 0: got ACK from 99. RTT = 175.02777777777777
http://localhost:8383./network.js:419 [162970]: 9: got ACK from 90. RTT = 217.47222222222223
http://localhost:8383./network.js:419 [162972]: 0: got ACK from 99. RTT = 233.27777777777777
http://localhost:8383./network.js:419 [163043]: 0: got ACK from 99. RTT = 274.6666666666667
http://localhost:8383./network.js:419 [163050]: 9: got ACK from 90. RTT = 108.58333333333333
http://localhost:8383./network.js:419 [163073]: 0: got ACK from 99. RTT = 314.6111111111111
http://localhost:8383./network.js:419 [163141]: 9: got ACK from 90. RTT = 219.44444444444446
http://localhost:8383./network.js:419 [163144]: 0: got ACK from 99. RTT = 200.02777777777777
http://localhost:8383./network.js:419 [163171]: 9: got ACK from 90. RTT = 98.05555555555556
http://localhost:8383./network.js:419 [163174]: 0: got ACK from 99. RTT = 83.83333333333333
http://localhost:8383./network.js:419 [163245]: 0: got ACK from 99. RTT = 410.4166666666667
http://localhost:8383./network.js:419 [163251]: 9: got ACK from 90. RTT = 178.05555555555554
http://localhost:8383./network.js:419 [163275]: 0: got ACK from 99. RTT = 220.27777777777777
http://localhost:8383./network.js:419 [163341]: 9: got ACK from 90. RTT = 222.22222222222223
http://localhost:8383./network.js:419 [163346]: 0: got ACK from 99. RTT = 85.55555555555556
http://localhost:8383./network.js:419 [163371]: 9: got ACK from 90. RTT = 114.72222222222223
http://localhost:8383./network.js:419 [163376]: 0: got ACK from 99. RTT = 344.9166666666667
http://localhost:8383./network.js:419 [163447]: 0: got ACK from 99. RTT = 419.3611111111111
http://localhost:8383./network.js:419 [163449]: 9: got ACK from 90. RTT = 180.44444444444446
http://localhost:8383./network.js:419 [163477]: 0: got ACK from 99. RTT = 153.77777777777777
http://localhost:8383./network.js:419 [163541]: 9: got ACK from 90. RTT = 224.69444444444446
http://localhost:8383./network.js:419 [163548]: 0: got ACK from 99. RTT = 247.30555555555554
http://localhost:8383./network.js:419 [163571]: 9: got ACK from 90. RTT = 117.5
http://localhost:8383./network.js:419 [163578]: 0: got ACK from 99. RTT = 286.4166666666667
http://localhost:8383./network.js:419 [163649]: 0: got ACK from 99. RTT = 341.55555555555554
http://localhost:8383./network.js:419 [163649]: 9: got ACK from 90. RTT = 266.8888888888889
http://localhost:8383./network.js:419 [163679]: 0: got ACK from 99. RTT = 192.72222222222223
http://localhost:8383./network.js:419 [163741]: 9: got ACK from 90. RTT = 119.44444444444444
http://localhost:8383./network.js:419 [163750]: 0: got ACK from 99. RTT = 214.13888888888889
http://localhost:8383./network.js:419 [163780]: 0: got ACK from 99. RTT = 94.80555555555556
http://localhost:8383./network.js:419 [163841]: 9: got ACK from 90. RTT = 188.88888888888889
http://localhost:8383./network.js:419 [163851]: 0: got ACK from 99. RTT = 94.55555555555556
http://localhost:8383./network.js:419 [163871]: 9: got ACK from 90. RTT = 231.05555555555554
http://localhost:8383./network.js:419 [163881]: 0: got ACK from 99. RTT = 317.0833333333333
http://localhost:8383./network.js:419 [163942]: 9: got ACK from 90. RTT = 255.58333333333334
http://localhost:8383./network.js:419 [163952]: 0: got ACK from 99. RTT = 164.19444444444446
http://localhost:8383./network.js:419 [163982]: 0: got ACK from 99. RTT = 217.80555555555554
http://localhost:8383./network.js:419 [164041]: 9: got ACK from 90. RTT = 191.63888888888889
http://localhost:8383./network.js:419 [164053]: 0: got ACK from 99. RTT = 97.36111111111111
http://localhost:8383./network.js:419 [164083]: 0: got ACK from 99. RTT = 201.16666666666666
http://localhost:8383./network.js:419 [164141]: 9: got ACK from 90. RTT = 236.11111111111111
http://localhost:8383./network.js:419 [164154]: 0: got ACK from 99. RTT = 97.36111111111111
http://localhost:8383./network.js:419 [164184]: 0: got ACK from 99. RTT = 167.86111111111111
http://localhost:8383./network.js:419 [164241]: 9: got ACK from 90. RTT = 130.55555555555554
http://localhost:8383./network.js:419 [164255]: 0: got ACK from 99. RTT = 203.16666666666666
http://localhost:8383./network.js:419 [164285]: 0: got ACK from 99. RTT = 98.19444444444444
http://localhost:8383./network.js:419 [164341]: 9: got ACK from 90. RTT = 127.77777777777777
http://localhost:8383./network.js:419 [164356]: 0: got ACK from 99. RTT = 97.36111111111111
http://localhost:8383./network.js:419 [164371]: 9: got ACK from 90. RTT = 239.36111111111111
http://localhost:8383./network.js:419 [164386]: 0: got ACK from 99. RTT = 95.38888888888889
http://localhost:8383./network.js:419 [164442]: 9: got ACK from 90. RTT = 199.97222222222223
http://localhost:8383./network.js:419 [164457]: 0: got ACK from 99. RTT = 172.66666666666666
http://localhost:8383./network.js:419 [164481]: 9: got ACK from 90. RTT = 128.88888888888889
http://localhost:8383./network.js:419 [164487]: 0: got ACK from 99. RTT = 206.83333333333334
http://localhost:8383./network.js:419 [164558]: 0: got ACK from 99. RTT = 97.36111111111111
http://localhost:8383./network.js:419 [164561]: 9: got ACK from 90. RTT = 242.05555555555554
http://localhost:8383./network.js:419 [164588]: 0: got ACK from 99. RTT = 173.52777777777777
http://localhost:8383./network.js:419 [164641]: 9: got ACK from 90. RTT = 202.77777777777777
http://localhost:8383./network.js:419 [164659]: 0: got ACK from 99. RTT = 208.83333333333334
http://localhost:8383./network.js:419 [164680]: 9: got ACK from 90. RTT = 131.63888888888889
http://localhost:8383./network.js:419 [164741]: 0: got ACK from 99. RTT = 99.63888888888889
http://localhost:8383./network.js:419 [164759]: 9: got ACK from 90. RTT = 289.3888888888889
http://localhost:8383./network.js:419 [164779]: 0: got ACK from 99. RTT = 97.88888888888889
http://localhost:8383./network.js:419 [164799]: 9: got ACK from 90. RTT = 296.05555555555554
http://localhost:8383./network.js:419 [164879]: 9: got ACK from 90. RTT = 206.58333333333334
http://localhost:8383./network.js:419 [164950]: 9: got ACK from 90. RTT = 249.83333333333334
http://localhost:8383./network.js:419 [164967]: 0: got ACK from 99. RTT = 100.30555555555556
http://localhost:8383./network.js:419 [165043]: 9: got ACK from 90. RTT = 208.38888888888889
http://localhost:8383./network.js:419 [165141]: 0: got ACK from 99. RTT = 186.11111111111111
http://localhost:8383./network.js:419 [165141]: 9: got ACK from 90. RTT = 200
http://localhost:8383./network.js:419 [165171]: 9: got ACK from 90. RTT = 142.36111111111111
http://localhost:8383./network.js:419 [165246]: 9: got ACK from 90. RTT = 200.11111111111111
http://localhost:8383./network.js:419 [165252]: 0: got ACK from 99. RTT = 183.63888888888889
http://localhost:8383./network.js:419 [165360]: 9: got ACK from 90. RTT = 200.52777777777777
http://localhost:8383./network.js:419 [165363]: 0: got ACK from 99. RTT = 108.5
http://localhost:8383./network.js:419 [165470]: 9: got ACK from 90. RTT = 217.44444444444446
http://localhost:8383./network.js:419 [165474]: 0: got ACK from 99. RTT = 228.69444444444446
http://localhost:8383./network.js:419 [165580]: 9: got ACK from 90. RTT = 217.75
http://localhost:8383./network.js:419 [165586]: 0: got ACK from 99. RTT = 97.86111111111111
http://localhost:8383./network.js:419 [165690]: 9: got ACK from 90. RTT = 154.13888888888889
http://localhost:8383./network.js:419 [165698]: 0: got ACK from 99. RTT = 229.36111111111111
http://localhost:8383./network.js:419 [165761]: 9: got ACK from 90. RTT = 219.97222222222223
http://localhost:8383./network.js:419 [165850]: 0: got ACK from 99. RTT = 119.22222222222223
http://localhost:8383./network.js:419 [165871]: 9: got ACK from 90. RTT = 125.83333333333333
http://localhost:8383./network.js:419 [165981]: 9: got ACK from 90. RTT = 159.44444444444446
http://localhost:8383./network.js:419 [166082]: 0: got ACK from 99. RTT = 122.86111111111111
http://localhost:8383./network.js:419 [166091]: 9: got ACK from 90. RTT = 159.72222222222223
http://localhost:8383./network.js:419 [166153]: 0: got ACK from 99. RTT = 110.80555555555556
http://localhost:8383./network.js:419 [166162]: 9: got ACK from 90. RTT = 131.11111111111111
http://localhost:8383./network.js:419 [166272]: 9: got ACK from 90. RTT = 161.97222222222223
http://localhost:8383./network.js:419 [166382]: 9: got ACK from 90. RTT = 162.25
http://localhost:8383./network.js:419 [166466]: 0: got ACK from 99. RTT = 247.91666666666666
http://localhost:8383./network.js:419 [166492]: 9: got ACK from 90. RTT = 162.52777777777777
http://localhost:8383./network.js:419 [166496]: 0: got ACK from 99. RTT = 254.30555555555554
http://localhost:8383./network.js:419 [166643]: 9: got ACK from 90. RTT = 163.94444444444446
http://localhost:8383./network.js:419 [166673]: 9: got ACK from 90. RTT = 162
http://localhost:8383./network.js:419 [166687]: 0: got ACK from 99. RTT = 226.27777777777777
http://localhost:8383./network.js:419 [166799]: 0: got ACK from 99. RTT = 125.94444444444444
http://localhost:8383./network.js:419 [166863]: 9: got ACK from 90. RTT = 164.5
http://localhost:8383./network.js:419 [166951]: 0: got ACK from 99. RTT = 228.05555555555554
http://localhost:8383./network.js:419 [166973]: 9: got ACK from 90. RTT = 164.75
http://localhost:8383./network.js:419 [167062]: 0: got ACK from 99. RTT = 147.27777777777777
http://localhost:8383./network.js:419 [167083]: 9: got ACK from 90. RTT = 153.94444444444446
http://localhost:8383./network.js:419 [167092]: 0: got ACK from 99. RTT = 131.27777777777777
http://localhost:8383./network.js:419 [167273]: 9: got ACK from 90. RTT = 170.33333333333334
http://localhost:8383./network.js:419 [167285]: 0: got ACK from 99. RTT = 267.8888888888889
http://localhost:8383./network.js:419 [167356]: 0: got ACK from 99. RTT = 152.63888888888889
http://localhost:8383./network.js:419 [167386]: 0: got ACK from 99. RTT = 136.63888888888889
http://localhost:8383./network.js:419 [167457]: 0: got ACK from 99. RTT = 236.55555555555554
http://localhost:8383./network.js:419 [167487]: 0: got ACK from 99. RTT = 131.02777777777777
http://localhost:8383./network.js:419 [167582]: 9: got ACK from 90. RTT = 176.11111111111111
http://localhost:8383./network.js:419 [167597]: 0: got ACK from 99. RTT = 237.66666666666666
http://localhost:8383./network.js:419 [167668]: 0: got ACK from 99. RTT = 245.19444444444446
http://localhost:8383./network.js:419 [167692]: 9: got ACK from 90. RTT = 168.08333333333334
http://localhost:8383./network.js:419 [167698]: 0: got ACK from 99. RTT = 134.91666666666666
http://localhost:8383./network.js:419 [167849]: 0: got ACK from 99. RTT = 163.52777777777777
http://localhost:8383./network.js:419 [167879]: 0: got ACK from 99. RTT = 281.6111111111111
http://localhost:8383./network.js:419 [167950]: 0: got ACK from 99. RTT = 244.69444444444446
http://localhost:8383./network.js:419 [167980]: 0: got ACK from 99. RTT = 139.94444444444446
http://localhost:8383./network.js:419 [168051]: 0: got ACK from 99. RTT = 152.30555555555554
http://localhost:8383./network.js:419 [168081]: 0: got ACK from 99. RTT = 139.94444444444446
http://localhost:8383./network.js:419 [168161]: 9: got ACK from 90. RTT = 178.30555555555554
http://localhost:8383./network.js:419 [168191]: 0: got ACK from 99. RTT = 140.19444444444446
http://localhost:8383./network.js:419 [168262]: 0: got ACK from 99. RTT = 155.36111111111111
http://localhost:8383./network.js:419 [168292]: 0: got ACK from 99. RTT = 251.41666666666666
http://localhost:8383./network.js:419 [168363]: 0: got ACK from 99. RTT = 250.61111111111111
http://localhost:8383./network.js:419 [168473]: 0: got ACK from 99. RTT = 250.88888888888889
http://localhost:8383./network.js:419 [168663]: 0: got ACK from 99. RTT = 253.38888888888889
http://localhost:8383./network.js:419 [168669]: 9: got ACK from 90. RTT = 189.38888888888889
http://localhost:8383./network.js:419 [168773]: 0: got ACK from 99. RTT = 242.44444444444446
http://localhost:8383./network.js:419 [168883]: 0: got ACK from 99. RTT = 151
http://localhost:8383./network.js:419 [168978]: 9: got ACK from 90. RTT = 170.22222222222223
http://localhost:8383./network.js:419 [168993]: 0: got ACK from 99. RTT = 142.83333333333334
http://localhost:8383./network.js:419 [169183]: 0: got ACK from 99. RTT = 164.94444444444446
http://localhost:8383./network.js:419 [169293]: 0: got ACK from 99. RTT = 165.19444444444446
http://localhost:8383./network.js:419 [169367]: 9: got ACK from 90. RTT = 205.47222222222223
http://localhost:8383./network.js:419 [169444]: 0: got ACK from 99. RTT = 269.52777777777777
http://localhost:8383./network.js:419 [169474]: 0: got ACK from 99. RTT = 164.61111111111111
http://localhost:8383./network.js:419 [169584]: 0: got ACK from 99. RTT = 156.44444444444446
http://localhost:8383./network.js:419 [169676]: 9: got ACK from 90. RTT = 139.86111111111111
http://localhost:8383./network.js:419 [169694]: 0: got ACK from 99. RTT = 279.25
http://localhost:8383./network.js:419 [169884]: 0: got ACK from 99. RTT = 278.97222222222223
http://localhost:8383./network.js:419 [169985]: 9: got ACK from 90. RTT = 195.66666666666666
http://localhost:8383./network.js:419 [169994]: 0: got ACK from 99. RTT = 279.25
http://localhost:8383./network.js:419 [170149]: 0: got ACK from 99. RTT = 180.55555555555554
http://localhost:8383./network.js:419 [170179]: 9: got ACK from 90. RTT = 225.77777777777777
http://localhost:8383./network.js:419 [170179]: 0: got ACK from 99. RTT = 170.16666666666666
http://localhost:8383./network.js:419 [170289]: 0: got ACK from 99. RTT = 181.63888888888889
http://localhost:8383./network.js:419 [170449]: 9: got ACK from 90. RTT = 158.27777777777777
http://localhost:8383./network.js:419 [170479]: 9: got ACK from 90. RTT = 206.61111111111111
http://localhost:8383./network.js:419 [170479]: 0: got ACK from 99. RTT = 151
http://localhost:8383./network.js:419 [170550]: 9: got ACK from 90. RTT = 233.58333333333334
http://localhost:8383./network.js:419 [170550]: 0: got ACK from 99. RTT = 155.80555555555554
http://localhost:8383./network.js:419 [170641]: 9: got ACK from 90. RTT = 160.30555555555554
http://localhost:8383./network.js:419 [170660]: 0: got ACK from 99. RTT = 180.72222222222223
http://localhost:8383./network.js:419 [170741]: 9: got ACK from 90. RTT = 211.11111111111111
http://localhost:8383./network.js:419 [170770]: 0: got ACK from 99. RTT = 156.36111111111111
http://localhost:8383./network.js:419 [170841]: 9: got ACK from 90. RTT = 238.55555555555554
http://localhost:8383./network.js:419 [170941]: 9: got ACK from 90. RTT = 166.41666666666666
http://localhost:8383./network.js:419 [170960]: 0: got ACK from 99. RTT = 186.25
http://localhost:8383./network.js:419 [170971]: 9: got ACK from 90. RTT = 141.66666666666666
http://localhost:8383./network.js:419 [171049]: 9: got ACK from 90. RTT = 132.69444444444446
http://localhost:8383./network.js:419 [171070]: 0: got ACK from 99. RTT = 161.61111111111111
http://localhost:8383./network.js:419 [171141]: 9: got ACK from 90. RTT = 219.41666666666666
http://localhost:8383./network.js:419 [171171]: 9: got ACK from 90. RTT = 245.27777777777777
http://localhost:8383./network.js:419 [171180]: 0: got ACK from 99. RTT = 189.55555555555554
http://localhost:8383./network.js:419 [171247]: 9: got ACK from 90. RTT = 185.97222222222223
http://localhost:8383./network.js:419 [171290]: 0: got ACK from 99. RTT = 164.63888888888889
http://localhost:8383./network.js:419 [171341]: 9: got ACK from 90. RTT = 149.97222222222223
http://localhost:8383./network.js:419 [171371]: 9: got ACK from 90. RTT = 175.77777777777777
http://localhost:8383./network.js:419 [171447]: 9: got ACK from 90. RTT = 200.16666666666666
http://localhost:8383./network.js:419 [171480]: 0: got ACK from 99. RTT = 195.08333333333334
http://localhost:8383./network.js:419 [171541]: 9: got ACK from 90. RTT = 177.77777777777777
http://localhost:8383./network.js:419 [171571]: 9: got ACK from 90. RTT = 209.16666666666666
http://localhost:8383./network.js:419 [171590]: 0: got ACK from 99. RTT = 195.33333333333334
http://localhost:8383./network.js:419 [171642]: 9: got ACK from 90. RTT = 200
http://localhost:8383./network.js:419 [171685]: 9: got ACK from 90. RTT = 231.77777777777777
http://localhost:8383./network.js:419 [171756]: 9: got ACK from 90. RTT = 258.44444444444446
http://localhost:8383./network.js:419 [171780]: 0: got ACK from 99. RTT = 175.16666666666666
http://localhost:8383./network.js:419 [171841]: 9: got ACK from 90. RTT = 141.58333333333334
http://localhost:8383./network.js:419 [171851]: 0: got ACK from 99. RTT = 175.16666666666666
http://localhost:8383./network.js:419 [171881]: 0: got ACK from 99. RTT = 200.61111111111111
http://localhost:8383./network.js:419 [171884]: 9: got ACK from 90. RTT = 162
http://localhost:8383./network.js:419 [171952]: 0: got ACK from 99. RTT = 174.86111111111111
http://localhost:8383./network.js:419 [171955]: 9: got ACK from 90. RTT = 261.5
http://localhost:8383./network.js:419 [171982]: 0: got ACK from 99. RTT = 103.33333333333333
http://localhost:8383./network.js:419 [172041]: 9: got ACK from 90. RTT = 188.86111111111111
http://localhost:8383./network.js:419 [172053]: 0: got ACK from 99. RTT = 203.11111111111111
http://localhost:8383./network.js:419 [172071]: 9: got ACK from 90. RTT = 159.11111111111111
http://localhost:8383./network.js:419 [172083]: 0: got ACK from 99. RTT = 103.33333333333333
http://localhost:8383./network.js:419 [172142]: 9: got ACK from 90. RTT = 241.66666666666666
http://localhost:8383./network.js:419 [172154]: 0: got ACK from 99. RTT = 202.88888888888889
http://localhost:8383./network.js:419 [172172]: 9: got ACK from 90. RTT = 153.58333333333334
http://localhost:8383./network.js:419 [172184]: 0: got ACK from 99. RTT = 103.08333333333333
http://localhost:8383./network.js:419 [172243]: 9: got ACK from 90. RTT = 191.19444444444446
http://localhost:8383./network.js:419 [172255]: 0: got ACK from 99. RTT = 103.08333333333333
http://localhost:8383./network.js:419 [172285]: 0: got ACK from 99. RTT = 181
http://localhost:8383./network.js:419 [172341]: 9: got ACK from 90. RTT = 171.63888888888889
http://localhost:8383./network.js:419 [172356]: 0: got ACK from 99. RTT = 102.58333333333333
http://localhost:8383./network.js:419 [172371]: 9: got ACK from 90. RTT = 270.02777777777777
http://localhost:8383./network.js:419 [172386]: 0: got ACK from 99. RTT = 100.36111111111111
http://localhost:8383./network.js:419 [172442]: 9: got ACK from 90. RTT = 149.94444444444446
http://localhost:8383./network.js:419 [172457]: 0: got ACK from 99. RTT = 183.52777777777777
http://localhost:8383./network.js:419 [172478]: 9: got ACK from 90. RTT = 248.25
http://localhost:8383./network.js:419 [172487]: 0: got ACK from 99. RTT = 101.19444444444444
http://localhost:8383./network.js:419 [172558]: 0: got ACK from 99. RTT = 100.11111111111111
http://localhost:8383./network.js:419 [172559]: 9: got ACK from 90. RTT = 228.27777777777777
http://localhost:8383./network.js:419 [172588]: 0: got ACK from 99. RTT = 97.88888888888889
http://localhost:8383./network.js:419 [172598]: 9: got ACK from 90. RTT = 248.77777777777777
http://localhost:8383./network.js:419 [172659]: 0: got ACK from 99. RTT = 138.63888888888889
http://localhost:8383./network.js:419 [172677]: 9: got ACK from 90. RTT = 200.19444444444446
http://localhost:8383./network.js:419 [172689]: 0: got ACK from 99. RTT = 98.47222222222223
http://localhost:8383./network.js:419 [172748]: 9: got ACK from 90. RTT = 163.47222222222223
http://localhost:8383./network.js:419 [172760]: 0: got ACK from 99. RTT = 188.88888888888889
http://localhost:8383./network.js:419 [172790]: 0: got ACK from 99. RTT = 98.22222222222223
http://localhost:8383./network.js:419 [172797]: 9: got ACK from 90. RTT = 201.55555555555554
http://localhost:8383./network.js:419 [172861]: 0: got ACK from 99. RTT = 97.13888888888889
http://localhost:8383./network.js:419 [172868]: 9: got ACK from 90. RTT = 158.72222222222223
http://localhost:8383./network.js:419 [172891]: 0: got ACK from 99. RTT = 142.27777777777777
http://localhost:8383./network.js:419 [172941]: 9: got ACK from 90. RTT = 244.44444444444446
http://localhost:8383./network.js:419 [172962]: 0: got ACK from 99. RTT = 97.72222222222223
http://localhost:8383./network.js:419 [172992]: 0: got ACK from 99. RTT = 142.86111111111111
http://localhost:8383./network.js:419 [172995]: 9: got ACK from 90. RTT = 284.8333333333333
http://localhost:8383./network.js:419 [173063]: 0: got ACK from 99. RTT = 195.05555555555554
http://localhost:8383./network.js:419 [173066]: 9: got ACK from 90. RTT = 183.69444444444446
http://localhost:8383./network.js:419 [173093]: 0: got ACK from 99. RTT = 81.77777777777777
http://localhost:8383./network.js:419 [173096]: 9: got ACK from 90. RTT = 206.80555555555554
http://localhost:8383./network.js:419 [173164]: 0: got ACK from 99. RTT = 144.83333333333334
http://localhost:8383./network.js:419 [173167]: 9: got ACK from 90. RTT = 261.8333333333333
http://localhost:8383./network.js:419 [173194]: 0: got ACK from 99. RTT = 195.58333333333334
http://localhost:8383./network.js:419 [173241]: 9: got ACK from 90. RTT = 174.11111111111111
http://localhost:8383./network.js:419 [173265]: 0: got ACK from 99. RTT = 103.33333333333333
http://localhost:8383./network.js:419 [173273]: 9: got ACK from 90. RTT = 262
http://localhost:8383./network.js:419 [173295]: 0: got ACK from 99. RTT = 195.30555555555554
http://localhost:8383./network.js:419 [173344]: 9: got ACK from 90. RTT = 188.36111111111111
http://localhost:8383./network.js:419 [173366]: 0: got ACK from 99. RTT = 147.63888888888889
http://localhost:8383./network.js:419 [173392]: 9: got ACK from 90. RTT = 211.97222222222223
http://localhost:8383./network.js:419 [173396]: 0: got ACK from 99. RTT = 145.66666666666666
http://localhost:8383./network.js:419 [173463]: 9: got ACK from 90. RTT = 264.47222222222223
http://localhost:8383./network.js:419 [173467]: 0: got ACK from 99. RTT = 89.36111111111111
http://localhost:8383./network.js:419 [173497]: 0: got ACK from 99. RTT = 106.72222222222223
http://localhost:8383./network.js:419 [173541]: 9: got ACK from 90. RTT = 174.11111111111111
http://localhost:8383./network.js:419 [173568]: 0: got ACK from 99. RTT = 175.66666666666666
http://localhost:8383./network.js:419 [173591]: 9: got ACK from 90. RTT = 173.52777777777777
http://localhost:8383./network.js:419 [173641]: 0: got ACK from 99. RTT = 202.69444444444446
http://localhost:8383./network.js:419 [173662]: 9: got ACK from 90. RTT = 172.19444444444446
http://localhost:8383./network.js:419 [173741]: 0: got ACK from 99. RTT = 93.91666666666667
http://localhost:8383./network.js:419 [173741]: 9: got ACK from 90. RTT = 172.16666666666666
http://localhost:8383./network.js:419 [173778]: 0: got ACK from 99. RTT = 203.11111111111111
http://localhost:8383./network.js:419 [173841]: 9: got ACK from 90. RTT = 171.88888888888889
http://localhost:8383./network.js:419 [173858]: 0: got ACK from 99. RTT = 113.69444444444444
http://localhost:8383./network.js:419 [173871]: 9: got ACK from 90. RTT = 169.66666666666666
http://localhost:8383./network.js:419 [173941]: 0: got ACK from 99. RTT = 182.91666666666666
http://localhost:8383./network.js:419 [173990]: 9: got ACK from 90. RTT = 170.75
http://localhost:8383./network.js:419 [174041]: 0: got ACK from 99. RTT = 98.94444444444444
http://localhost:8383./network.js:419 [174071]: 0: got ACK from 99. RTT = 208.44444444444446
http://localhost:8383./network.js:419 [174141]: 9: got ACK from 90. RTT = 171.63888888888889
http://localhost:8383./network.js:419 [174142]: 0: got ACK from 99. RTT = 119.36111111111111
http://localhost:8383./network.js:419 [174241]: 0: got ACK from 99. RTT = 188.44444444444446
http://localhost:8383./network.js:419 [174297]: 0: got ACK from 99. RTT = 104.08333333333333
http://localhost:8383./network.js:419 [174341]: 9: got ACK from 90. RTT = 174.97222222222223
http://localhost:8383./network.js:419 [174371]: 9: got ACK from 90. RTT = 172.5
http://localhost:8383./network.js:419 [174377]: 0: got ACK from 99. RTT = 103.25
http://localhost:8383./network.js:419 [174457]: 0: got ACK from 99. RTT = 125.05555555555556
http://localhost:8383./network.js:419 [174495]: 0: got ACK from 99. RTT = 217.97222222222223
http://localhost:8383./network.js:419 [174575]: 0: got ACK from 99. RTT = 217.13888888888889
http://localhost:8383./network.js:419 [174646]: 0: got ACK from 99. RTT = 107.66666666666667
http://localhost:8383./network.js:419 [174741]: 0: got ACK from 99. RTT = 108.33333333333333
http://localhost:8383./network.js:419 [174775]: 0: got ACK from 99. RTT = 200.47222222222223
http://localhost:8383./network.js:419 [174841]: 9: got ACK from 90. RTT = 182.5
http://localhost:8383./network.js:419 [174855]: 0: got ACK from 99. RTT = 132.94444444444446
http://localhost:8383./network.js:419 [174941]: 9: got ACK from 90. RTT = 183.05555555555554
http://localhost:8383./network.js:419 [174941]: 0: got ACK from 99. RTT = 224.19444444444446
http://localhost:8383./network.js:419 [175043]: 0: got ACK from 99. RTT = 113.41666666666667
http://localhost:8383./network.js:419 [175091]: 9: got ACK from 90. RTT = 181.69444444444446
http://localhost:8383./network.js:419 [175097]: 0: got ACK from 99. RTT = 226.27777777777777
http://localhost:8383./network.js:419 [175162]: 9: got ACK from 90. RTT = 185.88888888888889
http://localhost:8383./network.js:419 [175178]: 0: got ACK from 99. RTT = 225.44444444444446
http://localhost:8383./network.js:419 [175243]: 9: got ACK from 90. RTT = 182.61111111111111
http://localhost:8383./network.js:419 [175257]: 0: got ACK from 99. RTT = 116.30555555555556
http://localhost:8383./network.js:419 [175341]: 9: got ACK from 90. RTT = 182.27777777777777
http://localhost:8383./network.js:419 [175378]: 0: got ACK from 99. RTT = 117.69444444444444
http://localhost:8383./network.js:419 [175449]: 0: got ACK from 99. RTT = 230.16666666666666
http://localhost:8383./network.js:419 [175541]: 9: got ACK from 90. RTT = 185.61111111111111
http://localhost:8383./network.js:419 [175571]: 9: got ACK from 90. RTT = 128.61111111111111
http://localhost:8383./network.js:419 [175579]: 0: got ACK from 99. RTT = 120.22222222222223
http://localhost:8383./network.js:419 [175642]: 9: got ACK from 90. RTT = 179.83333333333334
http://localhost:8383./network.js:419 [175681]: 9: got ACK from 90. RTT = 186.19444444444446
http://localhost:8383./network.js:419 [175760]: 0: got ACK from 99. RTT = 122.19444444444444
http://localhost:8383./network.js:419 [175761]: 9: got ACK from 90. RTT = 180.91666666666666
http://localhost:8383./network.js:419 [175799]: 9: got ACK from 90. RTT = 187.5
http://localhost:8383./network.js:419 [175862]: 0: got ACK from 99. RTT = 122.80555555555556
http://localhost:8383./network.js:419 [175880]: 9: got ACK from 90. RTT = 180.91666666666666
http://localhost:8383./network.js:419 [175962]: 9: got ACK from 90. RTT = 180.13888888888889
http://localhost:8383./network.js:419 [175983]: 0: got ACK from 99. RTT = 123.11111111111111
http://localhost:8383./network.js:419 [176056]: 9: got ACK from 90. RTT = 180.52777777777777
http://localhost:8383./network.js:419 [176095]: 0: got ACK from 99. RTT = 123.16666666666667
http://localhost:8383./network.js:419 [176166]: 0: got ACK from 99. RTT = 121.83333333333333
http://localhost:8383./network.js:419 [176241]: 9: got ACK from 90. RTT = 182.36111111111111
http://localhost:8383./network.js:419 [176271]: 9: got ACK from 90. RTT = 145.25
http://localhost:8383./network.js:419 [176282]: 0: got ACK from 99. RTT = 123.08333333333333
http://localhost:8383./network.js:419 [176342]: 9: got ACK from 90. RTT = 183.19444444444446
http://localhost:8383./network.js:419 [176441]: 9: got ACK from 90. RTT = 173.94444444444446
http://localhost:8383./network.js:419 [176487]: 0: got ACK from 99. RTT = 125.97222222222223
http://localhost:8383./network.js:419 [176541]: 9: got ACK from 90. RTT = 174.75
http://localhost:8383./network.js:419 [176741]: 9: got ACK from 90. RTT = 190.97222222222223
http://localhost:8383./network.js:419 [176757]: 0: got ACK from 99. RTT = 130.66666666666666
http://localhost:8383./network.js:419 [176841]: 9: got ACK from 90. RTT = 158.33333333333334
http://localhost:8383./network.js:419 [176871]: 9: got ACK from 90. RTT = 180.61111111111111
http://localhost:8383./network.js:419 [177041]: 9: got ACK from 90. RTT = 183.11111111111111
http://localhost:8383./network.js:419 [177154]: 0: got ACK from 99. RTT = 138.88888888888889
http://localhost:8383./network.js:419 [177341]: 9: got ACK from 90. RTT = 205.41666666666666
http://localhost:8383./network.js:419 [177479]: 0: got ACK from 99. RTT = 145.11111111111111
http://localhost:8383./network.js:419 [177641]: 9: got ACK from 90. RTT = 177.75
http://localhost:8383./network.js:419 [177671]: 9: got ACK from 90. RTT = 197.80555555555554
http://localhost:8383./network.js:419 [177841]: 9: got ACK from 90. RTT = 166.66666666666666
http://localhost:8383./network.js:419 [177871]: 9: got ACK from 90. RTT = 216.97222222222223
http://localhost:8383./network.js:419 [178041]: 9: got ACK from 90. RTT = 97.22222222222223
http://localhost:8383./network.js:419 [178082]: 0: got ACK from 99. RTT = 159.05555555555554
http://localhost:8383./network.js:419 [178141]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [178241]: 9: got ACK from 90. RTT = 191.66666666666666
http://localhost:8383./network.js:419 [178341]: 9: got ACK from 90. RTT = 211.11111111111111
http://localhost:8383./network.js:419 [178441]: 9: got ACK from 90. RTT = 180.16666666666666
http://localhost:8383./network.js:419 [178443]: 0: got ACK from 99. RTT = 119.47222222222223
http://localhost:8383./network.js:419 [178541]: 9: got ACK from 90. RTT = 213.88888888888889
http://localhost:8383./network.js:419 [178541]: 0: got ACK from 99. RTT = 169
http://localhost:8383./network.js:419 [178641]: 9: got ACK from 90. RTT = 111.11111111111111
http://localhost:8383./network.js:419 [178841]: 0: got ACK from 99. RTT = 102.02777777777777
http://localhost:8383./network.js:419 [178841]: 9: got ACK from 90. RTT = 188.88888888888889
http://localhost:8383./network.js:419 [179041]: 9: got ACK from 90. RTT = 116.66666666666667
http://localhost:8383./network.js:419 [179163]: 0: got ACK from 99. RTT = 136.72222222222223
http://localhost:8383./network.js:419 [179241]: 9: got ACK from 90. RTT = 216.63888888888889
http://localhost:8383./network.js:419 [179398]: 0: got ACK from 99. RTT = 190
http://localhost:8383./network.js:419 [179441]: 9: got ACK from 90. RTT = 130.55555555555554
http://localhost:8383./network.js:419 [179591]: 0: got ACK from 99. RTT = 120.61111111111111
http://localhost:8383./network.js:419 [179641]: 9: got ACK from 90. RTT = 208.30555555555554
http://localhost:8383./network.js:419 [179841]: 0: got ACK from 99. RTT = 125
http://localhost:8383./network.js:419 [179841]: 9: got ACK from 90. RTT = 230.55555555555554
http://localhost:8383./network.js:419 [179941]: 9: got ACK from 90. RTT = 138.88888888888889
http://localhost:8383./network.js:419 [180045]: 9: got ACK from 90. RTT = 138.94444444444446
http://localhost:8383./network.js:419 [180086]: 0: got ACK from 99. RTT = 206.30555555555554
http://localhost:8383./network.js:419 [180141]: 9: got ACK from 90. RTT = 236.08333333333334
http://localhost:8383./network.js:419 [180171]: 9: got ACK from 90. RTT = 220.22222222222223
http://localhost:8383./network.js:419 [180277]: 0: got ACK from 99. RTT = 112.11111111111111
http://localhost:8383./network.js:419 [180380]: 9: got ACK from 90. RTT = 239.55555555555554
http://localhost:8383./network.js:419 [180387]: 0: got ACK from 99. RTT = 167.19444444444446
http://localhost:8383./network.js:419 [180451]: 9: got ACK from 90. RTT = 225.27777777777777
http://localhost:8383./network.js:419 [180458]: 0: got ACK from 99. RTT = 139.13888888888889
http://localhost:8383./network.js:419 [180488]: 0: got ACK from 99. RTT = 197.83333333333334
http://localhost:8383./network.js:419 [180641]: 9: got ACK from 90. RTT = 221.44444444444446
http://localhost:8383./network.js:419 [180679]: 0: got ACK from 99. RTT = 173.08333333333334
http://localhost:8383./network.js:419 [180750]: 0: got ACK from 99. RTT = 122.13888888888889
http://localhost:8383./network.js:419 [180751]: 9: got ACK from 90. RTT = 155.25
http://localhost:8383./network.js:419 [180861]: 9: got ACK from 90. RTT = 156.11111111111111
http://localhost:8383./network.js:419 [180941]: 0: got ACK from 99. RTT = 227.25
http://localhost:8383./network.js:419 [180971]: 9: got ACK from 90. RTT = 156.38888888888889
http://localhost:8383./network.js:419 [181051]: 0: got ACK from 99. RTT = 153.05555555555554
http://localhost:8383./network.js:419 [181081]: 9: got ACK from 90. RTT = 239.97222222222223
http://localhost:8383./network.js:419 [181081]: 0: got ACK from 99. RTT = 128.88888888888889
http://localhost:8383./network.js:419 [181152]: 0: got ACK from 99. RTT = 182.94444444444446
http://localhost:8383./network.js:419 [181271]: 9: got ACK from 90. RTT = 161.94444444444446
http://localhost:8383./network.js:419 [181343]: 0: got ACK from 99. RTT = 175
http://localhost:8383./network.js:419 [181373]: 0: got ACK from 99. RTT = 236.44444444444446
http://localhost:8383./network.js:419 [181381]: 9: got ACK from 90. RTT = 245.33333333333334
http://localhost:8383./network.js:419 [181483]: 0: got ACK from 99. RTT = 136.80555555555554
http://localhost:8383./network.js:419 [181571]: 9: got ACK from 90. RTT = 167.5
http://localhost:8383./network.js:419 [181595]: 0: got ACK from 99. RTT = 165.13888888888889
http://localhost:8383./network.js:419 [181666]: 0: got ACK from 99. RTT = 241.77777777777777
http://localhost:8383./network.js:419 [181761]: 9: got ACK from 90. RTT = 169.97222222222223
http://localhost:8383./network.js:419 [181776]: 0: got ACK from 99. RTT = 230.80555555555554
http://localhost:8383./network.js:419 [181871]: 9: got ACK from 90. RTT = 253.41666666666666
http://localhost:8383./network.js:419 [181888]: 0: got ACK from 99. RTT = 201.16666666666666
http://localhost:8383./network.js:419 [181959]: 0: got ACK from 99. RTT = 147.72222222222223
http://localhost:8383./network.js:419 [181981]: 9: got ACK from 90. RTT = 251.11111111111111
http://localhost:8383./network.js:419 [182150]: 0: got ACK from 99. RTT = 177.5
http://localhost:8383./network.js:419 [182171]: 9: got ACK from 90. RTT = 231.38888888888889
http://localhost:8383./network.js:419 [182281]: 9: got ACK from 90. RTT = 231.63888888888889
http://localhost:8383./network.js:419 [182341]: 0: got ACK from 99. RTT = 257.72222222222223
http://localhost:8383./network.js:419 [182371]: 0: got ACK from 99. RTT = 181.38888888888889
http://localhost:8383./network.js:419 [182471]: 9: got ACK from 90. RTT = 156.38888888888889
http://localhost:8383./network.js:419 [182581]: 9: got ACK from 90. RTT = 189.69444444444446
http://localhost:8383./network.js:419 [182643]: 0: got ACK from 99. RTT = 219.5
http://localhost:8383./network.js:419 [182652]: 9: got ACK from 90. RTT = 158.61111111111111
http://localhost:8383./network.js:419 [182673]: 0: got ACK from 99. RTT = 264.1388888888889
http://localhost:8383./network.js:419 [182744]: 0: got ACK from 99. RTT = 244.52777777777777
http://localhost:8383./network.js:419 [182842]: 9: got ACK from 90. RTT = 243.91666666666666
http://localhost:8383./network.js:419 [182854]: 0: got ACK from 99. RTT = 222.44444444444446
http://localhost:8383./network.js:419 [182952]: 9: got ACK from 90. RTT = 274.6111111111111
http://localhost:8383./network.js:419 [182964]: 0: got ACK from 99. RTT = 150.38888888888889
http://localhost:8383./network.js:419 [182982]: 9: got ACK from 90. RTT = 165.02777777777777
http://localhost:8383./network.js:419 [182994]: 0: got ACK from 99. RTT = 148.69444444444446
http://localhost:8383./network.js:419 [183065]: 0: got ACK from 99. RTT = 197
http://localhost:8383./network.js:419 [183172]: 9: got ACK from 90. RTT = 167.52777777777777
http://localhost:8383./network.js:419 [183175]: 0: got ACK from 99. RTT = 197.80555555555554
http://localhost:8383./network.js:419 [183246]: 0: got ACK from 99. RTT = 152.27777777777777
http://localhost:8383./network.js:419 [183276]: 0: got ACK from 99. RTT = 278.0833333333333
http://localhost:8383./network.js:419 [183347]: 0: got ACK from 99. RTT = 258.5
http://localhost:8383./network.js:419 [183362]: 9: got ACK from 90. RTT = 291.5
http://localhost:8383./network.js:419 [183457]: 0: got ACK from 99. RTT = 156
http://localhost:8383./network.js:419 [183487]: 0: got ACK from 99. RTT = 237.38888888888889
http://localhost:8383./network.js:419 [183552]: 9: got ACK from 90. RTT = 261.4166666666667
http://localhost:8383./network.js:419 [183597]: 0: got ACK from 99. RTT = 206.41666666666666
http://localhost:8383./network.js:419 [183662]: 9: got ACK from 90. RTT = 216.44444444444446
http://localhost:8383./network.js:419 [183668]: 0: got ACK from 99. RTT = 159.08333333333334
http://localhost:8383./network.js:419 [183772]: 9: got ACK from 90. RTT = 181.41666666666666
http://localhost:8383./network.js:419 [183778]: 0: got ACK from 99. RTT = 283.6111111111111
http://localhost:8383./network.js:419 [183849]: 0: got ACK from 99. RTT = 161.33333333333334
http://localhost:8383./network.js:419 [183879]: 0: got ACK from 99. RTT = 198.11111111111111
http://localhost:8383./network.js:419 [183882]: 9: got ACK from 90. RTT = 220.30555555555554
http://localhost:8383./network.js:419 [183950]: 0: got ACK from 99. RTT = 196.72222222222223
http://localhost:8383./network.js:419 [183980]: 0: got ACK from 99. RTT = 161.86111111111111
http://localhost:8383./network.js:419 [183992]: 9: got ACK from 90. RTT = 270.8611111111111
http://localhost:8383./network.js:419 [184051]: 0: got ACK from 99. RTT = 289.1666666666667
http://localhost:8383./network.js:419 [184081]: 0: got ACK from 99. RTT = 148.33333333333334
http://localhost:8383./network.js:419 [184143]: 9: got ACK from 90. RTT = 188.94444444444446
http://localhost:8383./network.js:419 [184152]: 0: got ACK from 99. RTT = 200.02777777777777
http://localhost:8383./network.js:419 [184182]: 0: got ACK from 99. RTT = 198.36111111111111
http://localhost:8383./network.js:419 [184253]: 0: got ACK from 99. RTT = 167
http://localhost:8383./network.js:419 [184253]: 9: got ACK from 90. RTT = 275.3333333333333
http://localhost:8383./network.js:419 [184283]: 0: got ACK from 99. RTT = 198.02777777777777
http://localhost:8383./network.js:419 [184354]: 0: got ACK from 99. RTT = 294.80555555555554
http://localhost:8383./network.js:419 [184363]: 9: got ACK from 90. RTT = 231.16666666666666
http://localhost:8383./network.js:419 [184384]: 0: got ACK from 99. RTT = 167.86111111111111
http://localhost:8383./network.js:419 [184455]: 0: got ACK from 99. RTT = 199.41666666666666
http://localhost:8383./network.js:419 [184485]: 0: got ACK from 99. RTT = 198.44444444444446
http://localhost:8383./network.js:419 [184556]: 0: got ACK from 99. RTT = 167.08333333333334
http://localhost:8383./network.js:419 [184586]: 0: got ACK from 99. RTT = 298.25
http://localhost:8383./network.js:419 [184592]: 9: got ACK from 90. RTT = 198.63888888888889
http://localhost:8383./network.js:419 [184657]: 0: got ACK from 99. RTT = 172.61111111111111
http://localhost:8383./network.js:419 [184663]: 9: got ACK from 90. RTT = 283.9166666666667
http://localhost:8383./network.js:419 [184687]: 0: got ACK from 99. RTT = 200.25
http://localhost:8383./network.js:419 [184758]: 0: got ACK from 99. RTT = 169.61111111111111
http://localhost:8383./network.js:419 [184773]: 9: got ACK from 90. RTT = 200.88888888888889
http://localhost:8383./network.js:419 [184788]: 0: got ACK from 99. RTT = 165.19444444444446
http://localhost:8383./network.js:419 [184859]: 0: got ACK from 99. RTT = 164.38888888888889
http://localhost:8383./network.js:419 [184883]: 9: got ACK from 90. RTT = 325.44444444444446
http://localhost:8383./network.js:419 [184889]: 0: got ACK from 99. RTT = 162.44444444444446
http://localhost:8383./network.js:419 [184960]: 0: got ACK from 99. RTT = 161.02777777777777
http://localhost:8383./network.js:419 [184990]: 0: got ACK from 99. RTT = 137.36111111111111
http://localhost:8383./network.js:419 [184993]: 9: got ACK from 90. RTT = 204.22222222222223
http://localhost:8383./network.js:419 [185063]: 0: got ACK from 99. RTT = 160.80555555555554
http://localhost:8383./network.js:419 [185093]: 0: got ACK from 99. RTT = 137.11111111111111
http://localhost:8383./network.js:419 [185164]: 0: got ACK from 99. RTT = 161.75
http://localhost:8383./network.js:419 [185185]: 9: got ACK from 90. RTT = 206.75
http://localhost:8383./network.js:419 [185194]: 0: got ACK from 99. RTT = 159.02777777777777
http://localhost:8383./network.js:419 [185265]: 0: got ACK from 99. RTT = 158.75
http://localhost:8383./network.js:419 [185295]: 0: got ACK from 99. RTT = 156.47222222222223
http://localhost:8383./network.js:419 [185295]: 9: got ACK from 90. RTT = 254.27777777777777
http://localhost:8383./network.js:419 [185366]: 0: got ACK from 99. RTT = 141.36111111111111
http://localhost:8383./network.js:419 [185446]: 9: got ACK from 90. RTT = 211.25
http://localhost:8383./network.js:419 [185556]: 9: got ACK from 90. RTT = 342.0833333333333
http://localhost:8383./network.js:419 [185666]: 9: got ACK from 90. RTT = 214.55555555555554
http://localhost:8383./network.js:419 [185891]: 0: got ACK from 99. RTT = 53.916666666666664
http://localhost:8383./network.js:419 [185895]: 9: got ACK from 90. RTT = 268.1666666666667
http://localhost:8383./network.js:419 [185966]: 9: got ACK from 90. RTT = 220.13888888888889
http://localhost:8383./network.js:419 [186076]: 9: got ACK from 90. RTT = 220.41666666666666
http://localhost:8383./network.js:419 [186141]: 0: got ACK from 99. RTT = 58.05555555555556
http://localhost:8383./network.js:419 [186171]: 0: got ACK from 99. RTT = 56.083333333333336
http://localhost:8383./network.js:419 [186186]: 9: got ACK from 90. RTT = 220.69444444444446
http://localhost:8383./network.js:419 [186248]: 0: got ACK from 99. RTT = 55.416666666666664
http://localhost:8383./network.js:419 [186288]: 0: got ACK from 99. RTT = 53.72222222222222
http://localhost:8383./network.js:419 [186368]: 0: got ACK from 99. RTT = 53.138888888888886
http://localhost:8383./network.js:419 [186448]: 0: got ACK from 99. RTT = 52.55555555555556
http://localhost:8383./network.js:419 [186456]: 9: got ACK from 90. RTT = 364.22222222222223
http://localhost:8383./network.js:419 [186486]: 9: got ACK from 90. RTT = 281.77777777777777
http://localhost:8383./network.js:419 [186570]: 0: got ACK from 99. RTT = 53.138888888888886
http://localhost:8383./network.js:419 [186596]: 9: got ACK from 90. RTT = 229.30555555555554
http://localhost:8383./network.js:419 [186692]: 0: got ACK from 99. RTT = 48.111111111111114
http://localhost:8383./network.js:419 [186747]: 9: got ACK from 90. RTT = 230.72222222222223
http://localhost:8383./network.js:419 [186772]: 0: got ACK from 99. RTT = 47.47222222222222
http://localhost:8383./network.js:419 [186777]: 9: got ACK from 90. RTT = 369.8333333333333
http://localhost:8383./network.js:419 [186843]: 0: got ACK from 99. RTT = 57.916666666666664
http://localhost:8383./network.js:419 [186848]: 9: got ACK from 90. RTT = 289.0833333333333
http://localhost:8383./network.js:419 [186878]: 9: got ACK from 90. RTT = 231.58333333333334
http://localhost:8383./network.js:419 [186893]: 0: got ACK from 99. RTT = 56.5
http://localhost:8383./network.js:419 [186949]: 9: got ACK from 90. RTT = 230.77777777777777
http://localhost:8383./network.js:419 [186973]: 0: got ACK from 99. RTT = 50.25
http://localhost:8383./network.js:419 [186979]: 9: got ACK from 90. RTT = 289.94444444444446
http://localhost:8383./network.js:419 [187050]: 9: got ACK from 90. RTT = 230.80555555555554
http://localhost:8383./network.js:419 [187053]: 0: got ACK from 99. RTT = 49.666666666666664
http://localhost:8383./network.js:419 [187080]: 9: got ACK from 90. RTT = 376.0833333333333
http://localhost:8383./network.js:419 [187151]: 9: got ACK from 90. RTT = 230.83333333333334
http://localhost:8383./network.js:419 [187181]: 9: got ACK from 90. RTT = 375.52777777777777
http://localhost:8383./network.js:419 [187252]: 9: got ACK from 90. RTT = 230.86111111111111
http://localhost:8383./network.js:419 [187282]: 9: got ACK from 90. RTT = 206.69444444444446
http://localhost:8383./network.js:419 [187353]: 9: got ACK from 90. RTT = 297.55555555555554
http://localhost:8383./network.js:419 [187383]: 9: got ACK from 90. RTT = 206.72222222222223
http://localhost:8383./network.js:419 [187454]: 9: got ACK from 90. RTT = 297.5833333333333
http://localhost:8383./network.js:419 [187484]: 9: got ACK from 90. RTT = 234.52777777777777
http://localhost:8383./network.js:419 [187541]: 0: got ACK from 99. RTT = 60.416666666666664
http://localhost:8383./network.js:419 [187555]: 9: got ACK from 90. RTT = 383.72222222222223
http://localhost:8383./network.js:419 [187585]: 9: got ACK from 90. RTT = 209.44444444444446
http://localhost:8383./network.js:419 [187656]: 9: got ACK from 90. RTT = 208.75
http://localhost:8383./network.js:419 [187686]: 9: got ACK from 90. RTT = 206.77777777777777
http://localhost:8383./network.js:419 [187757]: 9: got ACK from 90. RTT = 239.33333333333334
http://localhost:8383./network.js:419 [187787]: 9: got ACK from 90. RTT = 206.83333333333334
http://localhost:8383./network.js:419 [187858]: 9: got ACK from 90. RTT = 205.75
http://localhost:8383./network.js:419 [187888]: 9: got ACK from 90. RTT = 203.52777777777777
http://localhost:8383./network.js:419 [187947]: 0: got ACK from 99. RTT = 69.61111111111111
http://localhost:8383./network.js:419 [187959]: 9: got ACK from 90. RTT = 203.27777777777777
http://localhost:8383./network.js:419 [187989]: 9: got ACK from 90. RTT = 243
http://localhost:8383./network.js:419 [188060]: 9: got ACK from 90. RTT = 203.02777777777777
http://localhost:8383./network.js:419 [188090]: 9: got ACK from 90. RTT = 243.02777777777777
http://localhost:8383./network.js:419 [188149]: 0: got ACK from 99. RTT = 72.44444444444444
http://localhost:8383./network.js:419 [188161]: 9: got ACK from 90. RTT = 194.69444444444446
http://localhost:8383./network.js:419 [188191]: 9: got ACK from 90. RTT = 203.61111111111111
http://localhost:8383./network.js:419 [188262]: 9: got ACK from 90. RTT = 202.52777777777777
http://localhost:8383./network.js:419 [188292]: 9: got ACK from 90. RTT = 243.08333333333334
http://localhost:8383./network.js:419 [188352]: 0: got ACK from 99. RTT = 75.30555555555556
http://localhost:8383./network.js:419 [188363]: 9: got ACK from 90. RTT = 247.83333333333334
http://localhost:8383./network.js:419 [188393]: 9: got ACK from 90. RTT = 197.83333333333334
http://localhost:8383./network.js:419 [188464]: 9: got ACK from 90. RTT = 206.16666666666666
http://localhost:8383./network.js:419 [188494]: 9: got ACK from 90. RTT = 192.30555555555554
http://localhost:8383./network.js:419 [188565]: 9: got ACK from 90. RTT = 247.88888888888889
http://localhost:8383./network.js:419 [188595]: 9: got ACK from 90. RTT = 245.94444444444446
http://localhost:8383./network.js:419 [188666]: 9: got ACK from 90. RTT = 203.44444444444446
http://localhost:8383./network.js:419 [188696]: 9: got ACK from 90. RTT = 192.63888888888889
http://localhost:8383./network.js:419 [188753]: 0: got ACK from 99. RTT = 83.66666666666667
http://localhost:8383./network.js:419 [188767]: 9: got ACK from 90. RTT = 189.58333333333334
http://localhost:8383./network.js:419 [188797]: 9: got ACK from 90. RTT = 204.02777777777777
http://localhost:8383./network.js:419 [188868]: 9: got ACK from 90. RTT = 200.72222222222223
http://localhost:8383./network.js:419 [188898]: 9: got ACK from 90. RTT = 195.19444444444446
http://localhost:8383./network.js:419 [188953]: 0: got ACK from 99. RTT = 86.44444444444444
http://localhost:8383./network.js:419 [188969]: 9: got ACK from 90. RTT = 192.13888888888889
http://localhost:8383./network.js:419 [188999]: 9: got ACK from 90. RTT = 189.66666666666666
http://localhost:8383./network.js:419 [189070]: 9: got ACK from 90. RTT = 189.66666666666666
http://localhost:8383./network.js:419 [189141]: 9: got ACK from 90. RTT = 188.58333333333334
http://localhost:8383./network.js:419 [189171]: 9: got ACK from 90. RTT = 186.11111111111111
http://localhost:8383./network.js:419 [189242]: 9: got ACK from 90. RTT = 186.11111111111111
http://localhost:8383./network.js:419 [189272]: 9: got ACK from 90. RTT = 183.88888888888889
http://localhost:8383./network.js:419 [189274]: 0: got ACK from 99. RTT = 92
http://localhost:8383./network.js:419 [189343]: 9: got ACK from 90. RTT = 182.80555555555554
http://localhost:8383./network.js:419 [189373]: 9: got ACK from 90. RTT = 181.41666666666666
http://localhost:8383./network.js:419 [189392]: 0: got ACK from 99. RTT = 93.08333333333333
http://localhost:8383./network.js:419 [189444]: 9: got ACK from 90. RTT = 180.33333333333334
http://localhost:8383./network.js:419 [189474]: 9: got ACK from 90. RTT = 175.05555555555554
http://localhost:8383./network.js:419 [189541]: 0: got ACK from 99. RTT = 94.44444444444444
http://localhost:8383./network.js:419 [189545]: 9: got ACK from 90. RTT = 180.33333333333334
http://localhost:8383./network.js:419 [189575]: 9: got ACK from 90. RTT = 175.88888888888889
http://localhost:8383./network.js:419 [189676]: 9: got ACK from 90. RTT = 155.91666666666666
http://localhost:8383./network.js:419 [189678]: 0: got ACK from 99. RTT = 95.44444444444444
http://localhost:8383./network.js:419 [189841]: 9: got ACK from 90. RTT = 179.97222222222223
http://localhost:8383./network.js:419 [189959]: 9: got ACK from 90. RTT = 133.69444444444446
http://localhost:8383./network.js:419 [189995]: 0: got ACK from 99. RTT = 101
http://localhost:8383./network.js:419 [190070]: 0: got ACK from 99. RTT = 281.05555555555554
http://localhost:8383./network.js:419 [190100]: 0: got ACK from 99. RTT = 101.63888888888889
http://localhost:8383./network.js:419 [190171]: 0: got ACK from 99. RTT = 250.52777777777777
http://localhost:8383./network.js:419 [190241]: 9: got ACK from 90. RTT = 169.38888888888889
http://localhost:8383./network.js:419 [190242]: 0: got ACK from 99. RTT = 194.33333333333334
http://localhost:8383./network.js:419 [190272]: 0: got ACK from 99. RTT = 214.13888888888889
http://localhost:8383./network.js:419 [190343]: 0: got ACK from 99. RTT = 194.33333333333334
http://localhost:8383./network.js:419 [190373]: 0: got ACK from 99. RTT = 253.05555555555554
http://localhost:8383./network.js:419 [190441]: 9: got ACK from 90. RTT = 160.5
http://localhost:8383./network.js:419 [190444]: 0: got ACK from 99. RTT = 108.41666666666667
http://localhost:8383./network.js:419 [190474]: 0: got ACK from 99. RTT = 267.05555555555554
http://localhost:8383./network.js:419 [190541]: 9: got ACK from 90. RTT = 146.80555555555554
http://localhost:8383./network.js:419 [190545]: 0: got ACK from 99. RTT = 255.61111111111111
http://localhost:8383./network.js:419 [190575]: 0: got ACK from 99. RTT = 220.33333333333334
http://localhost:8383./network.js:419 [190641]: 9: got ACK from 90. RTT = 154.86111111111111
http://localhost:8383./network.js:419 [190646]: 0: got ACK from 99. RTT = 193.83333333333334
http://localhost:8383./network.js:419 [190676]: 0: got ACK from 99. RTT = 189.63888888888889
http://localhost:8383./network.js:419 [190741]: 9: got ACK from 90. RTT = 191.61111111111111
http://localhost:8383./network.js:419 [190747]: 0: got ACK from 99. RTT = 258.4166666666667
http://localhost:8383./network.js:419 [190771]: 9: got ACK from 90. RTT = 122.08333333333333
http://localhost:8383./network.js:419 [190842]: 9: got ACK from 90. RTT = 183.02777777777777
http://localhost:8383./network.js:419 [190857]: 0: got ACK from 99. RTT = 225.36111111111111
http://localhost:8383./network.js:419 [190887]: 0: got ACK from 99. RTT = 259.25
http://localhost:8383./network.js:419 [190941]: 9: got ACK from 90. RTT = 138.19444444444446
http://localhost:8383./network.js:419 [190958]: 0: got ACK from 99. RTT = 225.11111111111111
http://localhost:8383./network.js:419 [190971]: 9: got ACK from 90. RTT = 125.41666666666667
http://localhost:8383./network.js:419 [190988]: 0: got ACK from 99. RTT = 295.55555555555554
http://localhost:8383./network.js:419 [191043]: 9: got ACK from 90. RTT = 157.69444444444446
http://localhost:8383./network.js:419 [191059]: 0: got ACK from 99. RTT = 122.72222222222223
http://localhost:8383./network.js:419 [191089]: 0: got ACK from 99. RTT = 261.75
http://localhost:8383./network.js:419 [191141]: 9: got ACK from 90. RTT = 199.66666666666666
http://localhost:8383./network.js:419 [191160]: 0: got ACK from 99. RTT = 283.8611111111111
http://localhost:8383./network.js:419 [191190]: 0: got ACK from 99. RTT = 281.6388888888889
http://localhost:8383./network.js:419 [191241]: 9: got ACK from 90. RTT = 130.11111111111111
http://localhost:8383./network.js:419 [191261]: 0: got ACK from 99. RTT = 263.47222222222223
http://localhost:8383./network.js:419 [191271]: 9: got ACK from 90. RTT = 216.63888888888889
http://localhost:8383./network.js:419 [191342]: 9: got ACK from 90. RTT = 105.19444444444444
http://localhost:8383./network.js:419 [191371]: 0: got ACK from 99. RTT = 233.52777777777777
http://localhost:8383./network.js:419 [191380]: 9: got ACK from 90. RTT = 183.52777777777777
http://localhost:8383./network.js:419 [191442]: 0: got ACK from 99. RTT = 302.30555555555554
http://localhost:8383./network.js:419 [191461]: 9: got ACK from 90. RTT = 133.16666666666666
http://localhost:8383./network.js:419 [191472]: 0: got ACK from 99. RTT = 325.80555555555554
http://localhost:8383./network.js:419 [191543]: 9: got ACK from 90. RTT = 199.44444444444446
http://localhost:8383./network.js:419 [191543]: 0: got ACK from 99. RTT = 235.5
http://localhost:8383./network.js:419 [191573]: 0: got ACK from 99. RTT = 225.44444444444446
http://localhost:8383./network.js:419 [191641]: 9: got ACK from 90. RTT = 110.69444444444444
http://localhost:8383./network.js:419 [191644]: 0: got ACK from 99. RTT = 135.58333333333334
http://localhost:8383./network.js:419 [191671]: 9: got ACK from 90. RTT = 172.91666666666666
http://localhost:8383./network.js:419 [191674]: 0: got ACK from 99. RTT = 272.97222222222223
http://localhost:8383./network.js:419 [191742]: 9: got ACK from 90. RTT = 157.38888888888889
http://localhost:8383./network.js:419 [191745]: 0: got ACK from 99. RTT = 238.05555555555554
http://localhost:8383./network.js:419 [191775]: 0: got ACK from 99. RTT = 272.6666666666667
http://localhost:8383./network.js:419 [191841]: 9: got ACK from 90. RTT = 141.5
http://localhost:8383./network.js:419 [191885]: 0: got ACK from 99. RTT = 225.19444444444446
http://localhost:8383./network.js:419 [191941]: 9: got ACK from 90. RTT = 197.13888888888889
http://localhost:8383./network.js:419 [191995]: 0: got ACK from 99. RTT = 275.72222222222223
http://localhost:8383./network.js:419 [192041]: 9: got ACK from 90. RTT = 180.13888888888889
http://localhost:8383./network.js:419 [192066]: 0: got ACK from 99. RTT = 145.08333333333334
http://localhost:8383./network.js:419 [192071]: 9: got ACK from 90. RTT = 145.08333333333334
http://localhost:8383./network.js:419 [192142]: 9: got ACK from 90. RTT = 166.52777777777777
http://localhost:8383./network.js:419 [192176]: 0: got ACK from 99. RTT = 319.3611111111111
http://localhost:8383./network.js:419 [192241]: 9: got ACK from 90. RTT = 147
http://localhost:8383./network.js:419 [192247]: 0: got ACK from 99. RTT = 280.47222222222223
http://localhost:8383./network.js:419 [192271]: 9: got ACK from 90. RTT = 216.61111111111111
http://localhost:8383./network.js:419 [192343]: 9: got ACK from 90. RTT = 147.02777777777777
http://localhost:8383./network.js:419 [192357]: 0: got ACK from 99. RTT = 330.52777777777777
http://localhost:8383./network.js:419 [192441]: 9: got ACK from 90. RTT = 246.91666666666666
http://localhost:8383./network.js:419 [192467]: 0: got ACK from 99. RTT = 283.52777777777777
http://localhost:8383./network.js:419 [192497]: 0: got ACK from 99. RTT = 153.69444444444446
http://localhost:8383./network.js:419 [192541]: 9: got ACK from 90. RTT = 210.75
http://localhost:8383./network.js:419 [192568]: 0: got ACK from 99. RTT = 353.52777777777777
http://localhost:8383./network.js:419 [192641]: 9: got ACK from 90. RTT = 177.33333333333334
http://localhost:8383./network.js:419 [192741]: 9: got ACK from 90. RTT = 155.27777777777777
http://localhost:8383./network.js:419 [192758]: 0: got ACK from 99. RTT = 289.3611111111111
http://localhost:8383./network.js:419 [192771]: 9: got ACK from 90. RTT = 197.36111111111111
http://localhost:8383./network.js:419 [192842]: 9: got ACK from 90. RTT = 155.27777777777777
http://localhost:8383./network.js:419 [192868]: 0: got ACK from 99. RTT = 161.77777777777777
http://localhost:8383./network.js:419 [192898]: 0: got ACK from 99. RTT = 337.44444444444446
http://localhost:8383./network.js:419 [192941]: 9: got ACK from 90. RTT = 155.22222222222223
http://localhost:8383./network.js:419 [193041]: 9: got ACK from 90. RTT = 235.77777777777777
http://localhost:8383./network.js:419 [193049]: 0: got ACK from 99. RTT = 294.6388888888889
http://localhost:8383./network.js:419 [193071]: 9: got ACK from 90. RTT = 156.02777777777777
http://localhost:8383./network.js:419 [193142]: 9: got ACK from 90. RTT = 263.3333333333333
http://localhost:8383./network.js:419 [193159]: 0: got ACK from 99. RTT = 266.69444444444446
http://localhost:8383./network.js:419 [193269]: 0: got ACK from 99. RTT = 153.55555555555554
http://localhost:8383./network.js:419 [193341]: 9: got ACK from 90. RTT = 210.13888888888889
http://localhost:8383./network.js:419 [193441]: 9: got ACK from 90. RTT = 210.69444444444446
http://localhost:8383./network.js:419 [193459]: 0: got ACK from 99. RTT = 94.13888888888889
http://localhost:8383./network.js:419 [193489]: 0: got ACK from 99. RTT = 176.33333333333334
http://localhost:8383./network.js:419 [193541]: 9: got ACK from 90. RTT = 271.3611111111111
http://localhost:8383./network.js:419 [193599]: 0: got ACK from 99. RTT = 148.83333333333334
http://localhost:8383./network.js:419 [193641]: 9: got ACK from 90. RTT = 163.44444444444446
http://localhost:8383./network.js:419 [193671]: 9: got ACK from 90. RTT = 161.47222222222223
http://localhost:8383./network.js:419 [193742]: 9: got ACK from 90. RTT = 160.63888888888889
http://localhost:8383./network.js:419 [193750]: 0: got ACK from 99. RTT = 99.41666666666667
http://localhost:8383./network.js:419 [193780]: 9: got ACK from 90. RTT = 120.44444444444444
http://localhost:8383./network.js:419 [193860]: 9: got ACK from 90. RTT = 161.11111111111111
http://localhost:8383./network.js:419 [193899]: 9: got ACK from 90. RTT = 120.94444444444444
http://localhost:8383./network.js:419 [193899]: 0: got ACK from 99. RTT = 101.58333333333333
http://localhost:8383./network.js:419 [193979]: 9: got ACK from 90. RTT = 120.36111111111111
http://localhost:8383./network.js:419 [194050]: 9: got ACK from 90. RTT = 163.58333333333334
http://localhost:8383./network.js:419 [194089]: 0: got ACK from 99. RTT = 190.22222222222223
http://localhost:8383./network.js:419 [194098]: 9: got ACK from 90. RTT = 120.86111111111111
http://localhost:8383./network.js:419 [194160]: 0: got ACK from 99. RTT = 161.63888888888889
http://localhost:8383./network.js:419 [194177]: 9: got ACK from 90. RTT = 164.30555555555554
http://localhost:8383./network.js:419 [194261]: 9: got ACK from 90. RTT = 122.77777777777777
http://localhost:8383./network.js:419 [194341]: 9: got ACK from 90. RTT = 166.05555555555554
http://localhost:8383./network.js:419 [194350]: 0: got ACK from 99. RTT = 180.80555555555554
http://localhost:8383./network.js:419 [194441]: 9: got ACK from 90. RTT = 166.02777777777777
http://localhost:8383./network.js:419 [194460]: 0: got ACK from 99. RTT = 114.36111111111111
http://localhost:8383./network.js:419 [194541]: 9: got ACK from 90. RTT = 127.77777777777777
http://localhost:8383./network.js:419 [194641]: 9: got ACK from 90. RTT = 168.77777777777777
http://localhost:8383./network.js:419 [194650]: 0: got ACK from 99. RTT = 203.02777777777777
http://localhost:8383./network.js:419 [194741]: 9: got ACK from 90. RTT = 130.44444444444446
http://localhost:8383./network.js:419 [194760]: 0: got ACK from 99. RTT = 119.88888888888889
http://localhost:8383./network.js:419 [194790]: 0: got ACK from 99. RTT = 204.13888888888889
http://localhost:8383./network.js:419 [194841]: 9: got ACK from 90. RTT = 171.52777777777777
http://localhost:8383./network.js:419 [194941]: 9: got ACK from 90. RTT = 171.5
http://localhost:8383./network.js:419 [194941]: 0: got ACK from 99. RTT = 180.55555555555554
http://localhost:8383./network.js:419 [194971]: 0: got ACK from 99. RTT = 206.38888888888889
http://localhost:8383./network.js:419 [195043]: 9: got ACK from 90. RTT = 136.16666666666666
http://localhost:8383./network.js:419 [195056]: 0: got ACK from 99. RTT = 197.63888888888889
http://localhost:8383./network.js:419 [195073]: 9: got ACK from 90. RTT = 172.36111111111111
http://localhost:8383./network.js:419 [195144]: 9: got ACK from 90. RTT = 171.52777777777777
http://localhost:8383./network.js:419 [195241]: 9: got ACK from 90. RTT = 171.41666666666666
http://localhost:8383./network.js:419 [195341]: 9: got ACK from 90. RTT = 172.22222222222223
http://localhost:8383./network.js:419 [195343]: 0: got ACK from 99. RTT = 133.27777777777777
http://localhost:8383./network.js:419 [195371]: 9: got ACK from 90. RTT = 142.5
http://localhost:8383./network.js:419 [195454]: 0: got ACK from 99. RTT = 192.02777777777777
http://localhost:8383./network.js:419 [195460]: 9: got ACK from 90. RTT = 172.72222222222223
http://localhost:8383./network.js:419 [195484]: 0: got ACK from 99. RTT = 120.11111111111111
http://localhost:8383./network.js:419 [195541]: 9: got ACK from 90. RTT = 144.44444444444446
http://localhost:8383./network.js:419 [195579]: 9: got ACK from 90. RTT = 173.22222222222223
http://localhost:8383./network.js:419 [195594]: 0: got ACK from 99. RTT = 173.58333333333334
http://localhost:8383./network.js:419 [195741]: 9: got ACK from 90. RTT = 147.22222222222223
http://localhost:8383./network.js:419 [195746]: 0: got ACK from 99. RTT = 141.66666666666666
http://localhost:8383./network.js:419 [195771]: 9: got ACK from 90. RTT = 117.5
http://localhost:8383./network.js:419 [195842]: 9: got ACK from 90. RTT = 147.25
http://localhost:8383./network.js:419 [195897]: 0: got ACK from 99. RTT = 178.72222222222223
http://localhost:8383./network.js:419 [196049]: 0: got ACK from 99. RTT = 233.55555555555554
http://localhost:8383./network.js:419 [196079]: 0: got ACK from 99. RTT = 133.83333333333334
http://localhost:8383./network.js:419 [196144]: 9: got ACK from 90. RTT = 152.86111111111111
http://localhost:8383./network.js:419 [196150]: 0: got ACK from 99. RTT = 150.08333333333334
http://localhost:8383./network.js:419 [196241]: 9: got ACK from 90. RTT = 127.77777777777777
http://localhost:8383./network.js:419 [196300]: 0: got ACK from 99. RTT = 136.91666666666666
http://localhost:8383./network.js:419 [196341]: 9: got ACK from 90. RTT = 155.55555555555554
http://localhost:8383./network.js:419 [196371]: 0: got ACK from 99. RTT = 214.72222222222223
http://localhost:8383./network.js:419 [196442]: 0: got ACK from 99. RTT = 191.69444444444446
http://localhost:8383./network.js:419 [196472]: 0: got ACK from 99. RTT = 234.19444444444446
http://localhost:8383./network.js:419 [196476]: 9: got ACK from 90. RTT = 131.5
http://localhost:8383./network.js:419 [196543]: 0: got ACK from 99. RTT = 141.69444444444446
http://localhost:8383./network.js:419 [196573]: 0: got ACK from 99. RTT = 192.55555555555554
http://localhost:8383./network.js:419 [196644]: 0: got ACK from 99. RTT = 160.75
http://localhost:8383./network.js:419 [196662]: 9: got ACK from 90. RTT = 161.66666666666666
http://localhost:8383./network.js:419 [196674]: 0: got ACK from 99. RTT = 142.52777777777777
http://localhost:8383./network.js:419 [196784]: 0: got ACK from 99. RTT = 240.08333333333334
http://localhost:8383./network.js:419 [196894]: 0: got ACK from 99. RTT = 226.47222222222223
http://localhost:8383./network.js:419 [196941]: 9: got ACK from 90. RTT = 141.66666666666666
http://localhost:8383./network.js:419 [196965]: 0: got ACK from 99. RTT = 166.86111111111111
http://localhost:8383./network.js:419 [197048]: 9: got ACK from 90. RTT = 85.5
http://localhost:8383./network.js:419 [197075]: 0: got ACK from 99. RTT = 228.72222222222223
http://localhost:8383./network.js:419 [197141]: 9: got ACK from 90. RTT = 172.22222222222223
http://localhost:8383./network.js:419 [197146]: 0: got ACK from 99. RTT = 227.91666666666666
http://localhost:8383./network.js:419 [197171]: 9: got ACK from 90. RTT = 106.38888888888889
http://localhost:8383./network.js:419 [197248]: 9: got ACK from 90. RTT = 172.38888888888889
http://localhost:8383./network.js:419 [197256]: 0: got ACK from 99. RTT = 228.19444444444446
http://localhost:8383./network.js:419 [197366]: 0: got ACK from 99. RTT = 175.19444444444446
http://localhost:8383./network.js:419 [197441]: 9: got ACK from 90. RTT = 175
http://localhost:8383./network.js:419 [197471]: 9: got ACK from 90. RTT = 153.61111111111111
http://localhost:8383./network.js:419 [197476]: 0: got ACK from 99. RTT = 231.52777777777777
http://localhost:8383./network.js:419 [197542]: 9: got ACK from 90. RTT = 113.91666666666667
http://localhost:8383./network.js:419 [197547]: 0: got ACK from 99. RTT = 230.72222222222223
http://localhost:8383./network.js:419 [197577]: 0: got ACK from 99. RTT = 164.80555555555554
http://localhost:8383./network.js:419 [197581]: 9: got ACK from 90. RTT = 176.11111111111111
http://localhost:8383./network.js:419 [197648]: 0: got ACK from 99. RTT = 219.41666666666666
http://localhost:8383./network.js:419 [197661]: 9: got ACK from 90. RTT = 156.11111111111111
http://localhost:8383./network.js:419 [197741]: 0: got ACK from 99. RTT = 219.44444444444446
http://localhost:8383./network.js:419 [197741]: 9: got ACK from 90. RTT = 177.75
http://localhost:8383./network.js:419 [197794]: 0: got ACK from 99. RTT = 168.02777777777777
http://localhost:8383./network.js:419 [197841]: 9: got ACK from 90. RTT = 177.5
http://localhost:8383./network.js:419 [197871]: 9: got ACK from 90. RTT = 159.13888888888889
http://localhost:8383./network.js:419 [197875]: 0: got ACK from 99. RTT = 220.38888888888889
http://localhost:8383./network.js:419 [198078]: 0: got ACK from 99. RTT = 173.11111111111111
http://localhost:8383./network.js:419 [198141]: 9: got ACK from 90. RTT = 127.77777777777777
http://localhost:8383./network.js:419 [198149]: 0: got ACK from 99. RTT = 172.02777777777777
http://localhost:8383./network.js:419 [198241]: 9: got ACK from 90. RTT = 166.66666666666666
http://localhost:8383./network.js:419 [198276]: 0: got ACK from 99. RTT = 172.5
http://localhost:8383./network.js:419 [198341]: 9: got ACK from 90. RTT = 130.55555555555554
http://localhost:8383./network.js:419 [198441]: 0: got ACK from 99. RTT = 174.02777777777777
http://localhost:8383./network.js:419 [198441]: 9: got ACK from 90. RTT = 169.41666666666666
http://localhost:8383./network.js:419 [198545]: 9: got ACK from 90. RTT = 133.41666666666666
http://localhost:8383./network.js:419 [198553]: 0: got ACK from 99. RTT = 175.16666666666666
http://localhost:8383./network.js:419 [198646]: 0: got ACK from 99. RTT = 174.69444444444446
http://localhost:8383./network.js:419 [198755]: 0: got ACK from 99. RTT = 174.66666666666666
http://localhost:8383./network.js:419 [198841]: 9: got ACK from 90. RTT = 177.77777777777777
http://localhost:8383./network.js:419 [198846]: 0: got ACK from 99. RTT = 174.38888888888889
http://localhost:8383./network.js:419 [198946]: 0: got ACK from 99. RTT = 174.11111111111111
http://localhost:8383./network.js:419 [198952]: 9: got ACK from 90. RTT = 141.69444444444446
http://localhost:8383./network.js:419 [199045]: 0: got ACK from 99. RTT = 174.63888888888889
http://localhost:8383./network.js:419 [199084]: 0: got ACK from 99. RTT = 172.66666666666666
http://localhost:8383./network.js:419 [199152]: 9: got ACK from 90. RTT = 183.63888888888889
http://localhost:8383./network.js:419 [199241]: 0: got ACK from 99. RTT = 119.44444444444444
http://localhost:8383./network.js:419 [199275]: 9: got ACK from 90. RTT = 184.27777777777777
http://localhost:8383./network.js:419 [199284]: 0: got ACK from 99. RTT = 117.77777777777777
http://localhost:8383./network.js:419 [199355]: 0: got ACK from 99. RTT = 166
http://localhost:8383./network.js:419 [199444]: 0: got ACK from 99. RTT = 119.52777777777777
http://localhost:8383./network.js:419 [199541]: 9: got ACK from 90. RTT = 188.88888888888889
http://localhost:8383./network.js:419 [199541]: 0: got ACK from 99. RTT = 182.55555555555554
http://localhost:8383./network.js:419 [199641]: 0: got ACK from 99. RTT = 183.11111111111111
http://localhost:8383./network.js:419 [199685]: 0: got ACK from 99. RTT = 122.86111111111111
http://localhost:8383./network.js:419 [199765]: 0: got ACK from 99. RTT = 175.16666666666666
http://localhost:8383./network.js:419 [199841]: 0: got ACK from 99. RTT = 124.94444444444444
http://localhost:8383./network.js:419 [199845]: 9: got ACK from 90. RTT = 194.52777777777777
http://localhost:8383./network.js:419 [199884]: 0: got ACK from 99. RTT = 186.80555555555554
http://localhost:8383./network.js:419 [199966]: 0: got ACK from 99. RTT = 125.33333333333333
http://localhost:8383./network.js:419 [200053]: 0: got ACK from 99. RTT = 180.36111111111111
http://localhost:8383./network.js:419 [200170]: 0: got ACK from 99. RTT = 128.19444444444446
http://localhost:8383./network.js:419 [200241]: 9: got ACK from 90. RTT = 202.77777777777777
http://localhost:8383./network.js:419 [200253]: 0: got ACK from 99. RTT = 182.86111111111111
http://localhost:8383./network.js:419 [200292]: 0: got ACK from 99. RTT = 128.52777777777777
http://localhost:8383./network.js:419 [200363]: 0: got ACK from 99. RTT = 158.69444444444446
http://localhost:8383./network.js:419 [200393]: 0: got ACK from 99. RTT = 197.88888888888889
http://localhost:8383./network.js:419 [200441]: 9: got ACK from 90. RTT = 205.55555555555554
http://localhost:8383./network.js:419 [200545]: 0: got ACK from 99. RTT = 133.30555555555554
http://localhost:8383./network.js:419 [200575]: 0: got ACK from 99. RTT = 86.08333333333333
http://localhost:8383./network.js:419 [200641]: 9: got ACK from 90. RTT = 208.30555555555554
http://localhost:8383./network.js:419 [200687]: 0: got ACK from 99. RTT = 192.69444444444446
http://localhost:8383./network.js:419 [200741]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [200799]: 0: got ACK from 99. RTT = 90.33333333333333
http://localhost:8383./network.js:419 [200870]: 0: got ACK from 99. RTT = 139.27777777777777
http://localhost:8383./network.js:419 [200941]: 0: got ACK from 99. RTT = 138.13888888888889
http://localhost:8383./network.js:419 [201041]: 9: got ACK from 90. RTT = 152.77777777777777
http://localhost:8383./network.js:419 [201052]: 0: got ACK from 99. RTT = 138.97222222222223
http://localhost:8383./network.js:419 [201082]: 0: got ACK from 99. RTT = 175.61111111111111
http://localhost:8383./network.js:419 [201141]: 9: got ACK from 90. RTT = 196.97222222222223
http://localhost:8383./network.js:419 [201153]: 0: got ACK from 99. RTT = 202.58333333333334
http://localhost:8383./network.js:419 [201264]: 0: got ACK from 99. RTT = 142.05555555555554
http://localhost:8383./network.js:419 [201294]: 0: got ACK from 99. RTT = 139.80555555555554
http://localhost:8383./network.js:419 [201341]: 9: got ACK from 90. RTT = 158.08333333333334
http://localhost:8383./network.js:419 [201441]: 9: got ACK from 90. RTT = 186.11111111111111
http://localhost:8383./network.js:419 [201446]: 0: got ACK from 99. RTT = 105.5
http://localhost:8383./network.js:419 [201476]: 0: got ACK from 99. RTT = 208.5
http://localhost:8383./network.js:419 [201547]: 0: got ACK from 99. RTT = 185.72222222222223
http://localhost:8383./network.js:419 [201641]: 9: got ACK from 90. RTT = 163.88888888888889
http://localhost:8383./network.js:419 [201658]: 0: got ACK from 99. RTT = 146.86111111111111
http://localhost:8383./network.js:419 [201688]: 0: got ACK from 99. RTT = 212.16666666666666
http://localhost:8383./network.js:419 [201741]: 9: got ACK from 90. RTT = 163.86111111111111
http://localhost:8383./network.js:419 [201841]: 9: got ACK from 90. RTT = 213.11111111111111
http://localhost:8383./network.js:419 [201841]: 0: got ACK from 99. RTT = 149.97222222222223
http://localhost:8383./network.js:419 [201871]: 0: got ACK from 99. RTT = 114.72222222222223
http://localhost:8383./network.js:419 [201942]: 0: got ACK from 99. RTT = 149.97222222222223
http://localhost:8383./network.js:419 [202053]: 0: got ACK from 99. RTT = 219.25
http://localhost:8383./network.js:419 [202083]: 0: got ACK from 99. RTT = 117.16666666666667
http://localhost:8383./network.js:419 [202141]: 9: got ACK from 90. RTT = 172.22222222222223
http://localhost:8383./network.js:419 [202154]: 0: got ACK from 99. RTT = 116.88888888888889
http://localhost:8383./network.js:419 [202184]: 0: got ACK from 99. RTT = 153.88888888888889
http://localhost:8383./network.js:419 [202296]: 0: got ACK from 99. RTT = 118.19444444444444
http://localhost:8383./network.js:419 [202341]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [202367]: 0: got ACK from 99. RTT = 156.16666666666666
http://localhost:8383./network.js:419 [202441]: 9: got ACK from 90. RTT = 177.77777777777777
http://localhost:8383./network.js:419 [202478]: 0: got ACK from 99. RTT = 228
http://localhost:8383./network.js:419 [202541]: 9: got ACK from 90. RTT = 230.36111111111111
http://localhost:8383./network.js:419 [202549]: 0: got ACK from 99. RTT = 158.16666666666666
http://localhost:8383./network.js:419 [202579]: 0: got ACK from 99. RTT = 228.58333333333334
http://localhost:8383./network.js:419 [202641]: 9: got ACK from 90. RTT = 180.55555555555554
http://localhost:8383./network.js:419 [202691]: 0: got ACK from 99. RTT = 159.05555555555554
http://localhost:8383./network.js:419 [202741]: 9: got ACK from 90. RTT = 180.55555555555554
http://localhost:8383./network.js:419 [202762]: 0: got ACK from 99. RTT = 128.13888888888889
http://localhost:8383./network.js:419 [202771]: 9: got ACK from 90. RTT = 217.5
http://localhost:8383./network.js:419 [202792]: 0: got ACK from 99. RTT = 231.44444444444446
http://localhost:8383./network.js:419 [202842]: 9: got ACK from 90. RTT = 180.58333333333334
http://localhost:8383./network.js:419 [202944]: 0: got ACK from 99. RTT = 163.02777777777777
http://localhost:8383./network.js:419 [202974]: 0: got ACK from 99. RTT = 161.88888888888889
http://localhost:8383./network.js:419 [203045]: 0: got ACK from 99. RTT = 160.80555555555554
http://localhost:8383./network.js:419 [203141]: 9: got ACK from 90. RTT = 244.44444444444446
http://localhost:8383./network.js:419 [203156]: 0: got ACK from 99. RTT = 238.5
http://localhost:8383./network.js:419 [203171]: 9: got ACK from 90. RTT = 186.94444444444446
http://localhost:8383./network.js:419 [203186]: 0: got ACK from 99. RTT = 161.66666666666666
http://localhost:8383./network.js:419 [203242]: 9: got ACK from 90. RTT = 227.75
http://localhost:8383./network.js:419 [203257]: 0: got ACK from 99. RTT = 139.33333333333334
http://localhost:8383./network.js:419 [203287]: 0: got ACK from 99. RTT = 134.61111111111111
http://localhost:8383./network.js:419 [203341]: 9: got ACK from 90. RTT = 227.69444444444446
http://localhost:8383./network.js:419 [203371]: 9: got ACK from 90. RTT = 225.83333333333334
http://localhost:8383./network.js:419 [203399]: 0: got ACK from 99. RTT = 140.33333333333334
http://localhost:8383./network.js:419 [203443]: 9: got ACK from 90. RTT = 191.55555555555554
http://localhost:8383./network.js:419 [203470]: 0: got ACK from 99. RTT = 136.91666666666666
http://localhost:8383./network.js:419 [203541]: 9: got ACK from 90. RTT = 252.77777777777777
http://localhost:8383./network.js:419 [203582]: 0: got ACK from 99. RTT = 128.91666666666666
http://localhost:8383./network.js:419 [203641]: 9: got ACK from 90. RTT = 230.55555555555554
http://localhost:8383./network.js:419 [203671]: 9: got ACK from 90. RTT = 195.27777777777777
http://localhost:8383./network.js:419 [203694]: 0: got ACK from 99. RTT = 140.36111111111111
http://localhost:8383./network.js:419 [203742]: 9: got ACK from 90. RTT = 255.58333333333334
http://localhost:8383./network.js:419 [203765]: 0: got ACK from 99. RTT = 139.55555555555554
http://localhost:8383./network.js:419 [203781]: 9: got ACK from 90. RTT = 195.55555555555554
http://localhost:8383./network.js:419 [203795]: 0: got ACK from 99. RTT = 132.05555555555554
http://localhost:8383./network.js:419 [203943]: 9: got ACK from 90. RTT = 236.13888888888889
http://localhost:8383./network.js:419 [203947]: 0: got ACK from 99. RTT = 141.83333333333334
http://localhost:8383./network.js:419 [203977]: 0: got ACK from 99. RTT = 133.94444444444446
http://localhost:8383./network.js:419 [204041]: 9: got ACK from 90. RTT = 261.1111111111111
http://localhost:8383./network.js:419 [204089]: 0: got ACK from 99. RTT = 131.5
http://localhost:8383./network.js:419 [204141]: 9: got ACK from 90. RTT = 202.77777777777777
http://localhost:8383./network.js:419 [204160]: 0: got ACK from 99. RTT = 136.63888888888889
http://localhost:8383./network.js:419 [204241]: 9: got ACK from 90. RTT = 202.77777777777777
http://localhost:8383./network.js:419 [204271]: 0: got ACK from 99. RTT = 134.16666666666666
http://localhost:8383./network.js:419 [204341]: 9: got ACK from 90. RTT = 202.77777777777777
http://localhost:8383./network.js:419 [204342]: 0: got ACK from 99. RTT = 133.36111111111111
http://localhost:8383./network.js:419 [204453]: 0: got ACK from 99. RTT = 124.94444444444444
http://localhost:8383./network.js:419 [204483]: 0: got ACK from 99. RTT = 134.5
http://localhost:8383./network.js:419 [204595]: 0: got ACK from 99. RTT = 126.38888888888889
http://localhost:8383./network.js:419 [204641]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [204666]: 0: got ACK from 99. RTT = 136.38888888888889
http://localhost:8383./network.js:419 [204671]: 9: got ACK from 90. RTT = 206.36111111111111
http://localhost:8383./network.js:419 [204777]: 0: got ACK from 99. RTT = 128.77777777777777
http://localhost:8383./network.js:419 [204841]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [204848]: 0: got ACK from 99. RTT = 139.08333333333334
http://localhost:8383./network.js:419 [204941]: 9: got ACK from 90. RTT = 208.33333333333334
http://localhost:8383./network.js:419 [204959]: 0: got ACK from 99. RTT = 131.05555555555554
http://localhost:8383./network.js:419 [205141]: 9: got ACK from 90. RTT = 211.08333333333334
http://localhost:8383./network.js:419 [205153]: 0: got ACK from 99. RTT = 133.05555555555554
http://localhost:8383./network.js:419 [205183]: 0: got ACK from 99. RTT = 131.08333333333334
http://localhost:8383./network.js:419 [205241]: 9: got ACK from 90. RTT = 210.80555555555554
http://localhost:8383./network.js:419 [205295]: 0: got ACK from 99. RTT = 131.94444444444446
http://localhost:8383./network.js:419 [205341]: 9: got ACK from 90. RTT = 211.11111111111111
http://localhost:8383./network.js:419 [205447]: 0: got ACK from 99. RTT = 133.36111111111111
http://localhost:8383./network.js:419 [205477]: 0: got ACK from 99. RTT = 131.08333333333334
http://localhost:8383./network.js:419 [205541]: 9: got ACK from 90. RTT = 213.88888888888889
http://localhost:8383./network.js:419 [205589]: 0: got ACK from 99. RTT = 131.08333333333334
http://localhost:8383./network.js:419 [205641]: 9: got ACK from 90. RTT = 213.86111111111111
http://localhost:8383./network.js:419 [205671]: 9: got ACK from 90. RTT = 186.94444444444446
http://localhost:8383./network.js:419 [205741]: 0: got ACK from 99. RTT = 133.33333333333334
http://localhost:8383./network.js:419 [205742]: 9: got ACK from 90. RTT = 213.91666666666666
http://localhost:8383./network.js:419 [205771]: 0: got ACK from 99. RTT = 131.08333333333334
http://localhost:8383./network.js:419 [205841]: 9: got ACK from 90. RTT = 183.33333333333334
http://localhost:8383./network.js:419 [205883]: 0: got ACK from 99. RTT = 131.38888888888889
http://localhost:8383./network.js:419 [205941]: 9: got ACK from 90. RTT = 216.66666666666666
http://localhost:8383./network.js:419 [205995]: 0: got ACK from 99. RTT = 131.41666666666666
http://localhost:8383./network.js:419 [206041]: 9: got ACK from 90. RTT = 172.22222222222223
http://localhost:8383./network.js:419 [206071]: 9: got ACK from 90. RTT = 178.61111111111111
http://localhost:8383./network.js:419 [206142]: 9: got ACK from 90. RTT = 219.47222222222223
http://localhost:8383./network.js:419 [206147]: 0: got ACK from 99. RTT = 132.83333333333334
http://localhost:8383./network.js:419 [206177]: 0: got ACK from 99. RTT = 131.41666666666666
http://localhost:8383./network.js:419 [206180]: 9: got ACK from 90. RTT = 162.19444444444446
http://localhost:8383./network.js:419 [206248]: 0: got ACK from 99. RTT = 130.58333333333334
http://localhost:8383./network.js:419 [206261]: 9: got ACK from 90. RTT = 220
http://localhost:8383./network.js:419 [206278]: 0: got ACK from 99. RTT = 128.33333333333334
http://localhost:8383./network.js:419 [206300]: 9: got ACK from 90. RTT = 193.16666666666666
http://localhost:8383./network.js:419 [206349]: 0: got ACK from 99. RTT = 127.5
http://localhost:8383./network.js:419 [206379]: 0: got ACK from 99. RTT = 126.05555555555556