-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathout.log
4954 lines (4953 loc) · 337 KB
/
out.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Ex1 (OOP) Simulator log: stage B5.json, output.csv
0.0,OOP_Ex1_Elevator_Simulator
0.0,Simulated Building, Building [-10,100]
0) ex1.Elevator_A, Elev_, id,0, speed, 9.0, open: 1.1111111111111112, start: 1.6666666666666667, close: 1.1111111111111112, stop: 1.6666666666666667
1) ex1.Elevator_A, Elev_, id,1, speed, 7.0, open: 1.4285714285714286, start: 2.142857142857143, close: 1.4285714285714286, stop: 2.142857142857143
2) ex1.Elevator_A, Elev_, id,2, speed, 5.0, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
3) ex1.Elevator_A, Elev_, id,3, speed, 5.0, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
4) ex1.Elevator_A, Elev_, id,4, speed, 3.0, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
5) ex1.Elevator_A, Elev_, id,5, speed, 3.0, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
6) ex1.Elevator_A, Elev_, id,6, speed, 1.5, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
7) ex1.Elevator_A, Elev_, id,7, speed, 9.0, open: 1.1111111111111112, start: 1.6666666666666667, close: 1.1111111111111112, stop: 1.6666666666666667
8) ex1.Elevator_A, Elev_, id,8, speed, 9.0, open: 1.1111111111111112, start: 1.6666666666666667, close: 1.1111111111111112, stop: 1.6666666666666667
9) ex1.Elevator_A, Elev_, id,9, speed, 2.0, open: 2.0, start: 3.0, close: 2.0, stop: 3.0
0.0,Simulated Period starTime,0.0, endTime,3719.437366, dt,1.0
0.0,Simulated calls,Elevator log, size: 1000
0.0,**** Simulation starts!! ****
5.0,Elevator call,4.181791417,-7,-4,1,1, got allocated to elevator, 1
5.0, elevID,1, pos,0, cmd, goto,-7
10.0,Elevator call,9.088234751,-8,24,1,2, got allocated to elevator, 2
10.0, elevID,2, pos,0, cmd, goto,-8
14.0,Elev,1, arrived at src, -7, Elevator call,4.181791417,-7,-4,2,1
14.0, elevID,1, pos,-7, cmd, goto,-4
22.0,Elev,1, arrived at dest, -4, this call is done!, Elevator call,4.181791417,-7,-4,3,1, Done, dt, 17.818208583
22.0,Elev,2, arrived at src, -8, Elevator call,9.088234751,-8,24,2,2
22.0, elevID,2, pos,-8, cmd, goto,24
24.0,Elevator call,23.23592412,-5,-3,1,3, got allocated to elevator, 3
24.0, elevID,3, pos,0, cmd, goto,-5
26.0,Elevator call,25.40148987,-4,86,1,4, got allocated to elevator, 4
26.0, elevID,4, pos,0, cmd, goto,-4
27.0,Elevator call,26.51034155,-3,-4,1,0, got allocated to elevator, 0
27.0, elevID,0, pos,0, cmd, goto,-3
33.0,Elev,0, arrived at src, -3, Elevator call,26.51034155,-3,-4,2,0
33.0, elevID,0, pos,-3, cmd, goto,-4
35.0,Elev,3, arrived at src, -5, Elevator call,23.23592412,-5,-3,2,3
35.0, elevID,3, pos,-5, cmd, goto,-3
38.0,Elev,4, arrived at src, -4, Elevator call,25.40148987,-4,86,2,4
38.0, elevID,4, pos,-4, cmd, goto,86
39.0,Elev,0, arrived at dest, -4, this call is done!, Elevator call,26.51034155,-3,-4,3,0, Done, dt, 12.48965845
39.0,Elev,2, arrived at dest, 24, this call is done!, Elevator call,9.088234751,-8,24,3,2, Done, dt, 29.911765249
46.0,Elev,3, arrived at dest, -3, this call is done!, Elevator call,23.23592412,-5,-3,3,3, Done, dt, 22.76407588
48.0,Elevator call,47.13611508,-4,93,1,5, got allocated to elevator, 5
48.0, elevID,5, pos,0, cmd, goto,-4
49.0,Elevator call,48.17946318,-7,5,1,6, got allocated to elevator, 6
49.0, elevID,6, pos,0, cmd, goto,-7
60.0,Elevator call,59.41774734,-6,16,1,7, got allocated to elevator, 7
60.0,Elevator call,59.88328914,-1,95,1,0, got allocated to elevator, 0
60.0, elevID,0, pos,-4, cmd, goto,-1
60.0,Elev,5, arrived at src, -4, Elevator call,47.13611508,-4,93,2,5
60.0, elevID,5, pos,-4, cmd, goto,93
60.0, elevID,7, pos,0, cmd, goto,-6
62.0,Elevator call,61.94089619,-3,60,1,8, got allocated to elevator, 8
62.0, elevID,8, pos,0, cmd, goto,-3
64.0,Elev,6, arrived at src, -7, Elevator call,48.17946318,-7,5,2,6
64.0, elevID,6, pos,-7, cmd, goto,5
66.0,Elevator call,65.68076514,-2,61,1,9, got allocated to elevator, 9
66.0,Elev,0, arrived at src, -1, Elevator call,59.88328914,-1,95,2,0
66.0, elevID,0, pos,-1, cmd, goto,95
66.0, elevID,9, pos,0, cmd, goto,-2
67.0,Elev,7, arrived at src, -6, Elevator call,59.41774734,-6,16,2,7
67.0, elevID,7, pos,-6, cmd, goto,16
68.0,Elev,8, arrived at src, -3, Elevator call,61.94089619,-3,60,2,8
68.0, elevID,8, pos,-3, cmd, goto,60
75.0,Elev,7, arrived at dest, 16, this call is done!, Elevator call,59.41774734,-6,16,3,7, Done, dt, 15.582252660000002
76.0,Elevator call,75.72747458,-3,78,1,0, got allocated to elevator, 0
77.0,Elev,9, arrived at src, -2, Elevator call,65.68076514,-2,61,2,9
77.0, elevID,9, pos,-2, cmd, goto,61
78.0,Elev,4, arrived at dest, 86, this call is done!, Elevator call,25.40148987,-4,86,3,4, Done, dt, 52.59851013
81.0,Elevator call,80.54056995,-1,-2,1,0, got allocated to elevator, 0
81.0,Elev,8, arrived at dest, 60, this call is done!, Elevator call,61.94089619,-3,60,3,8, Done, dt, 19.059103810000003
82.0,Elevator call,81.8361088,-4,71,1,1, got allocated to elevator, 1
82.0,Elev,1, arrived at src, -4, Elevator call,81.8361088,-4,71,2,1
82.0, elevID,1, pos,-4, cmd, goto,71
82.0,Elev,6, arrived at dest, 5, this call is done!, Elevator call,48.17946318,-7,5,3,6, Done, dt, 33.82053682
83.0,Elevator call,82.22215324,-4,84,1,2, got allocated to elevator, 2
83.0,Elevator call,82.93671013,-4,46,1,3, got allocated to elevator, 3
83.0,Elev,0, arrived at dest, 95, this call is done!, Elevator call,59.88328914,-1,95,3,0, Done, dt, 23.116710859999998
83.0, elevID,0, pos,95, cmd, goto,-1
83.0, elevID,2, pos,24, cmd, goto,-4
83.0, elevID,3, pos,-3, cmd, goto,-4
93.0,Elevator call,92.10943365,-8,49,1,4, got allocated to elevator, 4
93.0, elevID,4, pos,86, cmd, goto,-8
94.0,Elev,3, arrived at src, -4, Elevator call,82.93671013,-4,46,2,3
94.0, elevID,3, pos,-4, cmd, goto,46
96.0,Elevator call,95.13692147,-5,2,1,5, got allocated to elevator, 5
99.0,Elev,2, arrived at src, -4, Elevator call,82.22215324,-4,84,2,2
99.0, elevID,2, pos,-4, cmd, goto,84
100.0,Elev,0, arrived at src, -1, Elevator call,80.54056995,-1,-2,2,0
100.0, elevID,0, pos,-1, cmd, goto,-2
100.0,Elev,1, arrived at dest, 71, this call is done!, Elevator call,81.8361088,-4,71,3,1, Done, dt, 18.163891199999995
103.0,Elev,5, arrived at dest, 93, this call is done!, Elevator call,47.13611508,-4,93,3,5, Done, dt, 55.86388492
103.0, elevID,5, pos,93, cmd, goto,-5
104.0,Elevator call,103.5004013,26,49,1,0, got allocated to elevator, 0
106.0,Elev,0, arrived at dest, -2, this call is done!, Elevator call,80.54056995,-1,-2,3,0, Done, dt, 25.459430049999995
106.0, elevID,0, pos,-2, cmd, goto,-3
112.0,Elev,0, arrived at src, -3, Elevator call,75.72747458,-3,78,2,0
112.0, elevID,0, pos,-3, cmd, goto,26
114.0,Elev,3, arrived at dest, 46, this call is done!, Elevator call,82.93671013,-4,46,3,3, Done, dt, 31.063289870000006
119.0,Elev,9, arrived at dest, 61, this call is done!, Elevator call,65.68076514,-2,61,3,9, Done, dt, 53.319234859999995
121.0,Elev,0, arrived at src, 26, Elevator call,103.5004013,26,49,2,0
121.0, elevID,0, pos,26, cmd, goto,49
122.0,Elevator call,121.3434097,-5,-1,1,6, got allocated to elevator, 6
122.0, elevID,6, pos,5, cmd, goto,-5
124.0,Elevator call,123.8090976,-8,-7,1,7, got allocated to elevator, 7
124.0, elevID,7, pos,16, cmd, goto,-8
127.0,Elev,2, arrived at dest, 84, this call is done!, Elevator call,82.22215324,-4,84,3,2, Done, dt, 44.77784676
130.0,Elev,0, arrived at dest, 49, this call is done!, Elevator call,103.5004013,26,49,3,0, Done, dt, 26.499598700000007
130.0, elevID,0, pos,49, cmd, goto,78
133.0,Elevator call,132.1102171,-2,-3,1,0, got allocated to elevator, 0
133.0,Elevator call,132.774248,-8,11,1,8, got allocated to elevator, 8
133.0,Elev,7, arrived at src, -8, Elevator call,123.8090976,-8,-7,2,7
133.0, elevID,7, pos,-8, cmd, goto,-7
133.0, elevID,8, pos,60, cmd, goto,-8
134.0,Elevator call,133.0964944,-6,-5,1,9, got allocated to elevator, 9
134.0, elevID,9, pos,61, cmd, goto,-6
135.0,Elev,4, arrived at src, -8, Elevator call,92.10943365,-8,49,2,4
135.0, elevID,4, pos,-8, cmd, goto,49
139.0,Elev,0, arrived at dest, 78, this call is done!, Elevator call,75.72747458,-3,78,3,0, Done, dt, 63.272525419999994
139.0, elevID,0, pos,78, cmd, goto,-2
139.0,Elev,6, arrived at src, -5, Elevator call,121.3434097,-5,-1,2,6
139.0, elevID,6, pos,-5, cmd, goto,-1
139.0,Elev,7, arrived at dest, -7, this call is done!, Elevator call,123.8090976,-8,-7,3,7, Done, dt, 15.190902399999999
140.0,Elevator call,139.3519589,-6,24,1,0, got allocated to elevator, 0
141.0,Elevator call,140.0777448,-7,-9,1,0, got allocated to elevator, 0
146.0,Elev,5, arrived at src, -5, Elevator call,95.13692147,-5,2,2,5
146.0, elevID,5, pos,-5, cmd, goto,2
147.0,Elev,8, arrived at src, -8, Elevator call,132.774248,-8,11,2,8
147.0, elevID,8, pos,-8, cmd, goto,11
152.0,Elev,6, arrived at dest, -1, this call is done!, Elevator call,121.3434097,-5,-1,3,6, Done, dt, 30.656590300000005
154.0,Elev,0, arrived at src, -2, Elevator call,132.1102171,-2,-3,2,0
154.0, elevID,0, pos,-2, cmd, goto,-3
155.0,Elev,8, arrived at dest, 11, this call is done!, Elevator call,132.774248,-8,11,3,8, Done, dt, 22.225752
159.0,Elevator call,158.5773179,-2,55,1,0, got allocated to elevator, 0
159.0,Elev,5, arrived at dest, 2, this call is done!, Elevator call,95.13692147,-5,2,3,5, Done, dt, 63.863078529999996
160.0,Elev,0, arrived at dest, -3, this call is done!, Elevator call,132.1102171,-2,-3,3,0, Done, dt, 27.8897829
160.0, elevID,0, pos,-3, cmd, goto,-6
163.0,Elevator call,162.5783865,-3,17,1,1, got allocated to elevator, 1
163.0, elevID,1, pos,71, cmd, goto,-3
164.0,Elevator call,163.9130882,50,66,1,1, got allocated to elevator, 1
, elevID,1, pos,71, cmd, stop,50
164.0,Elev,4, arrived at dest, 49, this call is done!, Elevator call,92.10943365,-8,49,3,4, Done, dt, 71.89056635
166.0,Elev,0, arrived at src, -6, Elevator call,139.3519589,-6,24,2,0
166.0, elevID,0, pos,-6, cmd, goto,-7
167.0,Elevator call,166.5792335,14,-9,1,0, got allocated to elevator, 0
172.0,Elevator call,171.1320552,-3,96,1,2, got allocated to elevator, 2
172.0,Elev,0, arrived at src, -7, Elevator call,140.0777448,-7,-9,2,0
172.0, elevID,0, pos,-7, cmd, goto,-9
172.0, elevID,2, pos,84, cmd, goto,-3
174.0,Elevator call,173.2386182,-3,93,1,3, got allocated to elevator, 3
174.0,Elev,1, arrived at src, 50, Elevator call,163.9130882,50,66,2,1
174.0, elevID,1, pos,50, cmd, goto,-3
174.0, elevID,3, pos,46, cmd, goto,-3
176.0,Elevator call,175.2586539,80,90,1,0, got allocated to elevator, 0
177.0,Elevator call,176.0558444,-4,-6,1,0, got allocated to elevator, 0
178.0,Elev,0, arrived at dest, -9, this call is done!, Elevator call,140.0777448,-7,-9,3,0, Done, dt, 37.922255199999995
178.0, elevID,0, pos,-9, cmd, goto,-4
178.0,Elev,9, arrived at src, -6, Elevator call,133.0964944,-6,-5,2,9
178.0, elevID,9, pos,-6, cmd, goto,-5
181.0,Elevator call,180.324503,-1,97,1,4, got allocated to elevator, 4
181.0, elevID,4, pos,49, cmd, goto,-1
185.0,Elev,0, arrived at src, -4, Elevator call,176.0558444,-4,-6,2,0
185.0, elevID,0, pos,-4, cmd, goto,-2
189.0,Elev,1, arrived at src, -3, Elevator call,162.5783865,-3,17,2,1
189.0, elevID,1, pos,-3, cmd, goto,17
189.0,Elev,9, arrived at dest, -5, this call is done!, Elevator call,133.0964944,-6,-5,3,9, Done, dt, 55.90350559999999
191.0,Elev,0, arrived at src, -2, Elevator call,158.5773179,-2,55,2,0
191.0, elevID,0, pos,-2, cmd, goto,14
192.0,Elevator call,191.6681651,-6,41,1,5, got allocated to elevator, 5
192.0, elevID,5, pos,2, cmd, goto,-6
194.0,Elevator call,193.1424188,-4,80,1,0, got allocated to elevator, 0
194.0,Elev,3, arrived at src, -3, Elevator call,173.2386182,-3,93,2,3
194.0, elevID,3, pos,-3, cmd, goto,93
195.0,Elevator call,194.5707568,-7,55,1,6, got allocated to elevator, 6
195.0, elevID,6, pos,-1, cmd, goto,-7
197.0,Elevator call,196.8933046,0,74,1,2, got allocated to elevator, 2
199.0,Elev,0, arrived at src, 14, Elevator call,166.5792335,14,-9,2,0
199.0, elevID,0, pos,14, cmd, goto,24
199.0,Elev,1, arrived at dest, 17, this call is done!, Elevator call,162.5783865,-3,17,3,1, Done, dt, 36.42161350000001
199.0, elevID,1, pos,17, cmd, goto,66
200.0,Elevator call,199.3533828,-5,-7,1,0, got allocated to elevator, 0
200.0,Elev,2, arrived at src, -3, Elevator call,171.1320552,-3,96,2,2
200.0, elevID,2, pos,-3, cmd, goto,0
203.0,Elevator call,202.0588368,2,81,1,3, got allocated to elevator, 3
205.0,Elev,5, arrived at src, -6, Elevator call,191.6681651,-6,41,2,5
205.0, elevID,5, pos,-6, cmd, goto,41
206.0,Elev,0, arrived at dest, 24, this call is done!, Elevator call,139.3519589,-6,24,3,0, Done, dt, 66.6480411
206.0, elevID,0, pos,24, cmd, goto,55
208.0,Elev,4, arrived at src, -1, Elevator call,180.324503,-1,97,2,4
208.0, elevID,4, pos,-1, cmd, goto,97
209.0,Elev,6, arrived at src, -7, Elevator call,194.5707568,-7,55,2,6
209.0, elevID,6, pos,-7, cmd, goto,55
211.0,Elev,2, arrived at src, 0, Elevator call,196.8933046,0,74,2,2
211.0, elevID,2, pos,0, cmd, goto,74
214.0,Elevator call,213.0692934,-1,2,1,0, got allocated to elevator, 0
214.0,Elev,1, arrived at dest, 66, this call is done!, Elevator call,163.9130882,50,66,3,1, Done, dt, 50.086911799999996
215.0,Elevator call,214.1709874,-1,55,1,7, got allocated to elevator, 7
215.0,Elev,0, arrived at dest, 55, this call is done!, Elevator call,158.5773179,-2,55,3,0, Done, dt, 56.4226821
215.0, elevID,0, pos,55, cmd, goto,80
215.0, elevID,7, pos,-7, cmd, goto,-1
222.0,Elev,7, arrived at src, -1, Elevator call,214.1709874,-1,55,2,7
222.0, elevID,7, pos,-1, cmd, goto,55
224.0,Elev,0, arrived at src, 80, Elevator call,175.2586539,80,90,2,0
224.0, elevID,0, pos,80, cmd, goto,90
224.0,Elev,3, arrived at dest, 93, this call is done!, Elevator call,173.2386182,-3,93,3,3, Done, dt, 50.76138180000001
224.0, elevID,3, pos,93, cmd, goto,2
230.0,Elevator call,229.6291324,20,34,1,0, got allocated to elevator, 0
231.0,Elevator call,230.3311762,-6,3,1,8, got allocated to elevator, 8
231.0,Elev,0, arrived at dest, 90, this call is done!, Elevator call,175.2586539,80,90,3,0, Done, dt, 55.74134609999999
231.0, elevID,0, pos,90, cmd, goto,20
231.0,Elev,5, arrived at dest, 41, this call is done!, Elevator call,191.6681651,-6,41,3,5, Done, dt, 39.33183489999999
231.0, elevID,8, pos,11, cmd, goto,-6
234.0,Elev,7, arrived at dest, 55, this call is done!, Elevator call,214.1709874,-1,55,3,7, Done, dt, 19.8290126
235.0,Elevator call,234.1884667,-8,63,1,9, got allocated to elevator, 9
235.0, elevID,9, pos,-5, cmd, goto,-8
236.0,Elev,2, arrived at dest, 74, this call is done!, Elevator call,196.8933046,0,74,3,2, Done, dt, 39.10669540000001
236.0, elevID,2, pos,74, cmd, goto,96
237.0,Elevator call,236.1960352,-1,4,1,0, got allocated to elevator, 0
239.0,Elev,8, arrived at src, -6, Elevator call,230.3311762,-6,3,2,8
239.0, elevID,8, pos,-6, cmd, goto,3
245.0,Elev,0, arrived at src, 20, Elevator call,229.6291324,20,34,2,0
245.0, elevID,0, pos,20, cmd, goto,-1
246.0,Elevator call,245.0011818,-2,-7,1,0, got allocated to elevator, 0
246.0,Elev,8, arrived at dest, 3, this call is done!, Elevator call,230.3311762,-6,3,3,8, Done, dt, 15.668823800000013
247.0,Elev,9, arrived at src, -8, Elevator call,234.1884667,-8,63,2,9
247.0, elevID,9, pos,-8, cmd, goto,63
248.0,Elevator call,247.1593766,-6,74,1,1, got allocated to elevator, 1
248.0, elevID,1, pos,66, cmd, goto,-6
249.0,Elevator call,248.1361864,0,1,1,4, got allocated to elevator, 4
251.0,Elev,2, arrived at dest, 96, this call is done!, Elevator call,171.1320552,-3,96,3,2, Done, dt, 79.8679448
251.0,Elev,4, arrived at dest, 97, this call is done!, Elevator call,180.324503,-1,97,3,4, Done, dt, 70.67549700000001
251.0, elevID,4, pos,97, cmd, goto,0
253.0,Elev,0, arrived at src, -1, Elevator call,213.0692934,-1,2,2,0
253.0,Elev,0, arrived at src, -1, Elevator call,236.1960352,-1,4,2,0
253.0, elevID,0, pos,-1, cmd, goto,-2
253.0,Elev,3, arrived at src, 2, Elevator call,202.0588368,2,81,2,3
253.0, elevID,3, pos,2, cmd, goto,81
256.0,Elevator call,255.0882668,-6,68,1,2, got allocated to elevator, 2
256.0,Elevator call,255.6845165,-7,7,1,3, got allocated to elevator, 3
256.0, elevID,2, pos,96, cmd, goto,-6
259.0,Elev,0, arrived at src, -2, Elevator call,245.0011818,-2,-7,2,0
259.0, elevID,0, pos,-2, cmd, goto,-4
261.0,Elev,6, arrived at dest, 55, this call is done!, Elevator call,194.5707568,-7,55,3,6, Done, dt, 66.4292432
263.0,Elevator call,262.0684767,-2,-3,1,0, got allocated to elevator, 0
265.0,Elev,0, arrived at src, -4, Elevator call,193.1424188,-4,80,2,0
265.0, elevID,0, pos,-4, cmd, goto,-5
266.0,Elevator call,265.2648043,-6,90,1,4, got allocated to elevator, 4
266.0,Elevator call,265.7078421,-9,49,1,5, got allocated to elevator, 5
266.0,Elev,1, arrived at src, -6, Elevator call,247.1593766,-6,74,2,1
266.0, elevID,1, pos,-6, cmd, goto,74
266.0, elevID,5, pos,41, cmd, goto,-9
271.0,Elev,0, arrived at src, -5, Elevator call,199.3533828,-5,-7,2,0
271.0, elevID,0, pos,-5, cmd, goto,-6
272.0,Elevator call,271.1769686,0,-7,1,1, got allocated to elevator, 1
277.0,Elev,0, arrived at dest, -6, this call is done!, Elevator call,176.0558444,-4,-6,3,0, Done, dt, 100.94415559999999
277.0, elevID,0, pos,-6, cmd, goto,-7
279.0,Elev,3, arrived at dest, 81, this call is done!, Elevator call,202.0588368,2,81,3,3, Done, dt, 76.9411632
279.0, elevID,3, pos,81, cmd, goto,-7
283.0,Elev,0, arrived at dest, -7, this call is done!, Elevator call,199.3533828,-5,-7,3,0, Done, dt, 83.64661720000001
283.0,Elev,0, arrived at dest, -7, this call is done!, Elevator call,245.0011818,-2,-7,3,0, Done, dt, 37.99881819999999
283.0, elevID,0, pos,-7, cmd, goto,-9
285.0,Elev,1, arrived at dest, 74, this call is done!, Elevator call,247.1593766,-6,74,3,1, Done, dt, 37.8406234
285.0, elevID,1, pos,74, cmd, goto,0
287.0,Elevator call,286.6733773,-6,-2,1,1, got allocated to elevator, 1
287.0,Elev,2, arrived at src, -6, Elevator call,255.0882668,-6,68,2,2
287.0, elevID,2, pos,-6, cmd, goto,68
288.0,Elevator call,287.7026182,-4,32,1,6, got allocated to elevator, 6
288.0,Elevator call,287.7486589,-3,75,1,7, got allocated to elevator, 7
288.0, elevID,6, pos,55, cmd, goto,-4
288.0, elevID,7, pos,55, cmd, goto,-3
289.0,Elev,0, arrived at dest, -9, this call is done!, Elevator call,166.5792335,14,-9,3,0, Done, dt, 122.42076650000001
289.0, elevID,0, pos,-9, cmd, goto,-2
290.0,Elevator call,289.2408242,-1,92,1,0, got allocated to elevator, 0
291.0,Elevator call,290.4617878,-1,-8,1,0, got allocated to elevator, 0
292.0,Elevator call,291.3013233,-6,86,1,8, got allocated to elevator, 8
292.0, elevID,8, pos,3, cmd, goto,-6
293.0,Elev,5, arrived at src, -9, Elevator call,265.7078421,-9,49,2,5
293.0, elevID,5, pos,-9, cmd, goto,49
293.0,Elev,9, arrived at dest, 63, this call is done!, Elevator call,234.1884667,-8,63,3,9, Done, dt, 58.81153330000001
294.0,Elev,4, arrived at src, 0, Elevator call,248.1361864,0,1,2,4
294.0, elevID,4, pos,0, cmd, goto,-6
296.0,Elev,0, arrived at src, -2, Elevator call,262.0684767,-2,-3,2,0
296.0, elevID,0, pos,-2, cmd, goto,-1
297.0,Elevator call,296.4464107,-8,-4,1,9, got allocated to elevator, 9
297.0, elevID,9, pos,63, cmd, goto,-8
299.0,Elev,8, arrived at src, -6, Elevator call,291.3013233,-6,86,2,8
299.0, elevID,8, pos,-6, cmd, goto,86
300.0,Elevator call,299.5038593,-6,-5,1,0, got allocated to elevator, 0
300.0,Elev,7, arrived at src, -3, Elevator call,287.7486589,-3,75,2,7
300.0, elevID,7, pos,-3, cmd, goto,75
302.0,Elev,0, arrived at src, -1, Elevator call,289.2408242,-1,92,2,0
302.0,Elev,0, arrived at src, -1, Elevator call,290.4617878,-1,-8,2,0
302.0, elevID,0, pos,-1, cmd, goto,2
303.0,Elevator call,302.9377381,-8,-3,1,1, got allocated to elevator, 1
303.0,Elev,1, arrived at src, 0, Elevator call,271.1769686,0,-7,2,1
303.0, elevID,1, pos,0, cmd, goto,-6
306.0,Elev,4, arrived at src, -6, Elevator call,265.2648043,-6,90,2,4
306.0, elevID,4, pos,-6, cmd, goto,1
307.0,Elevator call,306.6526216,-5,98,1,2, got allocated to elevator, 2
307.0,Elev,3, arrived at src, -7, Elevator call,255.6845165,-7,7,2,3
307.0, elevID,3, pos,-7, cmd, goto,7
308.0,Elev,0, arrived at dest, 2, this call is done!, Elevator call,213.0692934,-1,2,3,0, Done, dt, 94.93070660000001
308.0, elevID,0, pos,2, cmd, goto,4
310.0,Elevator call,309.2553589,-6,18,1,3, got allocated to elevator, 3
310.0, elevID,3, pos,-7, cmd, stop,-6
311.0,Elev,1, arrived at src, -6, Elevator call,286.6733773,-6,-2,2,1
311.0, elevID,1, pos,-6, cmd, goto,-7
312.0,Elev,2, arrived at dest, 68, this call is done!, Elevator call,255.0882668,-6,68,3,2, Done, dt, 56.911733199999986
312.0, elevID,2, pos,68, cmd, goto,-5
314.0,Elev,0, arrived at dest, 4, this call is done!, Elevator call,236.1960352,-1,4,3,0, Done, dt, 77.80396479999999
314.0, elevID,0, pos,4, cmd, goto,34
315.0,Elevator call,314.8148906,28,50,1,0, got allocated to elevator, 0
315.0, elevID,0, pos,4, cmd, stop,28
315.0,Elev,7, arrived at dest, 75, this call is done!, Elevator call,287.7486589,-3,75,3,7, Done, dt, 27.25134109999999
315.0,Elev,8, arrived at dest, 86, this call is done!, Elevator call,291.3013233,-6,86,3,8, Done, dt, 23.69867670000002
318.0,Elev,3, arrived at src, -6, Elevator call,309.2553589,-6,18,2,3
318.0, elevID,3, pos,-6, cmd, goto,7
319.0,Elev,1, arrived at dest, -7, this call is done!, Elevator call,271.1769686,0,-7,3,1, Done, dt, 47.82303139999999
319.0, elevID,1, pos,-7, cmd, goto,-8
319.0,Elev,4, arrived at dest, 1, this call is done!, Elevator call,248.1361864,0,1,3,4, Done, dt, 70.86381359999999
319.0, elevID,4, pos,1, cmd, goto,90
320.0,Elevator call,319.9212737,-1,17,1,4, got allocated to elevator, 4
322.0,Elevator call,321.1484839,-2,-7,1,0, got allocated to elevator, 0
323.0,Elev,0, arrived at src, 28, Elevator call,314.8148906,28,50,2,0
323.0, elevID,0, pos,28, cmd, goto,34
323.0,Elev,5, arrived at dest, 49, this call is done!, Elevator call,265.7078421,-9,49,3,5, Done, dt, 57.29215790000001
324.0,Elevator call,323.5937697,0,-5,1,1, got allocated to elevator, 1
326.0,Elevator call,325.8641008,-7,-6,1,5, got allocated to elevator, 5
326.0, elevID,5, pos,49, cmd, goto,-7
327.0,Elevator call,326.8172245,18,69,1,0, got allocated to elevator, 0
327.0,Elev,1, arrived at src, -8, Elevator call,302.9377381,-8,-3,2,1
327.0, elevID,1, pos,-8, cmd, goto,-3
330.0,Elev,0, arrived at dest, 34, this call is done!, Elevator call,229.6291324,20,34,3,0, Done, dt, 100.3708676
330.0, elevID,0, pos,34, cmd, goto,50
331.0,Elevator call,330.3594558,-7,-8,1,2, got allocated to elevator, 2
331.0,Elev,3, arrived at dest, 7, this call is done!, Elevator call,255.6845165,-7,7,3,3, Done, dt, 75.3154835
331.0, elevID,3, pos,7, cmd, goto,18
335.0,Elev,1, arrived at dest, -3, this call is done!, Elevator call,302.9377381,-8,-3,3,1, Done, dt, 32.06226190000001
335.0, elevID,1, pos,-3, cmd, goto,-2
337.0,Elev,2, arrived at src, -5, Elevator call,306.6526216,-5,98,2,2
337.0, elevID,2, pos,-5, cmd, goto,-7
338.0,Elev,0, arrived at dest, 50, this call is done!, Elevator call,314.8148906,28,50,3,0, Done, dt, 23.185109399999988
338.0, elevID,0, pos,50, cmd, goto,80
338.0,Elev,6, arrived at src, -4, Elevator call,287.7026182,-4,32,2,6
338.0, elevID,6, pos,-4, cmd, goto,32
343.0,Elevator call,342.8376835,-5,9,1,6, got allocated to elevator, 6
343.0,Elev,1, arrived at dest, -2, this call is done!, Elevator call,286.6733773,-6,-2,3,1, Done, dt, 56.32662269999997
343.0, elevID,1, pos,-2, cmd, goto,0
343.0,Elev,9, arrived at src, -8, Elevator call,296.4464107,-8,-4,2,9
343.0, elevID,9, pos,-8, cmd, goto,-4
344.0,Elevator call,343.0926826,62,-2,1,3, got allocated to elevator, 3
344.0,Elev,3, arrived at dest, 18, this call is done!, Elevator call,309.2553589,-6,18,3,3, Done, dt, 34.744641100000024
344.0, elevID,3, pos,18, cmd, goto,62
346.0,Elevator call,345.5396026,-1,0,1,0, got allocated to elevator, 0
346.0,Elevator call,345.8336522,0,97,1,2, got allocated to elevator, 2
347.0,Elev,0, arrived at dest, 80, this call is done!, Elevator call,193.1424188,-4,80,3,0, Done, dt, 153.8575812
347.0, elevID,0, pos,80, cmd, goto,92
348.0,Elev,2, arrived at src, -7, Elevator call,330.3594558,-7,-8,2,2
348.0, elevID,2, pos,-7, cmd, goto,-8
351.0,Elev,1, arrived at src, 0, Elevator call,323.5937697,0,-5,2,1
351.0, elevID,1, pos,0, cmd, goto,-5
353.0,Elevator call,352.6777742,8,-2,1,7, got allocated to elevator, 7
353.0, elevID,7, pos,75, cmd, goto,8
354.0,Elev,0, arrived at dest, 92, this call is done!, Elevator call,289.2408242,-1,92,3,0, Done, dt, 64.75917579999998
354.0, elevID,0, pos,92, cmd, goto,18
355.0,Elev,5, arrived at src, -7, Elevator call,325.8641008,-7,-6,2,5
355.0, elevID,5, pos,-7, cmd, goto,-6
355.0,Elev,9, arrived at dest, -4, this call is done!, Elevator call,296.4464107,-8,-4,3,9, Done, dt, 58.5535893
359.0,Elevator call,358.045812,-2,4,1,8, got allocated to elevator, 8
359.0,Elev,1, arrived at dest, -5, this call is done!, Elevator call,323.5937697,0,-5,3,1, Done, dt, 35.406230300000004
359.0,Elev,2, arrived at dest, -8, this call is done!, Elevator call,330.3594558,-7,-8,3,2, Done, dt, 28.640544200000022
359.0, elevID,2, pos,-8, cmd, goto,0
359.0,Elev,4, arrived at dest, 90, this call is done!, Elevator call,265.2648043,-6,90,3,4, Done, dt, 93.73519570000002
359.0, elevID,4, pos,90, cmd, goto,-1
359.0, elevID,8, pos,86, cmd, goto,-2
363.0,Elev,3, arrived at src, 62, Elevator call,343.0926826,62,-2,2,3
363.0, elevID,3, pos,62, cmd, goto,-2
364.0,Elevator call,363.4001718,-5,-4,1,9, got allocated to elevator, 9
364.0, elevID,9, pos,-4, cmd, goto,-5
365.0,Elevator call,364.9921415,8,51,1,0, got allocated to elevator, 0
366.0,Elevator call,365.1533127,-7,89,1,0, got allocated to elevator, 0
366.0,Elev,5, arrived at dest, -6, this call is done!, Elevator call,325.8641008,-7,-6,3,5, Done, dt, 40.13589919999998
366.0,Elev,7, arrived at src, 8, Elevator call,352.6777742,8,-2,2,7
366.0, elevID,7, pos,8, cmd, goto,-2
368.0,Elev,0, arrived at src, 18, Elevator call,326.8172245,18,69,2,0
368.0, elevID,0, pos,18, cmd, goto,8
371.0,Elev,2, arrived at src, 0, Elevator call,345.8336522,0,97,2,2
371.0, elevID,2, pos,0, cmd, goto,97
372.0,Elev,6, arrived at dest, 32, this call is done!, Elevator call,287.7026182,-4,32,3,6, Done, dt, 84.29738179999998
372.0, elevID,6, pos,32, cmd, goto,-5
373.0,Elev,7, arrived at dest, -2, this call is done!, Elevator call,352.6777742,8,-2,3,7, Done, dt, 20.322225800000012
375.0,Elev,0, arrived at src, 8, Elevator call,364.9921415,8,51,2,0
375.0, elevID,0, pos,8, cmd, goto,-1
375.0,Elev,8, arrived at src, -2, Elevator call,358.045812,-2,4,2,8
375.0, elevID,8, pos,-2, cmd, goto,4
375.0,Elev,9, arrived at src, -5, Elevator call,363.4001718,-5,-4,2,9
375.0, elevID,9, pos,-5, cmd, goto,-4
381.0,Elevator call,380.0707449,-3,4,1,2, got allocated to elevator, 2
382.0,Elev,0, arrived at src, -1, Elevator call,345.5396026,-1,0,2,0
382.0, elevID,0, pos,-1, cmd, goto,-2
382.0,Elev,8, arrived at dest, 4, this call is done!, Elevator call,358.045812,-2,4,3,8, Done, dt, 23.954187999999988
385.0,Elevator call,384.8563212,0,29,1,3, got allocated to elevator, 3
386.0,Elev,3, arrived at dest, -2, this call is done!, Elevator call,343.0926826,62,-2,3,3, Done, dt, 42.90731740000001
386.0, elevID,3, pos,-2, cmd, goto,0
386.0,Elev,9, arrived at dest, -4, this call is done!, Elevator call,363.4001718,-5,-4,3,9, Done, dt, 22.59982819999999
388.0,Elev,0, arrived at src, -2, Elevator call,321.1484839,-2,-7,2,0
388.0, elevID,0, pos,-2, cmd, goto,-3
391.0,Elevator call,390.0961592,27,57,1,2, got allocated to elevator, 2
394.0,Elev,0, arrived at dest, -3, this call is done!, Elevator call,262.0684767,-2,-3,3,0, Done, dt, 131.93152329999998
394.0, elevID,0, pos,-3, cmd, goto,-6
396.0,Elevator call,395.4574225,-4,26,1,1, got allocated to elevator, 1
396.0,Elevator call,395.7385476,-3,78,1,2, got allocated to elevator, 2
396.0, elevID,1, pos,-5, cmd, goto,-4
397.0,Elevator call,396.4349073,-4,58,1,3, got allocated to elevator, 3
397.0,Elev,3, arrived at src, 0, Elevator call,384.8563212,0,29,2,3
397.0, elevID,3, pos,0, cmd, goto,29
400.0,Elev,0, arrived at src, -6, Elevator call,299.5038593,-6,-5,2,0
400.0, elevID,0, pos,-6, cmd, goto,-7
400.0,Elev,4, arrived at src, -1, Elevator call,319.9212737,-1,17,2,4
400.0, elevID,4, pos,-1, cmd, goto,17
401.0,Elev,2, arrived at dest, 97, this call is done!, Elevator call,345.8336522,0,97,3,2, Done, dt, 55.16634779999998
401.0, elevID,2, pos,97, cmd, goto,98
404.0,Elev,1, arrived at src, -4, Elevator call,395.4574225,-4,26,2,1
404.0, elevID,1, pos,-4, cmd, goto,26
406.0,Elev,0, arrived at dest, -7, this call is done!, Elevator call,321.1484839,-2,-7,3,0, Done, dt, 84.85151610000003
406.0,Elev,0, arrived at src, -7, Elevator call,365.1533127,-7,89,2,0
406.0, elevID,0, pos,-7, cmd, goto,-8
407.0,Elev,6, arrived at src, -5, Elevator call,342.8376835,-5,9,2,6
407.0, elevID,6, pos,-5, cmd, goto,9
412.0,Elevator call,411.2807706,-4,68,1,4, got allocated to elevator, 4
412.0,Elev,0, arrived at dest, -8, this call is done!, Elevator call,290.4617878,-1,-8,3,0, Done, dt, 121.53821219999998
412.0, elevID,0, pos,-8, cmd, goto,-5
412.0,Elev,2, arrived at dest, 98, this call is done!, Elevator call,306.6526216,-5,98,3,2, Done, dt, 105.34737840000003
412.0, elevID,2, pos,98, cmd, goto,27
413.0,Elev,3, arrived at dest, 29, this call is done!, Elevator call,384.8563212,0,29,3,3, Done, dt, 28.143678799999975
413.0, elevID,3, pos,29, cmd, goto,-4
414.0,Elevator call,413.6312136,-7,35,1,5, got allocated to elevator, 5
414.0, elevID,5, pos,-6, cmd, goto,-7
415.0,Elevator call,414.2750727,-7,-9,1,0, got allocated to elevator, 0
416.0,Elev,1, arrived at dest, 26, this call is done!, Elevator call,395.4574225,-4,26,3,1, Done, dt, 20.542577499999993
416.0,Elev,4, arrived at dest, 17, this call is done!, Elevator call,319.9212737,-1,17,3,4, Done, dt, 96.07872630000003
416.0, elevID,4, pos,17, cmd, goto,-4
418.0,Elev,0, arrived at dest, -5, this call is done!, Elevator call,299.5038593,-6,-5,3,0, Done, dt, 118.49614070000001
418.0, elevID,0, pos,-5, cmd, goto,0
420.0,Elevator call,419.4506691,-4,-5,1,2, got allocated to elevator, 2
425.0,Elev,0, arrived at dest, 0, this call is done!, Elevator call,345.5396026,-1,0,3,0, Done, dt, 79.46039739999998
425.0, elevID,0, pos,0, cmd, goto,51
425.0,Elev,5, arrived at src, -7, Elevator call,413.6312136,-7,35,2,5
425.0, elevID,5, pos,-7, cmd, goto,35
427.0,Elev,6, arrived at dest, 9, this call is done!, Elevator call,342.8376835,-5,9,3,6, Done, dt, 84.16231649999997
429.0,Elevator call,428.5102982,0,50,1,5, got allocated to elevator, 5
429.0, elevID,5, pos,-7, cmd, stop,0
430.0,Elevator call,429.0659883,-3,-4,1,3, got allocated to elevator, 3
430.0,Elev,3, arrived at src, -4, Elevator call,396.4349073,-4,58,2,3
430.0, elevID,3, pos,-4, cmd, goto,-3
433.0,Elev,4, arrived at src, -4, Elevator call,411.2807706,-4,68,2,4
433.0, elevID,4, pos,-4, cmd, goto,68
434.0,Elevator call,433.8181105,64,-4,1,6, got allocated to elevator, 6
434.0, elevID,6, pos,9, cmd, goto,64
435.0,Elevator call,434.3958315,-5,-4,1,7, got allocated to elevator, 7
435.0, elevID,7, pos,-2, cmd, goto,-5
437.0,Elev,0, arrived at dest, 51, this call is done!, Elevator call,364.9921415,8,51,3,0, Done, dt, 72.0078585
437.0, elevID,0, pos,51, cmd, goto,69
437.0,Elev,2, arrived at src, 27, Elevator call,390.0961592,27,57,2,2
437.0, elevID,2, pos,27, cmd, goto,-3
438.0,Elev,5, arrived at src, 0, Elevator call,428.5102982,0,50,2,5
438.0, elevID,5, pos,0, cmd, goto,35
441.0,Elevator call,440.1727156,-7,35,1,8, got allocated to elevator, 8
441.0,Elev,3, arrived at src, -3, Elevator call,429.0659883,-3,-4,2,3
441.0, elevID,3, pos,-3, cmd, goto,58
441.0,Elev,7, arrived at src, -5, Elevator call,434.3958315,-5,-4,2,7
441.0, elevID,7, pos,-5, cmd, goto,-4
441.0, elevID,8, pos,4, cmd, goto,-7
445.0,Elev,0, arrived at dest, 69, this call is done!, Elevator call,326.8172245,18,69,3,0, Done, dt, 118.18277549999999
445.0, elevID,0, pos,69, cmd, goto,89
447.0,Elev,7, arrived at dest, -4, this call is done!, Elevator call,434.3958315,-5,-4,3,7, Done, dt, 12.604168500000014
448.0,Elev,8, arrived at src, -7, Elevator call,440.1727156,-7,35,2,8
448.0, elevID,8, pos,-7, cmd, goto,35
453.0,Elev,0, arrived at dest, 89, this call is done!, Elevator call,365.1533127,-7,89,3,0, Done, dt, 87.84668729999999
453.0, elevID,0, pos,89, cmd, goto,-7
453.0,Elev,2, arrived at src, -3, Elevator call,380.0707449,-3,4,2,2
453.0,Elev,2, arrived at src, -3, Elevator call,395.7385476,-3,78,2,2
453.0, elevID,2, pos,-3, cmd, goto,-4
454.0,Elevator call,453.666071,-6,19,1,9, got allocated to elevator, 9
454.0, elevID,9, pos,-4, cmd, goto,-6
455.0,Elevator call,454.5668277,22,39,1,2, got allocated to elevator, 2
459.0,Elev,8, arrived at dest, 35, this call is done!, Elevator call,440.1727156,-7,35,3,8, Done, dt, 18.827284399999996
460.0,Elev,5, arrived at dest, 35, this call is done!, Elevator call,413.6312136,-7,35,3,5, Done, dt, 46.368786399999976
460.0, elevID,5, pos,35, cmd, goto,50
464.0,Elevator call,463.0393565,-5,39,1,0, got allocated to elevator, 0
, elevID,0, pos,15, cmd, stop,-5
464.0,Elev,2, arrived at src, -4, Elevator call,419.4506691,-4,-5,2,2
464.0, elevID,2, pos,-4, cmd, goto,-5
464.0,Elev,3, arrived at dest, 58, this call is done!, Elevator call,396.4349073,-4,58,3,3, Done, dt, 67.56509269999998
464.0, elevID,3, pos,58, cmd, goto,-4
465.0,Elev,9, arrived at src, -6, Elevator call,453.666071,-6,19,2,9
465.0, elevID,9, pos,-6, cmd, goto,19
467.0,Elev,4, arrived at dest, 68, this call is done!, Elevator call,411.2807706,-4,68,3,4, Done, dt, 55.71922940000002
469.0,Elev,0, arrived at src, -5, Elevator call,463.0393565,-5,39,2,0
469.0, elevID,0, pos,-5, cmd, goto,-7
470.0,Elevator call,469.1847762,-3,49,1,3, got allocated to elevator, 3
, elevID,3, pos,53, cmd, stop,-3
472.0,Elevator call,471.7547111,-7,89,1,1, got allocated to elevator, 1
472.0, elevID,1, pos,26, cmd, goto,-7
474.0,Elevator call,473.0429549,21,63,1,4, got allocated to elevator, 4
474.0, elevID,4, pos,68, cmd, goto,21
475.0,Elevator call,474.3070307,-4,-5,1,2, got allocated to elevator, 2
475.0,Elevator call,474.4516514,-2,97,1,2, got allocated to elevator, 2
475.0,Elev,0, arrived at src, -7, Elevator call,414.2750727,-7,-9,2,0
475.0, elevID,0, pos,-7, cmd, goto,-9
475.0,Elev,2, arrived at dest, -5, this call is done!, Elevator call,419.4506691,-4,-5,3,2, Done, dt, 55.54933089999997
475.0, elevID,2, pos,-5, cmd, goto,-4
475.0,Elev,5, arrived at dest, 50, this call is done!, Elevator call,428.5102982,0,50,3,5, Done, dt, 46.48970179999998
479.0,Elevator call,478.9120806,-1,17,1,3, got allocated to elevator, 3
, elevID,3, pos,8, cmd, stop,-1
481.0,Elev,0, arrived at dest, -9, this call is done!, Elevator call,414.2750727,-7,-9,3,0, Done, dt, 66.72492729999999
481.0, elevID,0, pos,-9, cmd, goto,39
481.0,Elev,6, arrived at src, 64, Elevator call,433.8181105,64,-4,2,6
481.0, elevID,6, pos,64, cmd, goto,-4
484.0,Elev,1, arrived at src, -7, Elevator call,471.7547111,-7,89,2,1
484.0, elevID,1, pos,-7, cmd, goto,89
486.0,Elev,2, arrived at src, -4, Elevator call,474.3070307,-4,-5,2,2
486.0, elevID,2, pos,-4, cmd, goto,-2
486.0,Elev,3, arrived at src, -1, Elevator call,478.9120806,-1,17,2,3
486.0, elevID,3, pos,-1, cmd, goto,-3
487.0,Elevator call,486.5929955,-2,0,1,2, got allocated to elevator, 2
488.0,Elev,9, arrived at dest, 19, this call is done!, Elevator call,453.666071,-6,19,3,9, Done, dt, 34.33392900000001
492.0,Elev,0, arrived at dest, 39, this call is done!, Elevator call,463.0393565,-5,39,3,0, Done, dt, 28.960643500000003
493.0,Elevator call,492.780101,-4,-9,1,2, got allocated to elevator, 2
495.0,Elevator call,494.4993612,-6,0,1,2, got allocated to elevator, 2
497.0,Elev,2, arrived at src, -2, Elevator call,474.4516514,-2,97,2,2
497.0,Elev,2, arrived at src, -2, Elevator call,486.5929955,-2,0,2,2
497.0, elevID,2, pos,-2, cmd, goto,0
497.0,Elev,3, arrived at src, -3, Elevator call,469.1847762,-3,49,2,3
497.0, elevID,3, pos,-3, cmd, goto,-4
498.0,Elevator call,497.2462713,-8,-9,1,2, got allocated to elevator, 2
500.0,Elev,4, arrived at src, 21, Elevator call,473.0429549,21,63,2,4
500.0, elevID,4, pos,21, cmd, goto,63
505.0,Elev,1, arrived at dest, 89, this call is done!, Elevator call,471.7547111,-7,89,3,1, Done, dt, 33.24528889999999
506.0,Elevator call,505.7307512,-5,22,1,2, got allocated to elevator, 2
508.0,Elev,2, arrived at dest, 0, this call is done!, Elevator call,486.5929955,-2,0,3,2, Done, dt, 21.407004500000028
508.0, elevID,2, pos,0, cmd, goto,4
508.0,Elev,3, arrived at dest, -4, this call is done!, Elevator call,429.0659883,-3,-4,3,3, Done, dt, 78.93401169999999
508.0, elevID,3, pos,-4, cmd, goto,17
519.0,Elevator call,518.0674873,-2,4,1,4, got allocated to elevator, 4
519.0,Elevator call,518.8597307,-1,31,1,5, got allocated to elevator, 5
519.0,Elev,2, arrived at dest, 4, this call is done!, Elevator call,380.0707449,-3,4,3,2, Done, dt, 138.92925509999998
519.0, elevID,2, pos,4, cmd, goto,22
519.0, elevID,5, pos,50, cmd, goto,-1
520.0,Elevator call,519.7795509,-2,89,1,6, got allocated to elevator, 6
, elevID,6, pos,13, cmd, stop,-2
521.0,Elevator call,520.6845259,0,75,1,6, got allocated to elevator, 6
, elevID,6, pos,12, cmd, stop,0
523.0,Elevator call,522.8890541,40,-6,1,3, got allocated to elevator, 3
523.0,Elev,3, arrived at dest, 17, this call is done!, Elevator call,478.9120806,-1,17,3,3, Done, dt, 44.087919399999976
523.0, elevID,3, pos,17, cmd, goto,40
524.0,Elev,4, arrived at dest, 63, this call is done!, Elevator call,473.0429549,21,63,3,4, Done, dt, 50.957045100000016
524.0, elevID,4, pos,63, cmd, goto,-2
527.0,Elevator call,526.323381,0,86,1,7, got allocated to elevator, 7
527.0, elevID,7, pos,-4, cmd, goto,0
533.0,Elev,2, arrived at src, 22, Elevator call,454.5668277,22,39,2,2
533.0, elevID,2, pos,22, cmd, goto,39
533.0,Elev,7, arrived at src, 0, Elevator call,526.323381,0,86,2,7
533.0, elevID,7, pos,0, cmd, goto,86
534.0,Elevator call,533.5237446,-8,-3,1,7, got allocated to elevator, 7
534.0,Elev,6, arrived at src, 0, Elevator call,520.6845259,0,75,2,6
534.0, elevID,6, pos,0, cmd, goto,-2
538.0,Elev,3, arrived at src, 40, Elevator call,522.8890541,40,-6,2,3
538.0, elevID,3, pos,40, cmd, goto,49
546.0,Elevator call,545.0053455,0,5,1,3, got allocated to elevator, 3
546.0,Elev,5, arrived at src, -1, Elevator call,518.8597307,-1,31,2,5
546.0, elevID,5, pos,-1, cmd, goto,31
546.0,Elev,6, arrived at src, -2, Elevator call,519.7795509,-2,89,2,6
546.0, elevID,6, pos,-2, cmd, goto,-4
547.0,Elev,2, arrived at dest, 39, this call is done!, Elevator call,454.5668277,22,39,3,2, Done, dt, 92.43317230000002
547.0, elevID,2, pos,39, cmd, goto,57
549.0,Elevator call,548.3665338,-7,-5,1,8, got allocated to elevator, 8
549.0,Elevator call,548.6900304,0,56,1,8, got allocated to elevator, 8
549.0,Elev,7, arrived at dest, 86, this call is done!, Elevator call,526.323381,0,86,3,7, Done, dt, 22.67661899999996
549.0, elevID,7, pos,86, cmd, goto,-8
549.0, elevID,8, pos,35, cmd, goto,0
550.0,Elevator call,549.1632702,-8,77,1,9, got allocated to elevator, 9
550.0,Elev,3, arrived at dest, 49, this call is done!, Elevator call,469.1847762,-3,49,3,3, Done, dt, 80.81522380000001
550.0, elevID,3, pos,49, cmd, goto,0
550.0, elevID,9, pos,19, cmd, goto,-8
554.0,Elevator call,553.5609082,90,0,1,0, got allocated to elevator, 0
554.0, elevID,0, pos,39, cmd, goto,90
556.0,Elevator call,555.4552072,-6,54,1,1, got allocated to elevator, 1
556.0, elevID,1, pos,89, cmd, goto,-6
556.0,Elev,4, arrived at src, -2, Elevator call,518.0674873,-2,4,2,4
556.0, elevID,4, pos,-2, cmd, goto,4
558.0,Elev,6, arrived at dest, -4, this call is done!, Elevator call,433.8181105,64,-4,3,6, Done, dt, 124.18188950000001
558.0, elevID,6, pos,-4, cmd, goto,75
559.0,Elev,8, arrived at src, 0, Elevator call,548.6900304,0,56,2,8
559.0, elevID,8, pos,0, cmd, goto,-7
560.0,Elevator call,559.1940814,96,-4,1,2, got allocated to elevator, 2
561.0,Elev,2, arrived at dest, 57, this call is done!, Elevator call,390.0961592,27,57,3,2, Done, dt, 170.9038408
561.0, elevID,2, pos,57, cmd, goto,78
565.0,Elev,7, arrived at src, -8, Elevator call,533.5237446,-8,-3,2,7
565.0, elevID,7, pos,-8, cmd, goto,-3
566.0,Elev,0, arrived at src, 90, Elevator call,553.5609082,90,0,2,0
566.0, elevID,0, pos,90, cmd, goto,0
566.0,Elev,8, arrived at src, -7, Elevator call,548.3665338,-7,-5,2,8
566.0, elevID,8, pos,-7, cmd, goto,-5
567.0,Elevator call,566.0510261,-3,14,1,3, got allocated to elevator, 3
567.0,Elev,5, arrived at dest, 31, this call is done!, Elevator call,518.8597307,-1,31,3,5, Done, dt, 48.1402693
568.0,Elev,4, arrived at dest, 4, this call is done!, Elevator call,518.0674873,-2,4,3,4, Done, dt, 49.93251269999996
570.0,Elev,3, arrived at src, 0, Elevator call,545.0053455,0,5,2,3
570.0, elevID,3, pos,0, cmd, goto,-3
572.0,Elev,7, arrived at dest, -3, this call is done!, Elevator call,533.5237446,-8,-3,3,7, Done, dt, 38.476255400000014
572.0,Elev,8, arrived at dest, -5, this call is done!, Elevator call,548.3665338,-7,-5,3,8, Done, dt, 23.633466200000044
572.0, elevID,8, pos,-5, cmd, goto,56
573.0,Elevator call,572.8436949,-3,59,1,4, got allocated to elevator, 4
573.0, elevID,4, pos,4, cmd, goto,-3
574.0,Elev,9, arrived at src, -8, Elevator call,549.1632702,-8,77,2,9
574.0, elevID,9, pos,-8, cmd, goto,77
575.0,Elevator call,574.1047389,-9,-5,1,5, got allocated to elevator, 5
575.0,Elevator call,574.3481746,-3,32,1,6, got allocated to elevator, 6
575.0,Elevator call,574.3681907,-6,36,1,7, got allocated to elevator, 7
575.0, elevID,5, pos,31, cmd, goto,-9
575.0, elevID,7, pos,-3, cmd, goto,-6
576.0,Elev,2, arrived at dest, 78, this call is done!, Elevator call,395.7385476,-3,78,3,2, Done, dt, 180.2614524
576.0, elevID,2, pos,78, cmd, goto,96
577.0,Elev,1, arrived at src, -6, Elevator call,555.4552072,-6,54,2,1
577.0, elevID,1, pos,-6, cmd, goto,54
581.0,Elev,3, arrived at src, -3, Elevator call,566.0510261,-3,14,2,3
581.0, elevID,3, pos,-3, cmd, goto,-6
581.0,Elev,7, arrived at src, -6, Elevator call,574.3681907,-6,36,2,7
581.0, elevID,7, pos,-6, cmd, goto,36
582.0,Elev,0, arrived at dest, 0, this call is done!, Elevator call,553.5609082,90,0,3,0, Done, dt, 28.43909180000003
585.0,Elevator call,584.0225092,-4,23,1,8, got allocated to elevator, 8
585.0,Elev,8, arrived at dest, 56, this call is done!, Elevator call,548.6900304,0,56,3,8, Done, dt, 36.309969600000045
585.0, elevID,8, pos,56, cmd, goto,-4
586.0,Elev,4, arrived at src, -3, Elevator call,572.8436949,-3,59,2,4
586.0, elevID,4, pos,-3, cmd, goto,59
590.0,Elevator call,589.3220302,-1,0,1,9, got allocated to elevator, 9
590.0,Elev,2, arrived at src, 96, Elevator call,559.1940814,96,-4,2,2
590.0, elevID,2, pos,96, cmd, goto,97
592.0,Elev,3, arrived at dest, -6, this call is done!, Elevator call,522.8890541,40,-6,3,3, Done, dt, 69.11094590000005
592.0, elevID,3, pos,-6, cmd, goto,5
592.0,Elev,7, arrived at dest, 36, this call is done!, Elevator call,574.3681907,-6,36,3,7, Done, dt, 17.631809299999986
593.0,Elev,1, arrived at dest, 54, this call is done!, Elevator call,555.4552072,-6,54,3,1, Done, dt, 37.54479279999998
594.0,Elevator call,593.4238522,-5,43,1,0, got allocated to elevator, 0
594.0, elevID,0, pos,0, cmd, goto,-5
596.0,Elevator call,595.2403016,-4,-5,1,2, got allocated to elevator, 2
598.0,Elev,8, arrived at src, -4, Elevator call,584.0225092,-4,23,2,8
598.0, elevID,8, pos,-4, cmd, goto,23
599.0,Elev,5, arrived at src, -9, Elevator call,574.1047389,-9,-5,2,5
599.0, elevID,5, pos,-9, cmd, goto,-5
601.0,Elev,0, arrived at src, -5, Elevator call,593.4238522,-5,43,2,0
601.0, elevID,0, pos,-5, cmd, goto,43
601.0,Elev,2, arrived at dest, 97, this call is done!, Elevator call,474.4516514,-2,97,3,2, Done, dt, 126.5483486
601.0, elevID,2, pos,97, cmd, goto,-4
603.0,Elevator call,602.3119126,-7,96,1,1, got allocated to elevator, 1
603.0, elevID,1, pos,54, cmd, goto,-7
605.0,Elev,3, arrived at dest, 5, this call is done!, Elevator call,545.0053455,0,5,3,3, Done, dt, 59.994654500000024
605.0, elevID,3, pos,5, cmd, goto,14
607.0,Elev,8, arrived at dest, 23, this call is done!, Elevator call,584.0225092,-4,23,3,8, Done, dt, 22.977490800000055
611.0,Elev,5, arrived at dest, -5, this call is done!, Elevator call,574.1047389,-9,-5,3,5, Done, dt, 36.89526109999997
612.0,Elev,0, arrived at dest, 43, this call is done!, Elevator call,593.4238522,-5,43,3,0, Done, dt, 18.576147799999944
613.0,Elevator call,612.6685743,40,49,1,2, got allocated to elevator, 2
, elevID,2, pos,62, cmd, stop,40
616.0,Elevator call,615.3214705,-4,-1,1,2, got allocated to elevator, 2
617.0,Elevator call,616.5834013,13,-4,1,2, got allocated to elevator, 2
617.0,Elev,3, arrived at dest, 14, this call is done!, Elevator call,566.0510261,-3,14,3,3, Done, dt, 50.948973900000055
617.0,Elev,4, arrived at dest, 59, this call is done!, Elevator call,572.8436949,-3,59,3,4, Done, dt, 44.156305100000054
618.0,Elevator call,617.2617392,30,-4,1,4, got allocated to elevator, 4
618.0, elevID,4, pos,59, cmd, goto,30
619.0,Elev,1, arrived at src, -7, Elevator call,602.3119126,-7,96,2,1
619.0, elevID,1, pos,-7, cmd, goto,96
621.0,Elev,6, arrived at dest, 75, this call is done!, Elevator call,520.6845259,0,75,3,6, Done, dt, 100.31547409999996
621.0, elevID,6, pos,75, cmd, goto,89
623.0,Elev,2, arrived at src, 40, Elevator call,612.6685743,40,49,2,2
623.0, elevID,2, pos,40, cmd, goto,13
626.0,Elevator call,625.6737732,-8,71,1,3, got allocated to elevator, 3
626.0, elevID,3, pos,14, cmd, goto,-8
627.0,Elev,9, arrived at dest, 77, this call is done!, Elevator call,549.1632702,-8,77,3,9, Done, dt, 77.83672979999994
627.0, elevID,9, pos,77, cmd, goto,-1
638.0,Elev,4, arrived at src, 30, Elevator call,617.2617392,30,-4,2,4
638.0, elevID,4, pos,30, cmd, goto,-4
639.0,Elev,2, arrived at src, 13, Elevator call,616.5834013,13,-4,2,2
639.0, elevID,2, pos,13, cmd, goto,-4
641.0,Elev,1, arrived at dest, 96, this call is done!, Elevator call,602.3119126,-7,96,3,1, Done, dt, 38.68808739999997
641.0,Elev,3, arrived at src, -8, Elevator call,625.6737732,-8,71,2,3
641.0, elevID,3, pos,-8, cmd, goto,71
641.0,Elev,6, arrived at dest, 89, this call is done!, Elevator call,519.7795509,-2,89,3,6, Done, dt, 121.2204491
641.0, elevID,6, pos,89, cmd, goto,-3
646.0,Elevator call,645.8408958,-4,-5,1,2, got allocated to elevator, 2
647.0,Elevator call,646.3320949,-4,85,1,2, got allocated to elevator, 2
647.0,Elevator call,646.8274071,-3,71,1,4, got allocated to elevator, 4
, elevID,4, pos,18, cmd, stop,-3
652.0,Elevator call,651.66161,-9,-10,1,2, got allocated to elevator, 2
653.0,Elevator call,652.3423759,-9,-5,1,4, got allocated to elevator, 4
653.0,Elev,2, arrived at src, -4, Elevator call,492.780101,-4,-9,2,2
653.0,Elev,2, arrived at dest, -4, this call is done!, Elevator call,559.1940814,96,-4,3,2, Done, dt, 93.80591860000004
653.0,Elev,2, arrived at src, -4, Elevator call,595.2403016,-4,-5,2,2
653.0,Elev,2, arrived at src, -4, Elevator call,615.3214705,-4,-1,2,2
653.0,Elev,2, arrived at dest, -4, this call is done!, Elevator call,616.5834013,13,-4,3,2, Done, dt, 36.41659870000001
653.0,Elev,2, arrived at src, -4, Elevator call,645.8408958,-4,-5,2,2
653.0,Elev,2, arrived at src, -4, Elevator call,646.3320949,-4,85,2,2
653.0, elevID,2, pos,-4, cmd, goto,-5
655.0,Elevator call,654.9657471,0,-9,1,3, got allocated to elevator, 3
659.0,Elev,4, arrived at src, -3, Elevator call,646.8274071,-3,71,2,4
659.0, elevID,4, pos,-3, cmd, goto,-4
661.0,Elevator call,660.8209492,-9,-8,1,3, got allocated to elevator, 3
664.0,Elev,2, arrived at dest, -5, this call is done!, Elevator call,474.3070307,-4,-5,3,2, Done, dt, 189.69296930000002
664.0,Elev,2, arrived at src, -5, Elevator call,505.7307512,-5,22,2,2
664.0,Elev,2, arrived at dest, -5, this call is done!, Elevator call,595.2403016,-4,-5,3,2, Done, dt, 68.75969840000005
664.0,Elev,2, arrived at dest, -5, this call is done!, Elevator call,645.8408958,-4,-5,3,2, Done, dt, 18.1591042
664.0, elevID,2, pos,-5, cmd, goto,-6
667.0,Elev,3, arrived at dest, 71, this call is done!, Elevator call,625.6737732,-8,71,3,3, Done, dt, 41.32622679999997
667.0, elevID,3, pos,71, cmd, goto,0
669.0,Elevator call,668.0095444,91,-9,1,5, got allocated to elevator, 5
669.0, elevID,5, pos,-5, cmd, goto,91
670.0,Elev,4, arrived at dest, -4, this call is done!, Elevator call,617.2617392,30,-4,3,4, Done, dt, 52.738260800000035
670.0, elevID,4, pos,-4, cmd, goto,-9
671.0,Elevator call,670.0530244,0,-7,1,3, got allocated to elevator, 3
671.0,Elevator call,670.7006557,-5,-2,1,2, got allocated to elevator, 2
672.0,Elevator call,671.2986521,-2,67,1,6, got allocated to elevator, 6
, elevID,6, pos,50, cmd, stop,-2
673.0,Elevator call,672.685967,2,17,1,2, got allocated to elevator, 2
675.0,Elevator call,674.3611197,-5,78,1,7, got allocated to elevator, 7
675.0,Elevator call,674.9750782,0,82,1,9, got allocated to elevator, 9
675.0,Elev,2, arrived at src, -6, Elevator call,494.4993612,-6,0,2,2
675.0, elevID,2, pos,-6, cmd, goto,-8
675.0, elevID,7, pos,36, cmd, goto,-5
676.0,Elev,9, arrived at src, -1, Elevator call,589.3220302,-1,0,2,9
676.0, elevID,9, pos,-1, cmd, goto,0
681.0,Elevator call,680.0040159,-6,-7,1,4, got allocated to elevator, 4
682.0,Elev,4, arrived at src, -9, Elevator call,652.3423759,-9,-5,2,4
682.0, elevID,4, pos,-9, cmd, goto,-6
684.0,Elevator call,683.9214709,-6,43,1,8, got allocated to elevator, 8
684.0, elevID,8, pos,23, cmd, goto,-6
686.0,Elevator call,685.7899147,-4,53,1,9, got allocated to elevator, 9
686.0,Elevator call,685.9465267,-5,62,1,0, got allocated to elevator, 0
686.0, elevID,0, pos,43, cmd, goto,-5
686.0,Elev,2, arrived at src, -8, Elevator call,497.2462713,-8,-9,2,2
686.0, elevID,2, pos,-8, cmd, goto,-9
686.0,Elev,7, arrived at src, -5, Elevator call,674.3611197,-5,78,2,7
686.0, elevID,7, pos,-5, cmd, goto,78
687.0,Elevator call,686.8809676,-2,48,1,1, got allocated to elevator, 1
687.0, elevID,1, pos,96, cmd, goto,-2
687.0,Elev,9, arrived at dest, 0, this call is done!, Elevator call,589.3220302,-1,0,3,9, Done, dt, 97.67796980000003
687.0,Elev,9, arrived at src, 0, Elevator call,674.9750782,0,82,2,9
687.0, elevID,9, pos,0, cmd, goto,82
691.0,Elevator call,690.5548999,4,90,1,2, got allocated to elevator, 2
692.0,Elev,3, arrived at src, 0, Elevator call,654.9657471,0,-9,2,3
692.0,Elev,3, arrived at src, 0, Elevator call,670.0530244,0,-7,2,3
692.0, elevID,3, pos,0, cmd, goto,-7
693.0,Elev,4, arrived at src, -6, Elevator call,680.0040159,-6,-7,2,4
693.0, elevID,4, pos,-6, cmd, goto,-5
693.0,Elev,8, arrived at src, -6, Elevator call,683.9214709,-6,43,2,8
693.0, elevID,8, pos,-6, cmd, goto,43
695.0,Elevator call,694.5321945,20,-8,1,5, got allocated to elevator, 5
697.0,Elev,0, arrived at src, -5, Elevator call,685.9465267,-5,62,2,0
697.0, elevID,0, pos,-5, cmd, goto,62
697.0,Elev,2, arrived at dest, -9, this call is done!, Elevator call,492.780101,-4,-9,3,2, Done, dt, 204.219899
697.0,Elev,2, arrived at dest, -9, this call is done!, Elevator call,497.2462713,-8,-9,3,2, Done, dt, 199.7537287
697.0,Elev,2, arrived at src, -9, Elevator call,651.66161,-9,-10,2,2
697.0, elevID,2, pos,-9, cmd, goto,-10
701.0,Elev,7, arrived at dest, 78, this call is done!, Elevator call,674.3611197,-5,78,3,7, Done, dt, 26.638880299999983
704.0,Elev,3, arrived at dest, -7, this call is done!, Elevator call,670.0530244,0,-7,3,3, Done, dt, 33.94697559999997
704.0, elevID,3, pos,-7, cmd, goto,-9
704.0,Elev,4, arrived at dest, -5, this call is done!, Elevator call,652.3423759,-9,-5,3,4, Done, dt, 51.65762410000002
704.0, elevID,4, pos,-5, cmd, goto,71
704.0,Elev,8, arrived at dest, 43, this call is done!, Elevator call,683.9214709,-6,43,3,8, Done, dt, 20.07852909999997
705.0,Elevator call,704.2817283,-4,66,1,3, got allocated to elevator, 3
705.0,Elevator call,704.9255677,-9,-1,1,4, got allocated to elevator, 4
708.0,Elev,2, arrived at dest, -10, this call is done!, Elevator call,651.66161,-9,-10,3,2, Done, dt, 56.338390000000004
708.0, elevID,2, pos,-10, cmd, goto,-5
709.0,Elev,1, arrived at src, -2, Elevator call,686.8809676,-2,48,2,1
709.0, elevID,1, pos,-2, cmd, goto,48
710.0,Elev,0, arrived at dest, 62, this call is done!, Elevator call,685.9465267,-5,62,3,0, Done, dt, 24.05347329999995
711.0,Elev,5, arrived at src, 91, Elevator call,668.0095444,91,-9,2,5
711.0, elevID,5, pos,91, cmd, goto,20
712.0,Elev,6, arrived at src, -2, Elevator call,671.2986521,-2,67,2,6
712.0, elevID,6, pos,-2, cmd, goto,-3
715.0,Elev,3, arrived at dest, -9, this call is done!, Elevator call,654.9657471,0,-9,3,3, Done, dt, 60.034252899999956
715.0,Elev,3, arrived at src, -9, Elevator call,660.8209492,-9,-8,2,3
715.0, elevID,3, pos,-9, cmd, goto,-8
719.0,Elev,2, arrived at src, -5, Elevator call,670.7006557,-5,-2,2,2
719.0, elevID,2, pos,-5, cmd, goto,-2
723.0,Elev,6, arrived at src, -3, Elevator call,574.3481746,-3,32,2,6
723.0, elevID,6, pos,-3, cmd, goto,32
724.0,Elev,1, arrived at dest, 48, this call is done!, Elevator call,686.8809676,-2,48,3,1, Done, dt, 37.11903240000004
726.0,Elevator call,725.0774221,-3,-9,1,6, got allocated to elevator, 6
726.0,Elevator call,725.3808385,-6,75,1,4, got allocated to elevator, 4
726.0,Elev,3, arrived at dest, -8, this call is done!, Elevator call,660.8209492,-9,-8,3,3, Done, dt, 65.17905080000003
726.0, elevID,3, pos,-8, cmd, goto,-4
726.0, elevID,6, pos,-3, cmd, stop,-3
727.0,Elevator call,726.5015288,-2,78,1,5, got allocated to elevator, 5
729.0,Elevator call,728.9204568,-9,26,1,5, got allocated to elevator, 5
730.0,Elev,2, arrived at dest, -2, this call is done!, Elevator call,670.7006557,-5,-2,3,2, Done, dt, 59.29934430000003
730.0, elevID,2, pos,-2, cmd, goto,-1
733.0,Elev,6, arrived at src, -3, Elevator call,725.0774221,-3,-9,2,6
733.0, elevID,6, pos,-3, cmd, goto,32
737.0,Elev,3, arrived at src, -4, Elevator call,704.2817283,-4,66,2,3
737.0, elevID,3, pos,-4, cmd, goto,66
738.0,Elev,9, arrived at dest, 82, this call is done!, Elevator call,674.9750782,0,82,3,9, Done, dt, 63.024921800000016
738.0, elevID,9, pos,82, cmd, goto,-4
739.0,Elevator call,738.0653974,0,70,1,6, got allocated to elevator, 6
739.0,Elevator call,738.1397753,-4,4,1,7, got allocated to elevator, 7
739.0, elevID,6, pos,-2, cmd, stop,0
739.0, elevID,7, pos,78, cmd, goto,-4
740.0,Elev,4, arrived at dest, 71, this call is done!, Elevator call,646.8274071,-3,71,3,4, Done, dt, 93.17259290000004
740.0, elevID,4, pos,71, cmd, goto,-6
741.0,Elevator call,740.130792,-8,84,1,8, got allocated to elevator, 8
741.0,Elev,2, arrived at dest, -1, this call is done!, Elevator call,615.3214705,-4,-1,3,2, Done, dt, 125.67852949999997
741.0, elevID,2, pos,-1, cmd, goto,0
741.0, elevID,8, pos,43, cmd, goto,-8
745.0,Elev,5, arrived at src, 20, Elevator call,694.5321945,20,-8,2,5
745.0, elevID,5, pos,20, cmd, goto,-2
745.0,Elev,6, arrived at src, 0, Elevator call,738.0653974,0,70,2,6
745.0, elevID,6, pos,0, cmd, goto,32
751.0,Elevator call,750.6938181,0,51,1,9, got allocated to elevator, 9
, elevID,9, pos,66, cmd, stop,0
752.0,Elevator call,751.1946711,63,-7,1,4, got allocated to elevator, 4
752.0,Elev,2, arrived at dest, 0, this call is done!, Elevator call,494.4993612,-6,0,3,2, Done, dt, 257.5006388
752.0, elevID,2, pos,0, cmd, goto,2
753.0,Elev,8, arrived at src, -8, Elevator call,740.130792,-8,84,2,8
753.0, elevID,8, pos,-8, cmd, goto,84
754.0,Elev,7, arrived at src, -4, Elevator call,738.1397753,-4,4,2,7
754.0, elevID,7, pos,-4, cmd, goto,4
755.0,Elevator call,754.9447179,63,-2,1,5, got allocated to elevator, 5
759.0,Elevator call,758.7157374,-5,55,1,0, got allocated to elevator, 0
759.0, elevID,0, pos,62, cmd, goto,-5
761.0,Elev,3, arrived at dest, 66, this call is done!, Elevator call,704.2817283,-4,66,3,3, Done, dt, 56.718271699999946
761.0,Elev,7, arrived at dest, 4, this call is done!, Elevator call,738.1397753,-4,4,3,7, Done, dt, 22.860224700000003
763.0,Elev,2, arrived at src, 2, Elevator call,672.685967,2,17,2,2
763.0, elevID,2, pos,2, cmd, goto,4
763.0,Elev,5, arrived at src, -2, Elevator call,726.5015288,-2,78,2,5
763.0, elevID,5, pos,-2, cmd, goto,-8
765.0,Elevator call,764.4626483,85,-6,1,7, got allocated to elevator, 7
765.0, elevID,7, pos,4, cmd, goto,85
767.0,Elevator call,766.0673792,87,77,1,1, got allocated to elevator, 1
767.0, elevID,1, pos,48, cmd, goto,87
769.0,Elevator call,768.3495791,-7,44,1,2, got allocated to elevator, 2
769.0,Elev,8, arrived at dest, 84, this call is done!, Elevator call,740.130792,-8,84,3,8, Done, dt, 28.869207999999958
772.0,Elevator call,771.141649,-6,24,1,3, got allocated to elevator, 3
772.0,Elevator call,771.4903003,-2,23,1,4, got allocated to elevator, 4
772.0,Elev,0, arrived at src, -5, Elevator call,758.7157374,-5,55,2,0
772.0, elevID,0, pos,-5, cmd, goto,55
772.0, elevID,3, pos,66, cmd, goto,-6
774.0,Elev,2, arrived at src, 4, Elevator call,690.5548999,4,90,2,2
774.0, elevID,2, pos,4, cmd, goto,17
775.0,Elev,5, arrived at dest, -8, this call is done!, Elevator call,694.5321945,20,-8,3,5, Done, dt, 80.46780550000005
775.0, elevID,5, pos,-8, cmd, goto,-9
776.0,Elev,4, arrived at src, -6, Elevator call,725.3808385,-6,75,2,4
776.0, elevID,4, pos,-6, cmd, goto,-7
777.0,Elev,6, arrived at dest, 32, this call is done!, Elevator call,574.3481746,-3,32,3,6, Done, dt, 202.6518254
777.0, elevID,6, pos,32, cmd, goto,67
780.0,Elev,1, arrived at src, 87, Elevator call,766.0673792,87,77,2,1
780.0, elevID,1, pos,87, cmd, goto,77
780.0,Elev,7, arrived at src, 85, Elevator call,764.4626483,85,-6,2,7
780.0, elevID,7, pos,85, cmd, goto,-6
781.0,Elevator call,780.4436244,38,-3,1,8, got allocated to elevator, 8
781.0, elevID,8, pos,84, cmd, goto,38
783.0,Elevator call,782.9467623,-2,8,1,4, got allocated to elevator, 4
784.0,Elevator call,783.8184835,-6,31,1,7, got allocated to elevator, 7
785.0,Elevator call,784.356043,58,-4,1,9, got allocated to elevator, 9
785.0,Elevator call,784.6461975,-2,-8,1,4, got allocated to elevator, 4
785.0,Elev,0, arrived at dest, 55, this call is done!, Elevator call,758.7157374,-5,55,3,0, Done, dt, 26.284262600000034
786.0,Elevator call,785.7707852,-7,17,1,5, got allocated to elevator, 5
786.0,Elev,5, arrived at dest, -9, this call is done!, Elevator call,668.0095444,91,-9,3,5, Done, dt, 117.99045560000002
786.0,Elev,5, arrived at src, -9, Elevator call,728.9204568,-9,26,2,5
786.0, elevID,5, pos,-9, cmd, goto,-7
787.0,Elevator call,786.4953524,-4,23,1,6, got allocated to elevator, 6
787.0,Elev,2, arrived at dest, 17, this call is done!, Elevator call,672.685967,2,17,3,2, Done, dt, 114.314033
787.0, elevID,2, pos,17, cmd, goto,22
787.0,Elev,4, arrived at dest, -7, this call is done!, Elevator call,680.0040159,-6,-7,3,4, Done, dt, 106.99598409999999
787.0, elevID,4, pos,-7, cmd, goto,-9
789.0,Elev,1, arrived at dest, 77, this call is done!, Elevator call,766.0673792,87,77,3,1, Done, dt, 22.932620799999995
789.0,Elev,9, arrived at src, 0, Elevator call,750.6938181,0,51,2,9
789.0, elevID,9, pos,0, cmd, goto,-4
790.0,Elevator call,789.0527516,-9,90,1,7, got allocated to elevator, 7
792.0,Elevator call,791.932929,-6,-4,1,4, got allocated to elevator, 4
792.0,Elev,8, arrived at src, 38, Elevator call,780.4436244,38,-3,2,8
792.0, elevID,8, pos,38, cmd, goto,-3
796.0,Elevator call,795.3461922,-2,-7,1,4, got allocated to elevator, 4
796.0,Elev,7, arrived at dest, -6, this call is done!, Elevator call,764.4626483,85,-6,3,7, Done, dt, 31.537351700000045
796.0,Elev,7, arrived at src, -6, Elevator call,783.8184835,-6,31,2,7
796.0, elevID,7, pos,-6, cmd, goto,-9
797.0,Elev,3, arrived at src, -6, Elevator call,771.141649,-6,24,2,3
797.0, elevID,3, pos,-6, cmd, goto,24
797.0,Elev,5, arrived at src, -7, Elevator call,785.7707852,-7,17,2,5
797.0, elevID,5, pos,-7, cmd, goto,17
798.0,Elev,2, arrived at dest, 22, this call is done!, Elevator call,505.7307512,-5,22,3,2, Done, dt, 292.2692488
798.0, elevID,2, pos,22, cmd, goto,49
798.0,Elev,4, arrived at src, -9, Elevator call,704.9255677,-9,-1,2,4
798.0, elevID,4, pos,-9, cmd, goto,-6
801.0,Elev,9, arrived at src, -4, Elevator call,685.7899147,-4,53,2,9
801.0, elevID,9, pos,-4, cmd, goto,51
802.0,Elev,7, arrived at src, -9, Elevator call,789.0527516,-9,90,2,7
802.0, elevID,7, pos,-9, cmd, goto,31
803.0,Elev,8, arrived at dest, -3, this call is done!, Elevator call,780.4436244,38,-3,3,8, Done, dt, 22.556375600000024
804.0,Elevator call,803.8269297,-8,-2,1,8, got allocated to elevator, 8
804.0, elevID,8, pos,-3, cmd, goto,-8
807.0,Elevator call,806.3304577,-2,68,1,5, got allocated to elevator, 5
809.0,Elev,4, arrived at src, -6, Elevator call,791.932929,-6,-4,2,4
809.0, elevID,4, pos,-6, cmd, goto,-4
811.0,Elev,6, arrived at dest, 67, this call is done!, Elevator call,671.2986521,-2,67,3,6, Done, dt, 139.70134789999997
811.0, elevID,6, pos,67, cmd, goto,70
811.0,Elev,8, arrived at src, -8, Elevator call,803.8269297,-8,-2,2,8
811.0, elevID,8, pos,-8, cmd, goto,-2
812.0,Elev,7, arrived at dest, 31, this call is done!, Elevator call,783.8184835,-6,31,3,7, Done, dt, 28.181516500000043
812.0, elevID,7, pos,31, cmd, goto,90
813.0,Elev,3, arrived at dest, 24, this call is done!, Elevator call,771.141649,-6,24,3,3, Done, dt, 41.85835099999997
814.0,Elevator call,813.8281604,-8,-3,1,9, got allocated to elevator, 9
814.0,Elev,2, arrived at dest, 49, this call is done!, Elevator call,612.6685743,40,49,3,2, Done, dt, 201.33142569999995
814.0, elevID,2, pos,49, cmd, goto,85
815.0,Elev,5, arrived at dest, 17, this call is done!, Elevator call,785.7707852,-7,17,3,5, Done, dt, 29.229214800000022
815.0, elevID,5, pos,17, cmd, goto,26
816.0,Elevator call,815.1884758,-9,22,1,0, got allocated to elevator, 0
816.0, elevID,0, pos,55, cmd, goto,-9
817.0,Elevator call,816.2956416,-3,30,1,6, got allocated to elevator, 6
818.0,Elev,8, arrived at dest, -2, this call is done!, Elevator call,803.8269297,-8,-2,3,8, Done, dt, 14.17307029999995
820.0,Elevator call,819.2341386,-5,40,1,1, got allocated to elevator, 1
820.0, elevID,1, pos,77, cmd, goto,-5
820.0,Elev,4, arrived at dest, -4, this call is done!, Elevator call,791.932929,-6,-4,3,4, Done, dt, 28.067071000000055
820.0, elevID,4, pos,-4, cmd, goto,-2
821.0,Elevator call,820.5004117,-6,-8,1,5, got allocated to elevator, 5
822.0,Elevator call,821.0035425,-3,0,1,8, got allocated to elevator, 8
822.0, elevID,8, pos,-2, cmd, goto,-3
823.0,Elev,6, arrived at dest, 70, this call is done!, Elevator call,738.0653974,0,70,3,6, Done, dt, 84.93460259999995
823.0, elevID,6, pos,70, cmd, goto,-3
825.0,Elev,7, arrived at dest, 90, this call is done!, Elevator call,789.0527516,-9,90,3,7, Done, dt, 35.947248400000035
828.0,Elevator call,827.1554343,-2,33,1,9, got allocated to elevator, 9
828.0,Elev,5, arrived at dest, 26, this call is done!, Elevator call,728.9204568,-9,26,3,5, Done, dt, 99.07954319999999
828.0, elevID,5, pos,26, cmd, goto,63
828.0,Elev,8, arrived at src, -3, Elevator call,821.0035425,-3,0,2,8
828.0, elevID,8, pos,-3, cmd, goto,0
829.0,Elevator call,828.4291497,-2,52,1,2, got allocated to elevator, 2
829.0,Elev,0, arrived at src, -9, Elevator call,815.1884758,-9,22,2,0
829.0, elevID,0, pos,-9, cmd, goto,22
831.0,Elev,4, arrived at src, -2, Elevator call,771.4903003,-2,23,2,4
831.0,Elev,4, arrived at src, -2, Elevator call,782.9467623,-2,8,2,4
831.0,Elev,4, arrived at src, -2, Elevator call,784.6461975,-2,-8,2,4
831.0,Elev,4, arrived at src, -2, Elevator call,795.3461922,-2,-7,2,4
831.0, elevID,4, pos,-2, cmd, goto,-1
832.0,Elev,2, arrived at dest, 85, this call is done!, Elevator call,646.3320949,-4,85,3,2, Done, dt, 185.66790509999998
832.0, elevID,2, pos,85, cmd, goto,90
833.0,Elevator call,832.276301,-6,33,1,3, got allocated to elevator, 3
833.0, elevID,3, pos,24, cmd, goto,-6
834.0,Elev,8, arrived at dest, 0, this call is done!, Elevator call,821.0035425,-3,0,3,8, Done, dt, 12.99645750000002
838.0,Elev,0, arrived at dest, 22, this call is done!, Elevator call,815.1884758,-9,22,3,0, Done, dt, 22.811524200000008
839.0,Elev,1, arrived at src, -5, Elevator call,819.2341386,-5,40,2,1
839.0, elevID,1, pos,-5, cmd, goto,40
839.0,Elev,9, arrived at dest, 51, this call is done!, Elevator call,750.6938181,0,51,3,9, Done, dt, 88.30618189999996
839.0, elevID,9, pos,51, cmd, goto,53
840.0,Elevator call,839.3692862,-9,67,1,4, got allocated to elevator, 4
842.0,Elev,4, arrived at dest, -1, this call is done!, Elevator call,704.9255677,-9,-1,3,4, Done, dt, 137.0744323
842.0, elevID,4, pos,-1, cmd, goto,8
843.0,Elevator call,842.2040746,16,33,1,5, got allocated to elevator, 5
843.0,Elevator call,842.2405379,-4,10,1,5, got allocated to elevator, 5
843.0,Elevator call,842.3650932,-8,44,1,6, got allocated to elevator, 6
843.0,Elev,2, arrived at dest, 90, this call is done!, Elevator call,690.5548999,4,90,3,2, Done, dt, 152.4451001
843.0, elevID,2, pos,90, cmd, goto,-2
846.0,Elevator call,845.4214996,-9,81,1,7, got allocated to elevator, 7
846.0, elevID,7, pos,90, cmd, goto,-9
847.0,Elevator call,846.9077573,79,-7,1,8, got allocated to elevator, 8
847.0, elevID,8, pos,0, cmd, goto,79
849.0,Elevator call,848.6894456,-4,-1,1,9, got allocated to elevator, 9
849.0,Elev,3, arrived at src, -6, Elevator call,832.276301,-6,33,2,3
849.0, elevID,3, pos,-6, cmd, goto,33
850.0,Elev,9, arrived at dest, 53, this call is done!, Elevator call,685.7899147,-4,53,3,9, Done, dt, 164.21008529999995
850.0, elevID,9, pos,53, cmd, goto,58
851.0,Elev,5, arrived at src, 63, Elevator call,754.9447179,63,-2,2,5
851.0, elevID,5, pos,63, cmd, goto,78
853.0,Elev,1, arrived at dest, 40, this call is done!, Elevator call,819.2341386,-5,40,3,1, Done, dt, 33.76586139999995
855.0,Elev,4, arrived at dest, 8, this call is done!, Elevator call,782.9467623,-2,8,3,4, Done, dt, 72.05323769999995
855.0, elevID,4, pos,8, cmd, goto,23
857.0,Elevator call,856.0403286,-9,15,1,9, got allocated to elevator, 9
862.0,Elev,8, arrived at src, 79, Elevator call,846.9077573,79,-7,2,8
862.0, elevID,8, pos,79, cmd, goto,-7
863.0,Elev,7, arrived at src, -9, Elevator call,845.4214996,-9,81,2,7
863.0, elevID,7, pos,-9, cmd, goto,81
863.0,Elev,9, arrived at src, 58, Elevator call,784.356043,58,-4,2,9
863.0, elevID,9, pos,58, cmd, goto,-2
864.0,Elevator call,863.8959232,0,55,1,5, got allocated to elevator, 5
865.0,Elevator call,864.3592957,0,76,1,8, got allocated to elevator, 8
, elevID,8, pos,77, cmd, stop,0
866.0,Elev,5, arrived at dest, 78, this call is done!, Elevator call,726.5015288,-2,78,3,5, Done, dt, 139.49847120000004
866.0, elevID,5, pos,78, cmd, goto,16
867.0,Elevator call,866.6989971,-6,-2,1,0, got allocated to elevator, 0
867.0, elevID,0, pos,22, cmd, goto,-6
867.0,Elev,3, arrived at dest, 33, this call is done!, Elevator call,832.276301,-6,33,3,3, Done, dt, 34.72369900000001
868.0,Elevator call,867.2166567,0,20,1,1, got allocated to elevator, 1
868.0, elevID,1, pos,40, cmd, goto,0
870.0,Elev,4, arrived at dest, 23, this call is done!, Elevator call,771.4903003,-2,23,3,4, Done, dt, 98.50969970000006
870.0, elevID,4, pos,23, cmd, goto,63
872.0,Elev,2, arrived at src, -2, Elevator call,828.4291497,-2,52,2,2
872.0, elevID,2, pos,-2, cmd, goto,-7
873.0,Elevator call,872.9847192,-1,0,1,2, got allocated to elevator, 2
874.0,Elevator call,873.1183156,32,-2,1,5, got allocated to elevator, 5
, elevID,5, pos,69, cmd, stop,32
876.0,Elev,0, arrived at src, -6, Elevator call,866.6989971,-6,-2,2,0
876.0, elevID,0, pos,-6, cmd, goto,-2
877.0,Elev,8, arrived at src, 0, Elevator call,864.3592957,0,76,2,8
877.0, elevID,8, pos,0, cmd, goto,-7
879.0,Elev,7, arrived at dest, 81, this call is done!, Elevator call,845.4214996,-9,81,3,7, Done, dt, 33.57850040000005
881.0,Elev,1, arrived at src, 0, Elevator call,867.2166567,0,20,2,1