-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.log
More file actions
3586 lines (3586 loc) · 359 KB
/
server.log
File metadata and controls
3586 lines (3586 loc) · 359 KB
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
18:17:15 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.58559234039419,152.52872841768607,97.5480149814286)'}
18:17:17 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767133037238', 'x': 480, 'y': 580, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
18:17:17 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767133037466', 'x': 540, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
18:17:18 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:17:18 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:17:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:17:21 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:17:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:17:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:17:26 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:17:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:17:29 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:17:30 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:17:30 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:17:30 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:18:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:18:29 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(88.82175530585495,88.84005672873973,46.07833308888743)'}
18:18:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:31 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:32 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:32 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:32 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:33 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:33 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:33 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:18:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(78.64411094090522,103.9926212944159,37.52094250738705)'}
18:18:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:43 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:44 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:44 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:45 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:46 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:18:46 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:18:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:18:47 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:48 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:18:49 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:20:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.03046266860987,102.91592085422742,56.905402937507375)'}
18:20:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:20:09 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:11 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:20:11 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:20:11 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:20:19 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:20:19 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:20:21 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:20:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:20:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:24 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:20:24 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:20:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:20:26 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:20:27 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:20:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:20:29 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:20:29 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037238', 'texto': 'Nuevo Cuadro', 'h': 76}
18:20:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:20:47 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:20:47 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:21:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:21:44 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:21:49 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:21:49 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:21:49 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:21:55 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:21:55 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:22:01 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:22:01 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:22:01 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:23:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:23:21 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:23:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:23:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:23:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:23:26 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:23:26 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037238', 'texto': 'Nuevo Cuadro', 'h': 76}
18:23:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:23:31 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:23:32 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:23:32 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:23:32 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037238', 'texto': 'Nuevo Cuadro', 'h': 76}
18:23:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:23:43 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:23:43 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:23:45 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:23:45 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:24:51 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767133491543'}}
18:24:56 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767133491543'}
18:29:34 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767133774894'}}
18:29:38 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767133774894'}
18:29:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767133780159'}}
18:29:41 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767133780159'}
18:29:43 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'right', 'tipo': 'estatica', 'id': 'flecha-1767133783699'}}
18:29:47 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767133783699'}
18:29:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:29:48 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:29:50 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767133790909'}}
18:30:16 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:30:16 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:30:18 | DEBUG | SERVER | {'tipo': 'redimensionar_nodo', 'id': 'nodo-1767133037238', 'x': 480, 'y': 440, 'w': 100, 'h': 100}
18:30:19 | DEBUG | SERVER | {'tipo': 'redimensionar_nodo', 'id': 'nodo-1767133037238', 'x': 480, 'y': 440, 'w': 100, 'h': 140}
18:30:21 | DEBUG | SERVER | {'tipo': 'redimensionar_nodo', 'id': 'nodo-1767133037238', 'x': 480, 'y': 440, 'w': 100, 'h': 160}
18:30:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:30:29 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:48:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:48:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:48:23 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:49:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:49:21 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:49:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:49:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:49:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:49:26 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:49:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:49:29 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:49:29 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:49:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:49:31 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:49:33 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:49:33 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:49:35 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:49:35 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:49:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:49:37 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:49:37 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:02 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:04 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(101.98960164199288,151.0247435748494,112.10587502348872)'}
18:50:04 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767133790909', 'id': 'flecha-1767135004479'}}
18:50:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:05 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:50:06 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:08 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:08 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:50:09 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:11 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:11 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:50:13 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:13 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:16 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:16 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:50:17 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:50:17 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:50:17 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037466', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:19 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:19 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
18:50:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:22 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:50:22 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:50:23 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037238', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:25 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037238'}
18:50:25 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037238'}
18:50:26 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767133037238', 'texto': 'Nuevo Cuadro', 'h': 76}
18:50:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
18:50:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
18:50:28 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
19:29:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:29:56 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767135004479'}
19:29:57 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
19:29:57 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
19:29:59 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767137399881'}}
19:30:02 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767137402140'}}
19:30:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:30:06 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1767137406672'}}
19:30:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:30:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.92203001203002,117.50140434567265,20.80573306407186)'}
19:30:10 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767133790909', 'id': 'flecha-1767137410335'}}
19:30:10 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'flecha-1767137399881', 'id': 'flecha-1767137410336'}}
19:30:10 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'flecha-1767137402140', 'id': 'flecha-1767137410336'}}
19:30:10 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137406672', 'id': 'flecha-1767137410337'}}
19:30:11 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137410335'}
19:30:14 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137410337'}
19:30:16 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137410336'}
19:30:18 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137410336'}
19:30:19 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767137419915'}}
19:30:22 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'dinamica', 'id': 'flecha-1767137422261'}}
19:30:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
19:30:27 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
19:30:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:30:29 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137419915'}
19:30:29 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137422261'}
19:30:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767133037466'}
19:30:31 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767133037466'}
19:30:33 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1767137433827'}}
19:30:35 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767137435695'}}
19:30:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:30:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(107.9475663916744,89.87513274013159,20)'}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767133790909', 'id': 'flecha-1767137440248'}}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'flecha-1767137399881', 'id': 'flecha-1767137440253'}}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'flecha-1767137402140', 'id': 'flecha-1767137440254'}}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137406672', 'id': 'flecha-1767137440254'}}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137433827', 'id': 'flecha-1767137440255'}}
19:30:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137435695', 'id': 'flecha-1767137440255'}}
19:30:50 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440254'}
19:30:51 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440254'}
19:30:52 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440255'}
19:30:56 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440248'}
19:30:57 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440255'}
19:30:58 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137440253'}
19:31:01 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.85690579998982,149.92908330073465,69.37968121861697)'}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767133790909', 'id': 'flecha-1767137461860'}}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'left', 'tipo': 'flecha-1767137399881', 'id': 'flecha-1767137461862'}}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'bottom', 'tipo': 'flecha-1767137402140', 'id': 'flecha-1767137461863'}}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137406672', 'id': 'flecha-1767137461863'}}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137433827', 'id': 'flecha-1767137461863'}}
19:31:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767133037466', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767133037238', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137435695', 'id': 'flecha-1767137461864'}}
19:32:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.0916893618903,150.16351284955897,24.828299166959575)'}
19:32:59 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767137579740', 'x': 440, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
19:32:59 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767137579962', 'x': 500, 'y': 580, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
19:33:00 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767137579740'}
19:33:00 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767137579740'}
19:33:02 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767137579740', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767137579962', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767137582506'}}
19:33:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:33:11 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767137579740', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767137579962', 'destinoPuntoId': 'bottom', 'tipo': 'dinamica', 'id': 'flecha-1767137591211'}}
19:33:24 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.5123163376069,200.0659550612554,39.62003316085078)'}
19:33:24 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767137579740', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767137579962', 'destinoPuntoId': 'top', 'tipo': 'flecha-1767137582506', 'id': 'flecha-1767137604044'}}
19:33:24 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767137579740', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767137579962', 'destinoPuntoId': 'bottom', 'tipo': 'flecha-1767137591211', 'id': 'flecha-1767137604045'}}
19:34:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:34:49 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.31464720598079,149.11307133525233,20)'}
19:34:51 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137582506'}
19:34:52 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137604044'}
19:34:53 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137604045'}
19:34:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767137579740'}
19:34:59 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767137579740'}
19:35:02 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767137591211'}
19:35:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
19:35:04 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(70.05612259101265,183.42262290961366,20)'}
19:35:07 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767137579740', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767137579962', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767137707071'}}
19:35:08 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(110.09549789807699,138.7755398221309,81.62694271494256)'}
19:35:09 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(73.5784939255527,169.31510533255337,105.11242188661603)'}
19:35:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(105.9290411574651,145.14052426472324,48.92655898462796)'}
19:35:12 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(94.41199646314149,189.03481517199867,148.31265872318556)'}
19:35:12 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.06349925488064,99.7199766585164,23.610734192729815)'}
20:05:58 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.60632564256343,163.56008466894568,125.45506939645776)'}
20:05:59 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767139559838', 'x': 560, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:05:59 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767139559982', 'x': 480, 'y': 440, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:06:01 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767139559982', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767139559838', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767139561753'}}
20:10:54 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(74.51828902217886,72.94616947767722,21.53169853462949)'}
20:10:55 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767139855978', 'x': 520, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:10:56 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767139856208', 'x': 540, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:10:57 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767139856208'}
20:10:57 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767139856208'}
20:10:58 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767139856208', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767139855978', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767139858778'}}
20:15:43 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.22732409904019,222.7827376621749,146.2655465477893)'}
20:15:44 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767140144247', 'x': 420, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:15:44 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767140144467', 'x': 380, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:15:45 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140144247'}
20:15:45 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140144247'}
20:15:46 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767140144247', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767140144467', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767140146797'}}
20:16:45 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(103.7341879968314,117.57130823565765,20)'}
20:16:47 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767140207059', 'x': 460, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:16:47 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767140207284', 'x': 480, 'y': 460, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:16:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140207284'}
20:16:48 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140207284'}
20:16:49 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767140207284', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767140207059', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767140209926'}}
20:23:03 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.33746278607009,151.96296994109412,20)'}
20:24:20 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.96028853024868,107.84710629673307,32.66499985511655)'}
20:32:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140207284'}
20:32:07 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140207284'}
20:32:08 | DEBUG | SERVER | {'tipo': 'cambiar_color_nodo', 'id': 'nodo-1767140207284', 'color': '#ecce6c'}
20:32:38 | DEBUG | SERVER | {'tipo': 'cambiar_color_nodo', 'id': 'nodo-1767140207284', 'color': '#192416'}
20:32:57 | DEBUG | SERVER | {'tipo': 'cambiar_color_nodo', 'id': 'nodo-1767140207284', 'color': '#23202d'}
20:33:02 | DEBUG | SERVER | {'tipo': 'cambiar_color_nodo', 'id': 'nodo-1767140207284', 'color': '#222222'}
20:33:35 | DEBUG | SERVER | {'tipo': 'cambiar_color_nodo', 'id': 'nodo-1767140207284', 'color': '#ecce6c'}
20:36:17 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(77.94512201900298,139.1658167569641,66.19555359450052)'}
20:37:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.6658577957881,123.55057162599643,63.0643873571497)'}
20:37:33 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(79.73605952477995,198.44352342022094,117.17974945352259)'}
20:37:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.68779084887463,99.22922327950864,62.59788579573005)'}
20:38:39 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(103.71375682834542,168.85493727545227,89.10305289882673)'}
20:38:54 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(82.37973416944274,95.28201146644402,20)'}
20:39:08 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(76.76271828324991,57.23880975831479,20)'}
20:39:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:39:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.06485436172369,118.57998202109404,20)'}
20:39:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(76.52255015693117,77.29505548686959,20)'}
20:40:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(104.23685162877297,174.19138983589426,70.41512407243117)'}
20:40:36 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(74.80350083930115,151.69140885466703,79.1739540429027)'}
20:40:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:40:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.6225913983322,143.83069550824757,20)'}
20:40:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(81.20532018526214,98.48493389185435,49.06735487022755)'}
20:41:10 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:41:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.17829830486848,47.01085268157221,20)'}
20:41:36 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.85950942658152,92.17629864236883,20)'}
20:41:37 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.24444295382646,90.31041963938856,51.96531475624049)'}
20:41:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:41:43 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.69860330783735,204.1616359315661,20)'}
20:41:59 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(74.91701836819406,121.4916330653008,20)'}
20:42:17 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.7000539018971,106.73745070031883,25.623832583673014)'}
20:42:22 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(103.14270622985575,102.13108780416404,48.560816584185815)'}
20:42:24 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(93.39038895233124,139.84462879179526,20)'}
20:42:28 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(79.08554095369229,194.021428448275,113.03375472416658)'}
20:42:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:42:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.93423219331139,151.6707805889195,87.86256740195682)'}
20:42:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(73.86284151463467,171.02759680858532,76.25827952533434)'}
20:42:59 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(81.57600707586809,171.6121514627821,20)'}
20:43:06 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(82.80102819569052,85.74528828937491,20)'}
20:43:18 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.47341570453585,107.69942968245584,43.176868312433385)'}
20:43:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.17143639437202,163.81619857263377,20)'}
20:43:36 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.8425418818125,230.74238696839274,20)'}
20:43:36 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.5661424193095,209.74715187071973,110.84500923664683)'}
20:43:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(74.0012338578084,124.46560800425232,59.58604135967121)'}
20:43:48 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.10397526866807,237.80959138500103,37.11965608393626)'}
20:43:54 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.32642728133374,125.41416074032807,20)'}
20:43:58 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.72985845708959,160.34066212697172,118.70618114888165)'}
20:44:23 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(80.70615816844689,217.11977891334232,173.2419681901602)'}
20:44:25 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(88.25476522275174,105.96405565090808,21.63083129941917)'}
20:44:28 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.98188819643462,209.0218003468546,74.4710381488414)'}
20:44:30 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.97209077585619,142.02072786474517,20)'}
20:44:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:44:41 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.69220771471846,145.93543220598804,54.289267231172545)'}
20:44:45 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:44:46 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(78.55735573974154,67.14520134588987,20)'}
20:44:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.63785969939725,183.80297579138983,20)'}
20:44:58 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:44:59 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(113.71015622795446,175.1592194031497,20)'}
20:45:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:45:05 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.54255201392596,113.32879258031751,38.166229802167166)'}
20:45:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.42895272713443,110.57765996625187,20)'}
20:45:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:45:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(103.40144082823599,167.49342291281283,84.19888745548235)'}
20:46:13 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.19899595486761,135.65723325576204,71.17453299199033)'}
20:46:54 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.60664552299083,157.74521729787907,20.342082226796776)'}
20:47:04 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(82.73799230675638,86.94249180363757,45.12606552547352)'}
20:47:09 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(111.71465747694587,193.38653273409687,79.09301569621684)'}
20:47:29 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.40792051383686,126.757799555284,25.454011292739708)'}
20:47:42 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(94.39808862311567,143.65698999186947,20)'}
20:47:51 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.54596654042301,165.43732196331482,116.11561899319221)'}
20:48:16 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(74.99661308874855,108.49344815473674,20)'}
20:48:24 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.10422425163708,57.51701144049744,20)'}
20:48:28 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(77.97805182483766,129.71432230727993,20)'}
20:48:34 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.81185509802587,158.9840503273419,55.718630352795074)'}
20:48:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.96606769992478,59.313666355183585,20)'}
20:48:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(85.10759584621809,69.96298316922548,20)'}
20:49:02 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(115.40108218757638,155.13987428339746,115.05202082700316)'}
20:49:18 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.68591933199139,82.7510021151989,20)'}
20:49:30 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.25252793824971,218.06970934521686,53.276481014941865)'}
20:49:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.28377998729238,139.7442835134186,69.21466014176222)'}
20:49:39 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(100.04429724650572,157.29791217174534,107.38030187589428)'}
20:49:43 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.42608301853554,196.17634900321207,72.19178852000677)'}
20:50:01 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(88.73828615234918,110.26652470732486,40.22839576251171)'}
20:50:05 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.6308288784358,195.1027558022071,31.78152137136683)'}
20:52:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:52:14 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(119.13842648575664,133.49998063081233,20.493102113355967)'}
20:52:18 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:52:19 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.33621606023222,97.79376400995717,22.34577775881702)'}
20:52:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:53:00 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.02217342410896,216.9076876641077,121.88472269587601)'}
20:53:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:53:05 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.31098234094836,123.09502080253097,20)'}
20:53:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:53:13 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(82.18266945913939,185.69239445128576,140.41369665710255)'}
20:53:22 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(107.35427714429373,145.84272797680464,100.97079406460509)'}
20:53:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:53:39 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.6327330848764,74.65927016914327,20)'}
20:55:14 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:55:15 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.4386647278674,178.8772661262783,26.539380287384546)'}
20:55:50 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:55:50 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.2791117428406,157.34532023431223,65.02144098024263)'}
20:56:08 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140207284'}
20:56:08 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140207284'}
20:56:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140207059'}
20:56:12 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140207059'}
20:56:12 | DEBUG | SERVER | {'tipo': 'cambiar_texto_nodo', 'id': 'nodo-1767140207284', 'texto': 'Nuevo Cuadro', 'h': 76}
20:56:13 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767140209926'}
20:56:15 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767140207284', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767140207059', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1767142575623'}}
20:56:16 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:56:20 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767140207284'}
20:56:20 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767140207284'}
20:56:22 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767140207284'}
20:56:36 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.21363283046767,171.27233407557162,20)'}
20:56:38 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767142598041', 'x': 400, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
20:56:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
20:56:39 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767142598041'}
20:56:39 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767142598041'}
20:56:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.19855886683477,160.53445262276918,20)'}
20:56:56 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767142598041', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767140207059', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767142616032'}}
20:56:57 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767142598041'}
20:56:57 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767142598041'}
20:56:58 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767142598041'}
21:02:26 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.94896658631663,166.74394561690656,120.41321281032401)'}
21:03:05 | INFO | SERVER | sala gmqsz7guo8 eliminada por estar vacia y sin contenido.
22:56:37 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.86699322477374,105.07171891836614,42.43396917856869)'}
22:56:39 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767149799032', 'x': 560, 'y': 400, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
22:56:39 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767149799265', 'x': 400, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
22:56:41 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149799032'}
22:56:41 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149799032'}
22:56:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149799265'}
22:56:47 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149799265'}
22:56:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:56:50 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767149799265', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767149799032', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767149810013'}}
22:57:30 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149799265'}
22:57:30 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149799265'}
22:57:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149799032'}
22:57:31 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149799032'}
22:57:32 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767149810013'}
22:57:36 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767149799265', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767149799032', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767149856797'}}
22:57:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:57:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149799265'}
22:57:38 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149799265'}
22:57:39 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767149799265'}
22:58:03 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(78.98839508683992,91.33217344588424,50.00599236540101)'}
22:58:06 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:58:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.56692157078477,125.30048437350443,20)'}
22:58:15 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(94.07064319224158,212.7938156007194,146.60877472986206)'}
22:58:17 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767149897380', 'x': 440, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
22:58:17 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767149897600', 'x': 480, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
22:58:19 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767149897380', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767149897600', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767149899297'}}
22:58:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767149897380'}
22:58:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767149897380'}
22:58:23 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767149897380'}
22:59:19 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.75425575077305,146.65139008801728,51.44022424776661)'}
22:59:27 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.01237244700224,136.74249674649798,66.29527962666039)'}
22:59:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
23:01:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
23:01:09 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.76385264828897,111.22599240094783,20)'}
23:01:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
23:01:49 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(101.80646096227628,97.08827774971391,21.137485713345946)'}
23:01:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767150113665', 'x': 340, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
23:01:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767150113894', 'x': 480, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
23:01:55 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150113665'}
23:01:55 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150113665'}
23:01:57 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767150113665', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767150113894', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767150117973'}}
23:02:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
23:02:17 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(76.27424681249987,171.10929813337208,60.479299516023204)'}
23:02:18 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150113665'}
23:02:18 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150113665'}
23:02:23 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767150113665'}
23:03:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(89.78227700760391,166.5088771460783,60.46148257207932)'}
23:03:41 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767150221923', 'x': 520, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
23:03:42 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767150222138', 'x': 440, 'y': 580, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
23:03:43 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150222138'}
23:03:43 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150222138'}
23:03:45 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767150222138', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767150221923', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767150225312'}}
23:03:48 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767150222138'}
23:03:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767150233604', 'x': 500, 'y': 580, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
23:03:55 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767150221923', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767150233604', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767150235463'}}
23:03:56 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150233604'}
23:03:56 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150233604'}
23:04:00 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767150235463'}
23:04:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
23:04:07 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767150221923', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767150233604', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1767150247001'}}
23:04:15 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767150247001'}
23:04:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150221923'}
23:04:15 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150221923'}
23:04:16 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767150221923'}
23:04:24 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767150233604'}
23:04:24 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767150233604'}
23:04:47 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767150233604'}
23:04:51 | INFO | SERVER | sala gmqsz7guo8 eliminada por estar vacia y sin contenido.
14:53:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(85.35954019445448,179.46302434904848,70.8586664836136)'}
14:53:41 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207221133', 'x': 580, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:41 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207221287', 'x': 520, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207221133'}
14:53:42 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207221133'}
14:53:43 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767207221133'}
14:53:45 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207221287', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207221287', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767207225647'}}
14:53:46 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207221287'}
14:53:46 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207221287'}
14:53:49 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207229887', 'x': 540, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:50 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207230176', 'x': 420, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:50 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207230853', 'x': 460, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207233002', 'x': 480, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207233185', 'x': 500, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207233347', 'x': 460, 'y': 480, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207233530', 'x': 520, 'y': 460, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207233960', 'x': 460, 'y': 440, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:54 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207234135', 'x': 420, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:54 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207234277', 'x': 520, 'y': 500, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:54 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207234417', 'x': 440, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:54 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207234777', 'x': 460, 'y': 540, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:54 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207234946', 'x': 400, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:55 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207235091', 'x': 480, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:55 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767207235256', 'x': 380, 'y': 460, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
14:53:56 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235256'}
14:53:56 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235256'}
14:54:00 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207235256', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207235256', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767207240484'}}
14:54:01 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767207225647'}
14:54:02 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207221287', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207221287', 'destinoPuntoId': 'right', 'tipo': 'estatica', 'id': 'flecha-1767207242845'}}
14:54:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233960'}
14:54:03 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233960'}
14:54:06 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233960', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207233960', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767207246629'}}
14:54:08 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234277'}
14:54:08 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234277'}
14:54:09 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767207234277'}
14:54:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233185'}
14:54:09 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233185'}
14:54:10 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767207233185'}
14:54:10 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233002'}
14:54:10 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233002'}
14:54:10 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767207233002'}
14:54:11 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207229887'}
14:54:11 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207229887'}
14:54:12 | DEBUG | SERVER | {'tipo': 'eliminar_nodo', 'id': 'nodo-1767207229887'}
14:54:14 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233530'}
14:54:14 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233530'}
14:54:19 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233530', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767207233530', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767207259626'}}
14:54:20 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233347'}
14:54:20 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233347'}
14:54:24 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233347', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767207233347', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767207264095'}}
14:54:24 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235091'}
14:54:24 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235091'}
14:54:29 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767207264095'}
14:54:31 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233347', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767207233347', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767207271102'}}
14:54:32 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207235091', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767207235091', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767207272561'}}
14:54:35 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234777'}
14:54:35 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234777'}
14:54:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234946'}
14:54:37 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234946'}
14:54:38 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234417'}
14:54:38 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234417'}
14:54:39 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234135'}
14:54:39 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234135'}
14:54:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207230853'}
14:54:40 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207230853'}
14:54:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207230176'}
14:54:42 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207230176'}
14:54:43 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207230853'}
14:54:43 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207230853'}
14:54:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235091'}
14:54:44 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235091'}
14:54:45 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234777'}
14:54:45 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234777'}
14:54:49 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:54:50 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207230853'}
14:54:50 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207230853'}
14:54:52 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234135'}
14:54:52 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234135'}
14:54:53 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:55:02 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(85.40001437907229,204.32396878403614,20)'}
14:55:07 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207234777', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767207234777', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767207307416'}}
14:55:10 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:55:11 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207230853', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767207230853', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767207311756'}}
14:55:14 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207230176', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767207230176', 'destinoPuntoId': 'right', 'tipo': 'estatica', 'id': 'flecha-1767207314794'}}
14:55:17 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207234946', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767207234946', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767207317078'}}
14:55:18 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207234417', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767207234417', 'destinoPuntoId': 'right', 'tipo': 'estatica', 'id': 'flecha-1767207318791'}}
14:55:20 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207234135', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767207234135', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767207320506'}}
14:56:24 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:56:25 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.68799869461023,154.67813556340735,84.5413352604968)'}
14:56:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234946'}
14:56:29 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234946'}
15:04:20 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:04:22 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(81.73381557808331,151.5810343822507,20)'}
15:37:12 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.64294754811755,182.37045471429911,23.307641784142945)'}
15:37:20 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233960'}
15:37:20 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233960'}
15:37:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235091'}
15:37:23 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235091'}
15:37:25 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233960', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767207233960', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767209845770'}}
15:37:28 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233960', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207235256', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767209848612'}}
15:37:30 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767209848612'}
15:37:32 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233960', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207235256', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767209852014'}}
15:37:36 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235256'}
15:37:36 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235256'}
15:37:40 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767209852014'}
15:37:43 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767207233960', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767207235256', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767209863587'}}
15:38:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:40:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234135'}
15:40:26 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234135'}
15:50:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.9666938152842,89.0299699989702,20)'}
15:50:57 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207234135'}
15:50:57 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207234135'}
15:50:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:51:00 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235091'}
15:51:00 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235091'}
15:51:01 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207230176'}
15:51:01 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207230176'}
15:51:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207235091'}
15:51:03 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207235091'}
15:51:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233347'}
15:51:04 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233347'}
15:51:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233960'}
15:51:05 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233960'}
15:51:07 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767209863587'}
15:51:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:51:12 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767209845770'}
15:51:13 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767207233960'}
15:51:13 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767207233960'}
16:07:57 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(77.48251065542196,164.6178267098581,122.45721912334642)'}
16:07:58 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767211678756', 'x': 380, 'y': 520, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
16:07:58 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767211678920', 'x': 500, 'y': 580, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
16:08:01 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
16:08:02 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767211678756', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767211678920', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767211682868'}}
16:08:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767211678756'}
16:08:03 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767211678756'}
16:30:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(70.25930576959504,169.72550602097678,127.72700122887372)'}
16:30:33 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767211678756'}
16:30:33 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767211678756'}
16:30:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
16:30:57 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.16052473379463,152.17936596153334,51.260693507094416)'}
16:30:58 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767211678756'}
16:30:58 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767211678756'}
16:31:09 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767211682868'}
16:31:11 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767211678756', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767211678920', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767213071936'}}
16:31:18 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767213071936'}
16:31:20 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767211678756', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767211678920', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767213080067'}}
16:31:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
16:32:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767211678756'}
16:32:54 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767211678756'}
16:34:23 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767213080067'}
16:34:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
16:34:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(105.4313338963102,197.12186078508796,147.27916436848406)'}
16:34:34 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767211678756', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767211678920', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767213274563'}}
16:34:36 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767211678756'}
16:34:36 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767211678756'}
16:34:38 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767213274563'}
16:34:41 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767211678756', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767211678920', 'destinoPuntoId': 'right', 'tipo': 'dinamica', 'id': 'flecha-1767213281683'}}
15:37:50 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.63845565865968,204.77311222368252,110.55667098635112)'}
15:37:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767728273271', 'x': 540, 'y': 480, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
15:37:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767728273494', 'x': 440, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
15:37:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728273494'}
15:37:54 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728273494'}
15:37:56 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728273494', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767728273271', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767728276403'}}
15:38:02 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728276403'}
15:38:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728273271'}
15:38:05 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728273271'}
15:38:06 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:38:08 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:38:11 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.04439934726553,74.17020470994831,20)'}
15:38:13 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728273494', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728273271', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1767728293327'}}
15:38:14 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728273494'}
15:38:14 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728273494'}
15:38:17 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728293327'}
15:38:19 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728273494', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728273271', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1767728299903'}}
15:38:23 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728299903'}
15:38:46 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:38:48 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.6822108155128,69.93836634214412,26.35473993676134)'}
15:38:54 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728273494', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767728273271', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767728334857'}}
15:38:56 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:38:58 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728273494'}
15:38:58 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728273494'}
15:39:00 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728334857'}
15:39:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:39:30 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(72.57595912713259,165.66312794545416,56.29974187925143)'}
15:39:33 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728273494', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767728273271', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767728373316'}}
15:39:35 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728273271'}
15:39:35 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728273271'}
15:39:43 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728373316'}
15:40:06 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.25485478524445,146.56443558871388,20)'}
15:40:07 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767728407958', 'x': 500, 'y': 440, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
15:40:08 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1767728408179', 'x': 520, 'y': 420, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
15:40:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728408179'}
15:40:09 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728408179'}
15:40:11 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767728411636'}}
15:40:16 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728411636'}
15:40:20 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767728420378'}}
15:40:21 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728420378'}
15:40:25 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767728425312'}}
15:40:26 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728425312'}
15:40:28 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767728428671'}}
15:40:29 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728428671'}
15:40:31 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'left', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767728431606'}}
15:40:32 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728431606'}
15:40:50 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:40:51 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767728451942'}}
15:40:53 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1767728453474'}}
15:40:54 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728453474'}
15:40:55 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728451942'}
15:40:58 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'right', 'tipo': 'estatica', 'id': 'flecha-1767728458082'}}
15:40:59 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728458082'}
15:41:00 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728408179', 'origenPuntoId': 'right', 'destinoId': 'nodo-1767728407958', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1767728460961'}}
15:41:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728408179'}
15:41:03 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728408179'}
15:41:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:41:17 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728460961'}
15:42:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:42:06 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.89099696684386,205.71958792517654,121.98186470211584)'}
15:42:08 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728407958', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767728528483'}}
15:42:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1767728407958'}
15:42:09 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1767728407958'}
15:42:30 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728528483'}
15:42:36 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728407958', 'origenPuntoId': 'top', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1767728556684'}}
15:42:50 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728556684'}
15:42:56 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1767728407958', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1767728408179', 'destinoPuntoId': 'bottom', 'tipo': 'dinamica', 'id': 'flecha-1767728576909'}}
15:43:05 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1767728576909'}
23:58:50 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.62751170219559,98.07149806995875,20)'}
23:59:32 | INFO | SERVER | sala f44ziahvw1 eliminada por estar vacia y sin contenido.
00:00:29 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.84193380895746,195.81701095757813,77.14777115084038)'}
00:00:44 | INFO | SERVER | sala 7awtju7yiq eliminada por estar vacia y sin contenido.
13:51:42 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(80.38163629165854,169.731178539371,44.43102457804898)'}
13:51:53 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1772473913137', 'x': 1040, 'y': 440, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
13:52:26 | DEBUG | SERVER | {'tipo': 'nuevo_nodo', 'nodo': {'id': 'nodo-1772473946033', 'x': 860, 'y': 560, 'w': 100, 'h': 60, 'texto': 'Nuevo Cuadro', 'color': 'white'}}
13:52:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
13:52:27 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
13:52:29 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1772473949170'}}
13:52:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
13:52:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:26:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
14:26:40 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
14:26:43 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772473949170'}
14:26:45 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'left', 'tipo': 'estatica', 'id': 'flecha-1772476005265'}}
14:26:49 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772476005265'}
14:26:51 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'left', 'tipo': 'dinamica', 'id': 'flecha-1772476011073'}}
14:27:03 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473913137'}
14:27:03 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473913137'}
14:27:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
14:27:04 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
14:27:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:27:17 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'top', 'tipo': 'estatica', 'id': 'flecha-1772476037105'}}
14:27:18 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
14:27:18 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
14:27:26 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772476037105'}
14:27:28 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'bottom', 'tipo': 'estatica', 'id': 'flecha-1772476048681'}}
14:27:30 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772476048681'}
14:27:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
14:27:32 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
14:27:32 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
14:27:34 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'top', 'tipo': 'dinamica', 'id': 'flecha-1772476054697'}}
14:27:37 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772476054697'}
14:27:40 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473946033', 'origenPuntoId': 'right', 'destinoId': 'nodo-1772473913137', 'destinoPuntoId': 'bottom', 'tipo': 'dinamica', 'id': 'flecha-1772476060897'}}
14:27:42 | DEBUG | SERVER | {'tipo': 'eliminar_conexion', 'id': 'flecha-1772476060897'}
14:27:44 | DEBUG | SERVER | {'tipo': 'crear_conexion', 'conexion': {'origenId': 'nodo-1772473913137', 'origenPuntoId': 'bottom', 'destinoId': 'nodo-1772473946033', 'destinoPuntoId': 'right', 'tipo': 'dinamica', 'id': 'flecha-1772476064377'}}
14:27:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:18:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
15:18:10 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': 'nodo-1772473946033'}
15:18:10 | DEBUG | SERVER | {'tipo': 'traer_al_frente', 'id': 'nodo-1772473946033'}
15:18:17 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:07:25 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.40570232846517,129.6632224552707,48.615196234744914)'}
22:15:26 | INFO | SERVER | sala f0bv0gmez0 eliminada por estar vacia y sin contenido.
22:16:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(104.81278374126825,209.4721827406466,170.22285091761114)'}
22:17:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.53762703287501,201.95648034837177,20)'}
22:20:55 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:20:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(110.63646270075779,213.3678111017029,168.98159985333075)'}
22:23:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:23:07 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:27:14 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.10264844969083,130.628577562367,20)'}
22:27:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:30:25 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:30:25 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:30:26 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.5881986644977,226.18204606059564,144.96958999322152)'}
22:30:34 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:30:34 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:30:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.50348604611294,91.16546496504095,25.349648317944656)'}
22:30:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:30:40 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:30:41 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.31971247745275,193.45409609935874,114.52560806404477)'}
22:31:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:07 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.46496370625161,229.37787793394983,65.82907202836391)'}
22:31:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:15 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:15 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(76.4027928979909,121.33489019856967,20)'}
22:31:21 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:21 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:21 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.61949557351672,125.95690694067167,82.27238025928165)'}
22:31:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:27 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:28 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.14484965202148,135.58326309244035,73.04469960648552)'}
22:31:34 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:34 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(110.48559061143513,138.332789198989,37.13023267217304)'}
22:31:41 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:42 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:42 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(102.8675164786066,121.70299040691171,20)'}
22:31:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:31:54 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.84722591975522,131.4235266095609,20)'}
22:31:55 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:31:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(110.91810651880016,76.97878006662899,21.377663250262913)'}
22:32:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:05 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:06 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.23310084362328,160.1191586007106,114.78692059392583)'}
22:32:19 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:19 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:20 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.62249740564602,206.82791232932036,110.4788288324458)'}
22:32:23 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:23 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:24 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(119.91886786596994,57.62069293818613,20)'}
22:32:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:28 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:29 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(101.24988163283777,126.45685669288358,68.84035877638654)'}
22:32:35 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:35 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.14792909963326,144.96842723621748,93.82885230089563)'}
22:32:41 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:41 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:42 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.3516196746024,164.67884788812788,44.90741612596973)'}
22:32:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:45 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:45 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.81797633549583,172.89811754234148,104.2218953417792)'}
22:32:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:48 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:48 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(70.64880756791722,186.04258201340105,68.86574348210435)'}
22:32:51 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:51 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:51 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(111.81805588172008,87.84223093787358,36.86726706766616)'}
22:32:55 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:55 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:32:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(119.9522798659159,154.33707967932992,21.068641852688565)'}
22:32:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:32:59 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:33:00 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(81.68197610033167,78.30241980998647,20)'}
22:33:07 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:33:07 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:33:08 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.75099737983975,70.69780751945251,20)'}
22:33:09 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:33:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.80227018128312,180.1476330492674,43.4462271803868)'}
22:33:27 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:33:27 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:33:28 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(78.44895134296006,158.6240507223665,90.41745066497873)'}
22:33:34 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:33:34 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:33:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(79.79238661475202,191.05301192163304,101.78189220807306)'}
22:34:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:34:09 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:34:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(105.62299522898311,96.16980000318372,20)'}
22:37:30 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:37:31 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:37:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(111.81355792388455,177.38580013391015,20)'}
22:37:34 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:37:34 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(73.28527580891628,215.56767737636198,20)'}
22:38:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:38:15 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:38:16 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(116.95971400337977,198.11323560750608,88.80505033392075)'}
22:38:39 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:38:39 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:38:40 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(117.65041304958433,100.24764004890687,21.74520351449067)'}
22:39:20 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:39:20 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:39:21 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(100.20629323405136,200.3045410632913,90.25221748966838)'}
22:39:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:39:30 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:39:30 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(75.56148172752593,157.7154486317717,20)'}
22:39:47 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:39:47 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:39:48 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(70.05943103240487,82.5505885517633,20)'}
22:39:52 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:40:02 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:40:02 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:40:03 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(100.03405379911193,246.89040178704442,140.27078790739301)'}
22:40:48 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:40:49 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.63374686730579,77.56565206020846,23.64635273594552)'}
22:40:55 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:40:56 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:40:56 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(111.17550427433466,137.31551193392457,20)'}
22:40:58 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:40:58 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(116.2390063343843,201.46390301484087,63.20207383736252)'}
22:41:13 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:41:13 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:41:14 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(92.39456923626676,119.33533699699062,22.57373032679098)'}
22:41:26 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:41:27 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:41:27 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(84.0859272030629,137.03083284321625,40.96490971556558)'}
22:41:43 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:41:43 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:41:44 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.76841755558752,194.40672941641125,20)'}
22:42:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:42:16 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:42:17 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(95.54908174401517,148.7106093322056,20)'}
22:42:32 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:42:33 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:42:33 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(71.66813080411211,148.5941148512029,69.61640986973399)'}
22:42:51 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:42:51 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:42:51 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(104.5522530082076,175.9801758286699,20)'}
22:43:19 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:43:19 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:43:20 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(77.07243975443147,129.80812199285253,20)'}
22:43:29 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:43:29 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:43:29 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(96.93671603637299,211.66767257506154,20)'}
22:43:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:43:37 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:43:37 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.18077857350696,106.70146515125666,20)'}
22:44:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:05 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:06 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(99.33987845111054,139.79386743193908,29.62818014718932)'}
22:44:17 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:17 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:18 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(73.82474802636925,162.4843182998871,20)'}
22:44:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:37 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(83.53596126404054,152.75818840468204,90.22186972522039)'}
22:44:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:44 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:45 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.55420853183736,150.08476596731762,20)'}
22:44:51 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:51 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:52 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(103.39635272046311,162.15416650754912,85.5357384400762)'}
22:44:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:44:59 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:44:59 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(115.5841905473637,128.03314472770205,20)'}
22:45:06 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:45:06 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:45:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(104.81465777700679,159.8047242009862,29.276559448920274)'}
22:45:17 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:45:18 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:45:18 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(119.03957211746021,200.28336079052224,58.45030582699496)'}
22:45:42 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:45:43 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:45:44 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.52604471680492,181.67141349724264,131.19509470136043)'}
22:46:17 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:46:18 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:46:19 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(112.20403700923009,133.89038702835097,20)'}
22:46:34 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:46:35 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(109.40114773212905,110.73942040412757,20)'}
22:46:44 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:46:44 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:46:45 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(87.71926887522037,127.24542677970322,65.8195428684919)'}
22:46:52 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:46:52 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:46:53 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(81.48195371888508,66.85014597046732,20)'}
22:47:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:47:04 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:47:04 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(118.30943595721864,202.3590876493791,55.360355983520904)'}
22:47:35 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:47:36 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:47:37 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.21277313911972,114.96198188599236,43.81865785752025)'}
22:48:11 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:48:11 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:48:11 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(70.77625704705997,186.88542024607003,35.279060447595924)'}
22:48:24 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:48:24 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:48:25 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(115.54858884548429,60.08480937444648,21.779691230083472)'}
22:49:06 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:49:06 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:49:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(89.41108471963915,129.39251862089176,20)'}
22:49:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:49:40 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:49:41 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(97.07978904611032,157.05588679410494,27.109097909460374)'}
22:49:51 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:49:51 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:49:52 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(96.14454483190312,117.5348565303861,20)'}
22:49:59 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:00 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:01 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.39529343045459,149.3832143378257,88.9904392466987)'}
22:50:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:12 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:13 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(94.64416663532751,201.36490777828874,135.07011920852892)'}
22:50:33 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:33 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:34 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.9672681132198,143.8989130843234,20)'}
22:50:40 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:40 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:41 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(91.36261024418562,51.36572654501657,20)'}
22:50:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:48 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:48 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(94.44296968366741,110.35585940078334,45.69610482345401)'}
22:50:54 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:50:54 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:50:55 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.99913252649128,78.37131510092901,20)'}
22:51:04 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:51:04 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:51:04 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.26973435784195,143.57212326194457,20)'}
22:51:09 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:51:09 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:51:10 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(82.36771770520961,174.2481229608609,61.44926404749498)'}
22:51:14 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:51:14 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:51:14 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(110.57972913233219,164.90527860409708,57.041234219511736)'}
22:51:18 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:51:18 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:51:19 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(116.3151531748589,90.2006594024364,54.172379870044026)'}
22:52:05 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:52:05 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:52:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(76.27031036193151,214.81625793882895,33.1801567930121)'}
22:52:37 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:52:37 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:52:38 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(113.7785098670688,151.50297676720328,20)'}
22:52:46 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:52:46 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:52:47 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(90.03513409147077,111.58613606050099,57.65266721661436)'}
22:53:06 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:53:06 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:53:07 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(95.51174626148091,163.29499620124014,109.69426889013337)'}
22:53:20 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:53:21 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(107.71287160520203,137.6395386575506,74.04304375004168)'}
22:53:48 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:53:48 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:53:49 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(108.79658288898008,137.95180698618228,59.48109131702125)'}
22:54:08 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:09 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:09 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(101.81342871175968,190.02403392801997,20)'}
22:54:15 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:15 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:16 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(114.6454559619072,196.8818544607544,20)'}
22:54:22 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:22 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:23 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(106.63398846224771,127.99949403862047,25.422358399224684)'}
22:54:31 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:31 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:32 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(86.04762144807859,187.77925086891074,150.95132717361446)'}
22:54:50 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:50 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:51 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(72.90906208470395,167.16371209459857,76.49842590334893)'}
22:54:58 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:54:58 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:54:59 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(79.51624100220666,83.2108679233639,20)'}
22:55:12 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:55:13 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:55:13 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(101.4085673197985,130.0108640151687,98.89887122178797)'}
22:55:14 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.
22:55:14 | DEBUG | SERVER | {'tipo': 'asignar_color_user', 'color': 'rgb(77.85243195327313,177.01992130070118,53.88412025634831)'}
22:55:28 | DEBUG | SERVER | {'tipo': 'seleccionar_nodo', 'id': None}
22:55:28 | INFO | SERVER | sala nzr5s5mu8e eliminada por estar vacia y sin contenido.