-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuilder_utterance_labels.txt
5997 lines (5451 loc) · 147 KB
/
builder_utterance_labels.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
B47-A30-C17-1523543622315
<builder> mission has started. 1
<builder> hi 1
<builder> any orientation? 3
B47-A30-C77-1523543724130
<builder> mission has started. 1
<builder> any color? 3
<builder> here? 2
<builder> across, i presume? 2
<builder> what color next? 11
B47-A30-C90-1523544013938
<builder> mission has started. 1
<builder> ok 6
<builder> this block i'm standing on? 3
<builder> purple? 3
<builder> and how large? 3
<builder> this good so far? 2
<builder> or more like this? 2
<builder> silly me, you said that 4
<builder> here? 2
<builder> one block too short 7
<builder> there we go 7
B47-A30-C23-1523544822631
<builder> mission has started. 1
<builder> so make a second row 8 spaces ahead? 3
<builder> repeat? 11
<builder> all 4 sides? 3
<builder> or only two? 3
<builder> the center of the bridge? on the purple? 3
<builder> like that? 2
<builder> i'm out of red 7
B47-A30-C19-1523545432382
<builder> mission has started. 1
<builder> the top of the ladder? and how far? 3
B47-A30-C18-1523545846349
<builder> mission has started. 1
B47-A30-C27-1523546055656
<builder> mission has started. 1
<builder> here? 2
<builder> of he red t? 3
<builder> 4 squares? 11
<builder> parallel, or perpendicular to the yellow? 3
<builder> this? 2
<builder> do it block by block 10
<builder> here? 2
<builder> from this end? 3
<builder> and 3 wide, like the rest? 3
B47-A30-C36-1523546973724
<builder> mission has started. 1
<builder> 3x2? 3
<builder> stupid question 4
<builder> here? 2
<builder> that was my right 7
<builder> premature demolition 8
B47-A30-C33-1523547603957
<builder> mission has started. 1
<builder> dw about it 11 do about it
<builder> with the green block as one end? 3
<builder> here? 2
<builder> or like this? 2
B47-A30-C35-1523548092310
<builder> mission has started. 1
<builder> a single block? 3
B47-A30-C29-1523548488813
<builder> mission has started. 1
<builder> tetris! 8
<builder> ? 2
<builder> i'm making the t shape, yeah? 11
<builder> which edge? 3
<builder> this one? 2
B27-A25-C93-1523572845054
<builder> mission has started. 1
<builder> lets go 1
<builder> like that? 2
<builder> nice 6
B27-A25-C96-1523573042341
<builder> mission has started. 1
<builder> ready! 1
B44-A36-C3-1523573135199
<builder> mission has started. 1
<builder> hello 1
<builder> are you there? 1
<builder> which one? 3
B27-A25-C91-1523573214139
<builder> mission has started. 1
<builder> in the middle? 3
<builder> good? 2
B44-A36-C101-1523573407514
<builder> mission has started. 1
<builder> hello 1
<builder> was that last one a warmup? seemed really easy 8
<builder> you don't have to give me individual instructions for getting out colored blocks. just tell me to place x colored block here or there 10
<builder> i think the instructions would be more effective if you told me where to place blocks relative to where other blocks are rather than where i am located 10
<builder> does the green block go here? 2
<builder> here? 2
<builder> ok how many spaces forwar/backward/left/right/up/down from the current location of the green block? 3
<builder> here? 2
<builder> here? 2
<builder> do you mean behind? 3
<builder> the green block cannot be in front because there is an orange block there 7
<builder> where? 3
<builder> is this good 2
B27-A25-C94-1523573532771
<builder> mission has started. 1
<builder> ready! 1
<builder> got it 6
<builder> towards the edge im facing? 3
<builder> like that? 2
<builder> got it 6
<builder> cool 6
<builder> like that? 2
B27-A25-C89-1523574163819
<builder> mission has started. 1
<builder> starting there? 2
<builder> there? 2
B44-A36-C97-1523574614866
<builder> mission has started. 1
<builder> hello. ready 1
<builder> i'm confused. i went to the red block and placed a red block behind it. what am i doing wrong? 2
<builder> the red block is behind the first red block from my perspective. i think it would be easier if you gave me instructions from my point of view 10
<builder> there is already a blue block in front of the red block i just placed 7
<builder> would you like me to shift points of views to this side? 11
<builder> should it be 2? 3
<builder> like this? 2
<builder> ok i'm just restoring it to what it was like before you said wait no. what do i do to change this? 11
<builder> is this good? 2
B27-A25-C92-1523574663577
<builder> mission has started. 1
<builder> does it matter where? 3
<builder> got it 6
<builder> cherries? 8
B27-A25-C97-1523575407320
<builder> mission has started. 1
B44-A36-C98-1523575432575
<builder> mission has started. 1
<builder> hello. ready 1
<builder> its ok 6
<builder> so you want me to build a red cross? same orientation? 3
<builder> shifted backwards by 1? 3
<builder> nice! 6
B27-A25-C101-1523575684618
<builder> mission has started. 1
<builder> yeah we have 20 of each 7
<builder> color? 3
<builder> this one? 2
<builder> orange on this side? 3
B27-A25-C99-1523576318491
<builder> mission has started. 1
<builder> three on allthree? 3
<builder> there? 2
B49-A39-C103-1523765212662
<builder> mission has started. 1
<builder> hey 1
<builder> ready 1
<builder> one space? 2
<builder> one more over? 3
<builder> like so? 2
<builder> ok 6
<builder> ok 6
<builder> ok 6
<builder> thanks 4
B49-A39-C74-1523765872040
<builder> mission has started. 1
<builder> salut 5
<builder> k 5
<builder> ok 6
<builder> ok 6
<builder> same level? 3
<builder> ok 6
<builder> is this what you meant 2
<builder> i thought you said right for some reason 6
<builder> ready 6
<builder> correct? 2
<builder> ok 6
<builder> ok 6
<builder> i think 6
<builder> done! 6
<builder> thats not mirror 7
<builder> across no centerline is that a mirror 8
<builder> looks like a some sea monsters with just their heads poking out of the water 8
B49-A39-C71-1523766649650
<builder> mission has started. 1
<builder> ready player one 1
<builder> are the outer blocks each on an edge? 3
<builder> if you say so 6
<builder> np 6
<builder> like so? 2
<builder> ok 6
<builder> done! 6
B49-A39-C78-1523767236013
<builder> mission has started. 1
<builder> lets do it 1
<builder> like an upside down u 11
<builder> or like the st louis arch 11
<builder> .. 5
<builder> arc de triumph 5
<builder> each what 3
<builder> like this? 2
<builder> or this 2
<builder> ok 6
<builder> maybe 6
<builder> like this? 2
B49-A39-C55-1523767968053
<builder> mission has started. 1
<builder> ready 1
<builder> on the ground? 3
<builder> like this? 2
<builder> ok 6
<builder> ok 6
<builder> more on the left? 3
<builder> ok 6
<builder> cool shape 8
<builder> done i think 6
B49-A39-C10-1523768489600
<builder> mission has started. 1
<builder> ready 1
<builder> i thought you said it stands up 6
<builder> i see 6
<builder> connected at the top in the same layer? 3
<builder> done 6
<builder> its not right? 2
<builder> oh gotcha 6
B49-A39-C106-1523768948389
<builder> mission has started. 1
<builder> on the ground? 3
<builder> ok 6
<builder> this one? 2
<builder> ready 1
<builder> ok 6
<builder> like this? 2
<builder> yeah 5
<builder> got it 6
B49-A39-C79-1523769585238
<builder> mission has started. 1
<builder> hi 1
<builder> i thought you said it was floating 6
<builder> ok i think 6
<builder> ok 6
<builder> orange? 3
<builder> ok 6
<builder> nice! 6
B49-A39-C107-1523770013466
<builder> mission has started. 1
<builder> uh huh 5
<builder> yeah 5
<builder> i didnt even notice 6
<builder> cool 6
<builder> ok 6
<builder> oh you said on 6
<builder> yellow? 3
<builder> done 6
<builder> oh yeah 6
B37-A23-C103-1523629505941
<builder> mission has started. 1
<builder> hi! 1
<builder> ok, sounds good 6
<builder> ha no worries 6
<builder> ok 6
<builder> the middle of all 3 blocks? 3
<builder> like that? 2
<builder> ok 6
<builder> great! 6
B37-A23-C102-1523629957597
<builder> mission has started. 1
<builder> ok 6
<builder> ha ok 6
<builder> ok 6
<builder> what color blocks? 3
<builder> like that, or somewhere else? 2
<builder> ah i see 6
<builder> nice 6
B37-A23-C105-1523630488223
<builder> mission has started. 1
<builder> ok 6
<builder> ok 6
<builder> so it's 7 blocks long? 3
<builder> ok 6
<builder> the middle row? 3
<builder> on top of the red blocks? 3
<builder> when you say square, is that four blocks? 3
<builder> like that? 2
<builder> yay 5
B37-A23-C95-1523631151562
<builder> mission has started. 1
<builder> haha oh well 6
<builder> orange on top of red? 3
<builder> a layer of orange next to the existing orange? 3
<builder> like that? 2
<builder> ok 6
<builder> purple blocks again? 3
<builder> not sure what you mean by corner 6
<builder> oh ok 6
<builder> weird shape :) 8
B37-A23-C106-1523631763706
<builder> mission has started. 1
<builder> in a stack? 3
<builder> ok 6
<builder> at the top? 3
<builder> ok 6
<builder> there? 2
<builder> diagonal in which direction? 3
<builder> cool 6
B37-A23-C100-1523632209802
<builder> mission has started. 1
<builder> no, i think it's working well 6
<builder> oops right 6
<builder> nice! that went smoothly 6
B37-A23-C104-1523632889288
<builder> mission has started. 1
<builder> ok 6
<builder> like that? 2
<builder> ok 6
<builder> like that? 2
<builder> are these still orange blocks? because i'm going to run out of orange 7
<builder> i think so 6
<builder> yay 5
<builder> sweet 6
B37-A23-C107-1523633626568
<builder> mission has started. 1
<builder> yes! 6
<builder> haha ok 6
<builder> towards the middle? 3
<builder> so that's above the existing columns at the top? 3
<builder> there? 2
<builder> awesome 6
B37-A23-C110-1523634174791
<builder> mission has started. 1
<builder> whooo 5
<builder> exciting 5
<builder> ok 6
<builder> there? 2
<builder> there? 2
<builder> yay, nice job! 6
B34-A31-C3-1523649983538
<builder> mission has started. 1
<builder> hi 1
<builder> alright 6
<builder> do you want to do something like an x-y coordinate system? 3
B35-A44-C32-1523650068421
<builder> mission has started. 1
<builder> same 1
<builder> sorry 4
<builder> like that? 2
<builder> relative to my position correct? 2
B34-A31-C108-1523650132924
<builder> hello again 1
<builder> mission has started. 1
<builder> hi there again 1
<builder> that was fine 6
<builder> what colors are required? 3
<builder> vertical or horizantal(flat) 3
<builder> that good? 2
<builder> egg-cellent 6
<builder> like that 2
<builder> i'm guessing this is the frame? 11
<builder> same thing on top? 11
<builder> do we need to fill that in? 11
<builder> great 6
B35-A44-C111-1523650278312
<builder> mission has started. 1
<builder> let me know when/where to begin 1
<builder> all three levels are hallow in the center? 3
<builder> ie i use 8 block per level 3
<builder> okay 6
<builder> oh sorry. are you getting my feed? 3
<builder> so the back 2 blocks or the front 2? 3
<builder> in the first row with 3 blocks, the 2nd row with 2 blocks or the third row? 3
<builder> could you rephrase it 3
<builder> so was that a correct spot? 3
<builder> or the 2 behind the placement i just made 3
<builder> correct? 2
<builder> whoops 5
<builder> okay whats next 11
<builder> okay 6
<builder> okay 6
<builder> okay 6
<builder> litttttttttt 5
B34-A31-C109-1523650510682
<builder> mission has started. 1
<builder> hello again 1
<builder> fun 1
<builder> like that? 2
<builder> alright 6
<builder> there 7
<builder> do you want me to stand at a different perspective or is this the easiest position? 10
<builder> like a flag 8
<builder> ish 8
B35-A44-C114-1523650699269
<builder> mission has started. 1
<builder> im ready 1
<builder> okay 6
<builder> any color or still orange? 3
<builder> okay 6
<builder> okay 6
<builder> okay 6
<builder> oh so they look superimposed 6
<builder> like that? 2
<builder> like that? 2
<builder> no worries 6
B34-A31-C91-1523650839792
<builder> mission has started. 1
<builder> of course 6
<builder> ?? 2
<builder> lmk if you want me to move 3
<builder> is this 2d or 3d? 3
<builder> is this one face? 3
<builder> left or right side? 3
<builder> one more layer? 11
<builder> blue pillar with yellow block? 3
<builder> what color? 3
<builder> for the last wall? 3
<builder> oh a gate 8
<builder> fancy 5
<builder> alright 6
B35-A44-C94-1523650963951
<builder> mission has started. 1
<builder> im ready 1
<builder> 3 8
<builder> 1 level tall? 3
<builder> bottom left or right? 3
<builder> is this looking like what you want it to? 2
<builder> i dont have enought blocks 7
<builder> gotcha 6
<builder> oaky 6
<builder> okay* 6
<builder> okay 6
<builder> okay 6
<builder> okay 6
<builder> that it? 2
B35-A44-C95-1523651338167
<builder> mission has started. 1
<builder> no worries 6
<builder> okay 6
<builder> okay 6
<builder> okay 6
<builder> okay 6
<builder> if its easier we can build relative to my direction around this block 10
<builder> okay 6
<builder> okay 6
<builder> gotcha 6
<builder> littttttt 5
B34-A31-C113-1523651402802
<builder> mission has started. 1
<builder> :) 1
<builder> like the block i but it's a number 11
<builder> how many digits? 3
<builder> and what color(s) 3
<builder> should i move that? 3
<builder> shift it? 3
<builder> this is going to be like a hex 2? 11
<builder> like that? 2
<builder> there? 2
<builder> that's behind 2
<builder> gr8 6
<builder> same height? 3
<builder> like that? 2
<builder> there? 2
<builder> alright. what number is this? 11
<builder> like that? 2
<builder> you good 6
<builder> just a bunch of colorful numbers 8
B35-A44-C99-1523651769587
<builder> mission has started. 1
<builder> i think i'm ready to go pro at this 1
<builder> this perspective? 3
<builder> this? 2
<builder> okay 6
<builder> like this 2
<builder> okay 6
<builder> like this? 2
<builder> same design? just blue? 3
<builder> gotcha 6
<builder> okay 6
<builder> go team 1
B34-A31-C89-1523652062789
<builder> mission has started. 1
<builder> alright sure 6
<builder> one block in is towards me? 2
<builder> so like there? 2
<builder> oh from a corner. i read center 6
<builder> just like that 2
<builder> in red? 3
<builder> perfect 6
<builder> like that? 2
<builder> ;) 5
<builder> i'm going to make it purple so i remember to delete it 7
<builder> i'ts hard to find a good perspective for you 7 It's hard to find a good perspective for you
<builder> *it's 7
<builder> is this symmetrical? 11
<builder> ?? 2
<builder> yeah idk 6
B35-A44-C92-1523652214354
<builder> mission has started. 1
<builder> okay 6
<builder> okay 6
<builder> yeah i don't follow 6
<builder> can u rephrase? 3
<builder> okay 6
<builder> ahh 5
B35-A44-C108-1523652454518
<builder> mission has started. 1
<builder> is this a block i 3
<builder> that it? 2
<builder> bet 5
B35-A44-C109-1523652588144
<builder> mission has started. 1
<builder> like this? 2
<builder> def the hardest 1 8
B35-A44-C113-1523652699693
<builder> mission has started. 1
<builder> okay 6
<builder> okay. 6
<builder> bottom center? 3
<builder> okay 6
<builder> like that? 2
<builder> that? 2
<builder> that? 2
<builder> lol my bad 4
<builder> directly behind? 3
<builder> okay 6
<builder> like that? 2
<builder> gotcha 6
<builder> okay 6
<builder> so here? 2
<builder> or 1 back 2
<builder> in yellow? 3
<builder> is it a slanted leg or straight 3
<builder> littttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt 5
B34-A31-C112-1523652785313
<builder> mission has started. 1
<builder> great 6
<builder> in a row like that? 2
<builder> this is funky 8
<builder> um 5
<builder> snek 5
<builder> is this like a spiral of sorts? 11
<builder> alright 6
<builder> do i put one under the yellow? 3
<builder> two in front now 7
<builder> down? 3
<builder> abstract art 8
<builder> i think we are good 6
<builder> though i dont really know 6
B35-A44-C112-1523653368154
<builder> mission has started. 1
<builder> hype 5
<builder> okay. but starting from this red block? 3
<builder> so still going left to right 3
<builder> like this? 2
<builder> okay 6
<builder> this? 2
<builder> do u want a specific angle? 3
<builder> gotcha 6
<builder> i see it now 6
<builder> yeah? 2
B34-A31-C93-1523653432956
<builder> mission has started. 1
<builder> nice 6
<builder> i think we are getting the hang of this 6
<builder> so do i put one on the left or the right? 3
<builder> neat 5
B34-A31-C100-1523653650559
<builder> mission has started. 1
<builder> fun 1
<builder> does it look like anything in particular? 11
<builder> oh my 5
<builder> here? 2
<builder> there we go 7
<builder> will this form a square? 11
<builder> ok 6
<builder> sorry 4
<builder> my b 4
<builder> left of the highest green block? 3
<builder> kk 5
<builder> yes? no? 2
<builder> perfect 6
<builder> :) 5
B35-A44-C91-1523653832055
<builder> mission has started. 1
<builder> how many spaces 3
<builder> okay 6
<builder> this? 2
<builder> gotcha 6
<builder> okay 6
<builder> sweet 6
B35-A44-C89-1523654130378
<builder> mission has started. 1
<builder> here or 1 back 2
<builder> okay 6
<builder> sorry i've been thinking about it as 2 empty spaces. my b 6
B34-A31-C98-1523654279329
<builder> mission has started. 1
<builder> how complex? 11
<builder> is there any oclor we are not using> 11 is there any color we are not using?
<builder> ok 6
<builder> like that? 2
<builder> ok 6
<builder> very religious 6
<builder> ?? 2
<builder> exactly the same? 3
<builder> ok 6
<builder> on which side? 3
<builder> what color are the ear things? 3
<builder> like that 2
<builder> great 6
B52-A27-C3-1523659176661
<builder> mission has started. 1
<builder> hi 1
<builder> rad! seems fun, easy way to earn some amazon bucks 8
<builder> like so? 2
B52-A27-C104-1523659334243
<builder> mission has started. 1
<builder> want me to set something down for reference? 11
<builder> easy enough 6
<builder> nice arch 6
<builder> any more? 11
<builder> oh, got you 6
<builder> horizontal? 3
<builder> i'm not sure i follow 6
<builder> on the side of what red? 3
<builder> oh i got you 6
<builder> sorry i am thinking in two dimensions 6
<builder> yeah? 2
<builder> is this your first time? 8
<builder> three high? or like that? 2
B16-A1-C96-1523659861119
<builder> mission has started. 1
<builder> hi again! 1
<builder> cool 6
<builder> oh, wwo, sorry! 4
<builder> here? 2
<builder> great! is it that the end? if you, you can quit if you'd like 8
B52-A27-C103-1523660020610
<builder> mission has started. 1
<builder> whoops! i got in trouble 6
<builder> crude 5
<builder> 3x3 like what we started with? 3
<builder> think i got it 6
<builder> i think it is 6
<builder> okay 6
<builder> hot or cold? 2
<builder> is this what you mean? 2
<builder> yay! 5
B16-A1-C102-1523660203486
<builder> mission has started. 1
<builder> okay, cool 6
<builder> oh, okay! 6
<builder> also yellow? 3
<builder> like this? 2
<builder> this? 2
B52-A27-C53-1523660483558
<builder> mission has started. 1
<builder> where should we start? 11
<builder> also with a hole? 3
<builder> cozy 5
<builder> no biggie 5
<builder> :) 5
B52-A27-C49-1523660730846
<builder> mission has started. 1
<builder> got it 6
<builder> like, resting on the 4th space? 3
<builder> from the edge? 3
<builder> okay 6
<builder> right from which angle 3
<builder> my current right? 2
<builder> i think 6
<builder> all purple? 3
<builder> perpendicular to the current thing? 3
<builder> thanks 4
<builder> did i guess it? 2
<builder> i can undo 7
<builder> lol 5
<builder> parallel to the blue wall? 3
<builder> like an a 11
<builder> ? 11
<builder> is it the same shape as the purple? 3
<builder> yeah? 2
<builder> cute, a, b, c, d 6
B16-A1-C41-1523660865222
<builder> mission has started. 1
<builder> hi again! 1
<builder> okay, cool! 6
<builder> what color? 3
<builder> where do i place it with respect to the length of l? 3
<builder> nice! 6
B16-A1-C105-1523661152828
<builder> mission has started. 1
<builder> alright 6
<builder> like this? 2
<builder> yellow? 3
<builder> both? 3
<builder> nice! 6
B52-A27-C44-1523661370022
<builder> mission has started. 1
<builder> 3 high or wide? 3
<builder> in the future we can call these donuts or something 10
<builder> 4x3 donut 10
<builder> like, one hanging over? 3
<builder> no, like this 7
<builder> two out 7
<builder> got it 6
<builder> like this? 2
<builder> toward the green? 3
<builder> nice! 6
<builder> i like this one 8
<builder> oh, sorry, misunderstood 4
<builder> haha 5
<builder> nice nice 6
B16-A1-C106-1523661697475
<builder> mission has started. 1
<builder> cute! 5
<builder> okay cool 6
<builder> this? 2
<builder> this? 2
<builder> ahh okay 6
<builder> here? 2
<builder> and this one? 2
<builder> weird, okay! 6
B52-A27-C48-1523661970517
<builder> mission has started. 1
<builder> lead the way boss 1
<builder> take your time 1
<builder> wow, tall 5
<builder> is the face the same direction as the l on teh bottom 3
<builder> that's fun! 5
<builder> yay or nay? 2
<builder> lol, just the red parts sticking out? 3
<builder> i think i fixed it 6
<builder> connect the reds like a matt? 3
<builder> all sides? 3
<builder> nice 6
<builder> is it gonna rain? 11
<builder> sweet 6
B16-A1-C107-1523662556468
<builder> mission has started. 1
<builder> hi! 1
<builder> sorry about that~ 4
<builder> *! 4
<builder> here? 2
B52-A27-C102-1523662795472
<builder> mission has started. 1
<builder> this must be the last one 8
<builder> alright 6
<builder> sorry i keep moving 4
<builder> is this right? 2
<builder> gotcha 6
<builder> repeat on other side? 3
<builder> like so? 2
<builder> okay 6
<builder> hot or cold? 2
<builder> okay 6
<builder> what 3
<builder> the first we placed/ 3 the first we placed?
<builder> ? 3
<builder> okay 6
<builder> thanks :) 4
<builder> you're doing great 6
<builder> four across? 3
<builder> like, parallel to the yellow? 3
<builder> what do you mean 5 to hang off 3
<builder> that one? 2
<builder> whoo 5
B16-A1-C114-1523663178897
<builder> mission has started. 1
<builder> hi again! 1
<builder> okay, fun 6
<builder> like this? 2
<builder> here? 2
<builder> here? 2
<builder> this? 2
B52-A27-C105-1523663458446
<builder> mission has started. 1
<builder> lol 5
<builder> this, or one higher? 3
<builder> gotcha 6
<builder> just one across 2
<builder> or up and down too? 3
<builder> a donut? 11
<builder> booyah 5
B20-A10-C17-1522939291290
<builder> mission has started. 1
<builder> ready when you are 1
<builder> bigger? 2
<builder> that it? 2
B12-A26-C3-1522939293524
<builder> mission has started. 1
<builder> hello 1
<builder> ok 6
B12-A26-C34-1522939450817
<builder> mission has started. 1
<builder> ok 6
<builder> what color? 3
<builder> likethat? 2 like that?
<builder> ok 6
B20-A10-C42-1522939494339
<builder> mission has started. 1
<builder> how big is this? 3
<builder> colour? 3
<builder> cool 6
<builder> this? 2
B12-A26-C40-1522939655941
<builder> mission has started. 1
<builder> ready 1
B12-A26-C9-1522939843093
<builder> mission has started. 1
<builder> ready 1
<builder> color? 3
<builder> filled in? 11
<builder> ok 6
<builder> like that? 2
B20-A10-C43-1522940025842
<builder> mission has started. 1
<builder> on top of both? 3
<builder> like this? 2
<builder> are we making a tree? 11
<builder> the closest i have to that is the yellow i put down 7
<builder> alrighty 6
<builder> this? 2
<builder> cool 6
B12-A26-C10-1522940187640
<builder> mission has started. 1
<builder> ready 1
<builder> like that? 2
<builder> ok 6
<builder> ok 6
<builder> good? 2
<builder> pyramid? 11
<builder> which layer? 3
<builder> thusly? 2
B20-A10-C2-1522940361401
<builder> mission has started. 1
<builder> colour? 3
<builder> alrighty 6
<builder> what's the difference? 3
<builder> wait this or something else? 2
<builder> this? 2
<builder> cool 6
B12-A26-C11-1522940682033
<builder> mission has started. 1
<builder> ready 1
<builder> no problem 6
<builder> red? 11
<builder> what is a blackspace? 3
<builder> ok 6
<builder> will orange do? 10
<builder> i have no brown 7
<builder> what else? 11
B20-A10-C5-1522940932269
<builder> mission has started. 1
<builder> how much space do i need to leave on the whole grid 11
<builder> on top and in the middle? 3
<builder> this? 2
<builder> this? 2
<builder> great 6
<builder> that it? 2
B12-A26-C12-1522941391204
<builder> mission has started. 1
<builder> no more l's? 11
<builder> like that? 2
B20-A10-C6-1522941513644
<builder> mission has started. 1
<builder> im just marking for myself 7
<builder> tok 5
<builder> ah okay 6
<builder> where do i put it? 3
<builder> fill in the rest? or is it a ring? 11
<builder> cool 6
B12-A26-C42-1522941761985
<builder> mission has started. 1
B12-A26-C2-1522942074039
<builder> mission has started. 1
<builder> i am not sure what you mean 3
<builder> make it into an octogon? 3
B12-A26-C5-1522942414410
<builder> mission has started. 1
B20-A10-C7-1522942426640
<builder> mission has started. 1
<builder> will there be enough room? 11
<builder> here? 2
<builder> up one? or there? 2
B12-A26-C6-1522942690396
<builder> mission has started. 1
<builder> good? 2
<builder> ok 6
<builder> green blue purple green maybe? 3
<builder> do you know the color of the obscured blocks? 3
<builder> rotate how? 3
<builder> touch the green rectangle four times? 3
B20-A10-C15-1522942941805
<builder> mission has started. 1
<builder> his? 2
<builder> this* 2
<builder> starting here? 2
<builder> now what from here? 11
<builder> no the right? 2
B12-A26-C7-1522943263017
<builder> mission has started. 1
<builder> color? 3
B38-A28-C3-1522944356417