-
Notifications
You must be signed in to change notification settings - Fork 14
/
dump.sql
1414 lines (949 loc) · 342 KB
/
dump.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.8
-- Dumped by pg_dump version 9.6.8
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: activity_stats; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.activity_stats (
id integer NOT NULL,
user_id integer,
course_id integer,
activity_id character varying(32) NOT NULL,
data json NOT NULL
);
ALTER TABLE public.activity_stats OWNER TO webchange;
--
-- Name: activity_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.activity_stats_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.activity_stats_id_seq OWNER TO webchange;
--
-- Name: activity_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.activity_stats_id_seq OWNED BY public.activity_stats.id;
--
-- Name: classes; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.classes (
id integer NOT NULL,
name character varying(30) NOT NULL,
school_id integer
);
ALTER TABLE public.classes OWNER TO webchange;
--
-- Name: classes_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.classes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.classes_id_seq OWNER TO webchange;
--
-- Name: classes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.classes_id_seq OWNED BY public.classes.id;
--
-- Name: course_events; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.course_events (
id integer NOT NULL,
user_id integer,
course_id integer,
created_at timestamp with time zone NOT NULL,
type character varying(30) NOT NULL,
data json NOT NULL
);
ALTER TABLE public.course_events OWNER TO webchange;
--
-- Name: course_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.course_actions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.course_actions_id_seq OWNER TO webchange;
--
-- Name: course_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.course_actions_id_seq OWNED BY public.course_events.id;
--
-- Name: course_progresses; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.course_progresses (
id integer NOT NULL,
user_id integer,
course_id integer,
data json NOT NULL
);
ALTER TABLE public.course_progresses OWNER TO webchange;
--
-- Name: course_progresses_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.course_progresses_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.course_progresses_id_seq OWNER TO webchange;
--
-- Name: course_progresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.course_progresses_id_seq OWNED BY public.course_progresses.id;
--
-- Name: course_stats; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.course_stats (
id integer NOT NULL,
user_id integer,
class_id integer,
course_id integer,
data json NOT NULL
);
ALTER TABLE public.course_stats OWNER TO webchange;
--
-- Name: course_stats_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.course_stats_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.course_stats_id_seq OWNER TO webchange;
--
-- Name: course_stats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.course_stats_id_seq OWNED BY public.course_stats.id;
--
-- Name: course_versions; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.course_versions (
id integer NOT NULL,
course_id integer,
data json NOT NULL,
owner_id integer NOT NULL,
created_at timestamp with time zone NOT NULL
);
ALTER TABLE public.course_versions OWNER TO webchange;
--
-- Name: course_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.course_versions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.course_versions_id_seq OWNER TO webchange;
--
-- Name: course_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.course_versions_id_seq OWNED BY public.course_versions.id;
--
-- Name: courses; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.courses (
id integer NOT NULL,
name character varying(30) NOT NULL,
slug character varying(30),
lang character varying(30),
image_src character varying(1024)
);
ALTER TABLE public.courses OWNER TO webchange;
--
-- Name: courses_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.courses_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.courses_id_seq OWNER TO webchange;
--
-- Name: courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.courses_id_seq OWNED BY public.courses.id;
--
-- Name: dataset_items; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.dataset_items (
id integer NOT NULL,
name character varying(30) NOT NULL,
dataset_id integer,
data json NOT NULL
);
ALTER TABLE public.dataset_items OWNER TO webchange;
--
-- Name: dataset_items_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.dataset_items_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dataset_items_id_seq OWNER TO webchange;
--
-- Name: dataset_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.dataset_items_id_seq OWNED BY public.dataset_items.id;
--
-- Name: datasets; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.datasets (
id integer NOT NULL,
course_id integer,
name character varying(30) NOT NULL,
scheme json NOT NULL
);
ALTER TABLE public.datasets OWNER TO webchange;
--
-- Name: datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.datasets_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.datasets_id_seq OWNER TO webchange;
--
-- Name: datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.datasets_id_seq OWNED BY public.datasets.id;
--
-- Name: lesson_sets; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.lesson_sets (
id integer NOT NULL,
name character varying(30) NOT NULL,
dataset_id integer,
data json NOT NULL
);
ALTER TABLE public.lesson_sets OWNER TO webchange;
--
-- Name: lesson_sets_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.lesson_sets_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.lesson_sets_id_seq OWNER TO webchange;
--
-- Name: lesson_sets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.lesson_sets_id_seq OWNED BY public.lesson_sets.id;
--
-- Name: scene_versions; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.scene_versions (
id integer NOT NULL,
scene_id integer,
data json NOT NULL,
owner_id integer NOT NULL,
created_at timestamp with time zone NOT NULL
);
ALTER TABLE public.scene_versions OWNER TO webchange;
--
-- Name: scene_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.scene_versions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.scene_versions_id_seq OWNER TO webchange;
--
-- Name: scene_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.scene_versions_id_seq OWNED BY public.scene_versions.id;
--
-- Name: scenes; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.scenes (
id integer NOT NULL,
course_id integer,
name character varying(30) NOT NULL
);
ALTER TABLE public.scenes OWNER TO webchange;
--
-- Name: scenes_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.scenes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.scenes_id_seq OWNER TO webchange;
--
-- Name: scenes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.scenes_id_seq OWNED BY public.scenes.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.schema_migrations (
id bigint NOT NULL,
applied timestamp without time zone,
description character varying(1024)
);
ALTER TABLE public.schema_migrations OWNER TO webchange;
--
-- Name: schools; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.schools (
id integer NOT NULL,
name character varying(30) NOT NULL
);
ALTER TABLE public.schools OWNER TO webchange;
--
-- Name: schools_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.schools_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.schools_id_seq OWNER TO webchange;
--
-- Name: schools_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.schools_id_seq OWNED BY public.schools.id;
--
-- Name: students; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.students (
id integer NOT NULL,
user_id integer,
class_id integer,
school_id integer,
access_code character varying(30),
gender integer,
date_of_birth date
);
ALTER TABLE public.students OWNER TO webchange;
--
-- Name: students_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.students_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.students_id_seq OWNER TO webchange;
--
-- Name: students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.students_id_seq OWNED BY public.students.id;
--
-- Name: teachers; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.teachers (
id integer NOT NULL,
user_id integer,
school_id integer
);
ALTER TABLE public.teachers OWNER TO webchange;
--
-- Name: teachers_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.teachers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.teachers_id_seq OWNER TO webchange;
--
-- Name: teachers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.teachers_id_seq OWNED BY public.teachers.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: webchange
--
CREATE TABLE public.users (
id integer NOT NULL,
first_name character varying(30),
last_name character varying(30),
email character varying(30),
password character varying(300),
active boolean DEFAULT false NOT NULL,
created_at timestamp with time zone NOT NULL,
last_login timestamp with time zone NOT NULL
);
ALTER TABLE public.users OWNER TO webchange;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: webchange
--
CREATE SEQUENCE public.users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO webchange;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: webchange
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: activity_stats id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.activity_stats ALTER COLUMN id SET DEFAULT nextval('public.activity_stats_id_seq'::regclass);
--
-- Name: classes id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.classes ALTER COLUMN id SET DEFAULT nextval('public.classes_id_seq'::regclass);
--
-- Name: course_events id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.course_events ALTER COLUMN id SET DEFAULT nextval('public.course_actions_id_seq'::regclass);
--
-- Name: course_progresses id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.course_progresses ALTER COLUMN id SET DEFAULT nextval('public.course_progresses_id_seq'::regclass);
--
-- Name: course_stats id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.course_stats ALTER COLUMN id SET DEFAULT nextval('public.course_stats_id_seq'::regclass);
--
-- Name: course_versions id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.course_versions ALTER COLUMN id SET DEFAULT nextval('public.course_versions_id_seq'::regclass);
--
-- Name: courses id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.courses ALTER COLUMN id SET DEFAULT nextval('public.courses_id_seq'::regclass);
--
-- Name: dataset_items id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.dataset_items ALTER COLUMN id SET DEFAULT nextval('public.dataset_items_id_seq'::regclass);
--
-- Name: datasets id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.datasets ALTER COLUMN id SET DEFAULT nextval('public.datasets_id_seq'::regclass);
--
-- Name: lesson_sets id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.lesson_sets ALTER COLUMN id SET DEFAULT nextval('public.lesson_sets_id_seq'::regclass);
--
-- Name: scene_versions id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.scene_versions ALTER COLUMN id SET DEFAULT nextval('public.scene_versions_id_seq'::regclass);
--
-- Name: scenes id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.scenes ALTER COLUMN id SET DEFAULT nextval('public.scenes_id_seq'::regclass);
--
-- Name: schools id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.schools ALTER COLUMN id SET DEFAULT nextval('public.schools_id_seq'::regclass);
--
-- Name: students id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.students ALTER COLUMN id SET DEFAULT nextval('public.students_id_seq'::regclass);
--
-- Name: teachers id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.teachers ALTER COLUMN id SET DEFAULT nextval('public.teachers_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: webchange
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: activity_stats; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.activity_stats (id, user_id, course_id, activity_id, data) FROM stdin;
\.
--
-- Name: activity_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.activity_stats_id_seq', 1, false);
--
-- Data for Name: classes; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.classes (id, name, school_id) FROM stdin;
1 a3 1
\.
--
-- Name: classes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.classes_id_seq', 1, true);
--
-- Name: course_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.course_actions_id_seq', 1, false);
--
-- Data for Name: course_events; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.course_events (id, user_id, course_id, created_at, type, data) FROM stdin;
\.
--
-- Data for Name: course_progresses; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.course_progresses (id, user_id, course_id, data) FROM stdin;
\.
--
-- Name: course_progresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.course_progresses_id_seq', 1, true);
--
-- Data for Name: course_stats; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.course_stats (id, user_id, class_id, course_id, data) FROM stdin;
\.
--
-- Name: course_stats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.course_stats_id_seq', 1, false);
--
-- Data for Name: course_versions; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.course_versions (id, course_id, data, owner_id, created_at) FROM stdin;
1 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria"], "initial-scene": "home"} 0 2019-01-16 18:31:55.726+04
2 2 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria"], "initial-scene": "home"} 0 2019-01-23 13:02:33.41+04
3 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria", "test"], "initial-scene": "home"} 1 2019-01-23 16:20:18.504+04
4 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria"], "initial-scene": "home"} 1 2019-01-24 15:02:10.064+04
5 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria", "test"], "initial-scene": "home"} 1 2019-01-24 15:02:28.104+04
6 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "preload": ["home", "map", "feria"], "initial-scene": "home"} 1 2019-01-24 15:03:42.549+04
7 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "lessons": [], "preload": ["home", "map", "feria"], "workflow": [], "initial-scene": "home"} 1 2019-02-20 17:34:12.359+04
8 1 {"scenes": ["home", "map", "feria", "ferris-wheel"], "lessons": [{"id": 1, "lesson-sets": {"set1": "ls1"}}], "preload": ["home", "map", "feria"], "workflow": [], "initial-scene": "home"} 1 2019-02-20 17:37:16.373+04
9 3 {"scenes": ["home", "map"], "lessons": [{"id": 1, "lesson-sets": {"set-1": "ls1"}}], "initial-scene": "home", "default-progress": {"sets": {"set-1": "ls1"}, "current-scene": "home", "current-lesson": 1, "workflow-action": "finish-activity", "current-activity": "home-introduce", "finished-workflow-actions": {}}, "workflow-actions": [{"id": 1, "type": "set-activity", "order": 1, "activity": "home-introduce"}, {"id": 2, "type": "set-activity", "order": 2, "activity": "see-saw"}, {"id": 3, "type": "set-activity", "order": 3, "activity": "swings"}]} 1 2019-02-25 13:14:29.596+04
\.
--
-- Name: course_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.course_versions_id_seq', 9, true);
--
-- Data for Name: courses; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.courses (id, name, slug, lang, image_src) FROM stdin;
1 demo demo \N \N
2 reading reading \N \N
3 test test \N \N
4 english english \N \N
\.
--
-- Name: courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.courses_id_seq', 4, true);
--
-- Data for Name: dataset_items; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.dataset_items (id, name, dataset_id, data) FROM stdin;
3 bat 1 {"src": "bat.png", "width": "100"}
4 flower 1 {"src": "flower.png", "width": "150"}
7 ardilla 2 {"skin": "squirrel", "letter": "a", "test-new": {"id": "init", "type": "action", "scene-id": "sandbox", "description": "Really long description for this action to test label"}, "word-1-skin": "bee", "word-2-skin": "tree", "word-3-skin": "airplane", "word-4-skin": "spider", "concept-name": "ardilla", "swings-dialog": "dialog-ardilla", "home-vaca-word": "word-ardilla", "home-group-word": "group-word-ardilla", "seesaw-voice-low": "word-ardilla-low", "game-voice-action": {"id": "/raw/audio/l1/a8/GameVoice.m4a", "type": "audio", "start": 6.76, "duration": 1.094, "scene-id": "cycling"}, "home-vaca-3-times": "vaca-3-times-ardilla", "home-vaca-goodbye": "goodbye-ardilla", "home-vaca-this-is": "this-is-ardilla", "seesaw-voice-high": "word-ardilla-high", "chanting-video-src": "/raw/video/l2a1/letter-a.mp4", "home-group-3-times": "group-3-times-ardilla", "home-vaca-question": "question-ardilla", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 22.037, "duration": 3.593}, {"data": [{"end": 23.021, "anim": "talk", "start": 22.201}, {"end": 24.065, "anim": "talk", "start": 23.26}, {"end": 25.511, "anim": "talk", "start": 24.423}], "type": "animation-sequence", "track": 1, "offset": 22.037, "target": "senoravaca"}], "type": "parallel", "description": "Ardilla! Ardilla! a-a-A!"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 22.007, "duration": 1.208}, {"data": [{"end": 23.066, "anim": "talk", "start": 22.201}], "type": "animation-sequence", "track": 1, "offset": 22.007, "target": "senoravaca"}], "type": "parallel", "description": "Ardilla"}, "sandbox-state-word-1": "abeja", "sandbox-state-word-2": "arbol", "sandbox-state-word-3": "avion", "sandbox-state-word-4": "arana", "sandbox-this-is-letter": "mari-this-is-letter-a", "sandbox-state-word-1-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Abeja"}, "target": "word"}, {"id": "voice-1", "type": "audio", "start": 6.218, "duration": 0.871}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-abeja"}, "sandbox-state-word-2-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Arbol"}, "target": "word"}, {"id": "voice-1", "type": "audio", "start": 7.873, "duration": 0.871}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-arbol"}, "sandbox-state-word-3-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Avion"}, "target": "word"}, {"id": "voice-1", "type": "audio", "start": 9.506, "duration": 0.871}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-avion"}, "sandbox-state-word-4-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Arana"}, "target": "word"}, {"id": "voice-1", "type": "audio", "start": 11.144, "duration": 1.06}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-arana"}, "sandbox-change-skin-1-action": {"skin": "bee", "type": "set-skin", "target": "box1", "scene-id": "sandbox", "description": ":box-1-set-skin-abeja"}, "sandbox-change-skin-2-action": {"skin": "tree", "type": "set-skin", "target": "box2", "scene-id": "sandbox", "description": ":box-1-set-skin-arbol"}, "sandbox-change-skin-3-action": {"skin": "airplane", "type": "set-skin", "target": "box3", "scene-id": "sandbox", "description": ":box-1-set-skin-avion"}, "sandbox-change-skin-4-action": {"skin": "spider", "type": "set-skin", "target": "box4", "scene-id": "sandbox", "description": ":box-1-set-skin-arana"}, "sandbox-this-is-letter-action": {"data": [{"end": 16.639, "anim": "talk", "start": 14.552}, {"end": 18.999, "anim": "talk", "start": 17.341}, {"end": 20.475, "anim": "talk", "start": 19.373}, {"end": 21.997, "anim": "talk", "start": 20.885}, {"end": 30.417, "anim": "talk", "start": 23.173}], "type": "animation-sequence", "audio": "/raw/audio/l1/a4/Mari_Level1_Activity4.m4a", "start": "14.397", "track": "1", "offset": "14.397", "target": "mari", "duration": "16.202", "scene-id": "sandbox", "description": ":mari-this-is-letter-a"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 6.821, "track": 1, "offset": 6.821, "target": "mari", "duration": 1.067, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
9 incendio 2 {"skin": "magnet", "letter": "i", "word-1-skin": "iguana", "word-2-skin": "fire", "word-3-skin": "insect", "word-4-skin": "island", "concept-name": "iman", "swings-dialog": "dialog-incendio", "home-vaca-word": "word-incendio", "home-group-word": "group-word-incendio", "seesaw-voice-low": "word-incendio-low", "game-voice-action": {"id": "/raw/audio/l1/a8/GameVoice.m4a", "type": "audio", "start": 9.534, "duration": 0.853, "scene-id": "cycling"}, "home-vaca-3-times": "vaca-3-times-incendio", "home-vaca-goodbye": "goodbye-incendio", "home-vaca-this-is": "this-is-incendio", "seesaw-voice-high": "word-incendio-high", "chanting-video-src": "/raw/video/l2a1/letter-i.mp4", "home-group-3-times": "group-3-times-incendio", "home-vaca-question": "question-incendio", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 69.004, "duration": 3.549}, {"data": [{"end": 69.749, "anim": "talk", "start": 69.063}, {"end": 70.793, "anim": "talk", "start": 69.988}, {"end": 72.523, "anim": "talk", "start": 71.211}], "type": "animation-sequence", "track": 1, "offset": 69.004, "target": "senoravaca"}], "type": "parallel", "description": "Iman, Iman i-i-I!"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 68.941, "duration": 0.847}, {"data": [{"end": 69.749, "anim": "talk", "start": 69.063}], "type": "animation-sequence", "track": 1, "offset": 68.941, "target": "senoravaca"}], "type": "parallel", "description": "Iman"}, "sandbox-state-word-1": "iguana", "sandbox-state-word-2": "incendio", "sandbox-state-word-3": "insecto", "sandbox-state-word-4": "isla", "sandbox-this-is-letter": "mari-this-is-letter-i", "sandbox-state-word-1-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Iguana"}, "target": "word"}, {"id": "voice-3", "type": "audio", "start": 4.828, "duration": 1.27}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-iguana"}, "sandbox-state-word-2-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Incendio"}, "target": "word"}, {"id": "voice-3", "type": "audio", "start": 6.591, "duration": 1.375}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-incendio"}, "sandbox-state-word-3-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Insecto"}, "target": "word"}, {"id": "voice-3", "type": "audio", "start": 8.699, "duration": 1.465}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-insecto"}, "sandbox-state-word-4-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Isla"}, "target": "word"}, {"id": "voice-3", "type": "audio", "start": 10.911, "duration": 1.151}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-isla"}, "sandbox-change-skin-1-action": {"skin": "iguana", "type": "set-skin", "target": "box1", "scene-id": "sandbox", "description": ":box-1-set-skin-iguana"}, "sandbox-change-skin-2-action": {"skin": "fire", "type": "set-skin", "target": "box2", "scene-id": "sandbox", "description": ":box-1-set-skin-incendio"}, "sandbox-change-skin-3-action": {"skin": "insect", "type": "set-skin", "target": "box3", "scene-id": "sandbox", "description": ":box-1-set-skin-insecto"}, "sandbox-change-skin-4-action": {"skin": "island", "type": "set-skin", "target": "box4", "scene-id": "sandbox", "description": ":box-1-set-skin-isla"}, "sandbox-this-is-letter-action": {"data": [{"end": 86.148, "anim": "talk", "start": 83.942}, {"end": 92.025, "anim": "talk", "start": 86.795}, {"end": 100.281, "anim": "talk", "start": 93.228}], "type": "animation-sequence", "audio": "/raw/audio/l1/a4/Mari_Level1_Activity4.m4a", "start": "83.778", "track": "1", "offset": "83.778", "target": "mari", "duration": "16.63", "scene-id": "sandbox", "description": ":mari-this-is-letter-i"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 9.515, "track": 1, "offset": 9.515, "target": "mari", "duration": 1, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
15 mano 2 {"skin": "dino", "letter": "m", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "mano", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-m.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 88.387, "duration": 3.4}, {"data": [{"end": 89.341, "anim": "talk", "start": 88.536}, {"end": 90.146, "anim": "talk", "start": 89.371}, {"end": 91.697, "anim": "talk", "start": 90.385}], "type": "animation-sequence", "track": 1, "offset": 88.387, "target": "senoravaca"}], "type": "parallel", "description": "Mano, mano, m-m-m,!!"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 88.476, "duration": 0.895}, {"data": [{"end": 89.341, "anim": "talk", "start": 88.536}], "type": "animation-sequence", "track": 1, "offset": 88.476, "target": "senoravaca"}], "type": "parallel", "description": "Mano"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 13.814, "track": 1, "offset": 13.814, "target": "mari", "duration": 1.014, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
11 serpiente 2 {"skin": "iguana", "letter": "s", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "serpiente", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-s.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 2.819, "duration": 3.485}, {"data": [{"end": 4.675, "anim": "talk", "start": 2.876}, {"end": 6.22, "anim": "talk", "start": 4.98}], "type": "animation-sequence", "track": 1, "offset": 2.819, "target": "senoravaca"}], "type": "parallel", "description": "Serpiente, Serpiente, s-s-s"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 3.878, "duration": 0.871}, {"data": [{"end": 4.697, "anim": "talk", "start": 3.896}], "type": "animation-sequence", "track": 1, "offset": 3.878, "target": "senoravaca"}], "type": "parallel", "description": "Serpiente"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 15.122, "track": 1, "offset": 15.122, "target": "mari", "duration": 1.28, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
8 oso 2 {"skin": "bear", "letter": "o", "word-1-skin": "8", "word-2-skin": "ear", "word-3-skin": "sheep", "word-4-skin": "eyes", "concept-name": "oso", "swings-dialog": "dialog-oso", "home-vaca-word": "word-oso", "home-group-word": "group-word-oso", "seesaw-voice-low": "word-oso-low", "game-voice-action": {"id": "/raw/audio/l1/a8/GameVoice.m4a", "type": "audio", "start": 8.24, "duration": 0.907, "scene-id": "cycling"}, "home-vaca-3-times": "vaca-3-times-oso", "home-vaca-goodbye": "goodbye-oso", "home-vaca-this-is": "this-is-oso", "seesaw-voice-high": "word-oso-high", "chanting-video-src": "/raw/video/l2a1/letter-o.mp4", "home-group-3-times": "group-3-times-oso", "home-vaca-question": "question-oso", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 61.504, "duration": 2.997}, {"data": [{"end": 62.324, "anim": "talk", "start": 61.668}, {"end": 63.055, "anim": "talk", "start": 62.384}, {"end": 64.322, "anim": "talk", "start": 63.249}], "type": "animation-sequence", "track": 1, "offset": 61.504, "target": "senoravaca"}], "type": "parallel", "description": " Oso, Oso, o-o-O"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 41.793, "duration": 0.969}, {"data": [{"end": 42.658, "anim": "talk", "start": 41.897}], "type": "animation-sequence", "track": 1, "offset": 41.793, "target": "senoravaca"}], "type": "parallel", "description": "Oso"}, "sandbox-state-word-1": "ocho", "sandbox-state-word-2": "oreja", "sandbox-state-word-3": "oveja", "sandbox-state-word-4": "ojos", "sandbox-this-is-letter": "mari-this-is-letter-o", "sandbox-state-word-1-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Ocho"}, "target": "word"}, {"id": "voice-2", "type": "audio", "start": 6.496, "duration": 0.864}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-ocho"}, "sandbox-state-word-2-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Oreja"}, "target": "word"}, {"id": "voice-2", "type": "audio", "start": 7.532, "duration": 1.017}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-oreja"}, "sandbox-state-word-3-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Oveja"}, "target": "word"}, {"id": "voice-2", "type": "audio", "start": 8.511, "duration": 1.103}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-oveja"}, "sandbox-state-word-4-action": {"data": [{"id": "show", "type": "state", "params": {"text": "Ojos"}, "target": "word"}, {"id": "voice-2", "type": "audio", "start": 9.873, "duration": 0.835}, {"id": "default", "type": "state", "target": "word"}], "type": "sequence-data", "scene-id": "sandbox", "description": ":sandbox-state-word-ojos"}, "sandbox-change-skin-1-action": {"skin": "8", "type": "set-skin", "target": "box1", "scene-id": "sandbox", "description": ":box-1-set-skin-ocho"}, "sandbox-change-skin-2-action": {"skin": "ear", "type": "set-skin", "target": "box2", "scene-id": "sandbox", "description": ":box-1-set-skin-oreja"}, "sandbox-change-skin-3-action": {"skin": "sheep", "type": "set-skin", "target": "box3", "scene-id": "sandbox", "description": ":box-1-set-skin-oveja"}, "sandbox-change-skin-4-action": {"skin": "eyes", "type": "set-skin", "target": "box4", "scene-id": "sandbox", "description": ":box-1-set-skin-ojos"}, "sandbox-this-is-letter-action": {"data": [{"end": 61.472, "anim": "talk", "start": 53.717}, {"end": 69.746, "anim": "talk", "start": 62.374}], "type": "animation-sequence", "audio": "/raw/audio/l1/a4/Mari_Level1_Activity4.m4a", "start": "53.626", "track": "1", "offset": "53.626", "target": "mari", "duration": "16.284", "scene-id": "sandbox", "description": ":mari-this-is-letter-o"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 8.288, "track": 1, "offset": 8.288, "target": "mari", "duration": 0.813, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
12 elefante 2 {"skin": "ear", "letter": "e", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "elefante", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-e.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 82.304, "duration": 5.219}, {"data": [{"end": 83.496, "anim": "talk", "start": 82.304}, {"end": 86.21, "anim": "talk", "start": 84.182}, {"end": 87.522, "anim": "talk", "start": 86.359}], "type": "animation-sequence", "track": 1, "offset": 82.304, "target": "senoravaca"}], "type": "parallel", "description": "Elefante, elefante, e-e-e!!"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 82.229, "duration": 1.342}, {"data": [{"end": 83.496, "anim": "talk", "start": 82.304}], "type": "animation-sequence", "track": 1, "offset": 82.229, "target": "senoravaca"}], "type": "parallel", "description": "Elefante"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 12.37, "track": 1, "offset": 12.37, "target": "mari", "duration": 1.28, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
13 leon 2 {"skin": "sheep", "letter": "l", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "leon", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-l.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 11.221, "duration": 3.414}, {"data": [{"end": 11.865, "anim": "talk", "start": 11.306}, {"end": 12.786, "anim": "talk", "start": 12.113}, {"end": 14.571, "anim": "talk", "start": 13.396}], "type": "animation-sequence", "track": 1, "offset": 11.221, "target": "senoravaca"}], "type": "parallel", "description": "León, León, l-l-l"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 11.185, "duration": 0.772}, {"data": [{"end": 11.851, "anim": "talk", "start": 11.313}], "type": "animation-sequence", "track": 1, "offset": 11.185, "target": "senoravaca"}], "type": "parallel", "description": "León"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 18.011, "track": 1, "offset": 18.011, "target": "mari", "duration": 1.027, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
16 uvas 2 {"skin": "tree", "letter": "u", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "uvas", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-u.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 75.833, "duration": 3.847}, {"data": [{"end": 76.906, "anim": "talk", "start": 75.922}, {"end": 78.039, "anim": "talk", "start": 77.145}, {"end": 79.56, "anim": "talk", "start": 78.308}], "type": "animation-sequence", "track": 1, "offset": 75.833, "target": "senoravaca"}], "type": "parallel", "description": "Uvas, Uvas, u-u-u!!"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_2.m4a", "type": "audio", "start": 75.803, "duration": 1.118}, {"data": [{"end": 76.906, "anim": "talk", "start": 75.922}], "type": "animation-sequence", "track": 1, "offset": 75.803, "target": "senoravaca"}], "type": "parallel", "description": "Uvas"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 11.027, "track": 1, "offset": 11.027, "target": "mari", "duration": 0.96, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
14 pelota 2 {"skin": "8", "letter": "p", "word-1-skin": null, "word-2-skin": null, "word-3-skin": null, "word-4-skin": null, "concept-name": "pelota", "game-voice-action": {}, "chanting-video-src": "/raw/video/l2a1/letter-p.mp4", "vaca-chanting-song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 7.077, "duration": 3.124}, {"data": [{"end": 7.913, "anim": "talk", "start": 7.14}, {"end": 8.834, "anim": "talk", "start": 8.047}, {"end": 10.087, "anim": "talk", "start": 9.124}], "type": "animation-sequence", "track": 1, "offset": 7.077, "target": "senoravaca"}], "type": "parallel", "description": "Pelota, pelota, p-p-p"}, "vaca-chanting-word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_3.m4a", "type": "audio", "start": 7.077, "duration": 0.9}, {"data": [{"end": 7.913, "anim": "talk", "start": 7.14}], "type": "animation-sequence", "track": 1, "offset": 7.077, "target": "senoravaca"}], "type": "parallel", "description": "Pelota"}, "hide-n-seek-current-concept-audio": {"data": [{"end": 2.67, "anim": "talk", "start": 0.775}], "type": "animation-sequence", "audio": "/raw/audio/l1/assessment1/Assessment1_GameVoice_Set1.m4a", "start": 16.756, "track": 1, "offset": 16.756, "target": "mari", "duration": 0.894, "scene-id": "hide-n-seek", "description": "Hide and seek question"}}
17 tomate 2 {"letter": "t", "chanting_video_src": "/raw/video/l2a1/letter-t.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 4.681, "duration": 3.098}, {"data": [{"end": 5.518, "anim": "talk", "start": 4.794}, {"end": 6.332, "anim": "talk", "start": 5.608}, {"end": 7.689, "anim": "talk", "start": 6.671}], "type": "animation-sequence", "track": 1, "offset": 4.681, "target": "senoravaca"}], "type": "parallel", "description": "Tomate, tomate, t-t-t!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 5.529, "duration": 0.916}, {"data": [{"end": 6.343, "anim": "talk", "start": 5.62}], "type": "animation-sequence", "track": 1, "offset": 5.529, "target": "senoravaca"}], "type": "parallel", "description": "Tomate"}}
18 diamante 2 {"letter": "d", "chanting_video_src": "/raw/video/l2a1/letter-d.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 8.56, "duration": 3.426}, {"data": [{"end": 9.555, "anim": "talk", "start": 8.616}, {"end": 10.335, "anim": "talk", "start": 9.588}, {"end": 11.872, "anim": "talk", "start": 10.719}], "type": "animation-sequence", "track": 1, "offset": 8.56, "target": "senoravaca"}], "type": "parallel", "description": "Diamante, diamante, d-d-d!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 9.532, "duration": 0.882}, {"data": [{"end": 10.335, "anim": "talk", "start": 9.555}], "type": "animation-sequence", "track": 1, "offset": 9.532, "target": "senoravaca"}], "type": "parallel", "description": "Diamante"}}
19 rana 2 {"letter": "r", "chanting_video_src": "/raw/video/l2a1/letter-r.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 12.585, "duration": 3.076}, {"data": [{"end": 13.512, "anim": "talk", "start": 12.664}, {"end": 14.247, "anim": "talk", "start": 13.636}, {"end": 15.593, "anim": "talk", "start": 14.484}], "type": "animation-sequence", "track": 1, "offset": 12.585, "target": "senoravaca"}], "type": "parallel", "description": "Rana, rana, r-r-r!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 13.535, "duration": 0.791}, {"data": [{"end": 14.236, "anim": "talk", "start": 13.614}], "type": "animation-sequence", "track": 1, "offset": 13.535, "target": "senoravaca"}], "type": "parallel", "description": "Rana"}}
20 casa 2 {"letter": "c", "chanting_video_src": "/raw/video/l2a1/letter-c.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 17.277, "duration": 3.37}, {"data": [{"end": 18.035, "anim": "talk", "start": 17.356}, {"end": 18.951, "anim": "talk", "start": 18.264}, {"end": 20.522, "anim": "talk", "start": 19.46}], "type": "animation-sequence", "track": 1, "offset": 17.277, "target": "senoravaca"}], "type": "parallel", "description": "Casa, casa, c-c-c!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 18.204, "duration": 0.859}, {"data": [{"end": 18.951, "anim": "talk", "start": 18.284}], "type": "animation-sequence", "track": 1, "offset": 18.204, "target": "senoravaca"}], "type": "parallel", "description": "Casa"}}
21 niño 2 {"letter": "n", "chanting_video_src": "/raw/video/l2a1/letter-n.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 25.758, "duration": 3.381}, {"data": [{"end": 26.662, "anim": "talk", "start": 25.871}, {"end": 27.499, "anim": "talk", "start": 26.764}, {"end": 29.059, "anim": "talk", "start": 27.94}], "type": "animation-sequence", "track": 1, "offset": 25.758, "target": "senoravaca"}], "type": "parallel", "description": "Niño, niño, n-n-n!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 26.764, "duration": 0.859}, {"data": [{"end": 27.499, "anim": "talk", "start": 26.764}], "type": "animation-sequence", "track": 1, "offset": 26.764, "target": "senoravaca"}], "type": "parallel", "description": "Niño"}}
22 flor 2 {"letter": "f", "chanting_video_src": "/raw/video/l2a1/letter-f.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 30.02, "duration": 3.053}, {"data": [{"end": 30.427, "anim": "talk", "start": 30.133}, {"end": 31.411, "anim": "talk", "start": 31.038}, {"end": 32.949, "anim": "talk", "start": 31.92}], "type": "animation-sequence", "track": 1, "offset": 30.02, "target": "senoravaca"}], "type": "parallel", "description": "Flor, flor, f-f-f!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 30.936, "duration": 0.577}, {"data": [{"end": 31.411, "anim": "talk", "start": 31.038}], "type": "animation-sequence", "track": 1, "offset": 30.936, "target": "senoravaca"}], "type": "parallel", "description": "Flor"}}
23 bebe 2 {"letter": "b", "chanting_video_src": "/raw/video/l2a1/letter-b.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 33.548, "duration": 3.37}, {"data": [{"end": 34.125, "anim": "talk", "start": 33.65}, {"end": 35.109, "anim": "talk", "start": 34.6}, {"end": 36.805, "anim": "talk", "start": 35.685}], "type": "animation-sequence", "track": 1, "offset": 33.548, "target": "senoravaca"}], "type": "parallel", "description": "Bebe, bebe, b-b-b!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 33.593, "duration": 0.633}, {"data": [{"end": 34.125, "anim": "talk", "start": 33.65}], "type": "animation-sequence", "track": 1, "offset": 33.593, "target": "senoravaca"}], "type": "parallel", "description": "Bebe"}}
24 gato 2 {"letter": "g", "chanting_video_src": "/raw/video/l2a1/letter-g.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 41.712, "duration": 3.109}, {"data": [{"end": 42.707, "anim": "talk", "start": 41.825}, {"end": 43.363, "anim": "talk", "start": 42.73}, {"end": 44.731, "anim": "talk", "start": 43.612}], "type": "animation-sequence", "track": 1, "offset": 37.37, "target": "senoravaca"}], "type": "parallel", "description": "Gato, gato, g-g-g!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 42.707, "duration": 0.712}, {"data": [{"end": 43.363, "anim": "talk", "start": 42.73}], "type": "animation-sequence", "track": 1, "offset": 42.707, "target": "senoravaca"}], "type": "parallel", "description": "Gato"}}
25 jardín 2 {"letter": "j", "chanting_video_src": "/raw/video/l2a1/letter-j.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 37.37, "duration": 3.268}, {"data": [{"end": 38.037, "anim": "talk", "start": 37.46}, {"end": 39.123, "anim": "talk", "start": 38.422}, {"end": 40.581, "anim": "talk", "start": 39.53}], "type": "animation-sequence", "track": 1, "offset": 37.37, "target": "senoravaca"}], "type": "parallel", "description": "Jardín, jardín, j-j-j!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_4.m4a", "type": "audio", "start": 37.37, "duration": 0.758}, {"data": [{"end": 38.037, "anim": "talk", "start": 37.46}], "type": "animation-sequence", "track": 1, "offset": 37.37, "target": "senoravaca"}], "type": "parallel", "description": "Jardín"}}
26 chocolate 2 {"letter": "ch", "chanting_video_src": "/raw/video/l2a1/letter-ch.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 5.429, "duration": 4.072}, {"data": [{"end": 6.431, "anim": "talk", "start": 5.502}, {"end": 7.611, "anim": "talk", "start": 6.651}, {"end": 9.417, "anim": "talk", "start": 8.175}], "type": "animation-sequence", "track": 1, "offset": 5.429, "target": "senoravaca"}], "type": "parallel", "description": "Chocolate, chocolate, ch-ch-ch!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 6.588, "duration": 1.128}, {"data": [{"end": 7.611, "anim": "talk", "start": 6.651}], "type": "animation-sequence", "track": 1, "offset": 6.588, "target": "senoravaca"}], "type": "parallel", "description": "Chocolate"}}
27 ñandu 2 {"letter": "ñ", "chanting_video_src": "/raw/video/l2a1/letter-ñ.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 10.399, "duration": 4.281}, {"data": [{"end": 11.286, "anim": "talk", "start": 10.524}, {"end": 12.675, "anim": "talk", "start": 11.819}, {"end": 14.586, "anim": "talk", "start": 13.354}], "type": "animation-sequence", "track": 1, "offset": 10.399, "target": "senoravaca"}], "type": "parallel", "description": "Ñandu, ñandu, ñ-ñ-ñ!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 11.725, "duration": 1.075}, {"data": [{"end": 12.675, "anim": "talk", "start": 11.819}], "type": "animation-sequence", "track": 1, "offset": 11.725, "target": "senoravaca"}], "type": "parallel", "description": "Ñandu"}}
28 violin 2 {"letter": "v", "chanting_video_src": "/raw/video/l2a1/letter-v.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 15.703, "duration": 3.957}, {"data": [{"end": 16.496, "anim": "talk", "start": 15.765}, {"end": 17.603, "anim": "talk", "start": 16.851}, {"end": 19.566, "anim": "talk", "start": 18.313}], "type": "animation-sequence", "track": 1, "offset": 15.703, "target": "senoravaca"}], "type": "parallel", "description": "Violin, violin, v-v-v!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 16.736, "duration": 0.981}, {"data": [{"end": 17.603, "anim": "talk", "start": 16.851}], "type": "animation-sequence", "track": 1, "offset": 16.736, "target": "senoravaca"}], "type": "parallel", "description": "Violin"}}
29 llave 2 {"letter": "ll", "chanting_video_src": "/raw/video/l2a1/letter-ll.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 20.422, "duration": 3.56}, {"data": [{"end": 21.602, "anim": "talk", "start": 20.526}, {"end": 22.343, "anim": "talk", "start": 21.623}, {"end": 23.867, "anim": "talk", "start": 22.74}], "type": "animation-sequence", "track": 1, "offset": 20.422, "target": "senoravaca"}], "type": "parallel", "description": "Llave, llave, ll-ll-ll!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 21.602, "duration": 0.835}, {"data": [{"end": 22.343, "anim": "talk", "start": 21.623}], "type": "animation-sequence", "track": 1, "offset": 21.602, "target": "senoravaca"}], "type": "parallel", "description": "Llave"}}
30 hoja 2 {"letter": "h", "chanting_video_src": "/raw/video/l2a1/letter-h.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 24.911, "duration": 1.827}, {"data": [{"end": 25.747, "anim": "talk", "start": 24.984}, {"end": 26.634, "anim": "talk", "start": 25.935}], "type": "animation-sequence", "track": 1, "offset": 24.911, "target": "senoravaca"}], "type": "parallel", "description": "Hoja, hoja!, h-h-h!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 25.872, "duration": 0.856}, {"data": [{"end": 26.634, "anim": "talk", "start": 25.935}], "type": "animation-sequence", "track": 1, "offset": 25.872, "target": "senoravaca"}], "type": "parallel", "description": "Hoja"}}
31 queso 2 {"letter": "q", "chanting_video_src": "/raw/video/l2a1/letter-q.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 29.202, "duration": 3.425}, {"data": [{"end": 30.173, "anim": "talk", "start": 29.296}, {"end": 30.936, "anim": "talk", "start": 30.299}, {"end": 32.46, "anim": "talk", "start": 31.332}], "type": "animation-sequence", "track": 1, "offset": 29.202, "target": "senoravaca"}], "type": "parallel", "description": "Queso, queso, qu-qu-qu!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 30.215, "duration": 0.814}, {"data": [{"end": 30.936, "anim": "talk", "start": 30.299}], "type": "animation-sequence", "track": 1, "offset": 30.215, "target": "senoravaca"}], "type": "parallel", "description": "Queso"}}
32 zapato 2 {"letter": "z", "chanting_video_src": "/raw/video/l2a1/letter-z.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 33.483, "duration": 3.842}, {"data": [{"end": 34.558, "anim": "talk", "start": 33.577}, {"end": 35.592, "anim": "talk", "start": 34.569}, {"end": 37.221, "anim": "talk", "start": 35.989}], "type": "animation-sequence", "track": 1, "offset": 33.483, "target": "senoravaca"}], "type": "parallel", "description": "Zapato, zapato, z-z-z!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 34.569, "duration": 1.117}, {"data": [{"end": 35.592, "anim": "talk", "start": 34.569}], "type": "animation-sequence", "track": 1, "offset": 34.569, "target": "senoravaca"}], "type": "parallel", "description": "Zapato"}}
33 kimono 2 {"letter": "k", "chanting_video_src": "/raw/video/l2a1/letter-k.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 38.683, "duration": 3.686}, {"data": [{"end": 39.758, "anim": "talk", "start": 38.776}, {"end": 40.739, "anim": "talk", "start": 39.821}, {"end": 42.18, "anim": "talk", "start": 41.063}], "type": "animation-sequence", "track": 1, "offset": 38.683, "target": "senoravaca"}], "type": "parallel", "description": "Kimono, kimono, k-k-k!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_5.m4a", "type": "audio", "start": 39.747, "duration": 1.086}, {"data": [{"end": 40.739, "anim": "talk", "start": 39.821}], "type": "animation-sequence", "track": 1, "offset": 39.747, "target": "senoravaca"}], "type": "parallel", "description": "Kimono"}}
34 yoyo 2 {"letter": "y", "chanting_video_src": "/raw/video/l2a1/letter-y.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 5.757, "duration": 3.386}, {"data": [{"end": 6.861, "anim": "talk", "start": 5.888}, {"end": 7.496, "anim": "talk", "start": 6.863}, {"end": 8.997, "anim": "talk", "start": 7.864}], "type": "animation-sequence", "track": 1, "offset": 5.757, "target": "senoravaca"}], "type": "parallel", "description": "Yoyo, yoyo, y-y-y!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 6.863, "duration": 0.738}, {"data": [{"end": 7.496, "anim": "talk", "start": 6.863}], "type": "animation-sequence", "track": 1, "offset": 6.863, "target": "senoravaca"}], "type": "parallel", "description": "Yoyo"}}
35 xilofono 2 {"letter": "x", "chanting_video_src": "/raw/video/l2a1/letter-x.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 10.025, "duration": 3.662}, {"data": [{"end": 11.092, "anim": "talk", "start": 10.13}, {"end": 12.067, "anim": "talk", "start": 11.158}, {"end": 13.582, "anim": "talk", "start": 12.422}], "type": "animation-sequence", "track": 1, "offset": 10.025, "target": "senoravaca"}], "type": "parallel", "description": "Xilofono, xilofono, x-x-x,!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 11.079, "duration": 1.12}, {"data": [{"end": 12.067, "anim": "talk", "start": 11.158}], "type": "animation-sequence", "track": 1, "offset": 11.079, "target": "senoravaca"}], "type": "parallel", "description": "Xilofono"}}
36 web 2 {"letter": "w", "chanting_video_src": "/raw/video/l2a1/letter-w.mp4", "vaca_chanting_song": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 1.541, "duration": 3.609}, {"data": [{"end": 2.503, "anim": "talk", "start": 1.713}, {"end": 3.254, "anim": "talk", "start": 2.832}, {"end": 4.993, "anim": "talk", "start": 3.82}], "type": "animation-sequence", "track": 1, "offset": 1.541, "target": "senoravaca"}], "type": "parallel", "description": "Sitio Web, Web w-w-w!"}, "vaca_chanting_word": {"data": [{"id": "/raw/audio/l2/a1/L2_A1_Vaca_6.m4a", "type": "audio", "start": 2.727, "duration": 0.619}, {"data": [{"end": 3.254, "anim": "talk", "start": 2.832}], "type": "animation-sequence", "track": 1, "offset": 2.727, "target": "senoravaca"}], "type": "parallel", "description": "Web"}}
\.
--
-- Name: dataset_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.dataset_items_id_seq', 36, true);
--
-- Data for Name: datasets; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.datasets (id, course_id, name, scheme) FROM stdin;
1 1 item {"fields": [{"name": "src", "type": "string"}, {"name": "width", "type": "number"}]}
3 4 concepts {}
2 3 concepts {"fields": [{"name": "home-vaca-this-is", "type": "string"}, {"name": "home-vaca-question", "type": "string"}, {"name": "home-vaca-word", "type": "string"}, {"name": "home-group-word", "type": "string"}, {"name": "home-vaca-3-times", "type": "string"}, {"name": "home-group-3-times", "type": "string"}, {"name": "home-vaca-goodbye", "type": "string"}, {"name": "skin", "type": "string"}, {"name": "seesaw-voice-low", "type": "string"}, {"name": "seesaw-voice-high", "type": "string"}, {"name": "swings-dialog", "type": "string"}, {"name": "sandbox-this-is-letter", "type": "string"}, {"name": "sandbox-state-word-1", "type": "string"}, {"name": "sandbox-state-word-2", "type": "string"}, {"name": "sandbox-state-word-3", "type": "string"}, {"name": "sandbox-state-word-4", "type": "string"}, {"name": "concept-name", "type": "string"}, {"name": "sandbox-this-is-letter-action", "type": "action"}, {"name": "sandbox-state-word-1-action", "type": "action"}, {"name": "sandbox-state-word-2-action", "type": "action"}, {"name": "sandbox-state-word-3-action", "type": "action"}, {"name": "sandbox-state-word-4-action", "type": "action"}, {"name": "sandbox-change-skin-1-action", "type": "action"}, {"name": "sandbox-change-skin-2-action", "type": "action"}, {"name": "sandbox-change-skin-3-action", "type": "action"}, {"name": "sandbox-change-skin-4-action", "type": "action"}, {"name": "hide-n-seek-current-concept-audio", "type": "action"}, {"name": "word-1-skin", "type": "string"}, {"name": "word-2-skin", "type": "string"}, {"name": "word-3-skin", "type": "string"}, {"name": "word-4-skin", "type": "string"}, {"name": "game-voice-action", "type": "action"}, {"name": "letter", "type": "string"}, {"name": "vaca-chanting-word", "type": "action"}, {"name": "vaca-chanting-song", "type": "action"}, {"name": "chanting-video-src", "type": "string"}]}
\.
--
-- Name: datasets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.datasets_id_seq', 3, true);
--
-- Data for Name: lesson_sets; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.lesson_sets (id, name, dataset_id, data) FROM stdin;
1 ls1 1 {"items": [{"id": 3}]}
3 ls1 2 {"items": [{"id": 7}, {"id": 8}, {"id": 9}]}
5 assessment1 2 {"items": [{"id": 8}, {"id": 9}, {"id": 7}, {"id": 12}, {"id": 13}, {"id": 11}, {"id": 14}, {"id": 15}, {"id": 16}]}
\.
--
-- Name: lesson_sets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.lesson_sets_id_seq', 5, true);
--
-- Data for Name: scene_versions; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.scene_versions (id, scene_id, data, owner_id, created_at) FROM stdin;
1 1 {"audio": {"vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 0 2019-01-16 18:33:41.209+04
2 2 {"audio": {"background": "/raw/audio/background/POL-daily-special-short.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/anim/vera-go/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera-go/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera-go/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera-go/skeleton2.png", "size": 1, "type": "anim-texture"}], "actions": {"open-home": {"type": "scene", "scene-id": "home"}, "open-feria": {"type": "scene", "scene-id": "feria"}, "move-to-home": {"data": ["start-movement", "move-to-home-transition", "open-home"], "type": "sequence"}, "move-to-feria": {"data": ["start-movement", "move-to-feria-transition-1", "move-to-feria-transition-2", "move-to-feria-transition-3", "move-to-feria-transition-4", "move-to-feria-transition-5", "open-feria"], "type": "sequence"}, "start-movement": {"type": "start-animation", "target": "vera-go"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "move-to-home-transition": {"to": {"x": 1000, "y": 620}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-1": {"to": {"x": 940, "y": 725}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-2": {"to": {"x": 975, "y": 771}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-3": {"to": {"x": 895, "y": 851}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-4": {"to": {"x": 875, "y": 938}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-5": {"to": {"x": 590, "y": 960}, "type": "transition", "transition-id": "vera-transition"}}, "objects": {"home": {"x": 731, "y": 340, "src": "/raw/img/map/casa_01.png", "type": "image", "width": 433, "height": 380, "states": {"hover": {"src": "/raw/img/map/casa_02.png", "type": "image"}, "default": {"src": "/raw/img/map/casa_01.png", "type": "image"}}, "actions": {"click": {"id": "move-to-home", "on": "click", "type": "action"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "home"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "home"}}}, "vera": {"x": 1070, "y": 665, "anim": "go_front", "name": "vera-go", "type": "animation", "scale": {"x": 0.15, "y": 0.15}, "speed": 0.5, "start": false, "width": 752, "height": 1175, "transition": "vera-transition"}, "feria": {"x": 235, "y": 683, "src": "/raw/img/map/feria_01.png", "type": "image", "width": 319, "height": 280, "states": {"hover": {"src": "/raw/img/map/feria_02.png", "type": "image"}, "default": {"src": "/raw/img/map/feria_01.png", "type": "image"}}, "actions": {"click": {"id": "move-to-feria", "on": "click", "type": "action"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "feria"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "feria"}}}, "background": {"src": "/raw/img/map/background.png", "type": "background"}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}}, "scene-objects": [["background", "home", "feria"], ["vera"]]} 0 2019-01-16 18:34:02.147+04
3 3 {"audio": {"background": "/raw/audio/background/POL-daily-special-short.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/img/feria/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/ferris_wheel_default.png", "size": 2, "type": "image"}, {"url": "/raw/img/feria/ferris_wheel_highlight.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}], "actions": {"start-background-music": {"id": "background", "loop": true, "type": "audio"}}, "objects": {"exit": {"x": 1600, "y": 800, "src": "/raw/img/feria/back.png", "type": "image", "width": 241, "height": 231, "states": {"hover": {"src": "/raw/img/feria/back_active.png"}, "default": {"src": "/raw/img/feria/back.png"}}, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "exit"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "exit"}}}, "vera": {"x": 1100, "y": 650, "src": "/raw/img/vera.png", "type": "image", "scale": {"x": 0.55, "y": 0.55}, "width": 431, "height": 626}, "wheel": {"x": 467, "y": 105, "src": "/raw/img/feria/ferris_wheel_default.png", "type": "image", "width": 708, "height": 778, "states": {"hover": {"src": "/raw/img/feria/ferris_wheel_highlight.png"}, "default": {"src": "/raw/img/feria/ferris_wheel_default.png"}}, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "ferris-wheel"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "wheel"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "wheel"}}}, "background": {"src": "/raw/img/feria/background.jpg", "type": "background"}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}}, "scene-objects": [["background", "wheel", "exit"], ["vera"]]} 0 2019-01-16 18:34:20.866+04
4 4 {"audio": {"fw-correct": "/raw/audio/demo/fw-thats-correct.mp3", "fw-syllables": "/raw/audio/demo/ferris-wheel-syllables.mp3", "fw-try-again": "/raw/audio/demo/fw-try-again.mp3", "instructions": "/raw/audio/demo/ferris-wheel-instructions.mp3"}, "assets": [{"url": "/raw/audio/demo/ferris-wheel-instructions.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/ferris-wheel-syllables.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/fw-thats-correct.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/fw-try-again.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/ferris-wheel/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_04.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/ladybug.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/broccoli.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/crocodile.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/dino.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/orange.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/pumpkin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_red.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_yellow.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/mari/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.png", "size": 1, "type": "anim-texture"}], "actions": {"empty-1": {"type": "empty", "duration": 1000}, "empty-3": {"type": "empty", "duration": 3000}, "set-red": {"id": "red", "type": "state", "from-params": {"target": "form"}}, "play-word": {"id": "audio-id", "type": "placeholder-audio", "start": "start", "offset": "offset", "duration": "duration", "var-name": "current-word"}, "set-green": {"data": [{"type": "add-alias", "alias": "default", "state": "green", "from-params": {"target": "form"}}, {"id": "green", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "pick-wrong": {"data": ["clear-repeat-word", "wrong-workflow"], "type": "sequence"}, "set-yellow": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "from-params": {"target": "form"}}, {"id": "yellow", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "start-game": {"data": ["reset-states", "renew-words", "renew-current-word", "audio-instructions", "repeat-current-word"], "type": "sequence"}, "audio-wrong": {"id": "fw-try-again", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.755}, "finish-game": {"type": "set-variable", "var-name": "score", "var-value": {"visible": true}}, "renew-words": {"from": "items", "type": "dataset-var-provider", "variables": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "provider-id": "words-set"}, "reset-forms": {"data": [{"id": "default", "type": "state", "target": "item-1f"}, {"id": "default", "type": "state", "target": "item-2f"}, {"id": "default", "type": "state", "target": "item-3f"}, {"id": "default", "type": "state", "target": "item-4f"}, {"id": "default", "type": "state", "target": "item-5f"}, {"id": "default", "type": "state", "target": "item-6f"}], "type": "parallel"}, "pick-correct": {"data": ["clear-repeat-word", "correct-workflow"], "type": "sequence"}, "reset-states": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-1f"}, {"id": "yellow", "type": "state", "target": "item-1f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-2f"}, {"id": "yellow", "type": "state", "target": "item-2f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-3f"}, {"id": "yellow", "type": "state", "target": "item-3f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-4f"}, {"id": "yellow", "type": "state", "target": "item-4f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-5f"}, {"id": "yellow", "type": "state", "target": "item-5f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-6f"}, {"id": "yellow", "type": "state", "target": "item-6f"}], "type": "parallel"}, "rotate-wheel": {"data": [{"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-1"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-3"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "items"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6"}], "type": "parallel"}, "audio-correct": {"id": "fw-correct", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.225}, "increase-fail": {"type": "counter", "counter-id": "fails", "counter-action": "increase"}, "mari-anim-idle": {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, "mari-anim-talk": {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, "wrong-workflow": {"data": ["increase-fail", "set-red", "audio-wrong", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "correct-workflow": {"data": ["increase-success", "reset-forms", "set-green", "audio-correct", "renew-current-word", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "increase-success": {"type": "counter", "counter-id": "successes", "counter-action": "increase"}, "clear-repeat-word": {"type": "remove-flows", "flow-tag": "repeat-word"}, "audio-instructions": {"data": [{"id": "instructions", "type": "audio", "start": 0.3, "offset": 0, "duration": 6.2}, {"data": [{"type": "empty", "duration": 1159}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 912}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 981}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 2443}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}], "type": "sequence-data"}], "type": "parallel"}, "check-current-word": {"fail": "pick-wrong", "type": "test-var", "success": "pick-correct", "property": "id", "var-name": "current-word"}, "renew-current-word": {"from": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "type": "vars-var-provider", "on-end": "finish-game", "variables": ["current-word"], "provider-id": "current-word"}, "repeat-current-word": {"data": ["empty-1", "mari-anim-talk", "play-word", "mari-anim-idle", "empty-3", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}}, "objects": {"items": {"type": "group", "width": 772, "height": 772, "origin": {"type": "center-center"}, "children": ["item-1f", "item-2f", "item-3f", "item-4f", "item-5f", "item-6f", "item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "transition": "items"}, "wheel": {"x": 806, "y": 457, "type": "group", "children": ["wheel-1", "wheel-2", "wheel-3", "items"]}, "item-1": {"x": 599, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-1f"}}}, "rotation": 360, "var-name": "item-1", "image-src": "src", "transition": "item-1", "image-width": "width", "image-height": "height"}, "item-2": {"x": 386, "y": 140, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-2f"}}}, "rotation": 360, "var-name": "item-2", "image-src": "src", "transition": "item-2", "image-width": "width", "image-height": "height"}, "item-3": {"x": 173, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-3f"}}}, "rotation": 360, "var-name": "item-3", "image-src": "src", "transition": "item-3", "image-width": "width", "image-height": "height"}, "item-4": {"x": 173, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-4f"}}}, "rotation": 360, "var-name": "item-4", "image-src": "src", "transition": "item-4", "image-width": "width", "image-height": "height"}, "item-5": {"x": 386, "y": 632, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-5f"}}}, "rotation": 360, "var-name": "item-5", "image-src": "src", "transition": "item-5", "image-width": "width", "image-height": "height"}, "item-6": {"x": 599, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-6f"}}}, "rotation": 360, "var-name": "item-6", "image-src": "src", "transition": "item-6", "image-width": "width", "image-height": "height"}, "item-1f": {"x": 599, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-1f", "states-aliases": {"default": "yellow"}}, "item-2f": {"x": 386, "y": 140, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-2f", "states-aliases": {"default": "yellow"}}, "item-3f": {"x": 173, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-3f", "states-aliases": {"default": "yellow"}}, "item-4f": {"x": 173, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-4f", "states-aliases": {"default": "yellow"}}, "item-5f": {"x": 386, "y": 632, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-5f", "states-aliases": {"default": "yellow"}}, "item-6f": {"x": 599, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-6f", "states-aliases": {"default": "yellow"}}, "wheel-1": {"src": "/raw/img/ferris-wheel/ferris_wheel_01.png", "type": "image", "width": 772, "height": 772, "origin": {"type": "center-center"}, "transition": "wheel-1"}, "wheel-2": {"src": "/raw/img/ferris-wheel/ferris_wheel_02.png", "type": "image", "width": 359, "height": 527, "origin": {"type": "center-top"}}, "wheel-3": {"src": "/raw/img/ferris-wheel/ferris_wheel_03.png", "type": "image", "width": 261, "height": 262, "origin": {"type": "center-center"}, "transition": "wheel-3"}, "butterfly": {"x": 1535, "y": 715, "anim": "idle", "name": "mari", "type": "animation", "speed": 0.35, "start": true, "width": 473, "height": 511, "scale-x": 0.5, "scale-y": 0.5, "scene-name": "butterfly"}, "background": {"src": "/raw/img/ferris-wheel/background.jpg", "type": "background"}}, "datasets": {"items": {"orange": {"id": "orange", "src": "/raw/img/ferris-wheel/words/orange.png", "start": 19.34, "width": 108, "height": 102, "offset": 0, "audio-id": "fw-syllables", "duration": 2.283}, "ladybug": {"id": "ladybug", "src": "/raw/img/ferris-wheel/words/ladybug.png", "start": 15.896, "width": 98, "height": 88, "offset": 0, "audio-id": "fw-syllables", "duration": 2.233}, "pumpkin": {"id": "pumpkin", "src": "/raw/img/ferris-wheel/words/pumpkin.png", "start": 12.939, "width": 112, "height": 114, "offset": 0, "audio-id": "fw-syllables", "duration": 1.585}, "broccoli": {"id": "broccoli", "src": "/raw/img/ferris-wheel/words/broccoli.png", "start": 5.191, "width": 100, "height": 100, "offset": 0, "audio-id": "fw-syllables", "duration": 2.171}, "dinosaur": {"id": "dinosaur", "src": "/raw/img/ferris-wheel/words/dino.png", "start": 8.959, "width": 102, "height": 118, "offset": 0, "audio-id": "fw-syllables", "duration": 2.508}, "crocodile": {"id": "crocodile", "src": "/raw/img/ferris-wheel/words/crocodile.png", "start": 1.335, "width": 112, "height": 121, "offset": 0, "audio-id": "fw-syllables", "duration": 2.308}}}, "metadata": {"next": "feria", "prev": "feria", "autostart": false}, "triggers": {"start": {"on": "start", "action": "start-game"}, "rotation": {"on": "start", "action": "rotate-wheel"}}, "scene-objects": [["background", "wheel"], ["butterfly"]]} 0 2019-01-16 18:34:46.758+04
5 5 {"audio": {"vera": "/raw/audio/scripts/intro/vera.mp3", "teacher": "/raw/audio/scripts/intro/teacher.mp3", "syllables": "/raw/audio/scripts/intro/syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/scripts/intro/intro-finish.mp3", "casa-welcome": "/raw/audio/scripts/intro/intro-welcome.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/scripts/intro/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/scripts/intro/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/scripts/intro/syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/scripts/intro/intro-welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/scripts/intro/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/Grapes.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/Spoon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/Fork.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "senora-vaca-audio-7", "group-uvas", "senora-vaca-audio-8", "group-cuchara", "vera-audio-6", "senora-vaca-audio-9", "group-tenedor", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-uvas": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-uvas", "syllable-u", "syllable-vas", "empty-1", "syllable-u", "syllable-vas", "empty-1", "syllable-u", "syllable-vas", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-u": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 0.029, "offset": 0.1, "duration": 0.7}, {"id": "syllables", "name": "clap", "type": "audio", "start": 0.029, "offset": 0.1, "duration": 0.7}, {"id": "show", "type": "state", "params": {"text": "u"}, "target": "syllable"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-cu": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 2.507, "offset": 0.1, "duration": 0.609}, {"id": "syllables", "name": "clap", "type": "audio", "start": 2.507, "offset": 0.1, "duration": 0.609}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "cu"}, "target": "syllable"}], "type": "parallel"}, "syllable-ne": {"data": [{"id": "syllables", "name": "syllable-teacher", "type": "audio", "start": 4.878, "offset": 0.1, "duration": 0.653}, {"id": "syllables", "name": "clap-teacher", "type": "audio", "start": 4.878, "offset": 0.1, "duration": 0.653}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "syllables", "name": "syllable-vera", "type": "audio", "start": 8.211, "offset": 0.1, "duration": 0.56}, {"id": "syllables", "name": "clap-vera", "type": "audio", "start": 8.211, "offset": 0.1, "duration": 0.56}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "ne"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 2.035, "offset": 0.1, "duration": 0.388}, {"id": "syllables", "name": "clap", "type": "audio", "start": 2.035, "offset": 0.1, "duration": 0.388}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-te": {"data": [{"id": "syllables", "name": "syllable-teacher", "type": "audio", "start": 4.21, "offset": 0.1, "duration": 0.646}, {"id": "syllables", "name": "clap-teacher", "type": "audio", "start": 4.21, "offset": 0.1, "duration": 0.646}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "syllables", "name": "syllable-vera", "type": "audio", "start": 7.625, "offset": 0.1, "duration": 0.552}, {"id": "syllables", "name": "clap-vera", "type": "audio", "start": 7.625, "offset": 0.1, "duration": 0.552}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "te"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 1.383, "offset": 0.1, "duration": 0.633}, {"id": "syllables", "name": "clap", "type": "audio", "start": 1.383, "offset": 0.1, "duration": 0.633}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 3.4}, "syllable-cha": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 3.178, "offset": 0.1, "duration": 0.628}, {"id": "syllables", "name": "clap", "type": "audio", "start": 3.178, "offset": 0.1, "duration": 0.628}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "cha"}, "target": "syllable"}], "type": "parallel"}, "syllable-dor": {"data": [{"id": "syllables", "name": "syllable-teacher", "type": "audio", "start": 5.54, "offset": 0.1, "duration": 0.561}, {"id": "syllables", "name": "clap-teacher", "type": "audio", "start": 5.54, "offset": 0.1, "duration": 0.561}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "syllables", "name": "syllable-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "syllables", "name": "clap-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "dor"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra2": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 3.829, "offset": 0.1, "duration": 0.362}, {"id": "syllables", "name": "clap", "type": "audio", "start": 3.829, "offset": 0.1, "duration": 0.362}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "ra"}, "target": "syllable"}], "type": "parallel"}, "syllable-vas": {"data": [{"id": "syllables", "name": "syllable", "type": "audio", "start": 0.744, "offset": 0.1, "duration": 0.607}, {"id": "syllables", "name": "clap", "type": "audio", "start": 0.744, "offset": 0.1, "duration": 0.607}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vas"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.1, "duration": 4.4232}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "talking", "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 6.365, "duration": 1.405}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "jump+clapping", "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.871, "duration": 2.59}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "talking", "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.426, "duration": 1.253}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "talking", "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.1, "duration": 0.948}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "talking", "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.267, "duration": 3.809}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"id": "talking", "type": "animation", "target": "vera"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 8.7}, "group-cuchara": {"data": ["show-word-cuchara", "senora-vaca-anim-clapping-start", "empty-1", "syllable-cu", "syllable-cha", "syllable-ra2", "empty-1", "syllable-cu", "syllable-cha", "syllable-ra2", "empty-1", "syllable-cu", "syllable-cha", "syllable-ra2", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "group-tenedor": {"data": ["show-word-tenedor", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-te", "syllable-ne", "syllable-dor", "senora-vaca-anim-idle", "vera-anim-idle", "empty-1", "syllable-te", "syllable-ne", "syllable-dor2", "senora-vaca-anim-idle", "vera-anim-idle", "empty-1", "syllable-te", "syllable-ne", "syllable-dor3", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-dor2": {"data": [{"id": "syllables", "name": "syllable-teacher", "type": "audio", "start": 6.119, "offset": 0.1, "duration": 0.615}, {"id": "syllables", "name": "clap-teacher", "type": "audio", "start": 6.119, "offset": 0.1, "duration": 0.615}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "syllables", "name": "syllable-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "syllables", "name": "clap-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "dor"}, "target": "syllable"}], "type": "parallel"}, "syllable-dor3": {"data": [{"id": "syllables", "name": "syllable-teacher", "type": "audio", "start": 6.743, "offset": 0.1, "duration": 0.87}, {"id": "syllables", "name": "clap-teacher", "type": "audio", "start": 6.743, "offset": 0.1, "duration": 0.87}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "syllables", "name": "syllable-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "syllables", "name": "clap-vera", "type": "audio", "start": 8.798, "offset": 0.1, "duration": 0.813}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "dor"}, "target": "syllable"}], "type": "parallel"}, "show-word-uvas": {"data": [{"id": "uvas", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "show-word-cuchara": {"data": [{"id": "cuchara", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-tenedor": {"data": [{"id": "tenedor", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.749, "duration": 2.68}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.453, "duration": 6.266}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.508, "duration": 1.931}, {"id": "hand", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.478, "duration": 3.232}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.577, "duration": 5.084}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.09, "duration": 1.86}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "teacher", "type": "audio", "start": 29.75, "duration": 2.2}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-8": {"data": [{"id": "teacher", "type": "audio", "start": 38.102, "duration": 4.739}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 50.809, "duration": 1.409}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 61.686, "duration": 6.759}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"uvas": {"src": "/raw/img/ferris-wheel/words/Grapes.png", "type": "image", "width": 109, "height": 134}, "cuchara": {"src": "/raw/img/ferris-wheel/words/Spoon.png", "type": "image", "width": 97, "height": 126}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "tenedor": {"src": "/raw/img/ferris-wheel/words/Fork.png", "type": "image", "width": 92, "height": 122}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 0 2019-01-23 13:07:28.959+04
6 6 {"audio": {"background": "/raw/audio/background/POL-daily-special-short.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/anim/vera-go/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera-go/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera-go/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera-go/skeleton2.png", "size": 1, "type": "anim-texture"}], "actions": {"open-home": {"type": "scene", "scene-id": "home"}, "open-feria": {"type": "scene", "scene-id": "feria"}, "move-to-home": {"data": ["start-movement", "move-to-home-transition", "open-home"], "type": "sequence"}, "move-to-feria": {"data": ["start-movement", "move-to-feria-transition-1", "move-to-feria-transition-2", "move-to-feria-transition-3", "move-to-feria-transition-4", "move-to-feria-transition-5", "open-feria"], "type": "sequence"}, "start-movement": {"type": "start-animation", "target": "vera-go"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "move-to-home-transition": {"to": {"x": 1000, "y": 620}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-1": {"to": {"x": 940, "y": 725}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-2": {"to": {"x": 975, "y": 771}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-3": {"to": {"x": 895, "y": 851}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-4": {"to": {"x": 875, "y": 938}, "type": "transition", "transition-id": "vera-transition"}, "move-to-feria-transition-5": {"to": {"x": 590, "y": 960}, "type": "transition", "transition-id": "vera-transition"}}, "objects": {"home": {"x": 731, "y": 340, "src": "/raw/img/map/casa_01.png", "type": "image", "width": 433, "height": 380, "states": {"hover": {"src": "/raw/img/map/casa_02.png", "type": "image"}, "default": {"src": "/raw/img/map/casa_01.png", "type": "image"}}, "actions": {"click": {"id": "move-to-home", "on": "click", "type": "action"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "home"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "home"}}}, "vera": {"x": 1070, "y": 665, "anim": "go_front", "name": "vera-go", "type": "animation", "scale": {"x": 0.15, "y": 0.15}, "speed": 0.5, "start": false, "width": 752, "height": 1175, "transition": "vera-transition"}, "feria": {"x": 235, "y": 683, "src": "/raw/img/map/feria_01.png", "type": "image", "width": 319, "height": 280, "states": {"hover": {"src": "/raw/img/map/feria_02.png", "type": "image"}, "default": {"src": "/raw/img/map/feria_01.png", "type": "image"}}, "actions": {"click": {"id": "move-to-feria", "on": "click", "type": "action"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "feria"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "feria"}}}, "background": {"src": "/raw/img/map/background.png", "type": "background"}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}}, "scene-objects": [["background", "home", "feria"], ["vera"]]} 0 2019-01-23 13:08:17.852+04
7 7 {"audio": {"background": "/raw/audio/background/POL-daily-special-short.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/img/feria/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/ferris_wheel_default.png", "size": 2, "type": "image"}, {"url": "/raw/img/feria/ferris_wheel_highlight.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}], "actions": {"start-background-music": {"id": "background", "loop": true, "type": "audio"}}, "objects": {"exit": {"x": 1600, "y": 800, "src": "/raw/img/feria/back.png", "type": "image", "states": {"hover": {"src": "/raw/img/feria/back_active.png"}, "default": {"src": "/raw/img/feria/back.png"}}, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "exit"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "exit"}}}, "vera": {"x": 1100, "y": 650, "src": "/raw/img/vera.png", "type": "image", "scale": {"x": 0.55, "y": 0.55}}, "wheel": {"x": 467, "y": 105, "src": "/raw/img/feria/ferris_wheel_default.png", "type": "image", "width": 708, "height": 778, "states": {"hover": {"src": "/raw/img/feria/ferris_wheel_highlight.png"}, "default": {"src": "/raw/img/feria/ferris_wheel_default.png"}}, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "ferris-wheel"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "wheel"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "wheel"}}}, "background": {"src": "/raw/img/feria/background.jpg", "type": "background"}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}}, "scene-objects": [["background", "wheel", "exit"], ["vera"]]} 0 2019-01-23 13:08:33.469+04
8 8 {"audio": {"fw-correct": "/raw/audio/ferris-wheel/fw-thats-correct.mp3", "fw-try-again": "/raw/audio/ferris-wheel/fw-try-again.mp3", "instructions": "/raw/audio/ferris-wheel/instructions.mp3"}, "assets": [{"url": "/raw/audio/ferris-wheel/instructions.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/ferris-wheel/fw-thats-correct.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/ferris-wheel/fw-try-again.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/ferris-wheel/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_04.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/bat.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/broccoli.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/crocodile.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/dino.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/orange.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/whale.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_red.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_yellow.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/mari/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.png", "size": 1, "type": "anim-texture"}], "actions": {"empty-1": {"type": "empty", "duration": 1000}, "empty-3": {"type": "empty", "duration": 3000}, "set-red": {"id": "red", "type": "state", "from-params": {"target": "form"}}, "play-word": {"id": "audio-id", "type": "placeholder-audio", "start": "start", "offset": "offset", "duration": "duration", "var-name": "current-word"}, "set-green": {"data": [{"type": "add-alias", "alias": "default", "state": "green", "from-params": {"target": "form"}}, {"id": "green", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "pick-wrong": {"data": ["clear-repeat-word", "wrong-workflow"], "type": "sequence"}, "set-yellow": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "from-params": {"target": "form"}}, {"id": "yellow", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "start-game": {"data": ["reset-states", "renew-words", "renew-current-word", "audio-instructions", "repeat-current-word"], "type": "sequence"}, "audio-wrong": {"id": "fw-try-again", "type": "audio", "start": 0.892, "offset": 0.2, "duration": 1.869}, "finish-game": {"type": "set-variable", "var-name": "score", "var-value": {"visible": true}}, "renew-words": {"from": "items", "type": "dataset-var-provider", "variables": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "provider-id": "words-set"}, "reset-forms": {"data": [{"id": "default", "type": "state", "target": "item-1f"}, {"id": "default", "type": "state", "target": "item-2f"}, {"id": "default", "type": "state", "target": "item-3f"}, {"id": "default", "type": "state", "target": "item-4f"}, {"id": "default", "type": "state", "target": "item-5f"}, {"id": "default", "type": "state", "target": "item-6f"}], "type": "parallel"}, "pick-correct": {"data": ["clear-repeat-word", "correct-workflow"], "type": "sequence"}, "reset-states": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-1f"}, {"id": "yellow", "type": "state", "target": "item-1f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-2f"}, {"id": "yellow", "type": "state", "target": "item-2f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-3f"}, {"id": "yellow", "type": "state", "target": "item-3f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-4f"}, {"id": "yellow", "type": "state", "target": "item-4f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-5f"}, {"id": "yellow", "type": "state", "target": "item-5f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-6f"}, {"id": "yellow", "type": "state", "target": "item-6f"}], "type": "parallel"}, "rotate-wheel": {"data": [{"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-1"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-3"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "items"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6"}], "type": "parallel"}, "audio-correct": {"id": "fw-correct", "type": "audio", "start": 0.371, "offset": 0.2, "duration": 2.178}, "increase-fail": {"type": "counter", "counter-id": "fails", "counter-action": "increase"}, "mari-anim-idle": {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, "mari-anim-talk": {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, "wrong-workflow": {"data": ["increase-fail", "set-red", "audio-wrong", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "correct-workflow": {"data": ["increase-success", "reset-forms", "set-green", "audio-correct", "renew-current-word", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "increase-success": {"type": "counter", "counter-id": "successes", "counter-action": "increase"}, "clear-repeat-word": {"type": "remove-flows", "flow-tag": "repeat-word"}, "audio-instructions": {"data": [{"id": "instructions", "type": "audio", "start": 0.3, "offset": 0, "duration": 6.2}, {"data": [{"type": "empty", "duration": 1159}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 912}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 981}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 2443}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}], "type": "sequence-data"}], "type": "parallel"}, "check-current-word": {"fail": "pick-wrong", "type": "test-var", "success": "pick-correct", "property": "id", "var-name": "current-word"}, "renew-current-word": {"from": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "type": "vars-var-provider", "on-end": "finish-game", "variables": ["current-word"], "provider-id": "current-word"}, "repeat-current-word": {"data": ["empty-1", "mari-anim-talk", "play-word", "mari-anim-idle", "empty-3", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}}, "objects": {"items": {"type": "group", "width": 772, "height": 772, "origin": {"type": "center-center"}, "children": ["item-1f", "item-2f", "item-3f", "item-4f", "item-5f", "item-6f", "item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "transition": "items"}, "wheel": {"x": 806, "y": 457, "type": "group", "children": ["wheel-1", "wheel-2", "wheel-3", "items"]}, "item-1": {"x": 599, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-1f"}}}, "rotation": 360, "var-name": "item-1", "image-src": "src", "transition": "item-1", "image-width": "width", "image-height": "height"}, "item-2": {"x": 386, "y": 140, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-2f"}}}, "rotation": 360, "var-name": "item-2", "image-src": "src", "transition": "item-2", "image-width": "width", "image-height": "height"}, "item-3": {"x": 173, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-3f"}}}, "rotation": 360, "var-name": "item-3", "image-src": "src", "transition": "item-3", "image-width": "width", "image-height": "height"}, "item-4": {"x": 173, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-4f"}}}, "rotation": 360, "var-name": "item-4", "image-src": "src", "transition": "item-4", "image-width": "width", "image-height": "height"}, "item-5": {"x": 386, "y": 632, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-5f"}}}, "rotation": 360, "var-name": "item-5", "image-src": "src", "transition": "item-5", "image-width": "width", "image-height": "height"}, "item-6": {"x": 599, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-6f"}}}, "rotation": 360, "var-name": "item-6", "image-src": "src", "transition": "item-6", "image-width": "width", "image-height": "height"}, "item-1f": {"x": 599, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-1f", "states-aliases": {"default": "yellow"}}, "item-2f": {"x": 386, "y": 140, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-2f", "states-aliases": {"default": "yellow"}}, "item-3f": {"x": 173, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-3f", "states-aliases": {"default": "yellow"}}, "item-4f": {"x": 173, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-4f", "states-aliases": {"default": "yellow"}}, "item-5f": {"x": 386, "y": 632, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-5f", "states-aliases": {"default": "yellow"}}, "item-6f": {"x": 599, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-6f", "states-aliases": {"default": "yellow"}}, "wheel-1": {"src": "/raw/img/ferris-wheel/ferris_wheel_01.png", "type": "image", "width": 772, "height": 772, "origin": {"type": "center-center"}, "transition": "wheel-1"}, "wheel-2": {"src": "/raw/img/ferris-wheel/ferris_wheel_02.png", "type": "image", "width": 359, "height": 527, "origin": {"type": "center-top"}}, "wheel-3": {"src": "/raw/img/ferris-wheel/ferris_wheel_03.png", "type": "image", "width": 261, "height": 262, "origin": {"type": "center-center"}, "transition": "wheel-3"}, "butterfly": {"x": 1535, "y": 715, "anim": "idle", "name": "mari", "type": "animation", "speed": 0.35, "start": true, "width": 473, "height": 511, "scale-x": 0.5, "scale-y": 0.5, "scene-name": "butterfly"}, "background": {"src": "/raw/img/ferris-wheel/background.jpg", "type": "background"}}, "datasets": {"items": {"bat": {"id": "bat", "src": "/raw/img/ferris-wheel/words/bat.png", "start": 45.119, "width": 140, "height": 77, "offset": 1, "audio-id": "instructions", "duration": 3.184}, "whale": {"id": "whale", "src": "/raw/img/ferris-wheel/words/whale.png", "start": 32.891, "width": 120, "height": 123, "offset": 1, "audio-id": "instructions", "duration": 2.043}, "orange": {"id": "orange", "src": "/raw/img/ferris-wheel/words/orange.png", "start": 70.751, "width": 108, "height": 102, "offset": 1, "audio-id": "instructions", "duration": 2.19}, "broccoli": {"id": "broccoli", "src": "/raw/img/ferris-wheel/words/broccoli.png", "start": 21.235, "width": 100, "height": 100, "offset": 1, "audio-id": "instructions", "duration": 2.032}, "dinosaur": {"id": "dinosaur", "src": "/raw/img/ferris-wheel/words/dino.png", "start": 49.068, "width": 102, "height": 118, "offset": 1, "audio-id": "instructions", "duration": 3.217}, "crocodile": {"id": "crocodile", "src": "/raw/img/ferris-wheel/words/crocodile.png", "start": 11.328, "width": 112, "height": 121, "offset": 1, "audio-id": "instructions", "duration": 2.66}}}, "metadata": {"next": "feria", "prev": "feria", "autostart": false}, "triggers": {"start": {"on": "start", "action": "start-game"}, "rotation": {"on": "start", "action": "rotate-wheel"}}, "scene-objects": [["background", "wheel"], ["butterfly"]]} 0 2019-01-23 13:08:53.44+04
9 1 {"audio": {"test": "/raw/test/test.mp3", "vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-01-23 16:21:47.328+04
10 1 {"audio": {"vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-01-24 13:26:08.831+04
11 1 {"audio": {"vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-01-24 14:29:53.063+04
12 1 {"audio": {"test": "/raw/test/test1.mp3", "vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-01-24 15:03:10.338+04
13 1 {"audio": {"vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talking_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 0.55, "y": 0.55}, "speed": 0.3, "start": true, "width": 715, "height": 1461, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-01-24 15:17:53.037+04
14 4 {"audio": {"fw-correct": "/raw/audio/demo/fw-thats-correct.mp3", "fw-syllables": "/raw/audio/demo/ferris-wheel-syllables.mp3", "fw-try-again": "/raw/audio/demo/fw-try-again.mp3", "instructions": "/raw/audio/demo/ferris-wheel-instructions.mp3"}, "assets": [{"url": "/raw/audio/demo/ferris-wheel-instructions.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/ferris-wheel-syllables.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/fw-thats-correct.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/fw-try-again.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/ferris-wheel/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_04.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/ladybug.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/broccoli.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/crocodile.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/dino.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/orange.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/pumpkin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_red.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_yellow.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/mari/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.png", "size": 1, "type": "anim-texture"}], "actions": {"empty-1": {"type": "empty", "duration": 1000}, "empty-3": {"type": "empty", "duration": 3000}, "set-red": {"id": "red", "type": "state", "from-params": {"target": "form"}}, "play-word": {"id": "audio-id", "type": "placeholder-audio", "start": "start", "offset": "offset", "duration": "duration", "var-name": "current-word"}, "set-green": {"data": [{"type": "add-alias", "alias": "default", "state": "green", "from-params": {"target": "form"}}, {"id": "green", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "pick-wrong": {"data": ["clear-repeat-word", "wrong-workflow"], "type": "sequence"}, "set-yellow": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "from-params": {"target": "form"}}, {"id": "yellow", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "start-game": {"data": ["reset-states", "renew-words", "renew-current-word", "audio-instructions", "repeat-current-word"], "type": "sequence"}, "audio-wrong": {"id": "fw-try-again", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.755}, "finish-game": {"type": "set-variable", "var-name": "score", "var-value": {"visible": true}}, "renew-words": {"from": "items", "type": "dataset-var-provider", "variables": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "provider-id": "words-set"}, "reset-forms": {"data": [{"id": "default", "type": "state", "target": "item-1f"}, {"id": "default", "type": "state", "target": "item-2f"}, {"id": "default", "type": "state", "target": "item-3f"}, {"id": "default", "type": "state", "target": "item-4f"}, {"id": "default", "type": "state", "target": "item-5f"}, {"id": "default", "type": "state", "target": "item-6f"}], "type": "parallel"}, "pick-correct": {"data": ["clear-repeat-word", "correct-workflow"], "type": "sequence"}, "reset-states": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-1f"}, {"id": "yellow", "type": "state", "target": "item-1f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-2f"}, {"id": "yellow", "type": "state", "target": "item-2f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-3f"}, {"id": "yellow", "type": "state", "target": "item-3f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-4f"}, {"id": "yellow", "type": "state", "target": "item-4f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-5f"}, {"id": "yellow", "type": "state", "target": "item-5f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-6f"}, {"id": "yellow", "type": "state", "target": "item-6f"}], "type": "parallel"}, "rotate-wheel": {"data": [{"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-1"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-3"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "items"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6"}], "type": "parallel"}, "audio-correct": {"id": "fw-correct", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.225}, "increase-fail": {"type": "counter", "counter-id": "fails", "counter-action": "increase"}, "mari-anim-idle": {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, "mari-anim-talk": {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, "wrong-workflow": {"data": ["increase-fail", "set-red", "audio-wrong", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "correct-workflow": {"data": ["increase-success", "reset-forms", "set-green", "audio-correct", "renew-current-word", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "increase-success": {"type": "counter", "counter-id": "successes", "counter-action": "increase"}, "clear-repeat-word": {"type": "remove-flows", "flow-tag": "repeat-word"}, "audio-instructions": {"data": [{"id": "instructions", "type": "audio", "start": 0.3, "offset": 0, "duration": 6.2}, {"data": [{"type": "empty", "duration": 1159}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 912}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 981}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 2443}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}], "type": "sequence-data"}], "type": "parallel"}, "check-current-word": {"fail": "pick-wrong", "type": "test-var", "success": "pick-correct", "property": "id", "var-name": "current-word"}, "renew-current-word": {"from": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "type": "vars-var-provider", "on-end": "finish-game", "variables": ["current-word"], "provider-id": "current-word"}, "repeat-current-word": {"data": ["empty-1", "mari-anim-talk", "play-word", "mari-anim-idle", "empty-3", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}}, "objects": {"items": {"type": "group", "width": 772, "height": 772, "origin": {"type": "center-center"}, "children": ["item-1f", "item-2f", "item-3f", "item-4f", "item-5f", "item-6f", "item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "transition": "items"}, "wheel": {"x": 806, "y": 457, "type": "group", "children": ["wheel-1", "wheel-2", "wheel-3", "items"]}, "item-1": {"x": 599, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-1f"}}}, "rotation": 360, "var-name": "item-1", "image-src": "src", "transition": "item-1", "image-width": "width", "image-height": "height"}, "item-2": {"x": 386, "y": 140, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-2f"}}}, "rotation": 360, "var-name": "item-2", "image-src": "src", "transition": "item-2", "image-width": "width", "image-height": "height"}, "item-3": {"x": 173, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-3f"}}}, "rotation": 360, "var-name": "item-3", "image-src": "src", "transition": "item-3", "image-width": "width", "image-height": "height"}, "item-4": {"x": 173, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-4f"}}}, "rotation": 360, "var-name": "item-4", "image-src": "src", "transition": "item-4", "image-width": "width", "image-height": "height"}, "item-5": {"x": 386, "y": 632, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-5f"}}}, "rotation": 360, "var-name": "item-5", "image-src": "src", "transition": "item-5", "image-width": "width", "image-height": "height"}, "item-6": {"x": 599, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-6f"}}}, "rotation": 360, "var-name": "item-6", "image-src": "src", "transition": "item-6", "image-width": "width", "image-height": "height"}, "item-1f": {"x": 599, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-1f", "states-aliases": {"default": "yellow"}}, "item-2f": {"x": 386, "y": 140, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-2f", "states-aliases": {"default": "yellow"}}, "item-3f": {"x": 173, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-3f", "states-aliases": {"default": "yellow"}}, "item-4f": {"x": 173, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-4f", "states-aliases": {"default": "yellow"}}, "item-5f": {"x": 386, "y": 632, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-5f", "states-aliases": {"default": "yellow"}}, "item-6f": {"x": 599, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-6f", "states-aliases": {"default": "yellow"}}, "wheel-1": {"src": "/raw/img/ferris-wheel/ferris_wheel_01.png", "type": "image", "width": 772, "height": 772, "origin": {"type": "center-center"}, "transition": "wheel-1"}, "wheel-2": {"src": "/raw/img/ferris-wheel/ferris_wheel_02.png", "type": "image", "width": 359, "height": 527, "origin": {"type": "center-top"}}, "wheel-3": {"src": "/raw/img/ferris-wheel/ferris_wheel_03.png", "type": "image", "width": 261, "height": 262, "origin": {"type": "center-center"}, "transition": "wheel-3"}, "butterfly": {"x": 1535, "y": 715, "anim": "idle", "name": "mari", "type": "animation", "speed": 0.35, "start": true, "width": 473, "height": 511, "scale-x": 0.5, "scale-y": 0.5}, "background": {"src": "/raw/img/ferris-wheel/background.jpg", "type": "background"}}, "datasets": {"items": {"orange": {"id": "orange", "src": "/raw/img/ferris-wheel/words/orange.png", "start": 19.34, "width": 108, "height": 102, "offset": 0, "audio-id": "fw-syllables", "duration": 2.283}, "ladybug": {"id": "ladybug", "src": "/raw/img/ferris-wheel/words/ladybug.png", "start": 15.896, "width": 98, "height": 88, "offset": 0, "audio-id": "fw-syllables", "duration": 2.233}, "pumpkin": {"id": "pumpkin", "src": "/raw/img/ferris-wheel/words/pumpkin.png", "start": 12.939, "width": 112, "height": 114, "offset": 0, "audio-id": "fw-syllables", "duration": 1.585}, "broccoli": {"id": "broccoli", "src": "/raw/img/ferris-wheel/words/broccoli.png", "start": 5.191, "width": 100, "height": 100, "offset": 0, "audio-id": "fw-syllables", "duration": 2.171}, "dinosaur": {"id": "dinosaur", "src": "/raw/img/ferris-wheel/words/dino.png", "start": 8.959, "width": 102, "height": 118, "offset": 0, "audio-id": "fw-syllables", "duration": 2.508}, "crocodile": {"id": "crocodile", "src": "/raw/img/ferris-wheel/words/crocodile.png", "start": 1.335, "width": 112, "height": 121, "offset": 0, "audio-id": "fw-syllables", "duration": 2.308}}}, "metadata": {"next": "feria", "prev": "feria", "autostart": false}, "triggers": {"start": {"on": "start", "action": "start-game"}, "rotation": {"on": "start", "action": "rotate-wheel"}}, "scene-objects": [["background", "wheel"], ["butterfly"]]} 1 2019-02-28 12:57:10.529+04
15 8 {"audio": {"fw-correct": "/raw/audio/ferris-wheel/fw-thats-correct.mp3", "fw-try-again": "/raw/audio/ferris-wheel/fw-try-again.mp3", "instructions": "/raw/audio/ferris-wheel/instructions.mp3"}, "assets": [{"url": "/raw/audio/ferris-wheel/instructions.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/ferris-wheel/fw-thats-correct.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/ferris-wheel/fw-try-again.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/ferris-wheel/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_04.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/bat.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/broccoli.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/crocodile.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/dino.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/orange.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/whale.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_red.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_yellow.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/mari/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.png", "size": 1, "type": "anim-texture"}], "actions": {"empty-1": {"type": "empty", "duration": 1000}, "empty-3": {"type": "empty", "duration": 3000}, "set-red": {"id": "red", "type": "state", "from-params": {"target": "form"}}, "play-word": {"id": "audio-id", "type": "placeholder-audio", "start": "start", "offset": "offset", "duration": "duration", "var-name": "current-word"}, "set-green": {"data": [{"type": "add-alias", "alias": "default", "state": "green", "from-params": {"target": "form"}}, {"id": "green", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "pick-wrong": {"data": ["clear-repeat-word", "wrong-workflow"], "type": "sequence"}, "set-yellow": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "from-params": {"target": "form"}}, {"id": "yellow", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "start-game": {"data": ["reset-states", "renew-words", "renew-current-word", "audio-instructions", "repeat-current-word"], "type": "sequence"}, "audio-wrong": {"id": "fw-try-again", "type": "audio", "start": 0.892, "offset": 0.2, "duration": 1.869}, "finish-game": {"type": "set-variable", "var-name": "score", "var-value": {"visible": true}}, "renew-words": {"from": "items", "type": "dataset-var-provider", "variables": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "provider-id": "words-set"}, "reset-forms": {"data": [{"id": "default", "type": "state", "target": "item-1f"}, {"id": "default", "type": "state", "target": "item-2f"}, {"id": "default", "type": "state", "target": "item-3f"}, {"id": "default", "type": "state", "target": "item-4f"}, {"id": "default", "type": "state", "target": "item-5f"}, {"id": "default", "type": "state", "target": "item-6f"}], "type": "parallel"}, "pick-correct": {"data": ["clear-repeat-word", "correct-workflow"], "type": "sequence"}, "reset-states": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-1f"}, {"id": "yellow", "type": "state", "target": "item-1f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-2f"}, {"id": "yellow", "type": "state", "target": "item-2f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-3f"}, {"id": "yellow", "type": "state", "target": "item-3f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-4f"}, {"id": "yellow", "type": "state", "target": "item-4f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-5f"}, {"id": "yellow", "type": "state", "target": "item-5f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-6f"}, {"id": "yellow", "type": "state", "target": "item-6f"}], "type": "parallel"}, "rotate-wheel": {"data": [{"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-1"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-3"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "items"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6"}], "type": "parallel"}, "audio-correct": {"id": "fw-correct", "type": "audio", "start": 0.371, "offset": 0.2, "duration": 2.178}, "increase-fail": {"type": "counter", "counter-id": "fails", "counter-action": "increase"}, "mari-anim-idle": {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, "mari-anim-talk": {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, "wrong-workflow": {"data": ["increase-fail", "set-red", "audio-wrong", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "correct-workflow": {"data": ["increase-success", "reset-forms", "set-green", "audio-correct", "renew-current-word", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "increase-success": {"type": "counter", "counter-id": "successes", "counter-action": "increase"}, "clear-repeat-word": {"type": "remove-flows", "flow-tag": "repeat-word"}, "audio-instructions": {"data": [{"id": "instructions", "type": "audio", "start": 0.3, "offset": 0, "duration": 6.2}, {"data": [{"type": "empty", "duration": 1159}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 912}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 981}, {"id": "talking", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 2443}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}], "type": "sequence-data"}], "type": "parallel"}, "check-current-word": {"fail": "pick-wrong", "type": "test-var", "success": "pick-correct", "property": "id", "var-name": "current-word"}, "renew-current-word": {"from": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "type": "vars-var-provider", "on-end": "finish-game", "variables": ["current-word"], "provider-id": "current-word"}, "repeat-current-word": {"data": ["empty-1", "mari-anim-talk", "play-word", "mari-anim-idle", "empty-3", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}}, "objects": {"items": {"type": "group", "width": 772, "height": 772, "origin": {"type": "center-center"}, "children": ["item-1f", "item-2f", "item-3f", "item-4f", "item-5f", "item-6f", "item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "transition": "items"}, "wheel": {"x": 806, "y": 457, "type": "group", "children": ["wheel-1", "wheel-2", "wheel-3", "items"]}, "item-1": {"x": 599, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-1f"}}}, "rotation": 360, "var-name": "item-1", "image-src": "src", "transition": "item-1", "image-width": "width", "image-height": "height"}, "item-2": {"x": 386, "y": 140, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-2f"}}}, "rotation": 360, "var-name": "item-2", "image-src": "src", "transition": "item-2", "image-width": "width", "image-height": "height"}, "item-3": {"x": 173, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-3f"}}}, "rotation": 360, "var-name": "item-3", "image-src": "src", "transition": "item-3", "image-width": "width", "image-height": "height"}, "item-4": {"x": 173, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-4f"}}}, "rotation": 360, "var-name": "item-4", "image-src": "src", "transition": "item-4", "image-width": "width", "image-height": "height"}, "item-5": {"x": 386, "y": 632, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-5f"}}}, "rotation": 360, "var-name": "item-5", "image-src": "src", "transition": "item-5", "image-width": "width", "image-height": "height"}, "item-6": {"x": 599, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-6f"}}}, "rotation": 360, "var-name": "item-6", "image-src": "src", "transition": "item-6", "image-width": "width", "image-height": "height"}, "item-1f": {"x": 599, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-1f", "states-aliases": {"default": "yellow"}}, "item-2f": {"x": 386, "y": 140, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-2f", "states-aliases": {"default": "yellow"}}, "item-3f": {"x": 173, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-3f", "states-aliases": {"default": "yellow"}}, "item-4f": {"x": 173, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-4f", "states-aliases": {"default": "yellow"}}, "item-5f": {"x": 386, "y": 632, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-5f", "states-aliases": {"default": "yellow"}}, "item-6f": {"x": 599, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-6f", "states-aliases": {"default": "yellow"}}, "wheel-1": {"src": "/raw/img/ferris-wheel/ferris_wheel_01.png", "type": "image", "width": 772, "height": 772, "origin": {"type": "center-center"}, "transition": "wheel-1"}, "wheel-2": {"src": "/raw/img/ferris-wheel/ferris_wheel_02.png", "type": "image", "width": 359, "height": 527, "origin": {"type": "center-top"}}, "wheel-3": {"src": "/raw/img/ferris-wheel/ferris_wheel_03.png", "type": "image", "width": 261, "height": 262, "origin": {"type": "center-center"}, "transition": "wheel-3"}, "butterfly": {"x": 1535, "y": 715, "anim": "idle", "name": "mari", "type": "animation", "speed": 0.35, "start": true, "width": 473, "height": 511, "scale-x": 0.5, "scale-y": 0.5}, "background": {"src": "/raw/img/ferris-wheel/background.jpg", "type": "background"}}, "datasets": {"items": {"bat": {"id": "bat", "src": "/raw/img/ferris-wheel/words/bat.png", "start": 45.119, "width": 140, "height": 77, "offset": 1, "audio-id": "instructions", "duration": 3.184}, "whale": {"id": "whale", "src": "/raw/img/ferris-wheel/words/whale.png", "start": 32.891, "width": 120, "height": 123, "offset": 1, "audio-id": "instructions", "duration": 2.043}, "orange": {"id": "orange", "src": "/raw/img/ferris-wheel/words/orange.png", "start": 70.751, "width": 108, "height": 102, "offset": 1, "audio-id": "instructions", "duration": 2.19}, "broccoli": {"id": "broccoli", "src": "/raw/img/ferris-wheel/words/broccoli.png", "start": 21.235, "width": 100, "height": 100, "offset": 1, "audio-id": "instructions", "duration": 2.032}, "dinosaur": {"id": "dinosaur", "src": "/raw/img/ferris-wheel/words/dino.png", "start": 49.068, "width": 102, "height": 118, "offset": 1, "audio-id": "instructions", "duration": 3.217}, "crocodile": {"id": "crocodile", "src": "/raw/img/ferris-wheel/words/crocodile.png", "start": 11.328, "width": 112, "height": 121, "offset": 1, "audio-id": "instructions", "duration": 2.66}}}, "metadata": {"next": "feria", "prev": "feria", "autostart": false}, "triggers": {"start": {"on": "start", "action": "start-game"}, "rotation": {"on": "start", "action": "rotate-wheel"}}, "scene-objects": [["background", "wheel"], ["butterfly"]]} 1 2019-02-28 13:02:20.757+04
16 1 {"audio": {"vera": "/raw/audio/demo/vera.mp3", "teacher": "/raw/audio/demo/teacher.mp3", "syllables": "/raw/audio/demo/intro-teacher-syllables.mp3", "background": "/raw/audio/background/POL-daily-special-short.mp3", "casa-finish": "/raw/audio/demo/intro-finish.mp3", "casa-welcome": "/raw/audio/demo/welcome.mp3", "vera-syllables": "/raw/audio/demo/intro-vera-syllables.mp3", "lets-do-an-example": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3"}, "assets": [{"url": "/raw/audio/background/POL-daily-special-short.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/effects/NFF-fruit-collected.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-glitter.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-robo-elastic.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-rusted-thing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/effects/NFF-zing.mp3", "size": 1, "type": "audio"}, {"url": "/raw/audio/demo/welcome.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/teacher.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/vera.mp3", "size": 5, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-finish.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-teacher-lets-do-an-example.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/intro-vera-syllables.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/map/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/map/casa_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/casa_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/map/feria_locked.png", "size": 1, "type": "image"}, {"url": "/raw/img/casa/background.jpg", "size": 10}, {"url": "/raw/img/casa_door.png", "size": 1, "type": "image"}, {"url": "/raw/img/chat_bubble_big.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher.png", "size": 1, "type": "image"}, {"url": "/raw/img/teacher_two.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/vera/10_sprite_test.png", "size": 4, "type": "image"}, {"url": "/raw/img/feria/background.png", "size": 10, "type": "image"}, {"url": "/raw/img/feria/back.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/back_active.png", "size": 1, "type": "image"}, {"url": "/raw/img/feria/wheel.png", "size": 2, "type": "image"}, {"url": "/raw/img/ui/back_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/back_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/close_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/play_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/reload_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/star_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/form.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/clear.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/next_button_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/vera.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/music_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/sound_fx_icon.png", "size": 1, "type": "image"}, {"url": "/raw/img/ui/settings/settings.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/flower.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/violin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/strawberry.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/senoravaca/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/senoravaca/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton3.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton4.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton5.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton6.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton7.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton8.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton9.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/senoravaca/skeleton10.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/vera/skeleton.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton2.png", "size": 1, "type": "anim-texture"}, {"url": "/raw/anim/vera/skeleton3.png", "size": 1, "type": "anim-texture"}], "actions": {"intro": {"data": ["clear-instruction", "senora-vaca-audio-1", "vera-audio-1", "senora-vaca-audio-2", "vera-audio-2", "vera-audio-3", "senora-vaca-audio-3", "senora-vaca-audio-4", "vera-audio-4", "senora-vaca-audio-5", "senora-vaca-audio-6", "group-vera", "vera-audio-5", "vera-anim-idle", "group-flower", "senora-vaca-audio-7", "group-violin", "vera-audio-6", "vera-anim-idle", "senora-vaca-audio-9", "group-strawberry", "senora-vaca-audio-10", "senora-vaca-anim-idle", "vera-anim-idle", "audio-finish"], "tags": ["intro"], "type": "sequence"}, "empty-1": {"type": "empty", "duration": 600}, "hide-word": {"data": [{"id": "default", "type": "state", "target": "word-image"}, {"id": "default", "type": "state", "target": "word-form"}], "type": "parallel"}, "group-vera": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "syllable-ve", "syllable-ra", "empty-1", "syllable-ve", "syllable-ra", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle"], "name": "vera syllables", "type": "sequence"}, "syllable-o": {"data": [{"id": "syllables", "type": "audio", "start": 10.641, "offset": 0.1, "duration": 0.52}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o"}, "target": "syllable"}], "type": "parallel"}, "syllable-er": {"data": [{"id": "syllables", "type": "audio", "start": 5.947, "offset": 0.1, "duration": 0.625}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow-er"}, "target": "syllable"}], "type": "parallel"}, "syllable-ra": {"data": [{"id": "teacher", "type": "audio", "start": 27.649, "offset": 0.1, "duration": 0.432}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-ry": {"data": [{"id": "syllables", "type": "audio", "start": 20.043, "offset": 0.1, "duration": 0.855}, {"id": "vera-syllables", "type": "audio", "start": 7.318, "offset": 0.1, "duration": 0.958}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber-ry"}, "target": "syllable"}], "type": "parallel"}, "syllable-ve": {"data": [{"id": "teacher", "type": "audio", "start": 27.192, "offset": 0.1, "duration": 0.475}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}], "type": "parallel"}, "syllable-vi": {"data": [{"id": "syllables", "type": "audio", "start": 10.075, "offset": 0.1, "duration": 0.608}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi"}, "target": "syllable"}], "type": "parallel"}, "audio-finish": {"id": "casa-finish", "type": "audio", "start": 0, "offset": 0.7, "duration": 2.533}, "group-flower": {"data": ["senora-vaca-anim-clapping-start", "empty-1", "show-word-flower", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "empty-1", "syllable-flow", "syllable-er", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "group-violin": {"data": ["show-word-violin", "senora-vaca-anim-clapping-start", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "empty-1", "syllable-vi", "syllable-o", "syllable-lin", "senora-vaca-anim-clapping-finish", "empty-1", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "cu-cha-ra syllables", "type": "sequence"}, "syllable-ber": {"data": [{"id": "syllables", "type": "audio", "start": 19.427, "offset": 0.1, "duration": 0.679}, {"id": "vera-syllables", "type": "audio", "start": 6.626, "offset": 0.1, "duration": 0.687}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw-ber"}, "target": "syllable"}], "type": "parallel"}, "syllable-lin": {"data": [{"id": "syllables", "type": "audio", "start": 11.155, "offset": 0.1, "duration": 0.757}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "vi-o-lin"}, "target": "syllable"}], "type": "parallel"}, "vera-audio-1": {"data": [{"id": "vera", "type": "audio", "start": 1.4, "duration": 3.38}, {"data": [{"type": "empty", "duration": 298}, {"id": "talk", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1240}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 525}, {"id": "talk", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1074}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-2": {"data": [{"id": "vera", "type": "audio", "start": 5.74, "duration": 1.5}, {"id": "jump+clapping", "loop": false, "type": "animation", "target": "vera"}], "type": "parallel"}, "vera-audio-3": {"data": [{"id": "vera", "type": "audio", "start": 7.32, "duration": 3.02}, {"data": [{"type": "empty", "duration": 341}, {"id": "talking", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 2575}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-4": {"data": [{"id": "vera", "type": "audio", "start": 11.85, "duration": 1.37}, {"data": [{"type": "empty", "duration": 334}, {"id": "talk", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 755}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-5": {"data": [{"id": "vera", "type": "audio", "start": 14.45, "duration": 0.93}, {"data": [{"type": "empty", "duration": 233}, {"id": "talk", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "vera-audio-6": {"data": [{"id": "vera", "type": "audio", "start": 16.66, "duration": 3.58}, {"data": [{"type": "empty", "duration": 223}, {"id": "talk_eeeee", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 706}, {"id": "idle", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 1297}, {"id": "talk", "type": "animation", "target": "vera"}, {"type": "empty", "duration": 951}, {"id": "idle", "type": "animation", "target": "vera"}], "type": "sequence-data"}], "type": "parallel"}, "audio-welcome": {"id": "casa-welcome", "tags": ["instruction"], "type": "audio", "start": 0, "offset": 0.7, "duration": 7.622}, "hide-syllable": {"id": "default", "type": "state", "target": "syllable"}, "syllable-flow": {"data": [{"id": "syllables", "type": "audio", "start": 5.416, "offset": 0.1, "duration": 0.537}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "show", "type": "state", "params": {"text": "flow"}, "target": "syllable"}], "type": "parallel"}, "syllable-straw": {"data": [{"id": "syllables", "type": "audio", "start": 18.728, "offset": 0.1, "duration": 0.788}, {"id": "vera-syllables", "type": "audio", "start": 5.828, "offset": 0.1, "duration": 0.809}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "senoravaca"}, {"id": "clapping_1clap", "loop": false, "type": "animation", "target": "vera"}, {"id": "show", "type": "state", "params": {"text": "straw"}, "target": "syllable"}], "type": "parallel"}, "vera-anim-idle": {"id": "idle", "type": "animation", "target": "vera"}, "group-strawberry": {"data": ["show-word-strawberry", "senora-vaca-anim-clapping-start", "vera-anim-clapping-start", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "empty-1", "syllable-straw", "syllable-ber", "syllable-ry", "senora-vaca-anim-clapping-finish", "vera-anim-clapping-finish", "empty-1", "vera-anim-idle", "senora-vaca-anim-idle", "hide-word", "hide-syllable"], "name": "u-vas syllables", "type": "sequence"}, "show-word-flower": {"data": [{"id": "flower", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "show-word-violin": {"data": [{"id": "violin", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "clear-instruction": {"type": "remove-flows", "flow-tag": "instruction"}, "senora-vaca-audio-1": {"data": [{"id": "teacher", "type": "audio", "start": 0.77, "duration": 3.24}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1307}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 550}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1069}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-2": {"data": [{"id": "teacher", "type": "audio", "start": 4.72, "duration": 5.84}, {"data": [{"type": "empty", "duration": 214}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 586}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 349}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1984}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 678}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1982}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-3": {"data": [{"id": "teacher", "type": "audio", "start": 11.9, "duration": 1.3}, {"data": [{"type": "empty", "duration": 225}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 894}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-4": {"data": [{"id": "teacher", "type": "audio", "start": 13.31, "duration": 3.22}, {"data": [{"type": "empty", "duration": 149}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 2975}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-5": {"data": [{"id": "teacher", "type": "audio", "start": 17.92, "duration": 4.55}, {"data": [{"type": "empty", "duration": 184}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 291}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 761}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1236}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 273}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1610}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-6": {"data": [{"id": "teacher", "type": "audio", "start": 23.05, "duration": 3.14}, {"data": [{"type": "empty", "duration": 142}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1530}, {"id": "idle", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 469}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 952}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-7": {"data": [{"id": "lets-do-an-example", "type": "audio", "start": 0.178, "duration": 3.348}, {"data": [{"type": "empty", "duration": 120}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 3001}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-9": {"data": [{"id": "teacher", "type": "audio", "start": 40.66, "duration": 1.65}, {"data": [{"type": "empty", "duration": 289}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 1050}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "senora-vaca-audio-10": {"data": [{"id": "teacher", "type": "audio", "start": 47.47, "duration": 5.78}, {"data": [{"type": "empty", "duration": 285}, {"id": "talk", "type": "animation", "target": "senoravaca"}, {"type": "empty", "duration": 5311}, {"id": "idle", "type": "animation", "target": "senoravaca"}], "type": "sequence-data"}], "type": "parallel"}, "show-word-strawberry": {"data": [{"id": "strawberry", "type": "state", "target": "word-image"}, {"id": "show", "type": "state", "target": "word-form"}], "type": "parallel"}, "senora-vaca-anim-idle": {"id": "idle", "type": "animation", "target": "senoravaca"}, "start-background-music": {"id": "background", "loop": true, "type": "audio"}, "vera-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "vera"}, "vera-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "vera"}, "senora-vaca-anim-clapping-start": {"id": "clapping_start", "loop": false, "type": "animation", "target": "senoravaca"}, "senora-vaca-anim-clapping-finish": {"id": "clapping_finish", "loop": false, "type": "animation", "target": "senoravaca"}}, "objects": {"door": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "states": {"hover": {"src": "/raw/img/casa_door.png", "type": "image"}, "default": {"src": null, "type": "transparent"}}}, "vera": {"x": 1128, "y": 960, "anim": "idle", "name": "vera", "type": "animation", "scale": {"x": 0.2, "y": 0.2}, "speed": 0.3, "start": true, "width": 1800, "height": 2558}, "syllable": {"x": 930, "y": 289, "type": "transparent", "width": 600, "height": 200, "states": {"show": {"fill": "white", "type": "text", "align": "center", "width": 600, "height": 200, "font-size": 80, "font-family": "Luckiest Guy", "shadow-blur": 5, "shadow-color": "#1a1a1a", "shadow-offset": {"x": 5, "y": 5}, "shadow-opacity": 0.5, "vertical-align": "middle"}, "default": {"type": "transparent"}}}, "word-form": {"x": 1226, "y": 200, "type": "transparent", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"show": {"src": "/raw/img/ferris-wheel/words/form_green.png", "type": "image"}, "default": {"type": "transparent"}}}, "background": {"src": "/raw/img/casa/background.jpg", "type": "background"}, "word-image": {"x": 1226, "y": 200, "type": "transparent", "origin": {"type": "center-center"}, "states": {"flower": {"src": "/raw/img/ferris-wheel/words/flower.png", "type": "image", "width": 73, "height": 136}, "violin": {"src": "/raw/img/ferris-wheel/words/violin.png", "type": "image", "width": 52, "height": 140}, "default": {"src": null, "type": "transparent", "width": 100, "height": 100}, "strawberry": {"src": "/raw/img/ferris-wheel/words/strawberry.png", "type": "image", "width": 84, "height": 132}}}, "senora-vaca": {"x": 655, "y": 960, "anim": "idle", "name": "senoravaca", "type": "animation", "scale": {"x": 1, "y": 1}, "speed": 0.3, "start": true, "width": 351, "height": 717, "actions": {"click": {"id": "intro", "on": "click", "type": "action", "options": {"unique-tag": "intro"}}}}, "door-trigger": {"x": 1146, "y": 42, "type": "transparent", "width": 732, "height": 810, "actions": {"click": {"on": "click", "type": "scene", "scene-id": "map"}, "mouseout": {"id": "default", "on": "mouseout", "type": "state", "target": "door"}, "mouseover": {"id": "hover", "on": "mouseover", "type": "state", "target": "door"}}}}, "metadata": {"autostart": true}, "triggers": {"music": {"on": "start", "action": "start-background-music"}, "welcome": {"on": "start", "action": "audio-welcome"}}, "scene-objects": [["background", "door"], ["vera", "senora-vaca"], ["word-form", "word-image", "syllable"], ["door-trigger"]]} 1 2019-03-18 18:08:05.723+04
17 4 {"audio": {"fw-correct": "/raw/audio/demo/fw-thats-correct.mp3", "fw-syllables": "/raw/audio/demo/ferris-wheel-syllables.mp3", "fw-try-again": "/raw/audio/demo/fw-try-again.mp3", "instructions": "/raw/audio/demo/ferris-wheel-instructions.mp3"}, "assets": [{"url": "/raw/audio/demo/ferris-wheel-instructions.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/ferris-wheel-syllables.mp3", "size": 10, "type": "audio"}, {"url": "/raw/audio/demo/fw-thats-correct.mp3", "size": 2, "type": "audio"}, {"url": "/raw/audio/demo/fw-try-again.mp3", "size": 2, "type": "audio"}, {"url": "/raw/img/ferris-wheel/background.jpg", "size": 10, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/cloud_04.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_01.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_02.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/ferris_wheel_03.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/ladybug.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/broccoli.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/crocodile.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/dino.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/orange.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/pumpkin.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_green.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_red.png", "size": 1, "type": "image"}, {"url": "/raw/img/ferris-wheel/words/form_yellow.png", "size": 1, "type": "image"}, {"url": "/raw/img/butterfly.png", "size": 2, "type": "image"}, {"url": "/raw/anim/mari/skeleton.atlas", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.json", "size": 1, "type": "anim-text"}, {"url": "/raw/anim/mari/skeleton.png", "size": 1, "type": "anim-texture"}], "actions": {"empty-1": {"type": "empty", "duration": 1000}, "empty-3": {"type": "empty", "duration": 3000}, "set-red": {"id": "red", "type": "state", "from-params": {"target": "form"}}, "play-word": {"id": "audio-id", "type": "placeholder-audio", "start": "start", "offset": "offset", "duration": "duration", "var-name": "current-word"}, "set-green": {"data": [{"type": "add-alias", "alias": "default", "state": "green", "from-params": {"target": "form"}}, {"id": "green", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "pick-wrong": {"data": ["clear-repeat-word", "wrong-workflow"], "type": "sequence"}, "set-yellow": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "from-params": {"target": "form"}}, {"id": "yellow", "type": "state", "from-params": {"target": "form"}}], "type": "parallel"}, "start-game": {"data": ["reset-states", "renew-words", "renew-current-word", "audio-instructions", "repeat-current-word"], "type": "sequence"}, "audio-wrong": {"id": "fw-try-again", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.755}, "finish-game": {"type": "set-variable", "var-name": "score", "var-value": {"visible": true}}, "renew-words": {"from": "items", "type": "dataset-var-provider", "variables": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "provider-id": "words-set"}, "reset-forms": {"data": [{"id": "default", "type": "state", "target": "item-1f"}, {"id": "default", "type": "state", "target": "item-2f"}, {"id": "default", "type": "state", "target": "item-3f"}, {"id": "default", "type": "state", "target": "item-4f"}, {"id": "default", "type": "state", "target": "item-5f"}, {"id": "default", "type": "state", "target": "item-6f"}], "type": "parallel"}, "pick-correct": {"data": ["clear-repeat-word", "correct-workflow"], "type": "sequence"}, "reset-states": {"data": [{"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-1f"}, {"id": "yellow", "type": "state", "target": "item-1f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-2f"}, {"id": "yellow", "type": "state", "target": "item-2f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-3f"}, {"id": "yellow", "type": "state", "target": "item-3f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-4f"}, {"id": "yellow", "type": "state", "target": "item-4f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-5f"}, {"id": "yellow", "type": "state", "target": "item-5f"}, {"type": "add-alias", "alias": "default", "state": "yellow", "target": "item-6f"}, {"id": "yellow", "type": "state", "target": "item-6f"}], "type": "parallel"}, "rotate-wheel": {"data": [{"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-1"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "wheel-3"}, {"to": {"loop": true, "duration": 30, "rotation": 360}, "type": "transition", "transition-id": "items"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6f"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-1"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-2"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-3"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-4"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-5"}, {"to": {"loop": true, "duration": 30, "rotation": 0}, "type": "transition", "transition-id": "item-6"}], "type": "parallel"}, "audio-correct": {"id": "fw-correct", "type": "audio", "start": 0, "offset": 0.2, "duration": 1.225}, "increase-fail": {"type": "counter", "counter-id": "fails", "counter-action": "increase"}, "mari-anim-idle": {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, "mari-anim-talk": {"id": "talk", "type": "animation", "track": 1, "target": "mari"}, "wrong-workflow": {"data": ["increase-fail", "set-red", "audio-wrong", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "correct-workflow": {"data": ["increase-success", "reset-forms", "set-green", "audio-correct", "renew-current-word", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}, "increase-success": {"type": "counter", "counter-id": "successes", "counter-action": "increase"}, "clear-repeat-word": {"type": "remove-flows", "flow-tag": "repeat-word"}, "audio-instructions": {"data": [{"id": "instructions", "type": "audio", "start": 0.3, "offset": 0, "duration": 6.2}, {"data": [{"type": "empty", "duration": 1159}, {"id": "talk", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 912}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 981}, {"id": "talk", "type": "animation", "track": 1, "target": "mari"}, {"type": "empty", "duration": 2443}, {"id": "empty", "type": "animation", "track": 1, "target": "mari"}], "type": "sequence-data"}], "type": "parallel"}, "check-current-word": {"fail": "pick-wrong", "type": "test-var", "success": "pick-correct", "property": "id", "var-name": "current-word"}, "renew-current-word": {"from": ["item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "type": "vars-var-provider", "on-end": "finish-game", "variables": ["current-word"], "provider-id": "current-word"}, "repeat-current-word": {"data": ["empty-1", "mari-anim-talk", "play-word", "mari-anim-idle", "empty-3", "repeat-current-word"], "tags": ["repeat-word"], "type": "sequence"}}, "objects": {"items": {"type": "group", "width": 772, "height": 772, "origin": {"type": "center-center"}, "children": ["item-1f", "item-2f", "item-3f", "item-4f", "item-5f", "item-6f", "item-1", "item-2", "item-3", "item-4", "item-5", "item-6"], "transition": "items"}, "wheel": {"x": 806, "y": 457, "type": "group", "children": ["wheel-1", "wheel-2", "wheel-3", "items"]}, "item-1": {"x": 599, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-1f"}}}, "rotation": 360, "var-name": "item-1", "image-src": "src", "transition": "item-1", "image-width": "width", "image-height": "height"}, "item-2": {"x": 386, "y": 140, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-2f"}}}, "rotation": 360, "var-name": "item-2", "image-src": "src", "transition": "item-2", "image-width": "width", "image-height": "height"}, "item-3": {"x": 173, "y": 263, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-3f"}}}, "rotation": 360, "var-name": "item-3", "image-src": "src", "transition": "item-3", "image-width": "width", "image-height": "height"}, "item-4": {"x": 173, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-4f"}}}, "rotation": 360, "var-name": "item-4", "image-src": "src", "transition": "item-4", "image-width": "width", "image-height": "height"}, "item-5": {"x": 386, "y": 632, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-5f"}}}, "rotation": 360, "var-name": "item-5", "image-src": "src", "transition": "item-5", "image-width": "width", "image-height": "height"}, "item-6": {"x": 599, "y": 509, "type": "placeholder", "origin": {"type": "center-center"}, "actions": {"click": {"id": "check-current-word", "on": "click", "type": "action", "params": {"form": "item-6f"}}}, "rotation": 360, "var-name": "item-6", "image-src": "src", "transition": "item-6", "image-width": "width", "image-height": "height"}, "item-1f": {"x": 599, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-1f", "states-aliases": {"default": "yellow"}}, "item-2f": {"x": 386, "y": 140, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-2f", "states-aliases": {"default": "yellow"}}, "item-3f": {"x": 173, "y": 263, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-3f", "states-aliases": {"default": "yellow"}}, "item-4f": {"x": 173, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-4f", "states-aliases": {"default": "yellow"}}, "item-5f": {"x": 386, "y": 632, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-5f", "states-aliases": {"default": "yellow"}}, "item-6f": {"x": 599, "y": 509, "src": "/raw/img/ferris-wheel/words/form_yellow.png", "type": "image", "width": 206, "height": 210, "origin": {"type": "center-center"}, "states": {"red": {"src": "/raw/img/ferris-wheel/words/form_red.png"}, "green": {"src": "/raw/img/ferris-wheel/words/form_green.png"}, "yellow": {"src": "/raw/img/ferris-wheel/words/form_yellow.png"}}, "rotation": 360, "transition": "item-6f", "states-aliases": {"default": "yellow"}}, "wheel-1": {"src": "/raw/img/ferris-wheel/ferris_wheel_01.png", "type": "image", "width": 772, "height": 772, "origin": {"type": "center-center"}, "transition": "wheel-1"}, "wheel-2": {"src": "/raw/img/ferris-wheel/ferris_wheel_02.png", "type": "image", "width": 359, "height": 527, "origin": {"type": "center-top"}}, "wheel-3": {"src": "/raw/img/ferris-wheel/ferris_wheel_03.png", "type": "image", "width": 261, "height": 262, "origin": {"type": "center-center"}, "transition": "wheel-3"}, "butterfly": {"x": 1535, "y": 715, "anim": "idle", "name": "mari", "type": "animation", "speed": 0.35, "start": true, "width": 473, "height": 511, "scale-x": 0.5, "scale-y": 0.5}, "background": {"src": "/raw/img/ferris-wheel/background.jpg", "type": "background"}}, "datasets": {"items": {"orange": {"id": "orange", "src": "/raw/img/ferris-wheel/words/orange.png", "start": 19.34, "width": 108, "height": 102, "offset": 0, "audio-id": "fw-syllables", "duration": 2.283}, "ladybug": {"id": "ladybug", "src": "/raw/img/ferris-wheel/words/ladybug.png", "start": 15.896, "width": 98, "height": 88, "offset": 0, "audio-id": "fw-syllables", "duration": 2.233}, "pumpkin": {"id": "pumpkin", "src": "/raw/img/ferris-wheel/words/pumpkin.png", "start": 12.939, "width": 112, "height": 114, "offset": 0, "audio-id": "fw-syllables", "duration": 1.585}, "broccoli": {"id": "broccoli", "src": "/raw/img/ferris-wheel/words/broccoli.png", "start": 5.191, "width": 100, "height": 100, "offset": 0, "audio-id": "fw-syllables", "duration": 2.171}, "dinosaur": {"id": "dinosaur", "src": "/raw/img/ferris-wheel/words/dino.png", "start": 8.959, "width": 102, "height": 118, "offset": 0, "audio-id": "fw-syllables", "duration": 2.508}, "crocodile": {"id": "crocodile", "src": "/raw/img/ferris-wheel/words/crocodile.png", "start": 1.335, "width": 112, "height": 121, "offset": 0, "audio-id": "fw-syllables", "duration": 2.308}}}, "metadata": {"next": "feria", "prev": "feria", "autostart": false}, "triggers": {"start": {"on": "start", "action": "start-game"}, "rotation": {"on": "start", "action": "rotate-wheel"}}, "scene-objects": [["background", "wheel"], ["butterfly"]]} 1 2019-03-18 18:09:05.606+04
\.
--
-- Name: scene_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.scene_versions_id_seq', 17, true);
--
-- Data for Name: scenes; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.scenes (id, course_id, name) FROM stdin;
1 1 home
2 1 map
3 1 feria
4 1 ferris-wheel
5 2 home
6 2 map
7 2 feria
8 2 ferris-wheel
\.
--
-- Name: scenes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: webchange
--
SELECT pg_catalog.setval('public.scenes_id_seq', 8, true);
--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: webchange
--
COPY public.schema_migrations (id, applied, description) FROM stdin;
20190107120944 2019-01-16 18:06:40.041 add-users-table
20190115101936 2019-01-23 12:26:49.544 add-course-storage
20190130102810 2019-02-05 16:08:07.046 datasets
20190207110755 2019-02-11 13:58:58.586 add-classes
20190213075414 2019-03-18 17:48:11.042 course-progress
20190523105702 2020-04-15 12:41:17.896 update-dataset-items
20190529163901 2020-04-15 12:41:17.926 add-hide-and-seek-scene-data
20190604093243 2020-04-15 12:42:08.868 student-access
20190624161640 2020-04-15 12:42:08.884 rename-actions
20190701104523 2020-04-15 12:42:08.905 activity-stats