-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
895 lines (892 loc) · 144 KB
/
index.html
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
<html>
<head>
<title>2023 Scouting App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" href="applab/fontawesome-webfont.woff2" as="font">
<script src="jquery-1.12.1.min.js"></script>
<script>
function setExportConfig(config) { window.EXPORT_OPTIONS = config; }
</script>
<script src="config.js"></script>
<script src="applab/applab-api.js"></script>
<script src="jsapi.js"></script>
<link rel="stylesheet" href="applab/applab.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="divApplab" class="appModern running" tabindex="1" style="width: 320px; height: 450px; display: block;">
<div class="screen" tabindex="1" data-theme="robot" id="home"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227);">
<div contenteditable="false" class="textArea" id="homeTitle"
style="width: 310px; height: 80px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 5px; top: 5px; margin: 0px; text-align: center; font-size: 45px;">
Scouting App</div>
<div contenteditable="false" class="textArea" id="colorQuestion"
style="width: 165px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 20px; padding: 5px 15px; position: absolute; left: 5px; top: 220px; margin: 0px;">
Alliance Side:</div><button id="continueHome"
style="padding: 0px; margin: 0px; border-style: solid; height: 60px; width: 120px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 20px; position: absolute; left: 100px; top: 370px;">Continue</button><select
id="allianceDropdown"
style="width: 135px; height: 60px; margin: 0px; border-style: solid; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20448%22%20enable-background%3D%22new%200%200%20256%20448%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E.arrow%7Bfill%3A%23353c42%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22arrow%22%20d%3D%22M255.9%20168c0-4.2-1.6-7.9-4.8-11.2-3.2-3.2-6.9-4.8-11.2-4.8H16c-4.2%200-7.9%201.6-11.2%204.8S0%20163.8%200%20168c0%204.4%201.6%208.2%204.8%2011.4l112%20112c3.1%203.1%206.8%204.6%2011.2%204.6%204.4%200%208.2-1.5%2011.4-4.6l112-112c3-3.2%204.5-7%204.5-11.4z%22%2F%3E%3C%2Fsvg%3E"); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 0px 30px 0px 15px; position: absolute; left: 180px; top: 220px;">
<option>Left</option>
<option>Right</option>
</select><input id="teamNumberInput"
style="margin: 0px; width: 135px; height: 60px; border-style: solid; color: rgb(53, 60, 66); background-color: rgb(255, 255, 255); border-color: rgb(53, 60, 66); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 180px; top: 90px;"
placeholder="Team Number"><input id="scouterNameInput"
style="margin: 0px; width: 135px; height: 60px; border-style: solid; color: rgb(53, 60, 66); background-color: rgb(255, 255, 255); border-color: rgb(53, 60, 66); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 180px; top: 155px;"
placeholder="Name">
<div contenteditable="false" class="textArea" id="matchNumberQ"
style="width: 165px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 20px; padding: 5px 15px; position: absolute; left: 5px; top: 285px; margin: 0px;">
Match Number:</div><input id="matchNumberInput"
style="margin: 0px; width: 135px; height: 60px; border-style: solid; color: rgb(53, 60, 66); background-color: rgb(255, 255, 255); border-color: rgb(53, 60, 66); border-radius: 0px; border-width: 1px; font-family: Tahoma, Geneva, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 180px; top: 285px;"
placeholder="Match Number">
<div contenteditable="false" class="textArea" id="teamNumberQ"
style="width: 165px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 20px; padding: 5px 15px; position: absolute; left: 5px; top: 90px; margin: 0px;">
Enter Team Number:</div>
<div contenteditable="false" class="textArea" id="nameQ"
style="width: 165px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 20px; padding: 5px 15px; position: absolute; left: 5px; top: 155px; margin: 0px;">
Scouter Name:</div>
<div contenteditable="false" class="textArea design-mode-hidden" id="warning"
style="width: 200px; height: 100px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(193, 46, 46); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 60px; top: 345px; margin: 0px; font-size: 24px;">
Fill in the data fields correctly!!!!!!!!</div>
</div>
<div class="screen" tabindex="1" data-theme="robot" id="autoLeft"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227); display: none;">
<input type="checkbox" id="checkboxALDocked"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 235px;"><input
type="checkbox" id="checkboxALMobility"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 145px;">
<div contenteditable="false" class="textArea" id="engagedQ"
style="width: 175px; height: 65px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 267px; margin: 0px;">
Engaged? (On the platform with lights glowing)</div>
<div contenteditable="false" class="textArea" id="mobilityQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 75px; margin: 0px;">
Mobility? (Cross the community (red/blue) line)</div>
<div contenteditable="false" class="textArea" id="dockedQ"
style="width: 175px; height: 50px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 175px; margin: 0px;">
Docked? (On the platform)</div><input type="checkbox" id="checkboxALEngaged"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 345px;">
<div contenteditable="false" class="textArea" id="dockedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 230px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="engagedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 340px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="MobilityYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 140px; margin: 0px;">
Yes</div><button id="continueAutoLeft"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 140px; top: 375px;">Continue</button><input
type="checkbox" id="checkboxALTTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 75px; left: 5px;">
<div contenteditable="false" class="textArea" id="autoLeftTitle"
style="width: 310px; height: 65px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 5px; top: 5px; margin: 0px; text-align: center; font-size: 44px;">
Autonomous</div><input type="checkbox" id="checkboxALTBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 155px; left: 5px;"><input
type="checkbox" id="checkboxALMTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 200px; left: 5px;"><input
type="checkbox" id="checkboxALMML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 240px;"><input
type="checkbox" id="checkboxALMBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 280px;"><input
type="checkbox" id="checkboxALBTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 325px;"><input
type="checkbox" id="checkboxALBML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 365px;"><input
type="checkbox" id="checkboxALBBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 405px;"><input
type="checkbox" id="checkboxALTML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 115px; left: 5px;"><input
type="checkbox" id="checkboxALMTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 200px;"><input
type="checkbox" id="checkboxALMMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 240px;"><input
type="checkbox" id="checkboxALMBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 280px;"><input
type="checkbox" id="checkboxALBTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 325px;"><input
type="checkbox" id="checkboxALBMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 365px;"><input
type="checkbox" id="checkboxALBBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 405px;"><input
type="checkbox" id="checkboxALTMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 115px;"><input
type="checkbox" id="checkboxALTBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 155px;"><input
type="checkbox" id="checkboxALTTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 75px;"><button
id="buttonALTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALMTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALTBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALTTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALMBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALBBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALBTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonALTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALBMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALTMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALMMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="ALBack"
style="padding: 0px; margin: 0px; border-style: solid; height: 25px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 140px; top: 420px;">Back</button><button
id="buttonConeALTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeALBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonCubeALTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeALBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonALTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonALTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button>
</div>
<div class="screen" tabindex="1" data-theme="robot" id="autoRight"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227); display: none;">
<input type="checkbox" id="checkboxARDocked"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 230px;"><input
type="checkbox" id="checkboxARMobility"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 145px;">
<div contenteditable="false" class="textArea" id="AREngagedQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 5px; top: 260px; margin: 0px;">
Engaged? (On the platform with lights glowing)</div>
<div contenteditable="false" class="textArea" id="ARmobilityQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; top: 75px; margin: 0px; left: 5px;">
Mobility? (Cross the community (red/blue) line)</div>
<div contenteditable="false" class="textArea" id="ARDockedQ"
style="width: 175px; height: 45px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 5px; top: 175px; margin: 0px;">
Docked? (On the platform)</div><input type="checkbox" id="checkboxAREngaged"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 330px;">
<div contenteditable="false" class="textArea" id="ARDockedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 225px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="AREngagedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 325px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="ARMobilityYes"
style="width: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 140px; margin: 0px; height: 30px;">
Yes</div><button id="continueAutoRight"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 360px;">Continue</button><input
type="checkbox" id="checkboxARTTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 75px;">
<div contenteditable="false" class="textArea" id="ARTitle"
style="width: 310px; height: 65px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 5px; top: 5px; margin: 0px; text-align: center; font-size: 44px;">
Autonomous</div><input type="checkbox" id="checkboxARTBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 155px;"><input
type="checkbox" id="checkboxARMTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 200px;"><input
type="checkbox" id="checkboxARMMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 240px;"><input
type="checkbox" id="checkboxARMBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 280px;"><input
type="checkbox" id="checkboxARBTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 325px;"><input
type="checkbox" id="checkboxARBMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 365px;"><input
type="checkbox" id="checkboxARBBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 405px;"><input
type="checkbox" id="checkboxARTMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 115px;"><input
type="checkbox" id="checkboxARMTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 200px;"><input
type="checkbox" id="checkboxARMMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 240px;"><input
type="checkbox" id="checkboxARMBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 280px;"><input
type="checkbox" id="checkboxARBTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 325px;"><input
type="checkbox" id="checkboxARBMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 365px;"><input
type="checkbox" id="checkboxARBBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 405px;"><input
type="checkbox" id="checkboxARTMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 115px;"><input
type="checkbox" id="checkboxARTBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 155px;"><input
type="checkbox" id="checkboxARTTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 75px;"><button
id="buttonARTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARMBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARMTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARTBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARTTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARBBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARBTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonARTMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARMMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARBMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="ARBack"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 405px;">Back</button><button
id="buttonConeARTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeARBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonCubeARTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeARTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonARTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px;"></button><button
id="buttonARTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px;"></button><button
id="buttonARTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px;"></button><button
id="buttonARMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px;"></button><button
id="buttonARMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px;"></button><button
id="buttonARMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px;"></button><button
id="buttonARBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px;"></button><button
id="buttonARBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px;"></button><button
id="buttonARBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px;"></button>
</div>
<div class="screen" tabindex="1" data-theme="robot" id="teleopRight"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227); display: none;">
<input type="checkbox" id="checkboxTRDocked"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 230px;"><input
type="checkbox" id="checkboxTRPark"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 145px;">
<div contenteditable="false" class="textArea" id="TREngagedQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 5px; top: 260px; margin: 0px;">
Engaged? (On the platform with lights glowing)</div>
<div contenteditable="false" class="textArea" id="TRParkQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 5px; top: 75px; margin: 0px;">
Park? (In the community at the end)</div>
<div contenteditable="false" class="textArea" id="TRDockedQ"
style="width: 175px; height: 45px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 5px; top: 175px; margin: 0px;">
Docked? (On the platform)</div><input type="checkbox" id="checkboxTREngaged"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 5px; top: 330px;">
<div contenteditable="false" class="textArea" id="TRDockedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 225px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="TREngagedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 325px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="TRParkYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 55px; top: 140px; margin: 0px;">
Yes</div><button id="continueTeleopRight"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 360px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default">Continue</button><input type="checkbox" id="checkboxTRTTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 75px;">
<div contenteditable="false" class="textArea" id="TRTitle"
style="width: 310px; height: 65px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 5px; top: 5px; margin: 0px; text-align: center; font-size: 44px;">
Teleop</div><input type="checkbox" id="checkboxTRTBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 155px;"><input
type="checkbox" id="checkboxTRMTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 200px;"><input
type="checkbox" id="checkboxTRMMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 240px;"><input
type="checkbox" id="checkboxTRMBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 280px;"><input
type="checkbox" id="checkboxTRBTR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 325px;"><input
type="checkbox" id="checkboxTRBMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 365px;"><input
type="checkbox" id="checkboxTRBBR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 405px;"><input
type="checkbox" id="checkboxTRTMR"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 275px; top: 115px;"><input
type="checkbox" id="checkboxTRMTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 200px;"><input
type="checkbox" id="checkboxTRMMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 240px;"><input
type="checkbox" id="checkboxTRMBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 280px;"><input
type="checkbox" id="checkboxTRBTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 325px;"><input
type="checkbox" id="checkboxTRBMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 365px;"><input
type="checkbox" id="checkboxTRBBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 405px;"><input
type="checkbox" id="checkboxTRTMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 115px;"><input
type="checkbox" id="checkboxTRTBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 155px;"><input
type="checkbox" id="checkboxTRTTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 230px; top: 75px;"><button
id="buttonTRTMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTRTTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRMTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRMBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRBTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRBBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRTBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTRTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTRMMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTRMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTRBMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 230px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTRBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 275px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="TRBack"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 405px;">Back</button><button
id="buttonConeTRTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonConeTRBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cone.jpg" data-image-type="file"></button><button
id="buttonCubeTRTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonCubeTRTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
class="design-mode-hidden" data-canonical-image-url="assets/cube.jpeg"
data-image-type="file"></button><button id="buttonTRTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 75px;"></button><button
id="buttonTRTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 115px;"></button><button
id="buttonTRMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 200px;"></button><button
id="buttonTRMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 240px;"></button><button
id="buttonTRMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 280px;"></button><button
id="buttonTRBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 325px;"></button><button
id="buttonTRBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 365px;"></button><button
id="buttonTRBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 405px;"></button><button
id="buttonTRTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 185px; top: 155px;"></button>
</div>
<div class="screen" tabindex="1" data-theme="robot" id="final"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227); display: none;">
<input id="Comments"
style="margin: 0px; width: 220px; height: 125px; border-style: solid; color: rgb(53, 60, 66); background-color: rgb(255, 255, 255); border-color: rgb(53, 60, 66); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; top: 205px; left: 50px;"
placeholder="Additional Comments"><button id="submit"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 100px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 110px; top: 350px;">Submit</button><button
id="backSubmitButton"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 100px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 110px; top: 400px;">Back</button>
<div contenteditable="false" class="textArea" id="defense"
style="width: 180px; height: 35px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: Tahoma, Geneva, sans-serif; padding: 5px 15px; position: absolute; left: 65px; top: 15px; margin: 0px; font-size: 19px;">
Defense Bot?</div>
<div contenteditable="false" class="textArea" id="defenseYes"
style="width: 60px; height: 35px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: Tahoma, Geneva, sans-serif; font-size: 15px; padding: 5px 15px; position: absolute; left: 135px; top: 60px; margin: 0px;">
Yes</div><input type="checkbox" id="checkboxDefense"
style="width: 25px; height: 20px; margin: 0px; position: absolute; left: 85px; top: 65px;">
<div contenteditable="false" class="textArea" id="notMove"
style="width: 190px; height: 35px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: Tahoma, Geneva, sans-serif; padding: 5px 15px; position: absolute; left: 60px; top: 110px; margin: 0px; font-size: 17px;">
Robot Did Not Move</div><input type="checkbox" id="checkboxNotMove"
style="width: 25px; height: 20px; margin: 0px; position: absolute; left: 85px; top: 160px;">
<div contenteditable="false" class="textArea" id="notMoveYes"
style="width: 60px; height: 35px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: Tahoma, Geneva, sans-serif; font-size: 15px; padding: 5px 15px; position: absolute; left: 135px; top: 155px; margin: 0px;">
Yes</div>
</div>
<div class="screen" tabindex="1" data-theme="robot" id="teleopLeft"
style="height: 450px; width: 320px; left: 0px; top: 0px; position: absolute; z-index: 0; background-color: rgb(216, 224, 227); display: none;">
<input type="checkbox" id="checkboxTLDocked"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 235px;"><input
type="checkbox" id="checkboxTLPark"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 145px;">
<div contenteditable="false" class="textArea" id="TLEngagedQ"
style="width: 175px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 267px; margin: 0px; height: 65px;">
Engaged? (On the platform with lights glowing)</div>
<div contenteditable="false" class="textArea" id="TLParkQ"
style="width: 175px; height: 60px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 75px; margin: 0px;">
Park? (In the community at the end but not docked)</div>
<div contenteditable="false" class="textArea" id="TLDockedQ"
style="width: 175px; height: 50px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 140px; top: 175px; margin: 0px;">
Docked? (On the platform)</div><input type="checkbox" id="checkboxTLEngaged"
style="width: 20px; height: 20px; margin: 0px; position: absolute; left: 150px; top: 345px;">
<div contenteditable="false" class="textArea" id="TLDockedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 230px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="TLEngagedYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 340px; margin: 0px;">
Yes</div>
<div contenteditable="false" class="textArea" id="TLParkYes"
style="width: 60px; height: 30px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 13px; padding: 5px 15px; position: absolute; left: 190px; top: 140px; margin: 0px;">
Yes</div><button id="continueTeleopLeft"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 140px; top: 375px;">Continue</button><input
type="checkbox" id="checkboxTLTTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 75px; left: 5px;">
<div contenteditable="false" class="textArea" id="TLTitle"
style="width: 310px; height: 65px; border-style: solid; background-color: rgb(245, 245, 246); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 1px; font-family: "Comic Sans MS", cursive, sans-serif; padding: 5px 15px; position: absolute; left: 5px; top: 5px; margin: 0px; text-align: center; font-size: 44px;">
Teleop</div><input type="checkbox" id="checkboxTLTBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 155px; left: 5px;"><input
type="checkbox" id="checkboxTLMTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 200px; left: 5px;"><input
type="checkbox" id="checkboxTLMML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 240px;"><input
type="checkbox" id="checkboxTLMBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 280px;"><input
type="checkbox" id="checkboxTLBTL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 325px;"><input
type="checkbox" id="checkboxTLBML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 365px;"><input
type="checkbox" id="checkboxTLBBL"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 5px; top: 405px;"><input
type="checkbox" id="checkboxTLTML"
style="width: 40px; height: 40px; margin: 0px; position: absolute; top: 115px; left: 5px;"><input
type="checkbox" id="checkboxTLMTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 200px;"><input
type="checkbox" id="checkboxTLMMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 240px;"><input
type="checkbox" id="checkboxTLMBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 280px;"><input
type="checkbox" id="checkboxTLBTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 325px;"><input
type="checkbox" id="checkboxTLBMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 365px;"><input
type="checkbox" id="checkboxTLBBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 405px;"><input
type="checkbox" id="checkboxTLTMM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 115px;"><input
type="checkbox" id="checkboxTLTBM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 155px;"><input
type="checkbox" id="checkboxTLTTM"
style="width: 40px; height: 40px; margin: 0px; position: absolute; left: 50px; top: 75px;"><button
id="buttonTLTTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLTML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLTTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLMBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLMBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLBTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLBTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLBBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLBBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLMTL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLMTM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLTBM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLTBL"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat; width: 40px;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonTLTMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLMML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLMMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLBMM"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 50px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLBML"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 5px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="TLBack"
style="padding: 0px; margin: 0px; border-style: solid; height: 25px; width: 175px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Comic Sans MS", cursive, sans-serif; font-size: 15px; position: absolute; left: 140px; top: 420px;">Back</button><button
id="buttonConeTLTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonConeTLBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url(assets/cone.jpg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cone.jpg" data-image-type="file" class="design-mode-hidden"></button><button
id="buttonCubeTLTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonCubeTLBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url(assets/cube.jpeg); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="assets/cube.jpeg" data-image-type="file"
class="design-mode-hidden"></button><button id="buttonTLTTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 75px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLTMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 115px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLTBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 155px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLMTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 200px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLMMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 240px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLMBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 280px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLBTR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 325px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLBMR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 365px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button><button id="buttonTLBBR"
style="padding: 0px; margin: 0px; border-style: solid; height: 40px; width: 40px; background-color: rgb(178, 217, 235); color: rgb(53, 60, 66); border-color: rgb(128, 167, 185); border-radius: 0px; border-width: 2px; font-family: "Arial Black", Gadget, sans-serif; font-size: 15px; position: absolute; left: 95px; top: 405px; background-image: url("https://studio.code.org/blockly/media/1x1.gif"); background-size: contain; background-position: 50% 50%; background-repeat: no-repeat;"
data-canonical-image-url="" data-image-type="default"></button>
</div>
</div>
</body>
<a id="export" class="myButton" download="" href="#">export</a>
<script>
function createDownloadLink(anchorSelector, str, fileName) {
if (window.navigator.msSaveOrOpenBlob) {
var fileData = ['\ufeff' + str];
blobObject = new Blob(fileData);
$(anchorSelector).click(function () {
window.navigator.msSaveOrOpenBlob(blobObject, fileName);
});
} else {
var url = "data:text/plain;charset=utf-8,%EF%BB%BF" + encodeURIComponent(str);
$(anchorSelector).attr("download", fileName);
$(anchorSelector).attr("href", url);
}
}
</script>
<script>
function exportToCsv(filename, csvFile) {
var blob = new Blob([csvFile], { type: 'text/csv;charset=utf-8;' });
if (navigator.msSaveBlob) {
navigator.msSaveBlob(blob, filename);
} else {
var link = document.createElement("a");
if (link.download !== undefined) { // feature detection
// Browsers that support HTML5 download attribute
var url = URL.createObjectURL(blob);
link.setAttribute("href", url);
link.setAttribute("download", filename);
link.style.visibility = 'hidden';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
}
}
</script>
<script>
window.onbeforeunload = function () {
return "Make sure you click export before closing the tab!";
};
</script>
</html>