rapid-router 5.18.0__py2.py3-none-any.whl → 7.6.8__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- example_project/rapid_router_test_settings.py +19 -7
- example_project/settings.py +21 -8
- example_project/urls.py +5 -6
- game/__init__.py +1 -1
- game/admin.py +7 -2
- game/character.py +8 -0
- game/decor.py +40 -0
- game/end_to_end_tests/base_game_test.py +34 -27
- game/end_to_end_tests/editor_page.py +15 -0
- game/end_to_end_tests/game_page.py +88 -20
- game/end_to_end_tests/selenium_test_case.py +1 -20
- game/end_to_end_tests/test_cow_crashes.py +3 -5
- game/end_to_end_tests/test_level_editor.py +273 -10
- game/end_to_end_tests/test_level_selection.py +25 -3
- game/end_to_end_tests/test_play_through.py +222 -127
- game/end_to_end_tests/test_python_levels.py +41 -7
- game/end_to_end_tests/test_saving_workspace.py +2 -1
- game/forms.py +7 -1
- game/level_management.py +26 -11
- game/messages.py +899 -337
- game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
- game/migrations/0026_levels_pt2.py +13 -2
- game/migrations/0032_cannot_turn_left_level.py +13 -2
- game/migrations/0033_recursion_level.py +13 -2
- game/migrations/0034_joes_level.py +13 -2
- game/migrations/0035_disable_route_score_level_70.py +0 -2
- game/migrations/0036_level_score_73.py +0 -2
- game/migrations/0037_level_score_79.py +0 -2
- game/migrations/0038_level_score_40.py +0 -1
- game/migrations/0042_level_score_73.py +0 -2
- game/migrations/0048_add_cow_field_and_blocks.py +0 -2
- game/migrations/0049_level_score_34.py +0 -2
- game/migrations/0050_level_score_40.py +0 -2
- game/migrations/0051_level_score_49.py +0 -1
- game/migrations/0086_loop_levels.py +13 -2
- game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
- game/migrations/0093_alter_level_character_name.py +18 -0
- game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
- game/migrations/0095_level_commands.py +18 -0
- game/migrations/0096_alter_level_commands.py +18 -0
- game/migrations/0097_add_python_den_levels.py +1515 -0
- game/migrations/0098_add_episode_link_fields.py +44 -0
- game/migrations/0099_python_episodes_links.py +103 -0
- game/migrations/0100_reorder_python_levels.py +179 -0
- game/migrations/0101_rename_episodes.py +45 -0
- game/migrations/0102_reoder_episodes_13_14.py +136 -0
- game/migrations/0103_level_1015_solution.py +26 -0
- game/migrations/0104_remove_level_direct_drive.py +17 -0
- game/migrations/0105_delete_invalid_attempts.py +18 -0
- game/migrations/0106_fields_to_snake_case.py +48 -0
- game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
- game/migrations/0108_episode_indy_worksheet_link.py +18 -0
- game/migrations/0109_create_episodes_23_and_24.py +99 -0
- game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
- game/migrations/0111_create_worksheets.py +149 -0
- game/migrations/0112_worksheet_locked_classes.py +21 -0
- game/migrations/0113_level_needs_approval.py +18 -0
- game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
- game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
- game/migrations/0116_update_worksheet_video_links.py +68 -0
- game/migrations/0117_update_solutions_to_if_else.py +61 -0
- game/models.py +127 -17
- game/permissions.py +51 -19
- game/python_den_urls.py +26 -0
- game/random_road.py +9 -9
- game/serializers.py +12 -17
- game/static/django_reverse_js/js/reverse.js +171 -0
- game/static/game/css/LilitaOne-Regular.ttf +0 -0
- game/static/game/css/backgrounds.css +8 -12
- game/static/game/css/dataTables.custom.css +3 -2
- game/static/game/css/editor.css +47 -0
- game/static/game/css/game.css +37 -43
- game/static/game/css/game_screen.css +16 -0
- game/static/game/css/level_editor.css +5 -0
- game/static/game/css/level_selection.css +17 -2
- game/static/game/image/Python_Den_hero_student.png +0 -0
- game/static/game/image/Python_levels_page.svg +1954 -0
- game/static/game/image/characters/front_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/image/decor/city/solar_panel.svg +1200 -0
- game/static/game/image/decor/farm/solar_panel.svg +86 -0
- game/static/game/image/decor/grass/solar_panel.svg +86 -0
- game/static/game/image/decor/snow/solar_panel.svg +173 -0
- game/static/game/image/electric_van.svg +448 -0
- game/static/game/image/icons/description.svg +1 -0
- game/static/game/image/icons/hint.svg +1 -0
- game/static/game/image/icons/python.svg +1 -1
- game/static/game/image/pigeon.svg +684 -0
- game/static/game/image/python_den_header.svg +19 -0
- game/static/game/js/animation.js +65 -24
- game/static/game/js/blockly/msg/js/bg.js +52 -1
- game/static/game/js/blockly/msg/js/ca.js +52 -1
- game/static/game/js/blockly/msg/js/en-gb.js +2 -0
- game/static/game/js/blockly/msg/js/en.js +2 -0
- game/static/game/js/blockly/msg/js/es.js +52 -1
- game/static/game/js/blockly/msg/js/fr.js +2 -0
- game/static/game/js/blockly/msg/js/hi.js +2 -0
- game/static/game/js/blockly/msg/js/it.js +52 -1
- game/static/game/js/blockly/msg/js/pl.js +52 -1
- game/static/game/js/blockly/msg/js/pt-br.js +52 -1
- game/static/game/js/blockly/msg/js/ru.js +52 -1
- game/static/game/js/blockly/msg/js/ur.js +52 -1
- game/static/game/js/blocklyCustomBlocks.js +93 -52
- game/static/game/js/button.js +12 -0
- game/static/game/js/cow.js +11 -7
- game/static/game/js/drawing.js +68 -29
- game/static/game/js/editor.js +23 -0
- game/static/game/js/game.js +74 -110
- game/static/game/js/level_editor.js +646 -274
- game/static/game/js/level_moderation.js +33 -2
- game/static/game/js/level_selection.js +1 -1
- game/static/game/js/loadLanguages.js +2 -2
- game/static/game/js/model.js +32 -2
- game/static/game/js/pythonControl.js +14 -1
- game/static/game/js/scoreboard.js +0 -37
- game/static/game/js/scoreboardSharedLevels.js +48 -0
- game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
- game/static/game/js/sound.js +52 -5
- game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
- game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
- game/static/game/raphael_image/pigeon.svg +685 -0
- game/static/game/sass/game.scss +2 -2
- game/static/game/sound/clown_horn.mp3 +0 -0
- game/static/game/sound/clown_horn.ogg +0 -0
- game/static/game/sound/electric_van_starting.mp3 +0 -0
- game/static/game/sound/electric_van_starting.ogg +0 -0
- game/static/game/sound/pigeon.mp3 +0 -0
- game/static/game/sound/pigeon.ogg +0 -0
- game/static/game/sound/sleigh_bells.mp3 +0 -0
- game/static/game/sound/sleigh_bells.ogg +0 -0
- game/static/game/sound/sleigh_crash.mp3 +0 -0
- game/static/game/sound/sleigh_crash.ogg +0 -0
- game/templates/game/base.html +34 -14
- game/templates/game/basenonav.html +11 -5
- game/templates/game/game.html +142 -38
- game/templates/game/level_editor.html +340 -236
- game/templates/game/level_moderation.html +19 -6
- game/templates/game/level_selection.html +18 -110
- game/templates/game/python_den_level_selection.html +291 -0
- game/templates/game/python_den_worksheet.html +101 -0
- game/templates/game/scoreboard.html +83 -64
- game/tests/test_level_editor.py +94 -26
- game/tests/test_level_selection.py +149 -46
- game/tests/test_python_den_worksheet.py +85 -0
- game/tests/test_scoreboard.py +34 -7
- game/tests/utils/level.py +32 -26
- game/theme.py +5 -5
- game/urls.py +199 -61
- game/views/language_code_conversions.py +86 -86
- game/views/level.py +155 -63
- game/views/level_editor.py +88 -55
- game/views/level_moderation.py +23 -0
- game/views/level_selection.py +116 -47
- game/views/level_solutions.py +491 -106
- game/views/scoreboard.py +76 -51
- game/views/worksheet.py +25 -0
- rapid_router-7.6.8.dist-info/METADATA +174 -0
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/RECORD +164 -104
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
- example_project/manage.py +0 -10
- game/static/game/image/actions/go.svg +0 -18
- game/static/game/js/js-reverse.js +0 -14
- game/static/game/js/pqselect.min.js +0 -9
- game/static/game/js/widget-scroller.js +0 -906
- rapid_router-5.18.0.dist-info/METADATA +0 -17
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info/licenses}/LICENSE.md +0 -0
- {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
game/views/level_solutions.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
blockly_default = '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
1
|
+
blockly_default = '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"></block></xml>'
|
|
2
2
|
|
|
3
3
|
python_default = """from van import Van
|
|
4
4
|
|
|
@@ -45,7 +45,7 @@ lvl_95 = """from van import Van
|
|
|
45
45
|
|
|
46
46
|
my_van = Van()
|
|
47
47
|
|
|
48
|
-
for
|
|
48
|
+
for count in range(3):
|
|
49
49
|
my_van.turn_left()
|
|
50
50
|
my_van.turn_right()
|
|
51
51
|
my_van.move_forwards()"""
|
|
@@ -266,7 +266,7 @@ my_van = Van()
|
|
|
266
266
|
|
|
267
267
|
number = 6
|
|
268
268
|
while not my_van.at_destination():
|
|
269
|
-
for
|
|
269
|
+
for count in range(number):
|
|
270
270
|
my_van.move_forwards()
|
|
271
271
|
my_van.turn_left()
|
|
272
272
|
number = number - 2"""
|
|
@@ -387,100 +387,438 @@ while count < 3:
|
|
|
387
387
|
my_van.turn_left()
|
|
388
388
|
count = count + 1"""
|
|
389
389
|
|
|
390
|
+
python_lvl_16 = """from van import Van
|
|
391
|
+
|
|
392
|
+
my_van = Van()
|
|
393
|
+
|
|
394
|
+
count = 0
|
|
395
|
+
my_van.turn_right()
|
|
396
|
+
while count < 5:
|
|
397
|
+
if my_van.is_animal_crossing():
|
|
398
|
+
my_van.sound_horn()
|
|
399
|
+
my_van.turn_left()
|
|
400
|
+
my_van.turn_right()
|
|
401
|
+
count = count + 1"""
|
|
402
|
+
|
|
403
|
+
python_lvl_17 = """from van import Van
|
|
404
|
+
|
|
405
|
+
my_van = Van()
|
|
406
|
+
|
|
407
|
+
count = 0
|
|
408
|
+
while count < 3:
|
|
409
|
+
if my_van.is_road_left():
|
|
410
|
+
my_van.turn_left()
|
|
411
|
+
my_van.turn_right()
|
|
412
|
+
my_van.move_forwards()
|
|
413
|
+
count = count + 1"""
|
|
414
|
+
|
|
415
|
+
python_lvl_18 = """from van import Van
|
|
416
|
+
|
|
417
|
+
my_van = Van()
|
|
418
|
+
|
|
419
|
+
count = 0
|
|
420
|
+
while count < 19:
|
|
421
|
+
if my_van.is_road_left():
|
|
422
|
+
my_van.turn_left()
|
|
423
|
+
my_van.move_forwards()
|
|
424
|
+
count = count + 1"""
|
|
425
|
+
|
|
426
|
+
python_lvl_20 = """from van import Van
|
|
427
|
+
|
|
428
|
+
my_van = Van()
|
|
429
|
+
|
|
430
|
+
count = 0
|
|
431
|
+
while count < 8:
|
|
432
|
+
if my_van.is_road_left():
|
|
433
|
+
my_van.turn_left()
|
|
434
|
+
else:
|
|
435
|
+
my_van.turn_right()
|
|
436
|
+
count = count + 1"""
|
|
437
|
+
|
|
438
|
+
python_lvl_21 = """from van import Van
|
|
439
|
+
|
|
440
|
+
my_van = Van()
|
|
441
|
+
|
|
442
|
+
count = 0
|
|
443
|
+
while count < 6:
|
|
444
|
+
if my_van.is_road_left():
|
|
445
|
+
my_van.turn_left()
|
|
446
|
+
my_van.deliver()
|
|
447
|
+
my_van.turn_right()
|
|
448
|
+
if count == 5:
|
|
449
|
+
my_van.deliver()
|
|
450
|
+
else:
|
|
451
|
+
my_van.move_forwards()
|
|
452
|
+
count = count + 1"""
|
|
453
|
+
|
|
454
|
+
python_lvl_24 = """from van import Van
|
|
455
|
+
|
|
456
|
+
my_van = Van()
|
|
457
|
+
|
|
458
|
+
count = 0
|
|
459
|
+
while count < 8:
|
|
460
|
+
if my_van.is_road_forward():
|
|
461
|
+
my_van.move_forwards()
|
|
462
|
+
elif my_van.is_road_left():
|
|
463
|
+
my_van.turn_left()
|
|
464
|
+
else:
|
|
465
|
+
my_van.turn_right()
|
|
466
|
+
count = count + 1"""
|
|
467
|
+
|
|
468
|
+
python_lvl_25 = """from van import Van
|
|
469
|
+
|
|
470
|
+
my_van = Van()
|
|
471
|
+
|
|
472
|
+
count = 0
|
|
473
|
+
while count < 16:
|
|
474
|
+
if my_van.at_red_traffic_light():
|
|
475
|
+
my_van.wait()
|
|
476
|
+
elif my_van.is_road_left():
|
|
477
|
+
my_van.turn_left()
|
|
478
|
+
elif my_van.is_road_forward():
|
|
479
|
+
my_van.move_forwards()
|
|
480
|
+
else:
|
|
481
|
+
my_van.turn_right()
|
|
482
|
+
count = count + 1"""
|
|
483
|
+
|
|
484
|
+
python_lvl_30 = """from van import Van
|
|
485
|
+
|
|
486
|
+
my_van = Van()
|
|
487
|
+
|
|
488
|
+
while not my_van.at_destination():
|
|
489
|
+
my_van.turn_left()
|
|
490
|
+
my_van.turn_right()
|
|
491
|
+
my_van.turn_right()
|
|
492
|
+
my_van.turn_left()"""
|
|
493
|
+
|
|
494
|
+
python_lvl_33 = """from van import Van
|
|
495
|
+
|
|
496
|
+
my_van = Van()
|
|
497
|
+
|
|
498
|
+
while not my_van.at_destination():
|
|
499
|
+
if my_van.is_road_left():
|
|
500
|
+
my_van.turn_left()
|
|
501
|
+
else:
|
|
502
|
+
my_van.turn_right()"""
|
|
503
|
+
|
|
504
|
+
python_lvl_34 = """from van import Van
|
|
505
|
+
|
|
506
|
+
my_van = Van()
|
|
507
|
+
|
|
508
|
+
while not my_van.at_destination():
|
|
509
|
+
if my_van.is_road_right():
|
|
510
|
+
my_van.turn_right()
|
|
511
|
+
else:
|
|
512
|
+
my_van.move_forwards()"""
|
|
513
|
+
|
|
514
|
+
python_lvl_38 = """from van import Van
|
|
515
|
+
|
|
516
|
+
my_van = Van()
|
|
517
|
+
|
|
518
|
+
while not my_van.at_destination():
|
|
519
|
+
if my_van.is_animal_crossing():
|
|
520
|
+
my_van.sound_horn()
|
|
521
|
+
elif my_van.is_road_forward():
|
|
522
|
+
my_van.move_forwards()
|
|
523
|
+
elif my_van.at_dead_end():
|
|
524
|
+
my_van.turn_around()
|
|
525
|
+
my_van.turn_right()"""
|
|
526
|
+
|
|
527
|
+
python_lvl_39 = """from van import Van
|
|
528
|
+
|
|
529
|
+
my_van = Van()
|
|
530
|
+
|
|
531
|
+
while not my_van.at_destination():
|
|
532
|
+
if my_van.is_animal_crossing():
|
|
533
|
+
my_van.sound_horn()
|
|
534
|
+
elif my_van.is_road_forward():
|
|
535
|
+
my_van.move_forwards()
|
|
536
|
+
else:
|
|
537
|
+
my_van.turn_left()"""
|
|
538
|
+
|
|
539
|
+
python_lvl_40 = """from van import Van
|
|
540
|
+
|
|
541
|
+
my_van = Van()
|
|
542
|
+
|
|
543
|
+
for count in range(4):
|
|
544
|
+
while not my_van.at_destination():
|
|
545
|
+
if my_van.at_red_traffic_light():
|
|
546
|
+
my_van.wait()
|
|
547
|
+
elif my_van.is_road_left():
|
|
548
|
+
my_van.turn_left()
|
|
549
|
+
elif my_van.is_road_forward():
|
|
550
|
+
my_van.move_forwards()
|
|
551
|
+
elif my_van.is_road_right():
|
|
552
|
+
my_van.turn_right()
|
|
553
|
+
elif my_van.at_dead_end():
|
|
554
|
+
my_van.turn_around()
|
|
555
|
+
my_van.deliver()""" #
|
|
556
|
+
|
|
557
|
+
python_lvl_52 = """from van import Van
|
|
558
|
+
|
|
559
|
+
my_van = Van()
|
|
560
|
+
|
|
561
|
+
def wiggle():
|
|
562
|
+
my_van.turn_left()
|
|
563
|
+
my_van.move_forwards()
|
|
564
|
+
my_van.turn_right()
|
|
565
|
+
my_van.turn_right()
|
|
566
|
+
my_van.turn_left()
|
|
567
|
+
|
|
568
|
+
wiggle()
|
|
569
|
+
my_van.move_forwards()
|
|
570
|
+
wiggle()
|
|
571
|
+
wiggle()
|
|
572
|
+
my_van.turn_right()
|
|
573
|
+
my_van.move_forwards()
|
|
574
|
+
my_van.turn_right()
|
|
575
|
+
wiggle()"""
|
|
576
|
+
|
|
577
|
+
python_lvl_53 = """from van import Van
|
|
578
|
+
|
|
579
|
+
my_van = Van()
|
|
580
|
+
|
|
581
|
+
def large_turn():
|
|
582
|
+
my_van.turn_left()
|
|
583
|
+
my_van.turn_right()
|
|
584
|
+
my_van.move_forwards()
|
|
585
|
+
my_van.turn_right()
|
|
586
|
+
my_van.turn_left()
|
|
587
|
+
|
|
588
|
+
def small_turn():
|
|
589
|
+
my_van.turn_right()
|
|
590
|
+
for count in range(2):
|
|
591
|
+
my_van.turn_left()
|
|
592
|
+
my_van.turn_right()
|
|
593
|
+
|
|
594
|
+
large_turn()
|
|
595
|
+
my_van.move_forwards()
|
|
596
|
+
large_turn()
|
|
597
|
+
for count2 in range(2):
|
|
598
|
+
my_van.turn_right()
|
|
599
|
+
my_van.move_forwards()
|
|
600
|
+
small_turn()
|
|
601
|
+
large_turn()
|
|
602
|
+
small_turn()"""
|
|
603
|
+
|
|
604
|
+
python_lvl_54 = """from van import Van
|
|
605
|
+
|
|
606
|
+
my_van = Van()
|
|
607
|
+
|
|
608
|
+
def left_right():
|
|
609
|
+
my_van.turn_left()
|
|
610
|
+
my_van.turn_right()
|
|
611
|
+
|
|
612
|
+
def right_left():
|
|
613
|
+
my_van.turn_right()
|
|
614
|
+
my_van.turn_left()
|
|
615
|
+
|
|
616
|
+
left_right()
|
|
617
|
+
my_van.move_forwards()
|
|
618
|
+
right_left()
|
|
619
|
+
for count in range(2):
|
|
620
|
+
left_right()
|
|
621
|
+
my_van.move_forwards()
|
|
622
|
+
for count2 in range(2):
|
|
623
|
+
my_van.move_forwards()
|
|
624
|
+
my_van.turn_right()
|
|
625
|
+
for count3 in range(2):
|
|
626
|
+
left_right()
|
|
627
|
+
right_left()
|
|
628
|
+
my_van.move_forwards()
|
|
629
|
+
for count4 in range(2):
|
|
630
|
+
my_van.move_forwards()
|
|
631
|
+
my_van.turn_left()
|
|
632
|
+
right_left()
|
|
633
|
+
left_right()
|
|
634
|
+
for count5 in range(2):
|
|
635
|
+
my_van.move_forwards()
|
|
636
|
+
left_right()"""
|
|
637
|
+
|
|
638
|
+
python_lvl_55 = """from van import Van
|
|
639
|
+
|
|
640
|
+
my_van = Van()
|
|
641
|
+
|
|
642
|
+
def triple_straight_right():
|
|
643
|
+
my_van.move_forwards()
|
|
644
|
+
double_straight_right()
|
|
645
|
+
|
|
646
|
+
def double_straight_right():
|
|
647
|
+
my_van.move_forwards()
|
|
648
|
+
my_van.move_forwards()
|
|
649
|
+
my_van.turn_right()
|
|
650
|
+
|
|
651
|
+
double_straight_right()
|
|
652
|
+
my_van.turn_left()
|
|
653
|
+
triple_straight_right()
|
|
654
|
+
double_straight_right()
|
|
655
|
+
triple_straight_right()
|
|
656
|
+
my_van.turn_left()
|
|
657
|
+
double_straight_right()"""
|
|
658
|
+
|
|
659
|
+
python_lvl_56 = """from van import Van
|
|
660
|
+
|
|
661
|
+
my_van = Van()
|
|
662
|
+
|
|
663
|
+
def left_right():
|
|
664
|
+
my_van.turn_left()
|
|
665
|
+
my_van.turn_right()
|
|
666
|
+
|
|
667
|
+
def left_forward():
|
|
668
|
+
my_van.turn_left()
|
|
669
|
+
my_van.move_forwards()
|
|
670
|
+
|
|
671
|
+
def double_left_right():
|
|
672
|
+
for count in range(2):
|
|
673
|
+
left_right()
|
|
674
|
+
|
|
675
|
+
double_left_right()
|
|
676
|
+
left_forward()
|
|
677
|
+
double_left_right()
|
|
678
|
+
my_van.turn_left()
|
|
679
|
+
left_forward()
|
|
680
|
+
for count2 in range(2):
|
|
681
|
+
left_right()
|
|
682
|
+
my_van.turn_right()
|
|
683
|
+
double_left_right()
|
|
684
|
+
double_left_right()"""
|
|
685
|
+
|
|
686
|
+
python_lvl_57 = """from van import Van
|
|
687
|
+
|
|
688
|
+
my_van = Van()
|
|
689
|
+
|
|
690
|
+
def bend():
|
|
691
|
+
my_van.turn_right()
|
|
692
|
+
my_van.turn_left()
|
|
693
|
+
|
|
694
|
+
bend()
|
|
695
|
+
my_van.move_forwards()
|
|
696
|
+
for count in range(2):
|
|
697
|
+
bend()
|
|
698
|
+
my_van.move_forwards()
|
|
699
|
+
bend()
|
|
700
|
+
for count2 in range(2):
|
|
701
|
+
my_van.turn_right()
|
|
702
|
+
for count3 in range(4):
|
|
703
|
+
my_van.move_forwards()
|
|
704
|
+
for count4 in range(3):
|
|
705
|
+
bend()"""
|
|
706
|
+
|
|
707
|
+
python_lvl_58 = """from van import Van
|
|
708
|
+
|
|
709
|
+
my_van = Van()
|
|
710
|
+
|
|
711
|
+
def bend():
|
|
712
|
+
my_van.move_forwards()
|
|
713
|
+
my_van.move_forwards()
|
|
714
|
+
my_van.turn_right()
|
|
715
|
+
my_van.turn_left()
|
|
716
|
+
my_van.turn_left()
|
|
717
|
+
|
|
718
|
+
my_van.move_forwards()
|
|
719
|
+
my_van.turn_right()
|
|
720
|
+
for count in range(2):
|
|
721
|
+
bend()
|
|
722
|
+
my_van.move_forwards()
|
|
723
|
+
bend()
|
|
724
|
+
my_van.move_forwards()
|
|
725
|
+
my_van.move_forwards()
|
|
726
|
+
my_van.turn_right()"""
|
|
727
|
+
|
|
390
728
|
solutions = {
|
|
391
729
|
"python_default": python_default,
|
|
392
730
|
"blockly_default": blockly_default,
|
|
393
|
-
"1": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
394
|
-
"2": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
395
|
-
"3": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
396
|
-
"4": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
397
|
-
"5": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
398
|
-
"6": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
399
|
-
"7": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
400
|
-
"8": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
401
|
-
"9": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
402
|
-
"10": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
403
|
-
"11": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
404
|
-
"12": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
405
|
-
"13": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
406
|
-
"14": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
407
|
-
"15": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
408
|
-
"16": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
409
|
-
"17": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
410
|
-
"18": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
411
|
-
"19": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
412
|
-
"20": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
413
|
-
"21": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
414
|
-
"22": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
415
|
-
"23": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
416
|
-
"24": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
417
|
-
"25": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
418
|
-
"26": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
419
|
-
"27": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
420
|
-
"28": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
421
|
-
"29": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
422
|
-
"30": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
423
|
-
"31": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
424
|
-
"32": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
425
|
-
"33": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
426
|
-
"34": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
427
|
-
"35": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
428
|
-
"36": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
429
|
-
"37": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
430
|
-
"38": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
431
|
-
"39": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
432
|
-
"40": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
433
|
-
"41": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
434
|
-
"42": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
435
|
-
"43": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
436
|
-
"44": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
437
|
-
"45": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
438
|
-
"46": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
439
|
-
"47": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
440
|
-
"48": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
441
|
-
"49": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
442
|
-
"50": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
443
|
-
"51": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
444
|
-
"52": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
445
|
-
"53": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
446
|
-
"54": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
447
|
-
"55": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
448
|
-
"56": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
449
|
-
"57": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
450
|
-
"58": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
451
|
-
"59": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
452
|
-
"60": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
453
|
-
"61": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
454
|
-
"62": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
455
|
-
"63": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
456
|
-
"64": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
457
|
-
"65": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
458
|
-
"66": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
459
|
-
"67": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
460
|
-
"68": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
461
|
-
"69": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
462
|
-
"70": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
463
|
-
"71": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
464
|
-
"72": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
465
|
-
"73": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
731
|
+
"1": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"></block></next></block></xml>',
|
|
732
|
+
"2": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></xml>',
|
|
733
|
+
"3": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></xml>',
|
|
734
|
+
"4": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
735
|
+
"5": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
736
|
+
"6": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
737
|
+
"7": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_left"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
738
|
+
"8": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
739
|
+
"9": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
740
|
+
"10": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
741
|
+
"11": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_right"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
742
|
+
"12": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
743
|
+
"13": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
744
|
+
"14": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
745
|
+
"15": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="deliver"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="deliver"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
746
|
+
"16": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="deliver"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="deliver"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="deliver"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
747
|
+
"17": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="turn_left"><next><block type="deliver"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="deliver"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="deliver"><next><block type="turn_right"><next><block type="turn_right"><next><block type="deliver"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
748
|
+
"18": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="deliver"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="deliver"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="deliver"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="deliver"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
749
|
+
"19": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement></block></next></block></xml>',
|
|
750
|
+
"20": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement></block></next></block></xml>',
|
|
751
|
+
"21": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
752
|
+
"22": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">7</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
753
|
+
"23": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="controls_repeat"><field name="TIMES">5</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">5</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
754
|
+
"24": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="turn_left"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_right"></block></next></block></next></block></next></block></statement><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="turn_right"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></next></block></next></block></next></block></xml>',
|
|
755
|
+
"25": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement></block></next></block></statement><next><block type="move_forwards"></block></next></block></next></block></xml>',
|
|
756
|
+
"26": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement></block></next></block></next></block></next></block></xml>',
|
|
757
|
+
"27": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"></block></next></block></statement><next><block type="controls_repeat"><field name="TIMES">5</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
758
|
+
"28": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"></block></next></block></statement><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_left"></block></statement><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
759
|
+
"29": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="move_forwards"></block></statement></block></next></block></xml>',
|
|
760
|
+
"30": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement></block></next></block></xml>',
|
|
761
|
+
"31": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
762
|
+
"32": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
763
|
+
"33": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement></block></statement></block></next></block></xml>',
|
|
764
|
+
"34": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
765
|
+
"35": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO1"><block type="turn_right"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
766
|
+
"36": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO1"><block type="turn_right"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
767
|
+
"37": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO1"><block type="turn_right"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
768
|
+
"38": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="cow_crossing"></block></value><statement name="DO0"><block type="sound_horn"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO2"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
769
|
+
"39": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="2"></mutation><value name="IF0"><block type="cow_crossing"></block></value><statement name="DO0"><block type="sound_horn"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="dead_end"></block></value><statement name="DO2"><block type="turn_around"><next><block type="turn_right"></block></next></block></statement></block></statement></block></next></block></xml>',
|
|
770
|
+
"40": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO0"><block type="turn_right"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement></block></statement></block></next></block></xml>',
|
|
771
|
+
"41": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
772
|
+
"42": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></xml>',
|
|
773
|
+
"43": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">22</field><statement name="DO"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement><next><block type="turn_right"><next><block type="move_forwards"></block></next></block></next></block></next></block></xml>',
|
|
774
|
+
"44": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement></block></statement></block></next></block></xml>',
|
|
775
|
+
"45": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement></block></statement></block></next></block></xml>',
|
|
776
|
+
"46": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
777
|
+
"47": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="cow_crossing"></block></value><statement name="DO0"><block type="sound_horn"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
778
|
+
"48": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="3" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO2"><block type="move_forwards"></block></statement><value name="IF3"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO3"><block type="turn_right"></block></statement><statement name="ELSE"><block type="turn_around"></block></statement></block></statement><next><block type="deliver"></block></next></block></statement></block></next></block></xml>',
|
|
779
|
+
"49": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO2"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
780
|
+
"50": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_repeat_while"><value name="condition"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="body"><block type="wait"></block></statement><next><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO1"><block type="turn_right" id="}L#lTX/D;-@2hKW 5Z#x"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement></block></next></block></statement></block></next></block></xml>',
|
|
781
|
+
"51": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
782
|
+
"52": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement></block></next></block></next></block></xml>',
|
|
783
|
+
"53": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_left"><next><block type="turn_right"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement><next><block type="move_forwards"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
784
|
+
"54": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="turn_left"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
785
|
+
"55": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
786
|
+
"56": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
787
|
+
"57": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
788
|
+
"58": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_left"></block></statement><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
789
|
+
"59": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="turn_left"><next><block type="turn_around"><next><block type="turn_left"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
790
|
+
"60": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="turn_right"><next><block type="turn_around"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
791
|
+
"61": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">wiggle</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">wiggle</field></block></next></block></next></block></next></block><block type="declare_proc" x="193" y="620"><field name="NAME">wiggle</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></xml>',
|
|
792
|
+
"62": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="turn_right"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="312" y="886"><field name="NAME">lights</field><statement name="DO"><block type="controls_repeat_until"><value name="condition"><block type="traffic_light"><field name="CHOICE">GREEN</field></block></value><statement name="body"><block type="wait"></block></statement></block></statement></block></xml>',
|
|
793
|
+
"63": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">wiggle</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">wiggle</field><next><block type="call_proc"><field name="NAME">wiggle</field><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="call_proc"><field name="NAME">wiggle</field></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="383" y="628"><field name="NAME">wiggle</field><statement name="DO"><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></statement></block></xml>',
|
|
794
|
+
"64": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">large_turn</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">large_turn</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"><next><block type="move_forwards"></block></next></block></statement><next><block type="call_proc"><field name="NAME">small_turn</field><next><block type="call_proc"><field name="NAME">large_turn</field><next><block type="call_proc"><field name="NAME">small_turn</field></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="346" y="371"><field name="NAME">large_turn</field><statement name="DO"><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></statement></block><block type="declare_proc" x="318" y="638"><field name="NAME">small_turn</field><statement name="DO"><block type="turn_right"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_left"></block></statement><next><block type="turn_right"></block></next></block></next></block></statement></block></xml>',
|
|
795
|
+
"65": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">left_right</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">right_left</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">left_right</field></block></statement><next><block type="move_forwards"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"><next><block type="turn_right"></block></next></block></statement><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">left_right</field></block></statement><next><block type="call_proc"><field name="NAME">right_left</field><next><block type="move_forwards"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"></block></next></block></statement><next><block type="call_proc"><field name="NAME">right_left</field><next><block type="call_proc"><field name="NAME">left_right</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="call_proc"><field name="NAME">left_right</field></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="498" y="501"><field name="NAME">left_right</field><statement name="DO"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement></block><block type="declare_proc" x="496" y="716"><field name="NAME">right_left</field><statement name="DO"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement></block></xml>',
|
|
796
|
+
"66": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">double_straight_right</field><next><block type="turn_left"><next><block type="call_proc"><field name="NAME">triple_straight_right</field><next><block type="call_proc"><field name="NAME">double_straight_right</field><next><block type="call_proc"><field name="NAME">triple_straight_right</field><next><block type="turn_left"><next><block type="call_proc"><field name="NAME">double_straight_right</field></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="400" y="-383"><field name="NAME">double_straight_right</field><statement name="DO"><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></statement></block><block type="declare_proc" x="400" y="-196"><field name="NAME">triple_straight_right</field><statement name="DO"><block type="move_forwards"><next><block type="call_proc"><field name="NAME">double_straight_right</field></block></next></block></statement></block></xml>',
|
|
797
|
+
"67": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">double_left_right</field><next><block type="call_proc"><field name="NAME">left_forward</field><next><block type="call_proc"><field name="NAME">double_left_right</field><next><block type="turn_left"><next><block type="call_proc"><field name="NAME">left_forward</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">left_right</field><next><block type="turn_right"></block></next></block></statement><next><block type="call_proc"><field name="NAME">double_left_right</field><next><block type="call_proc"><field name="NAME">double_left_right</field></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="609" y="498"><field name="NAME">double_left_right</field><statement name="DO"><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">left_right</field></block></statement></block></statement></block><block type="declare_proc" x="633" y="633"><field name="NAME">left_forward</field><statement name="DO"><block type="turn_left"><next><block type="move_forwards"></block></next></block></statement></block><block type="declare_proc" x="607" y="761"><field name="NAME">left_right</field><statement name="DO"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement></block></xml>',
|
|
798
|
+
"68": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="body"><block type="move_forwards"></block></statement><next><block type="turn_around"><next><block type="move_forwards"></block></next></block></next></block></next></block></xml>',
|
|
799
|
+
"69": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="body"><block type="controls_repeat_while"><value name="condition"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="body"><block type="move_forwards"></block></statement><next><block type="turn_left"></block></next></block></statement></block></next></block></xml>',
|
|
800
|
+
"70": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="turn_right"><next><block type="turn_around"><next><block type="turn_right"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
801
|
+
"71": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="move_forwards"><next><block type="turn_right"><next><block type="controls_if"><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement></block></next></block></next></block></statement></block></next></block></xml>',
|
|
802
|
+
"72": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_repeat_until"><value name="condition"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="body"><block type="move_forwards"></block></statement><next><block type="turn_right"></block></next></block></statement></block></next></block></xml>',
|
|
803
|
+
"73": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="dead_end"></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO2"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
466
804
|
"74": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">right</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">straight</field><next><block type="call_proc"><field name="NAME">straight</field><next><block type="call_proc"><field name="NAME">straight_left</field></block></next></block></next></block></statement><next><block type="call_proc"><field name="NAME">right</field><next><block type="call_proc"><field name="NAME">straight_left</field></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="350" y="100"><field name="NAME">straight</field><statement name="DO"><block type="move_forwards"></block></statement></block><block type="declare_proc" x="350" y="200"><field name="NAME">right</field><statement name="DO"><block type="turn_right"></block></statement></block><block type="declare_proc" x="350" y="300"><field name="NAME">straight_left</field><statement name="DO"><block type="call_proc"><field name="NAME">straight</field><next><block type="turn_left"></block></next></block></statement></block></xml>',
|
|
467
|
-
"75": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
468
|
-
"76": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
469
|
-
"77": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
470
|
-
"78": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
471
|
-
"79": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
472
|
-
"80": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
473
|
-
"81": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
474
|
-
"82": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
475
|
-
"83": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
476
|
-
"84": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
477
|
-
"85": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
478
|
-
"86": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
479
|
-
"87": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
480
|
-
"88": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
481
|
-
"89": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
482
|
-
"90": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
483
|
-
"91": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="
|
|
805
|
+
"75": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="dead_end"></block></value><statement name="body"><block type="controls_repeat_until"><value name="condition"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="body"><block type="controls_repeat_until"><value name="condition"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="body"><block type="move_forwards"></block></statement><next><block type="turn_right"></block></next></block></statement><next><block type="turn_left"></block></next></block></statement></block></next></block></xml>',
|
|
806
|
+
"76": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"><next><block type="turn_right"><next><block type="turn_right"></block></next></block></next></block></statement></block></statement></block></next></block></xml>',
|
|
807
|
+
"77": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">go</field></block></next></block><block type="declare_proc" x="702" y="482"><field name="NAME">go</field><statement name="DO"><block type="controls_if"><mutation elseif="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></statement></block></statement></block></xml>',
|
|
808
|
+
"78": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="dead_end"></block></value></block></value><statement name="body"><block type="controls_repeat_while"><value name="condition"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="body"><block type="turn_right"></block></statement><next><block type="controls_repeat_while"><value name="condition"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="body"><block type="move_forwards"></block></statement></block></next></block></statement><next><block type="turn_around"></block></next></block></statement></block></next></block></xml>',
|
|
809
|
+
"79": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="1068" y="781"><field name="NAME">go</field><statement name="DO"><block type="controls_if"><mutation elseif="2"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO2"><block type="turn_right"><next><block type="call_proc"><field name="NAME">go</field></block></next></block></statement></block></statement></block></xml>',
|
|
810
|
+
"80": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
811
|
+
"81": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
812
|
+
"82": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
813
|
+
"83": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
814
|
+
"84": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="turn_left"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
815
|
+
"85": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="move_forwards"></block></statement></block></next></block></xml>',
|
|
816
|
+
"86": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
817
|
+
"87": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_until"><value name="condition"><block type="at_destination"></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
818
|
+
"88": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO2"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
819
|
+
"89": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="traffic_light"><field name="CHOICE">RED</field></block></value><statement name="DO0"><block type="wait"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO2"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
820
|
+
"90": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">bend</field><next><block type="move_forwards"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">bend</field></block></statement><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">bend</field><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="move_forwards"></block></statement><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="call_proc"><field name="NAME">bend</field></block></statement></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="612" y="402"><field name="NAME">bend</field><statement name="DO"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement></block></xml>',
|
|
821
|
+
"91": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="call_proc"><field name="NAME">bend</field></block></statement><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">bend</field><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="469" y="534"><field name="NAME">bend</field><statement name="DO"><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="turn_left"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></statement></block></xml>',
|
|
484
822
|
"92": lvl_92,
|
|
485
823
|
"93": lvl_93,
|
|
486
824
|
"94": lvl_94,
|
|
@@ -499,17 +837,64 @@ solutions = {
|
|
|
499
837
|
"107": lvl_107,
|
|
500
838
|
"108": lvl_108,
|
|
501
839
|
"109": lvl_109,
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
840
|
+
"1001": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
841
|
+
"1002": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_left"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
842
|
+
"1003": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="turn_right"><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
843
|
+
"1004": lvl_113,
|
|
844
|
+
"1005": lvl_114,
|
|
845
|
+
"1006": lvl_115,
|
|
846
|
+
"1007": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">4</field></block></value></block></value><statement name="body"><block type="move_forwards"><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></statement></block></next></block></next></block></xml>',
|
|
847
|
+
"1008": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">4</field></block></value></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></next></block></statement></block></next></block></next></block></xml>',
|
|
848
|
+
"1009": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">3</field></block></value></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></next></block></statement><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></xml>',
|
|
849
|
+
"1010": lvl_119,
|
|
850
|
+
"1011": lvl_120,
|
|
851
|
+
"1012": lvl_121,
|
|
852
|
+
"1013": lvl_122,
|
|
853
|
+
"1014": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">8</field></block></value></block></value><statement name="body"><block type="controls_if"><value name="IF0"><block type="cow_crossing"></block></value><statement name="DO0"><block type="sound_horn"></block></statement><next><block type="move_forwards"><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></next></block></statement></block></next></block></next></block></xml>',
|
|
854
|
+
"1015": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">4</field></block></value></block></value><statement name="body"><block type="controls_if"><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement><next><block type="move_forwards"><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></next></block></statement></block></next></block></next></block></xml>',
|
|
855
|
+
"1016": python_lvl_16,
|
|
856
|
+
"1017": python_lvl_17,
|
|
857
|
+
"1018": python_lvl_18,
|
|
858
|
+
"1019": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">8</field></block></value></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"><next><block type="turn_left"></block></next></block></statement><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></statement></block></next></block></next></block></xml>',
|
|
859
|
+
"1020": python_lvl_20,
|
|
860
|
+
"1021": python_lvl_21,
|
|
861
|
+
"1022": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">12</field></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></statement></block></next></block></next></block></xml>',
|
|
862
|
+
"1023": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="variables_numeric_set"><field name="NAME">count</field><field name="VALUE">0</field><next><block type="controls_repeat_while"><value name="condition"><block type="logic_compare"><field name="OP">LT</field><value name="A"><block type="variables_get"><field name="NAME">count</field></block></value><value name="B"><block type="math_number"><field name="NUM">6</field></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">RIGHT</field></block></value><statement name="DO0"><block type="turn_right"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement><next><block type="variables_increment"><field name="NAME">count</field><field name="VALUE">1</field></block></next></block></statement></block></next></block></next></block></xml>',
|
|
863
|
+
"1024": python_lvl_24,
|
|
864
|
+
"1025": python_lvl_25,
|
|
865
|
+
"1026": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="move_forwards"></block></statement></block></next></block></xml>',
|
|
866
|
+
"1027": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="move_forwards"></block></statement></block></next></block></xml>',
|
|
867
|
+
"1028": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"></block></next></block></statement></block></next></block></xml>',
|
|
868
|
+
"1029": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"><next><block type="move_forwards"></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
869
|
+
"1030": python_lvl_30,
|
|
870
|
+
"1031": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><statement name="ELSE"><block type="turn_left"></block></statement></block></statement></block></next></block></xml>',
|
|
871
|
+
"1032": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO0"><block type="turn_left"></block></statement><statement name="ELSE"><block type="move_forwards"></block></statement></block></statement></block></next></block></xml>',
|
|
872
|
+
"1033": python_lvl_33,
|
|
873
|
+
"1034": python_lvl_34,
|
|
874
|
+
"1035": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="1" else="1"></mutation><value name="IF0"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO0"><block type="move_forwards"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO1"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
875
|
+
"1036": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat_while"><value name="condition"><block type="logic_negate"><value name="BOOL"><block type="at_destination"></block></value></block></value><statement name="body"><block type="controls_if"><mutation elseif="2" else="1"></mutation><value name="IF0"><block type="cow_crossing"></block></value><statement name="DO0"><block type="sound_horn"></block></statement><value name="IF1"><block type="road_exists"><field name="CHOICE">FORWARD</field></block></value><statement name="DO1"><block type="move_forwards"></block></statement><value name="IF2"><block type="road_exists"><field name="CHOICE">LEFT</field></block></value><statement name="DO2"><block type="turn_left"></block></statement><statement name="ELSE"><block type="turn_right"></block></statement></block></statement></block></next></block></xml>',
|
|
876
|
+
"1037": lvl_100,
|
|
877
|
+
"1038": python_lvl_38,
|
|
878
|
+
"1039": python_lvl_39,
|
|
879
|
+
"1040": python_lvl_40,
|
|
880
|
+
"1041": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">3</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"><next><block type="turn_right"><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></next></block></xml>',
|
|
881
|
+
"1042": lvl_95,
|
|
882
|
+
"1043": lvl_96,
|
|
883
|
+
"1044": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="controls_repeat"><field name="TIMES">4</field><statement name="DO"><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="turn_left"></block></next></block></next></block></statement></block></next></block></xml>',
|
|
884
|
+
"1045": lvl_97,
|
|
885
|
+
"1046": lvl_106,
|
|
886
|
+
"1047": lvl_107,
|
|
887
|
+
"1048": lvl_108,
|
|
888
|
+
"1049": lvl_109,
|
|
889
|
+
"1050": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="call_proc"><field name="NAME">wiggle</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">wiggle</field></block></next></block></next></block></next></block><block type="declare_proc" x="193" y="620"><field name="NAME">wiggle</field><statement name="DO"><block type="move_forwards"><next><block type="turn_left"><next><block type="controls_repeat"><field name="TIMES">2</field><statement name="DO"><block type="turn_right"></block></statement><next><block type="turn_left"></block></next></block></next></block></next></block></statement></block></xml>',
|
|
890
|
+
"1051": '<xml xmlns="http://www.w3.org/1999/xhtml"><block type="start" deletable="false" x="100" y="100"><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="turn_right"><next><block type="call_proc"><field name="NAME">lights</field><next><block type="move_forwards"><next><block type="move_forwards"></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block></next></block><block type="declare_proc" x="312" y="886"><field name="NAME">lights</field><statement name="DO"><block type="controls_repeat_until"><value name="condition"><block type="traffic_light"><field name="CHOICE">GREEN</field></block></value><statement name="body"><block type="wait"></block></statement></block></statement></block></xml>',
|
|
891
|
+
"1052": python_lvl_52,
|
|
892
|
+
"1053": python_lvl_53,
|
|
893
|
+
"1054": python_lvl_54,
|
|
894
|
+
"1055": python_lvl_55,
|
|
895
|
+
"1056": python_lvl_56,
|
|
896
|
+
"1057": python_lvl_57,
|
|
897
|
+
"1058": python_lvl_58,
|
|
898
|
+
"1059": lvl_101,
|
|
899
|
+
"1060": lvl_102,
|
|
515
900
|
}
|