diff --git a/SQ_Word_Hint-Image/c2runtime.js b/SQ_Word_Hint-Image/c2runtime.js
index 624e936..4f94409 100644
--- a/SQ_Word_Hint-Image/c2runtime.js
+++ b/SQ_Word_Hint-Image/c2runtime.js
@@ -21117,747 +21117,6 @@ cr.plugins_.Sprite = function(runtime)
};
pluginProto.exps = new Exps();
}());
-/* global cr,log,assert2 */
-/* jshint globalstrict: true */
-/* jshint strict: true */
-;
-;
-var jText = '';
-cr.plugins_.SpriteFontPlus = function(runtime)
-{
- this.runtime = runtime;
-};
-(function ()
-{
- var pluginProto = cr.plugins_.SpriteFontPlus.prototype;
- pluginProto.onCreate = function ()
- {
- };
- pluginProto.Type = function(plugin)
- {
- this.plugin = plugin;
- this.runtime = plugin.runtime;
- };
- var typeProto = pluginProto.Type.prototype;
- typeProto.onCreate = function()
- {
- if (this.is_family)
- return;
- this.texture_img = new Image();
- this.texture_img["idtkLoadDisposed"] = true;
- this.texture_img.src = this.texture_file;
- this.runtime.wait_for_textures.push(this.texture_img);
- this.webGL_texture = null;
- };
- typeProto.onLostWebGLContext = function ()
- {
- if (this.is_family)
- return;
- this.webGL_texture = null;
- };
- typeProto.onRestoreWebGLContext = function ()
- {
- if (this.is_family || !this.instances.length)
- return;
- if (!this.webGL_texture)
- {
- this.webGL_texture = this.runtime.glwrap.loadTexture(this.texture_img, false, this.runtime.linearSampling, this.texture_pixelformat);
- }
- var i, len;
- for (i = 0, len = this.instances.length; i < len; i++)
- this.instances[i].webGL_texture = this.webGL_texture;
- };
- typeProto.unloadTextures = function ()
- {
- if (this.is_family || this.instances.length || !this.webGL_texture)
- return;
- this.runtime.glwrap.deleteTexture(this.webGL_texture);
- this.webGL_texture = null;
- };
- typeProto.preloadCanvas2D = function (ctx)
- {
- ctx.drawImage(this.texture_img, 0, 0);
- };
- pluginProto.Instance = function(type)
- {
- this.type = type;
- this.runtime = type.runtime;
- };
- var instanceProto = pluginProto.Instance.prototype;
- instanceProto.onDestroy = function()
- {
- freeAllLines (this.lines);
- freeAllClip (this.clipList);
- freeAllClipUV(this.clipUV);
- cr.wipe(this.characterWidthList);
- };
- instanceProto.onCreate = function()
- {
- this.texture_img = this.type.texture_img;
- this.characterWidth = this.properties[0];
- this.characterHeight = this.properties[1];
- this.characterSet = this.properties[2];
- this.text = this.properties[3];
- this.characterScale = this.properties[4];
- this.visible = (this.properties[5] === 0); // 0=visible, 1=invisible
- this.halign = this.properties[6]/2.0; // 0=left, 1=center, 2=right
- this.valign = this.properties[7]/2.0; // 0=top, 1=center, 2=bottom
- this.wrapbyword = (this.properties[9] === 0); // 0=word, 1=character
- this.characterSpacing = this.properties[10];
- this.lineHeight = this.properties[11];
- this.textWidth = 0;
- this.textHeight = 0;
- this.charWidthJSON = this.properties[12];
- this.spaceWidth = this.properties[13];
- jText = this.charWidthJSON;
- if (this.recycled)
- {
- this.lines.length = 0;
- cr.wipe(this.clipList);
- cr.wipe(this.clipUV);
- cr.wipe(this.characterWidthList);
- }
- else
- {
- this.lines = [];
- this.clipList = {};
- this.clipUV = {};
- this.characterWidthList = {};
- }
- try{
- if(this.charWidthJSON){
- if(this.charWidthJSON.indexOf('""c2array""') !== -1) {
- var jStr = jQuery.parseJSON(this.charWidthJSON.replace(/""/g,'"'));
- var l = jStr.size[1];
- for(var s = 0; s < l; s++) {
- var cs = jStr.data[1][s][0];
- var w = jStr.data[0][s][0];
- for(var c = 0; c < cs.length; c++) {
- this.characterWidthList[cs.charAt(c)] = w
- }
- }
- } else {
- var jStr = jQuery.parseJSON(this.charWidthJSON);
- var l = jStr.length;
- for(var s = 0; s < l; s++) {
- var cs = jStr[s][1];
- var w = jStr[s][0];
- for(var c = 0; c < cs.length; c++) {
- this.characterWidthList[cs.charAt(c)] = w
- }
- }
- }
- }
- if(this.spaceWidth !== -1) {
- this.characterWidthList[' '] = this.spaceWidth;
- }
- }
- catch(e){
- if(window.console && window.console.log) {
- window.console.log('SpriteFont+ Failure: ' + e);
- }
- }
- this.text_changed = true;
- this.lastwrapwidth = this.width;
- if (this.runtime.glwrap)
- {
- if (!this.type.webGL_texture)
- {
- this.type.webGL_texture = this.runtime.glwrap.loadTexture(this.type.texture_img, false, this.runtime.linearSampling, this.type.texture_pixelformat);
- }
- this.webGL_texture = this.type.webGL_texture;
- }
- this.SplitSheet();
- };
- instanceProto.saveToJSON = function ()
- {
- var save = {
- "t": this.text,
- "csc": this.characterScale,
- "csp": this.characterSpacing,
- "lh": this.lineHeight,
- "tw": this.textWidth,
- "th": this.textHeight,
- "lrt": this.last_render_tick,
- "cw": {}
- };
- for (var ch in this.characterWidthList)
- save["cw"][ch] = this.characterWidthList[ch];
- return save;
- };
- instanceProto.loadFromJSON = function (o)
- {
- this.text = o["t"];
- this.characterScale = o["csc"];
- this.characterSpacing = o["csp"];
- this.lineHeight = o["lh"];
- this.textWidth = o["tw"];
- this.textHeight = o["th"];
- this.last_render_tick = o["lrt"];
- for(var ch in o["cw"])
- this.characterWidthList[ch] = o["cw"][ch];
- this.text_changed = true;
- this.lastwrapwidth = this.width;
- };
- function trimRight(text)
- {
- return text.replace(/\s\s*$/, '');
- }
- var MAX_CACHE_SIZE = 1000;
- function alloc(cache,Constructor)
- {
- if (cache.length)
- return cache.pop();
- else
- return new Constructor();
- }
- function free(cache,data)
- {
- if (cache.length < MAX_CACHE_SIZE)
- {
- cache.push(data);
- }
- }
- function freeAll(cache,dataList,isArray)
- {
- if (isArray) {
- var i, len;
- for (i = 0, len = dataList.length; i < len; i++)
- {
- free(cache,dataList[i]);
- }
- dataList.length = 0;
- } else {
- var prop;
- for(prop in dataList) {
- if(Object.prototype.hasOwnProperty.call(dataList,prop)) {
- free(cache,dataList[prop]);
- delete dataList[prop];
- }
- }
- }
- }
- function addLine(inst,lineIndex,cur_line) {
- var lines = inst.lines;
- var line;
- cur_line = trimRight(cur_line);
- if (lineIndex >= lines.length)
- lines.push(allocLine());
- line = lines[lineIndex];
- line.text = cur_line;
- line.width = inst.measureWidth(cur_line);
- inst.textWidth = cr.max(inst.textWidth,line.width);
- }
- var linesCache = [];
- function allocLine() { return alloc(linesCache,Object); }
- function freeLine(l) { free(linesCache,l); }
- function freeAllLines(arr) { freeAll(linesCache,arr,true); }
- function addClip(obj,property,x,y,w,h) {
- if (obj[property] === undefined) {
- obj[property] = alloc(clipCache,Object);
- }
- obj[property].x = x;
- obj[property].y = y;
- obj[property].w = w;
- obj[property].h = h;
- }
- var clipCache = [];
- function allocClip() { return alloc(clipCache,Object); }
- function freeAllClip(obj) { freeAll(clipCache,obj,false);}
- function addClipUV(obj,property,left,top,right,bottom) {
- if (obj[property] === undefined) {
- obj[property] = alloc(clipUVCache,cr.rect);
- }
- obj[property].left = left;
- obj[property].top = top;
- obj[property].right = right;
- obj[property].bottom = bottom;
- }
- var clipUVCache = [];
- function allocClipUV() { return alloc(clipUVCache,cr.rect);}
- function freeAllClipUV(obj) { freeAll(clipUVCache,obj,false);}
- instanceProto.SplitSheet = function() {
- var texture = this.texture_img;
- var texWidth = texture.width;
- var texHeight = texture.height;
- var charWidth = this.characterWidth;
- var charHeight = this.characterHeight;
- var charU = charWidth /texWidth;
- var charV = charHeight/texHeight;
- var charSet = this.characterSet ;
- var cols = Math.floor(texWidth/charWidth);
- var rows = Math.floor(texHeight/charHeight);
- for ( var c = 0; c < charSet.length; c++) {
- if (c >= cols * rows) break;
- var x = c%cols;
- var y = Math.floor(c/cols);
- var letter = charSet.charAt(c);
- if (this.runtime.glwrap) {
- addClipUV(
- this.clipUV, letter,
- x * charU ,
- y * charV ,
- (x+1) * charU ,
- (y+1) * charV
- );
- } else {
- addClip(
- this.clipList, letter,
- x * charWidth,
- y * charHeight,
- charWidth,
- charHeight
- );
- }
- }
- };
- /*
- * Word-Wrapping
- */
- var wordsCache = [];
- pluginProto.TokeniseWords = function (text)
- {
- wordsCache.length = 0;
- var cur_word = "";
- var ch;
- var i = 0;
- while (i < text.length)
- {
- ch = text.charAt(i);
- if (ch === "\n")
- {
- if (cur_word.length)
- {
- wordsCache.push(cur_word);
- cur_word = "";
- }
- wordsCache.push("\n");
- ++i;
- }
- else if (ch === " " || ch === "\t" || ch === "-")
- {
- do {
- cur_word += text.charAt(i);
- i++;
- }
- while (i < text.length && (text.charAt(i) === " " || text.charAt(i) === "\t"));
- wordsCache.push(cur_word);
- cur_word = "";
- }
- else if (i < text.length)
- {
- cur_word += ch;
- i++;
- }
- }
- if (cur_word.length)
- wordsCache.push(cur_word);
- };
- pluginProto.WordWrap = function (inst)
- {
- var text = inst.text;
- var lines = inst.lines;
- if (!text || !text.length)
- {
- freeAllLines(lines);
- return;
- }
- var width = inst.width;
- if (width <= 2.0)
- {
- freeAllLines(lines);
- return;
- }
- var charWidth = inst.characterWidth;
- var charScale = inst.characterScale;
- var charSpacing = inst.characterSpacing;
- if ( (text.length * (charWidth * charScale + charSpacing) - charSpacing) <= width && text.indexOf("\n") === -1)
- {
- var all_width = inst.measureWidth(text);
- if (all_width <= width)
- {
- freeAllLines(lines);
- lines.push(allocLine());
- lines[0].text = text;
- lines[0].width = all_width;
- inst.textWidth = all_width;
- inst.textHeight = inst.characterHeight * charScale + inst.lineHeight;
- return;
- }
- }
- var wrapbyword = inst.wrapbyword;
- this.WrapText(inst);
- inst.textHeight = lines.length * (inst.characterHeight * charScale + inst.lineHeight);
- };
- pluginProto.WrapText = function (inst)
- {
- var wrapbyword = inst.wrapbyword;
- var text = inst.text;
- var lines = inst.lines;
- var width = inst.width;
- var wordArray;
- if (wrapbyword) {
- this.TokeniseWords(text); // writes to wordsCache
- wordArray = wordsCache;
- } else {
- wordArray = text;
- }
- var cur_line = "";
- var prev_line;
- var line_width;
- var i;
- var lineIndex = 0;
- var line;
- var ignore_newline = false;
- for (i = 0; i < wordArray.length; i++)
- {
- if (wordArray[i] === "\n")
- {
- if (ignore_newline === true) {
- ignore_newline = false;
- } else {
- addLine(inst,lineIndex,cur_line);
- lineIndex++;
- }
- cur_line = "";
- continue;
- }
- ignore_newline = false;
- prev_line = cur_line;
- cur_line += wordArray[i];
- line_width = inst.measureWidth(trimRight(cur_line));
- if (line_width > width)
- {
- if (prev_line === "") {
- addLine(inst,lineIndex,cur_line);
- cur_line = "";
- ignore_newline = true;
- } else {
- addLine(inst,lineIndex,prev_line);
- cur_line = wordArray[i];
- }
- lineIndex++;
- if (!wrapbyword && cur_line === " ")
- cur_line = "";
- }
- }
- if (trimRight(cur_line).length)
- {
- addLine(inst,lineIndex,cur_line);
- lineIndex++;
- }
- for (i = lineIndex; i < lines.length; i++)
- freeLine(lines[i]);
- lines.length = lineIndex;
- };
- instanceProto.measureWidth = function(text) {
- var spacing = this.characterSpacing;
- var len = text.length;
- var width = 0;
- for (var i = 0; i < len; i++) {
- width += this.getCharacterWidth(text.charAt(i)) * this.characterScale + spacing;
- }
- width -= (width > 0) ? spacing : 0;
- return width;
- };
- /***/
- instanceProto.getCharacterWidth = function(character) {
- var widthList = this.characterWidthList;
- if (widthList[character] !== undefined) {
- return widthList[character];
- } else {
- return this.characterWidth;
- }
- };
- instanceProto.rebuildText = function() {
- if (this.text_changed || this.width !== this.lastwrapwidth) {
- this.textWidth = 0;
- this.textHeight = 0;
- this.type.plugin.WordWrap(this);
- this.text_changed = false;
- this.lastwrapwidth = this.width;
- }
- };
- var EPSILON = 0.00001;
- instanceProto.draw = function(ctx, glmode)
- {
- var texture = this.texture_img;
- if (this.text !== "" && texture != null) {
- this.rebuildText();
- if (this.height < this.characterHeight*this.characterScale + this.lineHeight) {
- return;
- }
- ctx.globalAlpha = this.opacity;
- var myx = this.x;
- var myy = this.y;
- if (this.runtime.pixel_rounding)
- {
- myx = (myx + 0.5) | 0;
- myy = (myy + 0.5) | 0;
- }
- ctx.save();
- ctx.translate(myx, myy);
- ctx.rotate(this.angle);
- var ha = this.halign;
- var va = this.valign;
- var scale = this.characterScale;
- var charHeight = this.characterHeight * scale;
- var lineHeight = this.lineHeight;
- var charSpace = this.characterSpacing;
- var lines = this.lines;
- var textHeight = this.textHeight;
- var halign;
- var valign = va * cr.max(0,(this.height - textHeight));
- var offx = -(this.hotspotX * this.width);
- var offy = -(this.hotspotY * this.height);
- offy += valign;
- var drawX ;
- var drawY = offy;
- for(var i = 0; i < lines.length; i++) {
- var line = lines[i].text;
- var len = lines[i].width;
- halign = ha * cr.max(0,this.width - len);
- drawX = offx + halign;
- drawY += lineHeight;
- for(var j = 0; j < line.length; j++) {
- var letter = line.charAt(j);
- var clip = this.clipList[letter];
- if ( drawX + this.getCharacterWidth(letter) * scale > this.width + EPSILON ) {
- break;
- }
- if (clip !== undefined) {
- ctx.drawImage( this.texture_img,
- clip.x, clip.y, clip.w, clip.h,
- Math.round(drawX),Math.round(drawY),clip.w*scale,clip.h*scale);
- }
- drawX += this.getCharacterWidth(letter) * scale + charSpace;
- }
- drawY += charHeight;
- if ( drawY + charHeight + lineHeight > this.height) {
- break;
- }
- }
- ctx.restore();
- }
- };
- var dQuad = new cr.quad();
- function rotateQuad(quad,cosa,sina) {
- var x_temp;
- x_temp = (quad.tlx * cosa) - (quad.tly * sina);
- quad.tly = (quad.tly * cosa) + (quad.tlx * sina);
- quad.tlx = x_temp;
- x_temp = (quad.trx * cosa) - (quad.try_ * sina);
- quad.try_ = (quad.try_ * cosa) + (quad.trx * sina);
- quad.trx = x_temp;
- x_temp = (quad.blx * cosa) - (quad.bly * sina);
- quad.bly = (quad.bly * cosa) + (quad.blx * sina);
- quad.blx = x_temp;
- x_temp = (quad.brx * cosa) - (quad.bry * sina);
- quad.bry = (quad.bry * cosa) + (quad.brx * sina);
- quad.brx = x_temp;
- }
- instanceProto.drawGL = function(glw)
- {
- glw.setTexture(this.webGL_texture);
- glw.setOpacity(this.opacity);
- if (this.text !== "") {
- this.rebuildText();
- if (this.height < this.characterHeight*this.characterScale + this.lineHeight) {
- return;
- }
- this.update_bbox();
- var q = this.bquad;
- var ox = 0;
- var oy = 0;
- if (this.runtime.pixel_rounding)
- {
- ox = ((this.x + 0.5) | 0) - this.x;
- oy = ((this.y + 0.5) | 0) - this.y;
- }
- var angle = this.angle;
- var ha = this.halign;
- var va = this.valign;
- var scale = this.characterScale;
- var charHeight = this.characterHeight * scale; // to precalculate in onCreate or on change
- var lineHeight = this.lineHeight;
- var charSpace = this.characterSpacing;
- var lines = this.lines;
- var textHeight = this.textHeight;
- var cosa,sina;
- if (angle !== 0)
- {
- cosa = Math.cos(angle);
- sina = Math.sin(angle);
- }
- var halign;
- var valign = va * cr.max(0,(this.height - textHeight));
- var offx = q.tlx + ox;
- var offy = q.tly + oy;
- var drawX ;
- var drawY = valign;
- for(var i = 0; i < lines.length; i++) {
- var line = lines[i].text;
- var lineWidth = lines[i].width;
- halign = ha * cr.max(0,this.width - lineWidth);
- drawX = halign;
- drawY += lineHeight;
- for(var j = 0; j < line.length; j++) {
- var letter = line.charAt(j);
- var clipUV = this.clipUV[letter];
- if ( drawX + this.getCharacterWidth(letter) * scale > this.width + EPSILON) {
- break;
- }
- if (clipUV !== undefined) {
- var clipWidth = this.characterWidth*scale;
- var clipHeight = this.characterHeight*scale;
- dQuad.tlx = drawX;
- dQuad.tly = drawY;
- dQuad.trx = drawX + clipWidth;
- dQuad.try_ = drawY ;
- dQuad.blx = drawX;
- dQuad.bly = drawY + clipHeight;
- dQuad.brx = drawX + clipWidth;
- dQuad.bry = drawY + clipHeight;
- if(angle !== 0)
- {
- rotateQuad(dQuad,cosa,sina);
- }
- dQuad.offset(offx,offy);
- glw.quadTex(
- dQuad.tlx, dQuad.tly,
- dQuad.trx, dQuad.try_,
- dQuad.brx, dQuad.bry,
- dQuad.blx, dQuad.bly,
- clipUV
- );
- }
- drawX += this.getCharacterWidth(letter) * scale + charSpace;
- }
- drawY += charHeight;
- if ( drawY + charHeight + lineHeight > this.height) {
- break;
- }
- }
- }
- };
- function Cnds() {}
- Cnds.prototype.CompareText = function(text_to_compare, case_sensitive)
- {
- if (case_sensitive)
- return this.text == text_to_compare;
- else
- return cr.equals_nocase(this.text, text_to_compare);
- };
- pluginProto.cnds = new Cnds();
- function Acts() {}
- Acts.prototype.SetText = function(param)
- {
- if (cr.is_number(param) && param < 1e9)
- param = Math.round(param * 1e10) / 1e10; // round to nearest ten billionth - hides floating point errors
- var text_to_set = param.toString();
- if (this.text !== text_to_set)
- {
- this.text = text_to_set;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- Acts.prototype.AppendText = function(param)
- {
- if (cr.is_number(param))
- param = Math.round(param * 1e10) / 1e10; // round to nearest ten billionth - hides floating point errors
- var text_to_append = param.toString();
- if (text_to_append) // not empty
- {
- this.text += text_to_append;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- Acts.prototype.SetScale = function(param)
- {
- if (param !== this.characterScale) {
- this.characterScale = param;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- Acts.prototype.SetCharacterSpacing = function(param)
- {
- if (param !== this.CharacterSpacing) {
- this.characterSpacing = param;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- Acts.prototype.SetLineHeight = function(param)
- {
- if (param !== this.lineHeight) {
- this.lineHeight = param;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- instanceProto.SetCharWidth = function(character,width) {
- var w = parseInt(width,10);
- if (this.characterWidthList[character] !== w) {
- this.characterWidthList[character] = w;
- this.text_changed = true;
- this.runtime.redraw = true;
- }
- };
- Acts.prototype.SetCharacterWidth = function(characterSet,width)
- {
- if (characterSet !== "") {
- for(var c = 0; c < characterSet.length; c++) {
- this.SetCharWidth(characterSet.charAt(c),width);
- }
- }
- };
- Acts.prototype.SetEffect = function (effect)
- {
- this.compositeOp = cr.effectToCompositeOp(effect);
- cr.setGLBlend(this, effect, this.runtime.gl);
- this.runtime.redraw = true;
- };
- pluginProto.acts = new Acts();
- function Exps() {}
- Exps.prototype.CharacterWidth = function(ret,character)
- {
- ret.set_int(this.getCharacterWidth(character));
- };
- Exps.prototype.CharacterHeight = function(ret)
- {
- ret.set_int(this.characterHeight);
- };
- Exps.prototype.CharacterScale = function(ret)
- {
- ret.set_float(this.characterScale);
- };
- Exps.prototype.CharacterSpacing = function(ret)
- {
- ret.set_int(this.characterSpacing);
- };
- Exps.prototype.LineHeight = function(ret)
- {
- ret.set_int(this.lineHeight);
- };
- Exps.prototype.Text = function(ret)
- {
- ret.set_string(this.text);
- };
- Exps.prototype.TextWidth = function (ret)
- {
- this.rebuildText();
- ret.set_float(this.textWidth);
- };
- Exps.prototype.TextHeight = function (ret)
- {
- this.rebuildText();
- ret.set_float(this.textHeight);
- };
- pluginProto.exps = new Exps();
-}());
;
;
cr.plugins_.Text = function(runtime)
@@ -23719,227 +22978,6 @@ cr.plugins_.Touch = function(runtime)
}());
;
;
-cr.plugins_.remoteplugin = function (runtime) {
- this.runtime = runtime;
-};
-(function () {
- var pluginProto = cr.plugins_.remoteplugin.prototype;
- pluginProto.Type = function (plugin) {
- this.plugin = plugin;
- this.runtime = plugin.runtime;
- };
- var typeProto = pluginProto.Type.prototype;
- typeProto.onCreate = function () {
- };
- pluginProto.Instance = function (type) {
- this.type = type;
- this.runtime = type.runtime;
- this.curTag = "";
- this.curLoopIndex = 0;
- /*
- this.type = type;
- this.runtime = type.runtime;
- this.curTag = "";
- this.curLoopIndex = 0;
- this.gameBaseScore = 0;
- this.gameTicket = 0;
- this.gameRV = 0;
- this.gamePlatform = 0;
- this.hpoint = 0;
- this.gameRewardItems = [];
- this.gameResultRewardItem = null;
- this.palog = false;
- this.returnValue = "";
- this.keysArray = new Array();
- this.keysContentArray = new Array(); // an array of arrays - key is stored in keysArray
- this.counterKeys = 0;
-*/
- };
- var instanceProto = pluginProto.Instance.prototype;
- instanceProto.onCreate = function () {
- };
- instanceProto.onDestroy = function () {
- };
- instanceProto.saveToJSON = function () {
- return {
- };
- };
- instanceProto.loadFromJSON = function (o) {
- };
- instanceProto.draw = function (ctx) {
- };
- instanceProto.drawGL = function (glw) {
- };
- function Cnds() {
- };
- Cnds.prototype.OnComplete = function (tag) {
- return true;
- };
- Cnds.prototype.OnError = function (tag) {
- return cr.equals_nocase(tag, this.curTag);
- };
- Cnds.prototype.OnReplayRun = function (tag) {
- return true;
- }
- Cnds.prototype.MyCondition = function (myparam) {
- return myparam >= 0;
- };
- instanceProto.doForEachTrigger = function (current_event)
- {
- this.runtime.pushCopySol(current_event.solModifiers);
- current_event.retrigger();
- this.runtime.popSol(current_event.solModifiers);
- };
- Cnds.prototype.ForEachRewardItem = function () {
- var current_event = this.runtime.getCurrentEventStack().current_event;
- this.curLoopIndex = 0;
- for (this.curLoopIndex = 0; this.curLoopIndex < this.gameRewardItems.length; this.curLoopIndex++)
- {
- this.doForEachTrigger(current_event);
- }
- this.curLoopIndex = 0;
- return false;
- };
- pluginProto.cnds = new Cnds();
- function Acts() {
- };
- var onMessageReceived = false;
- Acts.prototype.BDOn = function (myparam) {
- if (typeof BLDATA != "undefined"){
- var BL_DATA = BLDATA['GETBLDATA'];
- this.ISLOADING = BL_DATA['ISLOADING'];
- }
- };
- Acts.prototype.BDConnectOn = function (myparam) {
- if (typeof BLDATA != "undefined"){
- var bdconnecton = BLDATA['CONNECTON'];
- bdconnecton();
- }
- };
- Acts.prototype.BDStart = function (myparam) {
- if (typeof BLDATA != "undefined"){
- var bdstart = BLDATA['START'];
- bdstart();
- }
- };
- Acts.prototype.BDFinish = function (myparam) {
- if (typeof BLDATA != "undefined"){
- var bdfinish = BLDATA['FINISH'];
- bdfinish();
- }
- };
- Acts.prototype.BDRanking = function (email,username,score,listcount) {
- if (typeof BLDATA != "undefined"){
- var bdranking = BLDATA['RANKING'];
- bdranking(email,username,score,listcount);
- }
- };
- Acts.prototype.BDSendScore = function (score,playtime) {
- if (typeof BLDATA != "undefined"){
- var bdsendscore = BLDATA['SENDSCORE'];
- bdsendscore(score,playtime);
- }
- };
- function getBL(){
- if (typeof BLDATA != "undefined"){
- return BLDATA['GETBLDATA'];
- }else
- return null;
- }
- pluginProto.acts = new Acts();
- function Exps() {
- };
- pluginProto.exps = {};
- var exps = pluginProto.exps;
- Exps.prototype.IsRankingLoaded = function (ret) {
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['ISRANKINGLOADED'] !== "undefined")
- {
- if(getBL()['ISRANKINGLOADED'])
- ret.set_string("1");
- else
- ret.set_string("0");
- }
- else
- ret.set_string("");
- };
- Exps.prototype.RankEmail = function (ret,rank) {
- console.log("ret "+ret);
- console.log("ret "+ret+" rank is "+rank);
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['RANKINGLIST'] !== "undefined" && getBL()['RANKINGLIST'][rank] !== "undefined")
- ret.set_string(getBL()['RANKINGLIST'][rank]['reg_value1']+"");
- else
- ret.set_string("");
- };
- Exps.prototype.RankScore = function (ret,rank) {
- console.log("ret "+ret+" rank is "+rank);
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['RANKINGLIST'] !== "undefined" && getBL()['RANKINGLIST'][rank] !== "undefined")
- ret.set_string(getBL()['RANKINGLIST'][rank]['max_score']+"");
- else
- ret.set_string("");
- };
- Exps.prototype.MyRank = function (ret) {
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['MYRANKING'] !== "undefined")
- ret.set_string(getBL()['MYRANKING']['ranking']+"");
- else
- ret.set_string("");
- };
- Exps.prototype.MyScore = function (ret) {
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['MYRANKING'] !== "undefined")
- ret.set_string(getBL()['MYRANKING']['max_score']+"");
- else
- ret.set_string("");
- };
- Exps.prototype.RankCount = function (ret) {
- if(getBL() != null && getBL()['ISLOADING'] && typeof getBL()['RANKINGLIST'] !== "undefined")
- ret.set_int(getBL()['RANKINGLIST'].length);
- else
- ret.set_int(0);
- };
- Exps.prototype.EmailCheck = function (ret,email) {
- var regex=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/;
- if(regex.test(email) === false)
- ret.set_int(0);
- else
- ret.set_int(1);
- };
- Exps.prototype.SecureEmail = function (ret,email) {
- var secure_email = email;
- if(email.length > 3)
- var secure_email = "***"+email.substring(3);
- ret.set_string(secure_email);
- };
- Exps.prototype.LowVersion = function (ret) {
- var errormessage = "";
- var ua = navigator.userAgent;
- if( ua.indexOf("Android") >= 0 )
- {
- var androidversion = parseFloat(ua.slice(ua.indexOf("Android")+8));
- if(androidversion < 4.4){
- errormessage=""+androidversion;
- }
- }
- if(errormessage.length > 0){
- ret.set_string(errormessage);
- }
- else
- ret.set_string("");
- };
- Exps.prototype.SupportWebsocket = function (ret) {
- console.log("SupportWebsocket!!!");
- if (window.WebSocket){
- ret.set_string("true");
- } else {
- ret.set_string("false");
- }
- };
- Exps.prototype.MyExpression = function (ret) // 'ret' must always be the first parameter - always return the expression's result through it!
- {
- ret.set_int(1337); // return our value
- };
- pluginProto.exps = new Exps();
-}());
-;
-;
cr.behaviors.Anchor = function(runtime)
{
this.runtime = runtime;
@@ -26982,10 +26020,8 @@ cr.getObjectRefTable = function () { return [
cr.plugins_.Audio,
cr.plugins_.Browser,
cr.plugins_.Function,
- cr.plugins_.remoteplugin,
- cr.plugins_.Sprite,
cr.plugins_.SenaPlugin,
- cr.plugins_.SpriteFontPlus,
+ cr.plugins_.Sprite,
cr.plugins_.Touch,
cr.plugins_.Text,
cr.behaviors.Rex_MoveTo,
@@ -27004,34 +26040,36 @@ cr.getObjectRefTable = function () { return [
cr.behaviors.Pin.prototype.acts.Pin,
cr.system_object.prototype.acts.Wait,
cr.plugins_.SenaPlugin.prototype.acts.Load,
- cr.behaviors.DragnDrop.prototype.acts.SetEnabled,
- cr.plugins_.SenaPlugin.prototype.acts.ResumeGame,
cr.plugins_.SenaPlugin.prototype.cnds.OnLoad,
cr.plugins_.Browser.prototype.acts.ConsoleLog,
cr.plugins_.SenaPlugin.prototype.exps.getGuide,
cr.plugins_.SenaPlugin.prototype.acts.Start,
cr.plugins_.Function.prototype.acts.CallFunction,
cr.system_object.prototype.acts.SetVar,
+ cr.behaviors.DragnDrop.prototype.acts.SetEnabled,
cr.plugins_.SenaPlugin.prototype.exps.getOptionsCount,
cr.plugins_.Sprite.prototype.acts.LoadURL,
cr.plugins_.SenaPlugin.prototype.exps.getQuestionValue,
- cr.system_object.prototype.cnds.Compare,
cr.plugins_.Function.prototype.cnds.OnFunction,
- cr.plugins_.SenaPlugin.prototype.exps.getHintValue,
+ cr.system_object.prototype.exps.max,
+ cr.plugins_.SenaPlugin.prototype.exps.getHintCount,
cr.plugins_.Text.prototype.acts.Destroy,
cr.plugins_.Sprite.prototype.acts.Destroy,
cr.plugins_.SenaPlugin.prototype.acts.CalcObjectPositions,
- cr.plugins_.SenaPlugin.prototype.exps.getHintCount,
cr.system_object.prototype.exps.layoutwidth,
cr.system_object.prototype.cnds.Repeat,
+ cr.system_object.prototype.cnds.Compare,
+ cr.plugins_.SenaPlugin.prototype.exps.getHintValue,
cr.system_object.prototype.exps.loopindex,
cr.system_object.prototype.acts.CreateObject,
cr.plugins_.Sprite.prototype.acts.SetX,
cr.plugins_.SenaPlugin.prototype.exps.getPosXbyIndex,
cr.plugins_.Sprite.prototype.acts.SetY,
+ cr.plugins_.SenaPlugin.prototype.exps.getPosYbyIndex,
cr.plugins_.Sprite.prototype.acts.SetAnimFrame,
cr.plugins_.Sprite.prototype.acts.SetInstanceVar,
- cr.plugins_.Sprite.prototype.acts.SetScale,
+ cr.plugins_.Sprite.prototype.acts.SetWidth,
+ cr.plugins_.Sprite.prototype.acts.SetHeight,
cr.plugins_.Sprite.prototype.exps.X,
cr.plugins_.Sprite.prototype.exps.Y,
cr.plugins_.Text.prototype.acts.SetText,
@@ -27052,9 +26090,6 @@ cr.getObjectRefTable = function () { return [
cr.plugins_.Sprite.prototype.cnds.IsOverlapping,
cr.behaviors.DragnDrop.prototype.cnds.OnDrop,
cr.plugins_.Sprite.prototype.acts.SetPos,
- cr.plugins_.Sprite.prototype.acts.SetWidth,
- cr.plugins_.Sprite.prototype.acts.SetHeight,
- cr.behaviors.Rex_MoveTo.prototype.acts.SetTargetPos,
cr.system_object.prototype.cnds.ForEach,
cr.system_object.prototype.cnds.CompareVar,
cr.plugins_.Sprite.prototype.exps.Count,
@@ -27069,7 +26104,6 @@ cr.getObjectRefTable = function () { return [
cr.plugins_.SenaPlugin.prototype.cnds.OnCorrect,
cr.plugins_.SenaPlugin.prototype.cnds.OnWrong,
cr.system_object.prototype.cnds.EveryTick,
- cr.system_object.prototype.exps.max,
cr.plugins_.SenaPlugin.prototype.exps.getTimeLimit,
cr.plugins_.SenaPlugin.prototype.exps.getElapsedTime,
cr.system_object.prototype.exps["int"],
@@ -27077,6 +26111,7 @@ cr.getObjectRefTable = function () { return [
cr.plugins_.Audio.prototype.acts.SetMuted,
cr.system_object.prototype.acts.SetLayerVisible,
cr.plugins_.Text.prototype.acts.SetVisible,
+ cr.plugins_.SenaPlugin.prototype.acts.ResumeGame,
cr.system_object.prototype.cnds.LayerVisible,
cr.behaviors.Fade.prototype.acts.RestartFade,
cr.behaviors.Sin.prototype.acts.SetActive
diff --git a/SQ_Word_Hint-Image/data.js b/SQ_Word_Hint-Image/data.js
index 60ee815..1230479 100644
--- a/SQ_Word_Hint-Image/data.js
+++ b/SQ_Word_Hint-Image/data.js
@@ -1 +1 @@
-{"project": [null,"Game",[[0,true,false,false,false,false,false,false,false,false],[1,true,false,false,false,false,false,false,false,false],[2,true,false,false,false,false,false,false,false,false],[3,false,true,false,false,false,false,false,false,false],[4,false,true,true,true,true,true,true,true,false],[5,true,false,false,false,false,false,false,false,false],[6,false,true,true,true,true,true,true,true,true],[7,true,false,false,false,false,false,false,false,false],[8,false,true,true,true,true,true,true,true,false]],[["t0",4,false,[864916470115508,671424700857603,742273295511675,915051182566084,438595278712365,792103718967953],5,0,null,[["Default",0,false,1,0,false,766361138730018,[["images/answers-sheet0.png",12383,0,0,199,85,1,0.5025125741958618,0.5058823823928833,[],[-0.3065327405929565,-0.258823573589325,0.3015071153640747,-0.2588231563568115,0.3015069961547852,0.1411759853363037,-0.3065328598022461,0.1411762833595276],0]]]],[["MoveTo",9,604855247345446],["Fade",10,172183085978858],["DragDrop",11,421888048208530],["EaseTween",12,428975865074928],["EaseTween2",12,153601376400345]],false,false,521274050538780,[],null],["t1",7,false,[],0,0,null,null,[],false,false,786570836240034,[],null,[1]],["t2",2,false,[],0,0,null,null,[],false,false,293329078829759,[],null,[]],["t3",1,false,[],0,0,null,null,[],false,false,309246988327533,[],null,[]],["t4",4,false,[808559794937329,997079567163161,567648729382427,954939568499611,936471805758704],1,0,null,[["Default",0,false,1,0,false,163248314795401,[["images/answers-sheet0.png",12383,0,0,199,85,1,0.5025125741958618,0.5058823823928833,[],[-0.3366829752922058,-0.2941176891326904,0.3165829181671143,-0.3058820962905884,0.3165829181671143,0.1294117569923401,-0.3467335999011993,0.1294116377830505],0],["images/slot-sheet0.png",11183,0,0,199,82,1,0.5025125741958618,0.5,[],[-0.3216081261634827,-0.2317073047161102,0.3015068769454956,-0.2439024150371552,0.296482264995575,0.219512403011322,-0.3216080963611603,0.2195124626159668],0]]]],[["Fade",10,900753873870093]],false,false,519636697009154,[],null],["t5",4,false,[],3,0,null,[["Default",0,false,1,0,false,157803278794484,[["images/submit-sheet0.png",146996,0,0,489,325,1,0.5010225176811218,0.5015384554862976,[],[],0]]]],[["Flash",13,745974027953346],["Sine",14,122174234324725],["Fade",10,470725043295066]],false,false,588453873694452,[],null],["t6",6,false,[942862735447965],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,111792501546005]],false,false,432979753740528,[],null],["t7",4,false,[],0,0,null,[["Default",5,false,1,0,false,721392848979743,[["images/btn_submit2-sheet0.png",187044,0,0,888,132,1,0.5,0.5,[],[-0.5,0.4549919962882996,0.06428402662277222,-0.5,0.5,0.4549919962882996,0.5,0.5,0.5,0.5,0.06428402662277222,0.5,-0.5,0.5,-0.5,0.5],0]]]],[],false,false,946625081997369,[],null],["t8",4,false,[],1,0,null,[["Default",5,false,1,0,false,721783848790452,[["images/btn_next-sheet0.png",49832,0,0,356,148,1,0.5,0.5,[],[-0.3533200025558472,-0.3626599907875061,-0.009059995412826538,-0.494535505771637,0.3352019786834717,-0.3461750149726868,0.4982730150222778,0,0.3533200025558472,0.3626599907875061,-0.009059995412826538,0.4945359826087952,-0.3352019786834717,0.3461750149726868,-0.4982728660106659,0],0]]]],[["Sine",14,402421837074546]],false,false,818775859313496,[],null],["t9",4,false,[],0,0,null,[["Default",5,false,1,0,false,921392178132129,[["images/btn_play-sheet0.png",134711,0,0,346,346,1,0.5028901696205139,0.5,[],[],0],["images/btn_play-sheet1.png",168,0,0,250,250,1,0.5,0.5,[],[],3]]]],[],false,false,762262472806633,[],null],["t10",0,false,[],0,0,null,null,[],false,false,975221106550751,[],null,[0,0,0,1,1,600,600,10000,1]],["t11",4,false,[],1,0,null,[["Default",5,false,1,0,false,916970518775193,[["images/frame_door-sheet0.png",1822354,0,0,1920,1080,1,0.5,0.5,[],[],0]]]],[["EaseTween",12,688493971614921]],false,false,673749981300323,[],null],["t12",4,false,[],1,0,null,[["Default",5,false,1,0,false,934719015921392,[["images/frame_door_left-sheet0.png",539840,0,0,469,822,1,0.5010660886764526,0.5,[],[-0.498933881521225,-0.4987834393978119,0.4968019127845764,-0.4987834393978119,0.4946699142456055,0.4975669980049133,-0.498933881521225,0.4987829923629761],0]]]],[["MoveTo",9,401776860679972]],false,false,153559747848512,[],null],["t13",4,false,[],1,0,null,[["Default",5,false,1,0,false,742259468763493,[["images/frame_door_right-sheet0.png",543214,0,0,467,821,1,0.5010706782341003,0.5006090402603149,[],[-0.5010706782341003,-0.5006090402603149,0.4967883229255676,-0.4993910193443298,0.4989293217658997,0.4993909597396851,-0.4967880249023438,0.4969549775123596],0]]]],[["MoveTo",9,142691375562698]],false,false,951982130871283,[],null],["t14",4,false,[],1,0,null,[["Default",5,false,1,0,false,596630541764877,[["images/hand_right-sheet0.png",64594,0,0,155,346,1,0.5032258033752441,0.5,[],[],0]]]],[["Pin",15,481474855082544]],false,false,888342496691520,[],null],["t15",4,false,[],1,0,null,[["Default",0,false,1,0,false,756321102172276,[["images/hand_left-sheet0.png",70922,0,0,193,346,1,0.5025906562805176,0.5,[],[],0]]]],[["Pin",15,120839381152826]],false,false,928771787327892,[],null],["t16",4,false,[],0,0,null,[["Default",5,false,1,0,false,430849449557794,[["images/sprite-sheet0.png",168,0,0,250,250,1,0.5,0.5,[],[],0]]]],[],false,false,787263586433186,[],null],["t17",4,false,[],0,0,null,[["Default",5,false,1,0,false,672711485213709,[["images/khung_thoai-sheet0.png",1053981,0,0,1381,809,1,0.4989138245582581,0.5018541216850281,[],[0.4622311592102051,-0.003646135330200195,0.4008821845054627,0.3225188851356506,0.002108156681060791,0.3440238833427429,-0.4027993083000183,0.3296868801116943,-0.4723289310932159,-0.003646135330200195,-0.4477890133857727,-0.412248432636261,0.002108156681060791,-0.4695960283279419,0.4438261985778809,-0.4014961123466492],0]]]],[],false,false,445582981850455,[],null],["t18",4,false,[],0,0,null,[["Default",5,false,1,0,false,127783747161360,[["images/khung-sheet0.png",16479,0,0,245,100,1,0.5020408034324646,0.5,[],[],0]]]],[],false,false,811404919858500,[],null],["t19",4,false,[],1,0,null,[["Default",5,false,1,0,false,859799537201858,[["images/avatar-sheet0.png",1500573,0,0,1024,1024,1,0.5,0.5,[],[],1]]]],[["Pin",15,171038971830502]],false,false,837535844611312,[],null],["t20",4,false,[],0,0,null,[["Default",0,false,1,0,false,739926277400680,[["images/frame_score-sheet0.png",5875,1,134,270,64,1,0.5,0.5,[],[0.3552079796791077,-0.5,0.5,0.5,0.5,0.5,-0.5,0.5],0],["images/frame_score-sheet0.png",5875,1,1,316,64,1,0.5,0.5,[],[0.2940059900283814,-0.5,0.5,0.5,0.4744920134544373,0.5,-0.5,0.5],0],["images/frame_score-sheet0.png",5875,1,67,305,65,1,0.5016393661499023,0.5076923370361328,[],[0.3341176509857178,-0.5076923370361328,0.4983606338500977,0.4923076629638672,0.4983606338500977,0.4923076629638672,-0.5016393661499023,0.4923076629638672],0]]]],[],false,false,819525228363299,[],null],["t21",6,false,[940286636988100],3,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,834701880706737],["Fade",10,958123565456535],["MoveTo",9,973282322763825]],false,false,728262842526683,[],null],["t22",6,false,[344679164944695],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,128644578527300]],false,false,522216010047558,[],null],["t23",6,false,[731123512951619],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,516508734324126]],false,false,340765955288849,[],null],["t24",6,false,[692803175473927],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,545779800810831]],false,false,591329026570186,[],null],["t25",6,false,[826587350959856],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,553083715854589]],false,false,708446667476819,[],null],["t26",4,false,[],0,0,null,[["Default",5,false,1,0,false,878733427822656,[["images/sena_ui_frame_intro-sheet0.png",155,0,0,250,250,1,0.5,0.5,[],[],4]]]],[],false,false,722501346055698,[],null],["t27",6,false,[529603772061051],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,762382317930428]],false,false,533138744901290,[],null],["t28",6,false,[472340567293658],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,585006722065273]],false,false,462260847926939,[],null],["t29",6,false,[623658190405060],1,0,["images/txt_instructions.png",148918,0],null,[["Pin",15,158286730532340]],false,false,325060752227160,[],null],["t30",8,false,[],1,0,null,null,[["Pin",15,983903129678407]],false,false,194612180994682,[],null],["t31",8,false,[],1,0,null,null,[["Pin",15,253592077507409]],false,false,557129552997296,[],null],["t32",8,false,[],1,0,null,null,[["Pin",15,575662582966304]],false,false,454879628680945,[],null],["t33",8,false,[],2,0,null,null,[["Pin",15,668111541658451],["Fade",10,143982287745535]],false,false,865512087815474,[],null],["t34",8,false,[],2,0,null,null,[["Pin",15,983629863781910],["Fade",10,863647630809957]],false,false,452023984157524,[],null],["t35",8,false,[],2,0,null,null,[["Pin",15,621704806901910],["Fade",10,181558217816037]],false,false,108820901806782,[],null],["t36",4,false,[],2,0,null,[["Default",5,false,1,0,false,325577231432987,[["images/wrong-sheet0.png",27271,0,0,140,140,1,0.5,0.5,[],[-0.08866998553276062,0.05115598440170288,0,-0.05821299552917481,0.08374398946762085,0.05821299552917481,0.07635402679443359,-0.001763999462127686,0.1009849905967712,-0.03351700305938721,0,0.1005499958992004,-0.105910986661911,-0.02645999193191528,-0.08374398946762085,-0.001763999462127686],0]]]],[["Fade",10,938090566638553],["Pin",15,922984705911085]],false,false,786659809200098,[],null],["t37",4,false,[],2,0,null,[["Default",5,false,1,0,false,199500828138837,[["images/correct-sheet0.png",31182,0,0,140,140,1,0.5,0.5071428418159485,[],[-0.03694498538970947,-0.01037183403968811,0,-0.05661284923553467,0.4187189936637878,-0.4319769442081451,0.08374398946762085,-0.004931867122650147,0,0.133790135383606,-0.280788004398346,0.2725121378898621,-0.03940901160240173,-0.004931867122650147],0]]]],[["Fade",10,351180598525433],["Pin",15,692899677986212]],false,false,185378619927884,[],null],["t38",4,false,[808308867875603],3,0,null,[["Default",5,false,1,0,false,761372550491219,[["images/setting-sheet0.png",48936,0,0,240,186,1,0.5166666507720947,0.4892473220825195,[],[-0.3041666448116303,-0.2150533199310303,-0.01666665077209473,-0.4838709831237793,0.3166663646697998,-0.2741933166980743,0.4666663408279419,0.01075267791748047,0.3666663765907288,0.3602146506309509,-0.01666665077209473,0.4193546772003174,-0.3624996542930603,0.3118276596069336,-0.4416666626930237,0.01075267791748047],0]]]],[["Anchor",16,827810656785535],["Fade",10,373179721574636],["Sine",14,657466709679600]],false,false,852469545845224,[],null],["t39",4,false,[],1,0,null,[["Default",5,false,1,0,false,242759006937516,[["images/khung_score-sheet0.png",128822,0,0,592,247,1,0.5,0.5020242929458618,[],[-0.3918920159339905,-0.2429153025150299,0,-0.4979757070541382,0.3868240118026733,-0.2307693064212799,0.4459459781646729,-0.004048287868499756,0.4408779740333557,0.3562756776809692,0,0.4453437328338623,-0.4307432174682617,0.3319836854934692,-0.4594594836235046,-0.004048287868499756],0]]]],[["Anchor",16,179938323451195]],false,false,471616572711002,[],null],["t40",4,false,[],1,0,null,[["Default",5,false,1,0,false,200801003478463,[["images/khung_timer-sheet0.png",100737,0,0,589,178,1,0.5008488893508911,0.5,[],[-0.4601019024848938,-0.3651689887046814,-0.001697897911071777,-0.4943820238113403,0.4244481325149536,-0.2528089880943298,0.4940581321716309,0,0.4567061066627502,0.3595510125160217,-0.001697897911071777,0.4269660115242004,-0.4533106982707977,0.342697024345398,-0.4787775874137878,0],0]]]],[["Anchor",16,394428299090024]],false,false,684620172079747,[],null],["t41",8,false,[],2,0,null,null,[["Pin",15,456906837996025],["Fade",10,218728013988059]],false,false,438300487857361,[],null],["t42",4,false,[726951437591404],3,0,null,[["Default",0,false,1,0,false,954324372044250,[["images/pause-sheet0.png",32506,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[-0.397515594959259,-0.3949047327041626,-0.006211578845977783,-0.4777070283889771,0.3913044333457947,-0.3949047327041626,0.4720494151115418,-0.006369739770889282,0.3913044333457947,0.3885352611541748,-0.006211578845977783,0.4649682641029358,-0.4037266969680786,0.3949042558670044,-0.47826087474823,-0.006369739770889282],0],["images/pause-sheet1.png",33467,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[],0]]]],[["Fade",10,785646788309555],["Flash",13,834009854852752],["Anchor",16,236404692541993]],false,false,319934659610612,[],null],["t43",4,false,[],2,0,null,[["Default",5,false,1,0,false,387377745829883,[["images/help-sheet0.png",35404,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[-0.397515594959259,-0.3949047327041626,-0.006211578845977783,-0.4777070283889771,0.3913044333457947,-0.3949047327041626,0.4720494151115418,-0.006369739770889282,0.3913044333457947,0.3885352611541748,-0.006211578845977783,0.4649682641029358,-0.4037266969680786,0.3949042558670044,-0.47826087474823,-0.006369739770889282],0]]]],[["Anchor",16,934555943538714],["Flash",13,508536834738217]],false,false,478762762856133,[],null],["t44",4,false,[],2,0,null,[["Default",5,false,1,0,false,157939326111053,[["images/board-sheet0.png",26164,0,0,252,779,1,0.5,0.5006418228149414,[],[-0.3055559992790222,-0.4377406239509583,0,-0.4813863337039948,0.2857139706611633,-0.4313222169876099,0.4523810148239136,-0.001283824443817139,0.3769840002059937,0.4595631957054138,0,0.4903721809387207,-0.3849210143089294,0.4621312022209168,-0.4722222089767456,-0.001283824443817139],0]]]],[["Fade",10,530783555522929],["Anchor",16,554124059792985]],false,false,991386743308625,[],null],["t45",4,false,[434240310643651],3,0,null,[["Default",0,false,1,0,false,502912810850035,[["images/bgm-sheet0.png",35024,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[-0.397515594959259,-0.3949047327041626,-0.006211578845977783,-0.4777070283889771,0.3913044333457947,-0.3949047327041626,0.4720494151115418,-0.006369739770889282,0.3913044333457947,0.3885352611541748,-0.006211578845977783,0.4649682641029358,-0.397515594959259,0.3885352611541748,-0.4720496833324432,-0.006369739770889282],0],["images/bgm-sheet1.png",34782,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[],0]]]],[["Flash",13,437429795024815],["Fade",10,914766587437933],["Anchor",16,735854623212753]],false,false,655092202092160,[],null],["t46",4,false,[],0,0,null,[["Default",5,false,1,0,false,178868238875737,[["images/pauseicon-sheet0.png",98983,0,0,1200,1200,1,0.5,0.5,[],[-0.3108330070972443,-0.3108330070972443,0,-0.4399999976158142,0.3108329772949219,-0.3108330070972443,0.4399999976158142,0,0.3108329772949219,0.3108329772949219,0,0.4399999976158142,-0.3108330070972443,0.3108329772949219,-0.4399999976158142,0],0]]]],[],false,false,826283508189587,[],null],["t47",4,false,[147049293532184],0,0,null,[["Default",5,false,1,0,false,805374628770208,[["images/black-sheet0.png",75440,0,0,1200,1200,1,0.5,0.5,[],[],1]]]],[],false,false,142600631683249,[],null],["t48",8,false,[],2,0,null,null,[["MoveTo",9,109903859744784],["Fade",10,102992656300618]],false,false,238530636055760,[],null],["t49",3,false,[],0,0,null,null,[],false,false,539459085778900,[],null],["t50",5,false,[],0,0,null,null,[],false,false,222049282078427,[],null,["G2510S1T30"]],["t51",4,false,[326267281121004],0,0,null,[["Default",0,false,1,0,false,607627309615016,[["images/hint-sheet0.png",194,0,0,300,300,1,0.5,0.5,[],[],3]]]],[],false,false,428987806910841,[],null],["t52",4,false,[],0,0,null,[["Default",5,false,1,0,false,742348772710335,[["images/imageframe-sheet0.png",480519,0,0,1183,1101,1,0.5004226565361023,0.5004541277885437,[],[-0.4175824522972107,-0.4114441275596619,-0.0008456707000732422,-0.4977293312549591,0.4530853629112244,-0.4504995346069336,0.4699913263320923,0.4677568674087524,-0.0008456707000732422,0.4822888970375061,-0.4725274443626404,0.4695728421211243],0]]]],[],false,false,989306383067724,[],null],["t53",4,false,[],2,0,null,[["Default",5,false,1,0,false,718698471191851,[["images/newwords-sheet0.png",1806988,0,0,2720,1536,1,0.5,0.5,[],[-0.3404409885406494,-0.2174479961395264,0,-0.4433594048023224,0.1834560036659241,0.06054699420928955,0.1808819770812988,0,0.3154410123825073,0.1731770038604736,0,0.3815100193023682,-0.3683820068836212,0.2669270038604736,-0.25,0],0]]]],[["Anchor",16,765999419241711],["Fade",10,627907523964163]],false,false,789494043049415,[],null],["t54",4,true,[],1,0,null,null,[["Pin",15,943483328563522]],false,false,280951626473829,[],null]],[[54,7,20]],[["Game",1200,1200,false,"Game",288730111597454,[["Layer 0",0,763235347287340,true,[255,255,255],true,0,0,1,false,false,0,0,0,[[[580,532,0,2858.676025390625,2678.729248046875,0,0,0.1000000014901161,0.5,0.5,0,0,[]],47,25,[[0]],[],[0,"Default",0,1]],[[583,293,0,300,300,0,0,1,0.5,0.5,0,0,[]],51,31,[[""]],[],[0,"Default",0,1]],[[1119.002563476563,1027.569946289063,0,105,242,0,0,1,0.5,0.5006418228149414,0,0,[]],44,19,[],[[1,0.5,0,0,1],[1,1,1,1,1]],[1,"Default",0,1]],[[-1784,-72,0,199,85,0,0,1,0.5025125741958618,0.5058823823928833,0,0,[]],0,3,[[0],[0],[-1],[""],[0],[0]],[[1,3000,1500,1500],[1,1,0,0,0],[0,1],[0,7,17,"current","100, 100",0.3,"0,0",0,0,0,0,""],[0,7,5,"current","100, 100",0.3,"0,0",0,0,0,0,""]],[0,"Default",0,1]],[[-3213,680,0,199,82,0,0,1,0.5025125741958618,0.5,0,0,[]],4,9,[[-1],[0],[""],[0],[0]],[[1,1,0,0,0]],[0,"Default",1,1]],[[-3356,1133,0,168,74,0,0,1,0.5,0.5,0,0,[]],33,18,[],[[],[1,1,0,0,0]],["Answer",0,"bold 36pt Arial","rgb(255,255,255)",1,1,4,0,0]],[[1122.528442382813,1143.801879882813,0,147.1492614746094,114.0406723022461,0,0,1,0.5166666507720947,0.4892473220825195,0,0,[]],38,2,[[0]],[[1,1,1,1,1],[1,1,0,0,0],[0,2,0,0.5,0,0,0,10,0]],[0,"Default",0,1]],[[-2804,90,0,264.8192443847656,110.4904632568359,0,0,1,0.5,0.5020242929458618,0,0,[]],39,10,[],[[1,0,1,0,1]],[0,"Default",0,1]],[[1058.62646484375,49.94869232177734,0,259.5465087890625,78.43680572509766,0,0,1,0.5008488893508911,0.5,0,0,[]],40,12,[],[[1,0,1,0,1]],[0,"Default",0,1]],[[1070.251831054688,47.12616729736328,0,141,43.34921264648438,0,0,1,0.5,0.5,0,0,[]],34,8,[],[[],[1,1,0,0,0]],["Text",0,"bold 23pt Comic Sans MS","rgb(255,255,255)",1,1,4,0,0]],[[-2718,-94,0,155,71,0,0,1,0.5,0.5,0,0,[]],35,16,[],[[],[1,1,0,0,0]],["Text",0,"bold 23pt Comic Sans MS","rgb(255,255,255)",1,1,4,0,0]],[[-3089,1143,0,121,90,0,0,1,0.5,0.5,0,0,[]],41,1,[],[[],[1,1,0,0,0]],["Slot",0,"bold 36pt Arial","rgb(255,255,255)",1,1,4,0,0]],[[1120,1052.932983398438,0,70,70,0,0,1,0.5031055808067322,0.5031847357749939,0,0,[]],42,11,[[0]],[[1,0.5,0,0,0],[],[1,1,1,1,1]],[1,"Default",0,1]],[[-3127,531,0,60,60,0,0,1,0.5031055808067322,0.5031847357749939,0,0,[]],43,14,[],[[1,1,1,1,1],[]],[0,"Default",0,1]],[[630,1098,0,212.5639190673828,141.2751617431641,0,0,1,0.5010225176811218,0.5015384554862976,0,0,[]],5,17,[],[[],[1,2,0,3,0,0,0,15,0],[1,1,0,0,0]],[1,"Default",0,1]],[[-3211,245,0,157.4040069580078,165.6880035400391,0,0,1,0.5,0.5,0,0,[]],36,23,[],[[1,0.5,0.5,0.5,1],[]],[0,"Default",0,1]],[[-2882,230,0,157.4039306640625,165.6883544921875,0,0,1,0.5,0.5071428418159485,0,0,[]],37,39,[],[[1,0.5,0.5,0.5,1],[]],[0,"Default",0,1]],[[-2912,531,0,267.4463195800781,174.8687438964844,0,0,1,0.5,0.5,0,0,[]],48,4,[],[[1,1000,0,0],[1,0,0,1,1]],["+10",0,"bold 36pt Comic Sans MS","rgb(255,255,255)",1,1,4,0,0]],[[1120,980.676025390625,0,70,70,0,0,1,0.5031055808067322,0.5031847357749939,0,0,[]],45,6,[[0]],[[],[1,0.5,0,0,1],[1,1,1,1,1]],[1,"Default",0,1]],[[572,294,0,378.9670104980469,378.9670104980469,0,0,1,0.5004226565361023,0.5004541277885437,0,0,[]],52,20,[],[],[0,"Default",0,1]],[[132.3079223632813,74.30790710449219,0,263.8062744140625,148.9729614257813,0,0,1,0.5,0.5,0,0,[]],53,21,[],[[0,0,0,0,1],[1,1,0,0,0]],[0,"Default",0,1]]],[]],["Layer 2",1,317623978877020,false,[255,255,255],true,0,0,1,false,false,1,0,0,[[[628,605,0,2858.676025390625,2678.729248046875,0,0,0.699999988079071,0.5,0.5,0,0,[]],47,32,[[2]],[],[0,"Default",0,1]],[[642,568,0,640.9500732421875,640.9500732421875,0,0,1,0.5,0.5,0,0,[]],46,22,[],[],[0,"Default",0,1]]],[]]],[],[]]],[["Game",[[1,"gameState",1,"loading",false,false,539503153258101,false],[1,"OptionIndex",0,0,false,false,701702298089281,false],[1,"CurrentTime",0,10,false,false,706573264547386,false],[1,"FinalAnswer",1,"",false,false,342353772129151,false],[1,"FilledCount",0,0,false,false,377137633613480,false],[1,"tempScale",0,1,false,false,529411214032395,false],[0,null,false,null,549205817072564,[[-1,17,null,1,false,false,false,597870668036321,false]],[[10,18,null,287858449598328,false,[[2,["fm-freemusic-give-me-a-smile(chosic.com)",false]],[3,1],[0,[0,-20]],[1,[2,"bgm"]]]],[3,19,null,484332265761879,false,[[1,[2,"var script = document.createElement('script'); \nscript.src = 'tdv_sdk.js'; \nscript.onload = function() { tdv_sdk.load(); }; \ndocument.head.appendChild(script);"]]]],[34,20,null,151341647124838,false,[[0,[4,[20,34,21,false,null],[0,5]]]]],[34,22,"Pin",728791452299543,false,[[4,40],[3,0]]],[-1,23,null,530641639162875,false,[[0,[1,0.2]]]],[50,24,null,202557125263620,false],[-1,23,null,952196818529068,false,[[0,[0,1]]]],[0,25,"DragDrop",702939057496858,false,[[3,1]]],[50,26,null,721163723989054,false]]],[0,null,false,null,768327268818740,[[50,27,null,1,false,false,false,157854561629165,false]],[[3,28,null,422861079647713,false,[[3,0],[7,[2,"Load dữ liệu xong"]]]],[3,28,null,445625785202613,false,[[3,0],[7,[20,50,29,true,null]]]]],[[0,null,false,null,939160499379423,[],[[50,30,null,112633710369332,false],[2,31,null,215312930941469,false,[[1,[2,"SetupUI"]],[13]]],[-1,32,null,486133403026538,false,[[11,"gameState"],[7,[2,"playing"]]]],[3,28,null,810649571245244,false,[[3,0],[7,[10,[2,"SenaAI Loaded & Started! Options count: "],[20,50,33,false,null]]]]],[51,34,null,310599052911762,false,[[1,[20,50,35,true,null]],[3,1],[3,0]]],[3,28,null,821665902069313,false,[[3,0],[7,[2,"✅ Load ảnh thành công!"]]]]],[[0,null,false,null,275281932743956,[[-1,36,null,0,false,false,false,966644000004331,false,[[7,[20,50,33,false,null]],[8,4],[7,[0,6]]]]],[[-1,32,null,167570100299072,false,[[11,"tempScale"],[7,[1,0.85]]]]]],[0,null,false,null,924626844575014,[[-1,36,null,0,false,false,false,434909502006706,false,[[7,[20,50,33,false,null]],[8,4],[7,[0,10]]]]],[[-1,32,null,570717869674839,false,[[11,"tempScale"],[7,[1,0.7]]]]]]]]]],[0,null,false,null,579497392478296,[[2,37,null,2,false,false,false,894377128803980,false,[[1,[2,"SetupUI"]]]]],[[3,28,null,241526851107963,false,[[3,0],[7,[10,[2,"Test Index 4: "],[20,50,38,false,null,[[0,4]]]]]]],[-1,32,null,130502662612493,false,[[11,"OptionIndex"],[7,[0,0]]]],[33,39,null,804363046879822,false],[41,39,null,908445118959135,false],[4,40,null,947783578724586,false],[0,40,null,597263169611080,false],[50,41,null,823188349173873,false,[[0,[20,50,42,false,null]],[0,[6,[0,140],[23,"tempScale"]]],[0,[6,[0,100],[23,"tempScale"]]],[0,[19,43]],[0,[0,0]],[0,[0,0]],[1,[2,""]],[0,[0,0]]]],[-1,23,null,578236747375036,false,[[0,[1,0.1]]]]],[[0,null,false,null,420951645933385,[[-1,44,null,0,true,false,false,703700136369336,false,[[0,[20,50,42,false,null]]]]],[],[[0,null,false,null,455370097314226,[[-1,36,null,0,false,false,false,413739513101283,false,[[7,[20,50,38,false,null,[[19,45]]]],[8,0],[7,[2,"_"]]]]],[[-1,46,null,410642989172264,false,[[4,4],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[4,47,null,140706566386258,false,[[0,[20,50,48,false,null,[[19,45]]]]]],[4,49,null,285477521472615,false,[[0,[0,600]]]],[4,50,null,208939150633609,false,[[0,[0,1]]]],[4,51,null,358294085606629,false,[[10,4],[7,[0,0]]]],[4,51,null,762745403333695,false,[[10,0],[7,[19,45]]]],[4,52,null,148760556597463,false,[[0,[23,"tempScale"]]]],[-1,46,null,406503163078354,false,[[4,41],[5,[0,0]],[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[41,55,null,240961907969018,false,[[7,[21,4,true,null,2]]]],[41,56,null,400710477532726,false,[[0,[6,[0,36],[23,"tempScale"]]]]],[41,22,"Pin",516397285690983,false,[[4,4],[3,0]]],[-1,46,null,998994917807971,false,[[4,0],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[0,47,null,247766170395109,false,[[0,[20,50,48,false,null,[[19,45]]]]]],[0,52,null,789539844378330,false,[[0,[23,"tempScale"]]]],[0,49,null,659120042275762,false,[[0,[0,900]]]],[0,51,null,825308187830477,false,[[10,0],[7,[20,0,53,false,null]]]],[0,51,null,118876830921160,false,[[10,1],[7,[20,0,54,false,null]]]],[0,51,null,919942935192296,false,[[10,5],[7,[20,0,57,false,null]]]],[0,51,null,376584768872877,false,[[10,4],[7,[20,0,58,false,null]]]],[0,51,null,120370806104811,false,[[10,3],[7,[20,50,59,true,null,[[23,"OptionIndex"]]]]]],[-1,46,null,122191354564609,false,[[4,33],[5,[0,0]],[0,[20,0,53,false,null]],[0,[20,0,54,false,null]]]],[33,55,null,848448916783921,false,[[7,[21,0,true,null,3]]]],[33,56,null,998311746796944,false,[[0,[6,[0,36],[23,"tempScale"]]]]],[33,22,"Pin",699493768428686,false,[[4,0],[3,0]]],[-1,60,null,182730619643428,false,[[11,"OptionIndex"],[7,[0,1]]]],[3,28,null,440482875462457,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Loop: "],[19,45]],[2," | Hint: "]],[20,50,38,false,null,[[19,45]]]],[2," | PosX: "]],[20,50,48,false,null,[[19,45]]]]]]]]],[0,null,false,null,304626328262125,[[-1,61,null,0,false,false,false,961464069246915,false]],[[-1,46,null,341749072471234,false,[[4,4],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[4,47,null,950657190119533,false,[[0,[20,50,48,false,null,[[19,45]]]]]],[4,49,null,604924286586907,false,[[0,[0,600]]]],[4,50,null,757159077034853,false,[[0,[0,0]]]],[4,51,null,469578461961545,false,[[10,4],[7,[0,1]]]],[4,51,null,542370827313726,false,[[10,0],[7,[19,45]]]],[4,52,null,110787545618608,false,[[0,[23,"tempScale"]]]],[-1,46,null,647586354625940,false,[[4,41],[5,[0,0]],[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[41,62,null,923005143097237,false],[41,55,null,554000673571406,false,[[7,[20,50,38,false,null,[[19,45]]]]]],[41,56,null,559499469199642,false,[[0,[6,[0,36],[23,"tempScale"]]]]],[41,22,"Pin",826606792383653,false,[[4,4],[3,0]]]]]]]]],[0,null,false,null,885232395664091,[[0,63,"DragDrop",1,false,false,false,462077248880784,false],[0,64,"DragDrop",0,false,false,false,881833931574563,false]],[[10,18,null,765474901635440,false,[[2,["card_drag",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[0,65,null,397403794429243,false],[0,66,"EaseTween",798607807460393,false,[[1,[10,[10,[6,[21,0,false,null,5],[1,1.25]],[2,","]],[6,[21,0,false,null,4],[1,1.25]]]]]],[0,67,"EaseTween",333043575480598,false]],[[0,null,false,null,715788682150145,[[-1,68,null,0,false,false,false,686462805859677,false,[[4,4],[7,[21,4,false,null,0]],[8,0],[7,[21,0,false,null,2]]]],[0,69,null,0,false,false,false,975555513158536,false,[[10,2],[8,1],[7,[0,-1]]]]],[[0,51,null,363961653226411,false,[[10,2],[7,[0,-1]]]],[4,51,null,745135912100760,false,[[10,4],[7,[0,0]]]],[2,31,null,741791155071768,false,[[1,[2,"CheckSubmitState"]],[13]]]]],[0,null,false,null,193892616913206,[[0,70,null,0,false,false,false,297897281213159,false,[[4,33]]]],[[33,62,null,812019026325329,false]]]]],[0,null,false,null,876456068332522,[[0,71,"DragDrop",1,false,false,false,792974910922911,false]],[[0,66,"EaseTween2",312326656063231,false,[[1,[10,[10,[21,0,false,null,5],[2,","]],[21,0,false,null,4]]]]],[0,67,"EaseTween2",997643361117365,false]],[[0,null,false,null,962248118287846,[[0,70,null,0,false,false,false,124677826324657,false,[[4,4]]],[4,69,null,0,false,false,false,852890087723952,false,[[10,4],[8,0],[7,[0,0]]]]],[[4,51,null,413746821094201,false,[[10,4],[7,[0,1]]]],[10,18,null,400234397175915,false,[[2,["pop-reverb-423718",false]],[3,0],[0,[0,-5]],[1,[2,""]]]],[0,72,null,464777312492432,false,[[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[0,51,null,290353637263798,false,[[10,2],[7,[21,4,false,null,0]]]],[0,73,null,262746395317933,false,[[0,[20,4,57,false,null]]]],[4,74,null,930580622453040,false,[[0,[20,4,58,false,null]]]],[2,31,null,648297693202608,false,[[1,[2,"CheckSubmitState"]],[13]]]]],[0,null,false,null,544622279635595,[[-1,61,null,0,false,false,false,108034191530448,false]],[[10,18,null,457959652468953,false,[[2,["card_swipe",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[0,75,"MoveTo",900038310272266,false,[[0,[21,0,false,null,0]],[0,[21,0,false,null,1]]]],[2,31,null,174110906329546,false,[[1,[2,"CheckSubmitState"]],[13]]]]]]],[0,null,false,null,903256601857551,[[2,37,null,2,false,false,false,553171385010499,false,[[1,[2,"CheckSubmitState"]]]]],[[-1,32,null,151584341392847,false,[[11,"FilledCount"],[7,[0,0]]]]],[[0,null,false,null,326454811928491,[[-1,76,null,0,true,false,false,900563057628926,false,[[4,0]]]],[],[[0,null,false,null,512468327333204,[[0,69,null,0,false,false,false,273625493381606,false,[[10,2],[8,1],[7,[0,-1]]]]],[[-1,60,null,427897992150255,false,[[11,"FilledCount"],[7,[0,1]]]]]]]],[0,null,false,null,197957600391126,[[-1,77,null,0,false,false,false,676094959731453,false,[[11,"FilledCount"],[8,0],[7,[20,0,78,false,null]]]]],[[5,79,null,871171250612987,false,[[3,1]]]]],[0,null,false,null,830039838453468,[[-1,61,null,0,false,false,false,540974332855602,false]],[[5,79,null,801779902196330,false,[[3,0]]]]]]],[0,null,false,null,956282998966849,[[1,80,null,1,false,false,false,460379891558451,false,[[4,5]]],[5,81,null,0,false,false,false,271469166922398,false]],[[50,82,null,658653282719226,false],[-1,32,null,529456506010094,false,[[11,"FinalAnswer"],[7,[2,""]]]],[10,18,null,813632462410441,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,83,"Flash",388147726390308,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,725241333542329,false,[[0,[1,0.5]]]]],[[0,null,false,null,667347878010134,[[-1,44,null,0,true,false,false,389186915205398,false,[[0,[20,50,42,false,null]]]]],[],[[0,null,false,null,631589558920999,[[-1,36,null,0,false,false,false,253358370212568,false,[[7,[20,50,38,false,null,[[19,45]]]],[8,0],[7,[2,"_"]]]]],[],[[0,null,false,null,403636493907996,[[0,69,null,0,false,false,false,526836686186341,false,[[10,2],[8,0],[7,[19,45]]]]],[[-1,32,null,245728951174934,false,[[11,"FinalAnswer"],[7,[10,[10,[23,"FinalAnswer"],[21,0,true,null,3]],[2,"|"]]]]]]]]],[0,null,false,null,998053537243308,[[-1,61,null,0,false,false,false,403067100774907,false]],[[-1,32,null,357495810182952,false,[[11,"FinalAnswer"],[7,[10,[10,[23,"FinalAnswer"],[20,50,38,false,null,[[19,45]]]],[2,"|"]]]]]]]]],[0,null,false,null,903901720494647,[[-1,77,null,0,false,false,false,745073279826626,false,[[11,"FinalAnswer"],[8,1],[7,[2,""]]]]],[[-1,32,null,814546508270084,false,[[11,"FinalAnswer"],[7,[19,84,[[23,"FinalAnswer"],[5,[19,85,[[23,"FinalAnswer"]]],[0,1]]]]]]],[50,86,null,171040983658447,false,[[7,[23,"FinalAnswer"]]]],[5,79,null,498358887136483,false,[[3,0]]]]]]],[0,null,false,null,961823775126713,[[50,87,null,1,false,false,false,119018979468992,false]],[[0,25,"DragDrop",205409471313749,false,[[3,0]]],[10,18,null,634975830871135,false,[[2,["alert-234711",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,79,null,486294929517038,false,[[3,0]]],[-1,23,null,166118146748558,false,[[0,[1,0.1]]]],[-1,46,null,786114696442570,false,[[4,37],[5,[0,0]],[0,[20,5,53,false,null]],[0,[20,5,54,false,null]]]],[-1,23,null,609402064923823,false,[[0,[0,2]]]],[50,82,null,518261006133178,false]]],[0,null,false,null,433043078641250,[[50,88,null,1,false,false,false,889460128806113,false]],[[0,25,"DragDrop",146493902040842,false,[[3,0]]],[10,18,null,221256152272583,false,[[2,["error-010-206498",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,79,null,523842542618557,false,[[3,0]]],[-1,23,null,773344591454861,false,[[0,[1,0.1]]]],[-1,46,null,165468245100549,false,[[4,36],[5,[0,0]],[0,[20,5,53,false,null]],[0,[20,5,54,false,null]]]],[-1,23,null,585683943374630,false,[[0,[0,2]]]],[50,82,null,192197113002945,false]]],[0,null,false,null,305413044561801,[[-1,89,null,0,false,false,false,337036644147098,false]],[[-1,32,null,978291331980230,false,[[11,"CurrentTime"],[7,[19,90,[[0,0],[5,[20,50,91,false,null],[20,50,92,false,null]]]]]]],[34,55,null,899951685623283,false,[[7,[19,93,[[23,"CurrentTime"]]]]]]],[[0,null,false,null,160552091445616,[[-1,77,null,0,false,false,false,812605816898326,false,[[11,"CurrentTime"],[8,0],[7,[0,0]]]],[-1,77,null,0,false,false,false,792184163830960,false,[[11,"gameState"],[8,0],[7,[2,"playing"]]]]],[],[[0,null,false,null,197153245673402,[[-1,94,null,0,false,false,false,676651290174087,false]],[[-1,32,null,617362064114178,false,[[11,"FinalAnswer"],[7,[2,""]]]],[50,82,null,155532853895121,false],[0,25,"DragDrop",256788591439037,false,[[3,0]]],[50,86,null,624217562823456,false,[[7,[23,"FinalAnswer"]]]],[-1,23,null,516409927656875,false,[[0,[1,0.5]]]],[-1,32,null,133441521269119,false,[[11,"gameState"],[7,[2,"loading"]]]]]]]]]],[0,null,false,null,312687717900328,[[1,80,null,1,false,false,false,444391347231568,false,[[4,45]]],[45,69,null,0,false,false,false,165882449365670,false,[[10,0],[8,0],[7,[0,0]]]],[45,81,null,0,false,false,false,218006519748153,false]],[[45,50,null,744920239729365,false,[[0,[0,1]]]],[10,18,null,814990443653107,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[45,83,"Flash",288546904750114,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,225438922954531,false,[[0,[1,0.5]]]],[10,95,null,554558762518759,false,[[1,[2,"bgm"]],[3,0]]],[45,51,null,117506203877028,false,[[10,0],[7,[0,1]]]]]],[0,null,false,null,983825517389982,[[1,80,null,1,false,false,false,177138363351836,false,[[4,45]]],[45,69,null,0,false,false,false,772247454962354,false,[[10,0],[8,0],[7,[0,1]]]],[45,81,null,0,false,false,false,420178685359629,false]],[[45,50,null,552019651456125,false,[[0,[0,0]]]],[10,18,null,197222371360236,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[45,83,"Flash",270092195858284,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,326299332281639,false,[[0,[1,0.5]]]],[10,95,null,964958154773645,false,[[1,[2,"bgm"]],[3,1]]],[45,51,null,506698549832256,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,294769773047529,[[1,80,null,1,false,false,false,352106017539969,false,[[4,42]]],[42,69,null,0,false,false,false,358413375274332,false,[[10,0],[8,0],[7,[0,0]]]],[42,81,null,0,false,false,false,721902056257835,false]],[[50,82,null,431466008645395,false],[42,50,null,981623485925509,false,[[0,[0,1]]]],[10,18,null,547261484638917,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[42,83,"Flash",221991481168028,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,851078194326314,false,[[0,[1,0.5]]]],[-1,96,null,402526527434402,false,[[5,[0,2]],[3,1]]],[0,79,null,855238512615337,false,[[3,0]]],[4,79,null,207839358302464,false,[[3,0]]],[33,97,null,222466351625496,false,[[3,0]]],[41,97,null,251839098840947,false,[[3,0]]],[51,79,null,153839374117437,false,[[3,0]]],[52,79,null,665223389941520,false,[[3,0]]],[0,25,"DragDrop",759856544888894,false,[[3,0]]],[10,95,null,706457060725101,false,[[1,[2,"bgm"]],[3,0]]],[42,51,null,399990244603092,false,[[10,0],[7,[0,1]]]]]],[0,null,false,null,532748443231555,[[1,80,null,1,false,false,false,419213596136778,false,[[4,42]]],[42,69,null,0,false,false,false,926326957937606,false,[[10,0],[8,0],[7,[0,1]]]],[42,81,null,0,false,false,false,804823921411396,false]],[[50,26,null,977450185168128,false],[42,50,null,670063708965675,false,[[0,[0,0]]]],[10,18,null,372275331971085,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[42,83,"Flash",113742305896573,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,900385124097116,false,[[0,[1,0.5]]]],[-1,96,null,695331528906453,false,[[5,[0,2]],[3,0]]],[0,79,null,338279072626337,false,[[3,1]]],[4,79,null,371330338747864,false,[[3,1]]],[33,97,null,358503142678550,false,[[3,1]]],[41,97,null,192887026023526,false,[[3,1]]],[51,79,null,584652547292123,false,[[3,1]]],[52,79,null,409790138347585,false,[[3,1]]],[0,25,"DragDrop",886574462493362,false,[[3,1]]],[10,95,null,693317578489009,false,[[1,[2,"bgm"]],[3,1]]],[42,51,null,468211770946126,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,297063884609973,[[1,80,null,1,false,false,false,386622849542303,false,[[4,46]]],[-1,98,null,0,false,false,false,363257598466262,false,[[5,[0,2]]]]],[[50,26,null,815752088305315,false],[42,50,null,209418858141601,false,[[0,[0,0]]]],[10,18,null,892125720911145,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[42,83,"Flash",926038900680013,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,23,null,821647409423555,false,[[0,[1,0.5]]]],[-1,96,null,480813966183110,false,[[5,[0,2]],[3,0]]],[0,79,null,876609529855384,false,[[3,1]]],[4,79,null,136625999145606,false,[[3,1]]],[33,97,null,927964586528148,false,[[3,1]]],[41,97,null,155360850450853,false,[[3,1]]],[51,79,null,825641412491834,false,[[3,1]]],[52,79,null,539962716879397,false,[[3,1]]],[0,25,"DragDrop",695861965483617,false,[[3,1]]],[10,95,null,652969105932762,false,[[1,[2,"bgm"]],[3,1]]],[42,51,null,943722776633160,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,792955897157891,[[2,37,null,2,false,false,false,979301415560581,false,[[1,[2,"Fade"]]]]],[[44,99,"Fade",820129408251933,false],[42,99,"Fade",948221853487772,false],[45,99,"Fade",225126965271644,false]]],[0,null,false,null,955859035444991,[[1,80,null,1,false,false,false,518910668901033,false,[[4,38]]],[38,69,null,0,false,false,false,290396959315441,false,[[10,0],[8,0],[7,[0,0]]]]],[[10,18,null,444001414569356,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[38,100,"Sine",818098073409429,false,[[3,1]]],[-1,23,null,441096782479652,false,[[0,[1,0.5]]]],[44,79,null,794558327843409,false,[[3,1]]],[42,79,null,679301757369962,false,[[3,1]]],[45,79,null,767519360841597,false,[[3,1]]],[2,31,null,793350220956891,false,[[1,[2,"Fade"]],[13]]],[38,51,null,261563617571114,false,[[10,0],[7,[0,1]]]],[38,100,"Sine",245771226696928,false,[[3,0]]]]],[0,null,false,null,467571648016628,[[1,80,null,1,false,false,false,432350690749805,false,[[4,38]]],[38,69,null,0,false,false,false,815726735468093,false,[[10,0],[8,0],[7,[0,1]]]]],[[10,18,null,747877391706105,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[38,100,"Sine",128949433029818,false,[[3,1]]],[-1,23,null,827176291493130,false,[[0,[1,0.5]]]],[44,79,null,591127776141805,false,[[3,0]]],[42,79,null,854152891397620,false,[[3,0]]],[45,79,null,646200193534642,false,[[3,0]]],[-1,23,null,891033434354753,false,[[0,[1,0.1]]]],[38,51,null,461824223198453,false,[[10,0],[7,[0,0]]]],[38,100,"Sine",784451994863195,false,[[3,0]]]]]]],["Game2",[]]],[["bg.m4a",658130],["bg.ogg",594740],["click.m4a",2444],["click.ogg",5621],["correct.m4a",10198],["correct.ogg",12421],["fail.m4a",29104],["fail.ogg",24343],["alert-234711.ogg",23907],["bubble-pop-389501.ogg",18257],["button-124476.ogg",13157],["click-234708.ogg",6353],["collect-5930.ogg",10731],["edugamery-music-13.ogg",1468346],["error-010-206498.ogg",11425],["error-08-206492.ogg",15621],["fail-234710.ogg",28067],["interface-2-126517.ogg",14384],["material-buy-success-394517.ogg",21008],["pick-92276.ogg",16164],["pop-reverb-423718.ogg",23653],["retro-explode-1-236678.ogg",6421],["sample_input_typing01_kofi_by_miraclei-363634.ogg",24117],["edugamery-music-18.ogg",1745554],["edugamery-music-20.ogg",1614594],["edugamery-music-5.ogg",2046101],["edugamery-music-6.ogg",1430151],["fm-freemusic-give-me-a-smile(chosic.com).ogg",2747008],["card_drag.ogg",7213],["card_flips.ogg",8015],["card_swipe.ogg",9018]],"media/",false,1200,1200,3,true,true,true,"1.0.0.0",true,false,3,0,40,false,true,1,true,"SQ_Word_Hint-Image",0,[]]}
\ No newline at end of file
+{"project": [null,"Game",[[0,true,false,false,false,false,false,false,false,false],[1,true,false,false,false,false,false,false,false,false],[2,true,false,false,false,false,false,false,false,false],[3,true,false,false,false,false,false,false,false,false],[4,false,true,true,true,true,true,true,true,false],[5,true,false,false,false,false,false,false,false,false],[6,false,true,true,true,true,true,true,true,false]],[["t0",4,false,[864916470115508,671424700857603,742273295511675,915051182566084,438595278712365,792103718967953,139230516987381],5,0,null,[["Default",0,false,1,0,false,766361138730018,[["images/answers-sheet0.png",12383,0,0,199,85,1,0.5025125741958618,0.5058823823928833,[],[-0.3065325617790222,-0.2588233947753906,0.3015074133872986,-0.2588233947753906,0.3015074133872986,0.1411756277084351,-0.3065325617790222,0.1411766409873962],0]]]],[["MoveTo",7,604855247345446],["Fade",8,172183085978858],["DragDrop",9,421888048208530],["EaseTween",10,428975865074928],["EaseTween2",10,153601376400345]],false,false,521274050538780,[],null],["t1",5,false,[],0,0,null,null,[],false,false,786570836240034,[],null,[1]],["t2",2,false,[],0,0,null,null,[],false,false,293329078829759,[],null,[]],["t3",1,false,[],0,0,null,null,[],false,false,309246988327533,[],null,[]],["t4",4,false,[808559794937329,997079567163161,567648729382427,954939568499611,936471805758704],1,0,null,[["Default",0,false,1,0,false,163248314795401,[["images/answers-sheet0.png",12383,0,0,199,85,1,0.5025125741958618,0.5058823823928833,[],[-0.3366825580596924,-0.2941173911094666,0.3165824413299561,-0.3058823943138123,0.3165824413299561,0.1294116377830505,-0.346733570098877,0.1294116377830505],0],["images/slot-sheet0.png",11183,0,0,199,82,1,0.5025125741958618,0.5,[],[-0.3216085731983185,-0.2317070066928864,0.3015064001083374,-0.2439019978046417,0.2964824438095093,0.2195119857788086,-0.3216085731983185,0.2195119857788086],0]]]],[["Fade",8,900753873870093]],false,false,519636697009154,[],null],["t5",4,false,[],3,0,null,[["Default",0,false,1,0,false,157803278794484,[["images/submit-sheet0.png",146996,0,0,489,325,1,0.5010225176811218,0.5015384554862976,[],[],0]]]],[["Flash",11,745974027953346],["Sine",12,122174234324725],["Fade",8,470725043295066]],false,false,588453873694452,[],null],["t6",0,false,[],0,0,null,null,[],false,false,975221106550751,[],null,[0,0,0,1,1,600,600,10000,1]],["t7",4,false,[],0,0,null,[["Default",5,false,1,0,false,430849449557794,[["images/sprite-sheet0.png",168,0,0,250,250,1,0.5,0.5,[],[],0]]]],[],false,false,787263586433186,[],null],["t8",6,false,[],2,0,null,null,[["Pin",13,668111541658451],["Fade",8,143982287745535]],false,false,865512087815474,[],null],["t9",6,false,[],2,0,null,null,[["Pin",13,983629863781910],["Fade",8,863647630809957]],false,false,452023984157524,[],null],["t10",4,false,[],2,0,null,[["Default",5,false,1,0,false,325577231432987,[["images/wrong-sheet0.png",27271,0,0,140,140,1,0.5,0.5,[],[-0.08866998553276062,0.05115598440170288,0,-0.05821299552917481,0.08374398946762085,0.05821299552917481,0.07635402679443359,-0.001763999462127686,0.1009849905967712,-0.03351700305938721,0,0.1005499958992004,-0.105910986661911,-0.02645999193191528,-0.08374398946762085,-0.001763999462127686],0]]]],[["Fade",8,938090566638553],["Pin",13,922984705911085]],false,false,786659809200098,[],null],["t11",4,false,[],2,0,null,[["Default",5,false,1,0,false,199500828138837,[["images/correct-sheet0.png",31182,0,0,140,140,1,0.5,0.5071428418159485,[],[-0.03694498538970947,-0.01037183403968811,0,-0.05661284923553467,0.4187189936637878,-0.4319769442081451,0.08374398946762085,-0.004931867122650147,0,0.133790135383606,-0.280788004398346,0.2725121378898621,-0.03940901160240173,-0.004931867122650147],0]]]],[["Fade",8,351180598525433],["Pin",13,692899677986212]],false,false,185378619927884,[],null],["t12",4,false,[808308867875603],3,0,null,[["Default",5,false,1,0,false,761372550491219,[["images/setting-sheet0.png",48936,0,0,240,186,1,0.5166666507720947,0.4892473220825195,[],[-0.3041666448116303,-0.2150533199310303,-0.01666665077209473,-0.4838709831237793,0.3166663646697998,-0.2741933166980743,0.4666663408279419,0.01075267791748047,0.3666663765907288,0.3602146506309509,-0.01666665077209473,0.4193546772003174,-0.3624996542930603,0.3118276596069336,-0.4416666626930237,0.01075267791748047],0]]]],[["Anchor",14,827810656785535],["Fade",8,373179721574636],["Sine",12,657466709679600]],false,false,852469545845224,[],null],["t13",4,false,[],1,0,null,[["Default",5,false,1,0,false,200801003478463,[["images/khung_timer-sheet0.png",100737,0,0,589,178,1,0.5008488893508911,0.5,[],[-0.4601019024848938,-0.3651689887046814,-0.001697897911071777,-0.4943820238113403,0.4244481325149536,-0.2528089880943298,0.4940581321716309,0,0.4567061066627502,0.3595510125160217,-0.001697897911071777,0.4269660115242004,-0.4533106982707977,0.342697024345398,-0.4787775874137878,0],0]]]],[["Anchor",14,394428299090024]],false,false,684620172079747,[],null],["t14",6,false,[],2,0,null,null,[["Pin",13,456906837996025],["Fade",8,218728013988059]],false,false,438300487857361,[],null],["t15",4,false,[726951437591404],3,0,null,[["Default",0,false,1,0,false,954324372044250,[["images/pause-sheet0.png",32506,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[-0.397515594959259,-0.3949047327041626,-0.006211578845977783,-0.4777070283889771,0.3913044333457947,-0.3949047327041626,0.4720494151115418,-0.006369739770889282,0.3913044333457947,0.3885352611541748,-0.006211578845977783,0.4649682641029358,-0.4037266969680786,0.3949042558670044,-0.47826087474823,-0.006369739770889282],0],["images/pause-sheet1.png",33467,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[],0]]]],[["Fade",8,785646788309555],["Flash",11,834009854852752],["Anchor",14,236404692541993]],false,false,319934659610612,[],null],["t16",4,false,[],2,0,null,[["Default",5,false,1,0,false,157939326111053,[["images/board-sheet0.png",26164,0,0,252,779,1,0.5,0.5006418228149414,[],[-0.3055559992790222,-0.4377406239509583,0,-0.4813863337039948,0.2857139706611633,-0.4313222169876099,0.4523810148239136,-0.001283824443817139,0.3769840002059937,0.4595631957054138,0,0.4903721809387207,-0.3849210143089294,0.4621312022209168,-0.4722222089767456,-0.001283824443817139],0]]]],[["Fade",8,530783555522929],["Anchor",14,554124059792985]],false,false,991386743308625,[],null],["t17",4,false,[434240310643651],3,0,null,[["Default",0,false,1,0,false,502912810850035,[["images/bgm-sheet0.png",35024,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[-0.397515594959259,-0.3949047327041626,-0.006211578845977783,-0.4777070283889771,0.3913044333457947,-0.3949047327041626,0.4720494151115418,-0.006369739770889282,0.3913044333457947,0.3885352611541748,-0.006211578845977783,0.4649682641029358,-0.397515594959259,0.3885352611541748,-0.4720496833324432,-0.006369739770889282],0],["images/bgm-sheet1.png",34782,0,0,161,157,1,0.5031055808067322,0.5031847357749939,[],[],0]]]],[["Flash",11,437429795024815],["Fade",8,914766587437933],["Anchor",14,735854623212753]],false,false,655092202092160,[],null],["t18",4,false,[],0,0,null,[["Default",5,false,1,0,false,178868238875737,[["images/pauseicon-sheet0.png",98983,0,0,1200,1200,1,0.5,0.5,[],[-0.3108330070972443,-0.3108330070972443,0,-0.4399999976158142,0.3108329772949219,-0.3108330070972443,0.4399999976158142,0,0.3108329772949219,0.3108329772949219,0,0.4399999976158142,-0.3108330070972443,0.3108329772949219,-0.4399999976158142,0],0]]]],[],false,false,826283508189587,[],null],["t19",4,false,[147049293532184],0,0,null,[["Default",5,false,1,0,false,805374628770208,[["images/black-sheet0.png",75440,0,0,1200,1200,1,0.5,0.5,[],[],1]]]],[],false,false,142600631683249,[],null],["t20",3,false,[],0,0,null,null,[],false,false,222049282078427,[],null,["G2510S1T30"]],["t21",4,false,[326267281121004],0,0,null,[["Default",0,false,1,0,false,607627309615016,[["images/hint-sheet0.png",194,0,0,300,300,1,0.5,0.5,[],[],3]]]],[],false,false,428987806910841,[],null],["t22",4,false,[],0,0,null,[["Default",5,false,1,0,false,742348772710335,[["images/imageframe-sheet0.png",480519,0,0,1183,1101,1,0.5004226565361023,0.5004541277885437,[],[-0.4175824522972107,-0.4114441275596619,-0.0008456707000732422,-0.4977293312549591,0.4530853629112244,-0.4504995346069336,0.4699913263320923,0.4677568674087524,-0.0008456707000732422,0.4822888970375061,-0.4725274443626404,0.4695728421211243],0]]]],[],false,false,989306383067724,[],null],["t23",4,false,[],2,0,null,[["Default",5,false,1,0,false,718698471191851,[["images/newwords-sheet0.png",10914,0,0,136,76,1,0.5,0.5,[],[-0.3404409885406494,-0.2174479961395264,0,-0.4433594048023224,0.1834560036659241,0.06054699420928955,0.1808819770812988,0,0.3154410123825073,0.1731770038604736,0,0.3815100193023682,-0.3683820068836212,0.2669270038604736,-0.25,0],0]]]],[["Anchor",14,765999419241711],["Fade",8,627907523964163]],false,false,789494043049415,[],null]],[],[["Game",1200,1200,false,"Game",288730111597454,[["Layer 0",0,763235347287340,true,[255,255,255],true,0,0,1,false,false,0,0,0,[[[580,532,0,2858.676025390625,2678.729248046875,0,0,0.1000000014901161,0.5,0.5,0,0,[]],19,25,[[0]],[],[0,"Default",0,1]],[[616.50048828125,356.50048828125,0,516.9990234375,516.9990234375,0,0,1,0.5,0.5,0,0,[]],21,31,[[""]],[],[0,"Default",0,1]],[[1119.002563476563,1027.569946289063,0,105,242,0,0,1,0.5,0.5006418228149414,0,0,[]],16,19,[],[[1,0.5,0,0,1],[1,1,1,1,1]],[1,"Default",0,1]],[[-1784,-72,0,241.2059936523438,128,0,0,1,0.5025125741958618,0.5058823823928833,0,0,[]],0,3,[[0],[0],[-1],[""],[0],[0],[0]],[[1,3000,1500,1500],[1,1,0,0,0],[0,1],[0,7,17,"current","100, 100",0.3,"0,0",0,0,0,0,""],[0,7,5,"current","100, 100",0.3,"0,0",0,0,0,0,""]],[0,"Default",0,1]],[[-3213,680,0,241.2059936523438,128,0,0,1,0.5025125741958618,0.5,0,0,[]],4,9,[[-1],[0],[""],[0],[0]],[[1,1,0,0,0]],[0,"Default",1,1]],[[-3356,1133,0,260.8450012207031,114.8960037231445,0,0,1,0.5,0.5,0,0,[]],8,18,[],[[],[1,1,0,0,0]],["Answer",0,"bold 36pt Arial","rgb(255,255,255)",1,1,4,0,0]],[[1122.528442382813,1143.801879882813,0,147.1492614746094,114.0406723022461,0,0,1,0.5166666507720947,0.4892473220825195,0,0,[]],12,2,[[0]],[[1,1,1,1,1],[1,1,0,0,0],[0,2,0,0.5,0,0,0,10,0]],[0,"Default",0,1]],[[1058.62646484375,49.94869232177734,0,259.5465087890625,78.43680572509766,0,0,1,0.5008488893508911,0.5,0,0,[]],13,12,[],[[1,0,1,0,1]],[0,"Default",0,1]],[[1070.251831054688,47.12616729736328,0,141,43.34921264648438,0,0,1,0.5,0.5,0,0,[]],9,8,[],[[],[1,1,0,0,0]],["Text",0,"bold 23pt Comic Sans MS","rgb(255,255,255)",1,1,4,0,0]],[[-3089,1143,0,260.8450012207031,114.8960037231445,0,0,1,0.5,0.5,0,0,[]],14,1,[],[[],[1,1,0,0,0]],["Slot",0,"bold 36pt Arial","rgb(255,255,255)",1,1,4,0,0]],[[1120,1052.932983398438,0,70,70,0,0,1,0.5031055808067322,0.5031847357749939,0,0,[]],15,11,[[0]],[[1,0.5,0,0,0],[],[1,1,1,1,1]],[1,"Default",0,1]],[[630,1098,0,212.5639190673828,141.2751617431641,0,0,1,0.5010225176811218,0.5015384554862976,0,0,[]],5,17,[],[[],[1,2,0,3,0,0,0,15,0],[1,1,0,0,0]],[1,"Default",0,1]],[[-3211,245,0,157.4040069580078,165.6880035400391,0,0,1,0.5,0.5,0,0,[]],10,23,[],[[1,0.5,0.5,0.5,1],[]],[0,"Default",0,1]],[[-2882,230,0,157.4039306640625,165.6883544921875,0,0,1,0.5,0.5071428418159485,0,0,[]],11,39,[],[[1,0.5,0.5,0.5,1],[]],[0,"Default",0,1]],[[1120,980.676025390625,0,70,70,0,0,1,0.5031055808067322,0.5031847357749939,0,0,[]],17,6,[[0]],[[],[1,0.5,0,0,1],[1,1,1,1,1]],[1,"Default",0,1]],[[600,360,0,629.3758544921875,629.3758544921875,0,0,1,0.5004226565361023,0.5004541277885437,0,0,[]],22,20,[],[],[0,"Default",0,1]],[[132.3079223632813,74.30790710449219,0,13.1903133392334,7.371057987213135,0,0,1,0.5,0.5,0,0,[]],23,21,[],[[0,0,0,0,1],[1,1,0,0,0]],[0,"Default",0,1]],[[132.3079986572266,74.30799865722656,0,263.8059997558594,148.9730072021484,0,0,1,0.5,0.5,0,0,[]],23,4,[],[[0,0,0,0,1],[1,1,0,0,0]],[0,"Default",0,1]]],[]],["Layer 2",1,317623978877020,false,[255,255,255],true,0,0,1,false,false,1,0,0,[[[628,605,0,2858.676025390625,2678.729248046875,0,0,0.699999988079071,0.5,0.5,0,0,[]],19,32,[[2]],[],[0,"Default",0,1]],[[642,568,0,640.9500732421875,640.9500732421875,0,0,1,0.5,0.5,0,0,[]],18,22,[],[],[0,"Default",0,1]]],[]]],[],[]]],[["Game",[[1,"gameState",1,"loading",false,false,539503153258101,false],[1,"OptionIndex",0,0,false,false,701702298089281,false],[1,"CurrentTime",0,10,false,false,706573264547386,false],[1,"FinalAnswer",1,"",false,false,342353772129151,false],[1,"FilledCount",0,0,false,false,377137633613480,false],[1,"tempScale",0,1,false,false,529411214032395,false],[0,null,false,null,549205817072564,[[-1,15,null,1,false,false,false,597870668036321,false]],[[6,16,null,287858449598328,false,[[2,["fm-freemusic-give-me-a-smile(chosic.com)",false]],[3,1],[0,[0,-20]],[1,[2,"bgm"]]]],[3,17,null,484332265761879,false,[[1,[2,"var script = document.createElement('script'); \nscript.src = 'tdv_sdk.js'; \nscript.onload = function() { tdv_sdk.load(); }; \ndocument.head.appendChild(script);"]]]],[9,18,null,151341647124838,false,[[0,[4,[20,9,19,false,null],[0,5]]]]],[9,20,"Pin",728791452299543,false,[[4,13],[3,0]]],[-1,21,null,530641639162875,false,[[0,[1,0.2]]]],[20,22,null,202557125263620,false]]],[0,null,false,null,768327268818740,[[20,23,null,1,false,false,false,157854561629165,false]],[[3,24,null,422861079647713,false,[[3,0],[7,[2,"Load dữ liệu xong"]]]],[3,24,null,445625785202613,false,[[3,0],[7,[20,20,25,true,null]]]]],[[0,null,false,null,939160499379423,[],[[20,26,null,112633710369332,false],[2,27,null,215312930941469,false,[[1,[2,"SetupUI"]],[13]]],[-1,21,null,253371712570850,false,[[0,[1,0.2]]]],[-1,28,null,486133403026538,false,[[11,"gameState"],[7,[2,"playing"]]]],[0,29,"DragDrop",702939057496858,false,[[3,1]]],[3,24,null,810649571245244,false,[[3,0],[7,[10,[2,"SenaAI Loaded & Started! Options count: "],[20,20,30,false,null]]]]],[21,31,null,310599052911762,false,[[1,[20,20,32,true,null]],[3,1],[3,0]]],[3,24,null,821665902069313,false,[[3,0],[7,[2,"✅ Load ảnh thành công!"]]]]]]]],[0,null,false,null,469683343531114,[[2,33,null,2,false,false,false,635946395803157,false,[[1,[2,"SetupUI"]]]]],[[-1,28,null,584838430715545,false,[[11,"tempScale"],[7,[19,34,[[1,0.6],[5,[1,0.85],[6,[5,[20,20,35,false,null],[0,5]],[1,0.02]]]]]]]],[-1,28,null,703212432169515,false,[[11,"OptionIndex"],[7,[0,0]]]],[8,36,null,365590215852144,false],[14,36,null,486127358962458,false],[4,37,null,633440992906642,false],[0,37,null,413353137320859,false],[20,38,null,721103392706320,false,[[0,[20,20,35,false,null]],[0,[6,[0,170],[23,"tempScale"]]],[0,[6,[0,80],[23,"tempScale"]]],[0,[19,39]],[0,[0,5]],[0,[0,110]],[1,[2,""]],[0,[0,0]]]],[-1,21,null,294999106583991,false,[[0,[1,0.1]]]]],[[0,null,false,null,818772103770432,[[-1,40,null,0,true,false,false,555929416085788,false,[[0,[20,20,35,false,null]]]]],[],[[0,null,false,null,547242560835316,[[-1,41,null,0,false,false,false,877854197778405,false,[[7,[20,20,42,false,null,[[19,43]]]],[8,0],[7,[2,"_"]]]]],[[-1,44,null,529231940398402,false,[[4,4],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[4,45,null,967054670316694,false,[[0,[20,20,46,false,null,[[19,43]]]]]],[4,47,null,209456412894052,false,[[0,[4,[0,750],[20,20,48,false,null,[[19,43]]]]]]],[4,49,null,330242308364274,false,[[0,[0,1]]]],[4,50,null,279735605037743,false,[[10,4],[7,[0,0]]]],[4,50,null,366398683821733,false,[[10,0],[7,[19,43]]]],[4,51,null,237476653512591,false,[[0,[6,[0,240],[23,"tempScale"]]]]],[4,52,null,194195365471827,false,[[0,[6,[0,128],[23,"tempScale"]]]]],[-1,44,null,218183575300166,false,[[4,14],[5,[0,0]],[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[14,55,null,719798625156369,false,[[7,[21,4,true,null,2]]]],[14,56,null,381190661272932,false,[[0,[6,[0,36],[23,"tempScale"]]]]],[14,20,"Pin",144161831841828,false,[[4,4],[3,0]]],[-1,44,null,158804323397018,false,[[4,0],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[0,45,null,297232278697438,false,[[0,[20,20,46,false,null,[[19,43]]]]]],[0,51,null,639732653866588,false,[[0,[6,[0,240],[23,"tempScale"]]]]],[0,52,null,895140568876541,false,[[0,[6,[0,128],[23,"tempScale"]]]]],[0,47,null,587783740511114,false,[[0,[4,[0,1000],[20,20,48,false,null,[[19,43]]]]]]],[0,50,null,477751173409160,false,[[10,0],[7,[20,0,53,false,null]]]],[0,50,null,624620079132936,false,[[10,1],[7,[20,0,54,false,null]]]],[0,50,null,467295429465343,false,[[10,5],[7,[20,0,57,false,null]]]],[0,50,null,570907618326780,false,[[10,4],[7,[20,0,58,false,null]]]],[0,50,null,305816140066103,false,[[10,3],[7,[20,20,59,true,null,[[23,"OptionIndex"]]]]]],[0,50,null,208275951093237,false,[[10,6],[7,[23,"OptionIndex"]]]],[-1,44,null,700391576578773,false,[[4,8],[5,[0,0]],[0,[20,0,53,false,null]],[0,[20,0,54,false,null]]]],[8,55,null,887582977485405,false,[[7,[21,0,true,null,3]]]],[8,56,null,510242040434741,false,[[0,[6,[0,60],[23,"tempScale"]]]]],[8,20,"Pin",536232156900253,false,[[4,0],[3,0]]],[-1,60,null,980517036151889,false,[[11,"OptionIndex"],[7,[0,1]]]],[3,24,null,291934968882690,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Loop: "],[19,43]],[2," | Hint: "]],[20,20,42,false,null,[[19,43]]]],[2," | PosX: "]],[20,20,46,false,null,[[19,43]]]]]]]]],[0,null,false,null,851574752132902,[[-1,61,null,0,false,false,false,420650084225255,false]],[[-1,44,null,841906877163449,false,[[4,4],[5,[0,0]],[0,[0,0]],[0,[0,0]]]],[4,45,null,954639983072654,false,[[0,[20,20,46,false,null,[[19,43]]]]]],[4,47,null,959613845047857,false,[[0,[4,[0,750],[20,20,48,false,null,[[19,43]]]]]]],[4,49,null,931727243563350,false,[[0,[0,0]]]],[4,50,null,156362694834211,false,[[10,4],[7,[0,1]]]],[4,50,null,169994928317654,false,[[10,0],[7,[19,43]]]],[4,51,null,837822934719717,false,[[0,[6,[0,240],[23,"tempScale"]]]]],[4,52,null,276919506051685,false,[[0,[6,[0,128],[23,"tempScale"]]]]],[-1,44,null,236430930253943,false,[[4,14],[5,[0,0]],[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[14,62,null,646874567585831,false],[14,55,null,306273385789856,false,[[7,[20,20,42,false,null,[[19,43]]]]]],[14,56,null,544208413938390,false,[[0,[6,[0,60],[23,"tempScale"]]]]],[14,20,"Pin",285484337748885,false,[[4,4],[3,0]]]]]]]]],[0,null,false,null,885232395664091,[[0,63,"DragDrop",1,false,false,false,462077248880784,false],[0,64,"DragDrop",0,false,false,false,881833931574563,false]],[[6,16,null,765474901635440,false,[[2,["card_drag",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[0,65,null,397403794429243,false],[0,66,"EaseTween",798607807460393,false,[[1,[10,[10,[6,[21,0,false,null,5],[1,1.25]],[2,","]],[6,[21,0,false,null,4],[1,1.25]]]]]],[0,67,"EaseTween",333043575480598,false]],[[0,null,false,null,715788682150145,[[-1,68,null,0,false,false,false,686462805859677,false,[[4,4],[7,[21,4,false,null,0]],[8,0],[7,[21,0,false,null,2]]]],[0,69,null,0,false,false,false,975555513158536,false,[[10,2],[8,1],[7,[0,-1]]]]],[[0,50,null,363961653226411,false,[[10,2],[7,[0,-1]]]],[4,50,null,745135912100760,false,[[10,4],[7,[0,0]]]],[2,27,null,741791155071768,false,[[1,[2,"CheckSubmitState"]],[13]]]]],[0,null,false,null,193892616913206,[[0,70,null,0,false,false,false,297897281213159,false,[[4,8]]]],[[8,62,null,812019026325329,false]]]]],[0,null,false,null,876456068332522,[[0,71,"DragDrop",1,false,false,false,792974910922911,false]],[[0,66,"EaseTween2",312326656063231,false,[[1,[10,[10,[21,0,false,null,5],[2,","]],[21,0,false,null,4]]]]],[0,67,"EaseTween2",997643361117365,false]],[[0,null,false,null,962248118287846,[[0,70,null,0,false,false,false,124677826324657,false,[[4,4]]],[4,69,null,0,false,false,false,852890087723952,false,[[10,4],[8,0],[7,[0,0]]]]],[[6,16,null,400234397175915,false,[[2,["pop-reverb-423718",false]],[3,0],[0,[0,-5]],[1,[2,""]]]],[0,72,null,464777312492432,false,[[0,[20,4,53,false,null]],[0,[20,4,54,false,null]]]],[4,50,null,413746821094201,false,[[10,4],[7,[0,1]]]],[0,50,null,290353637263798,false,[[10,2],[7,[21,4,false,null,0]]]],[0,51,null,262746395317933,false,[[0,[20,4,57,false,null]]]],[4,52,null,930580622453040,false,[[0,[20,4,58,false,null]]]],[2,27,null,648297693202608,false,[[1,[2,"CheckSubmitState"]],[13]]]]],[0,null,false,null,544622279635595,[[-1,61,null,0,false,false,false,108034191530448,false]],[[6,16,null,457959652468953,false,[[2,["card_swipe",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[0,72,null,722026847214927,false,[[0,[21,0,false,null,0]],[0,[21,0,false,null,1]]]],[2,27,null,174110906329546,false,[[1,[2,"CheckSubmitState"]],[13]]]]]]],[0,null,false,null,903256601857551,[[2,33,null,2,false,false,false,553171385010499,false,[[1,[2,"CheckSubmitState"]]]]],[[-1,28,null,151584341392847,false,[[11,"FilledCount"],[7,[0,0]]]]],[[0,null,false,null,326454811928491,[[-1,73,null,0,true,false,false,900563057628926,false,[[4,0]]]],[],[[0,null,false,null,512468327333204,[[0,69,null,0,false,false,false,273625493381606,false,[[10,2],[8,1],[7,[0,-1]]]]],[[-1,60,null,427897992150255,false,[[11,"FilledCount"],[7,[0,1]]]]]]]],[0,null,false,null,197957600391126,[[-1,74,null,0,false,false,false,676094959731453,false,[[11,"FilledCount"],[8,0],[7,[20,0,75,false,null]]]]],[[5,76,null,871171250612987,false,[[3,1]]]]],[0,null,false,null,830039838453468,[[-1,61,null,0,false,false,false,540974332855602,false]],[[5,76,null,801779902196330,false,[[3,0]]]]]]],[0,null,false,null,956282998966849,[[1,77,null,1,false,false,false,460379891558451,false,[[4,5]]],[5,78,null,0,false,false,false,271469166922398,false]],[[20,79,null,658653282719226,false],[-1,28,null,529456506010094,false,[[11,"FinalAnswer"],[7,[2,""]]]],[6,16,null,813632462410441,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,80,"Flash",388147726390308,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,725241333542329,false,[[0,[1,0.5]]]]],[[0,null,false,null,667347878010134,[[-1,40,null,0,true,false,false,389186915205398,false,[[0,[20,20,35,false,null]]]]],[],[[0,null,false,null,631589558920999,[[-1,41,null,0,false,false,false,253358370212568,false,[[7,[20,20,42,false,null,[[19,43]]]],[8,0],[7,[2,"_"]]]]],[],[[0,null,false,null,403636493907996,[[0,69,null,0,false,false,false,526836686186341,false,[[10,2],[8,0],[7,[19,43]]]]],[[-1,28,null,245728951174934,false,[[11,"FinalAnswer"],[7,[10,[10,[23,"FinalAnswer"],[21,0,true,null,3]],[2,"|"]]]]]]]]],[0,null,false,null,998053537243308,[[-1,61,null,0,false,false,false,403067100774907,false]],[[-1,28,null,357495810182952,false,[[11,"FinalAnswer"],[7,[10,[10,[23,"FinalAnswer"],[20,20,42,false,null,[[19,43]]]],[2,"|"]]]]]]]]],[0,null,false,null,903901720494647,[[-1,74,null,0,false,false,false,745073279826626,false,[[11,"FinalAnswer"],[8,1],[7,[2,""]]]]],[[-1,28,null,814546508270084,false,[[11,"FinalAnswer"],[7,[19,81,[[23,"FinalAnswer"],[5,[19,82,[[23,"FinalAnswer"]]],[0,1]]]]]]],[20,83,null,171040983658447,false,[[7,[23,"FinalAnswer"]]]],[5,76,null,498358887136483,false,[[3,0]]]]]]],[0,null,false,null,961823775126713,[[20,84,null,1,false,false,false,119018979468992,false]],[[0,29,"DragDrop",205409471313749,false,[[3,0]]],[6,16,null,634975830871135,false,[[2,["alert-234711",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,76,null,486294929517038,false,[[3,0]]],[-1,21,null,166118146748558,false,[[0,[1,0.1]]]],[-1,44,null,786114696442570,false,[[4,11],[5,[0,0]],[0,[20,5,53,false,null]],[0,[20,5,54,false,null]]]],[-1,21,null,609402064923823,false,[[0,[0,2]]]],[20,79,null,518261006133178,false]]],[0,null,false,null,433043078641250,[[20,85,null,1,false,false,false,889460128806113,false]],[[0,29,"DragDrop",146493902040842,false,[[3,0]]],[6,16,null,221256152272583,false,[[2,["error-010-206498",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[5,76,null,523842542618557,false,[[3,0]]],[-1,21,null,773344591454861,false,[[0,[1,0.1]]]],[-1,44,null,165468245100549,false,[[4,10],[5,[0,0]],[0,[20,5,53,false,null]],[0,[20,5,54,false,null]]]],[-1,21,null,585683943374630,false,[[0,[0,2]]]],[20,79,null,192197113002945,false]]],[0,null,false,null,305413044561801,[[-1,86,null,0,false,false,false,337036644147098,false],[-1,74,null,0,false,false,false,635967494112949,false,[[11,"gameState"],[8,0],[7,[2,"playing"]]]]],[[-1,28,null,978291331980230,false,[[11,"CurrentTime"],[7,[19,34,[[0,0],[5,[20,20,87,false,null],[20,20,88,false,null]]]]]]],[9,55,null,899951685623283,false,[[7,[19,89,[[23,"CurrentTime"]]]]]]],[[0,null,false,null,160552091445616,[[-1,74,null,0,false,false,false,812605816898326,false,[[11,"CurrentTime"],[8,0],[7,[0,0]]]],[-1,74,null,0,false,false,false,792184163830960,false,[[11,"gameState"],[8,0],[7,[2,"playing"]]]]],[],[[0,null,false,null,197153245673402,[[-1,90,null,0,false,false,false,676651290174087,false]],[[-1,28,null,617362064114178,false,[[11,"FinalAnswer"],[7,[2,""]]]],[20,79,null,155532853895121,false],[0,29,"DragDrop",256788591439037,false,[[3,0]]],[20,83,null,624217562823456,false,[[7,[23,"FinalAnswer"]]]],[-1,21,null,516409927656875,false,[[0,[1,0.5]]]],[-1,28,null,133441521269119,false,[[11,"gameState"],[7,[2,"loading"]]]]]]]]]],[0,null,false,null,312687717900328,[[1,77,null,1,false,false,false,444391347231568,false,[[4,17]]],[17,69,null,0,false,false,false,165882449365670,false,[[10,0],[8,0],[7,[0,0]]]],[17,78,null,0,false,false,false,218006519748153,false]],[[17,49,null,744920239729365,false,[[0,[0,1]]]],[6,16,null,814990443653107,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[17,80,"Flash",288546904750114,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,225438922954531,false,[[0,[1,0.5]]]],[6,91,null,554558762518759,false,[[1,[2,"bgm"]],[3,0]]],[17,50,null,117506203877028,false,[[10,0],[7,[0,1]]]]]],[0,null,false,null,983825517389982,[[1,77,null,1,false,false,false,177138363351836,false,[[4,17]]],[17,69,null,0,false,false,false,772247454962354,false,[[10,0],[8,0],[7,[0,1]]]],[17,78,null,0,false,false,false,420178685359629,false]],[[17,49,null,552019651456125,false,[[0,[0,0]]]],[6,16,null,197222371360236,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[17,80,"Flash",270092195858284,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,326299332281639,false,[[0,[1,0.5]]]],[6,91,null,964958154773645,false,[[1,[2,"bgm"]],[3,1]]],[17,50,null,506698549832256,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,294769773047529,[[1,77,null,1,false,false,false,352106017539969,false,[[4,15]]],[15,69,null,0,false,false,false,358413375274332,false,[[10,0],[8,0],[7,[0,0]]]],[15,78,null,0,false,false,false,721902056257835,false]],[[20,79,null,431466008645395,false],[15,49,null,981623485925509,false,[[0,[0,1]]]],[6,16,null,547261484638917,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[15,80,"Flash",221991481168028,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,851078194326314,false,[[0,[1,0.5]]]],[-1,92,null,402526527434402,false,[[5,[0,2]],[3,1]]],[0,76,null,855238512615337,false,[[3,0]]],[4,76,null,207839358302464,false,[[3,0]]],[8,93,null,222466351625496,false,[[3,0]]],[14,93,null,251839098840947,false,[[3,0]]],[21,76,null,153839374117437,false,[[3,0]]],[22,76,null,665223389941520,false,[[3,0]]],[0,29,"DragDrop",759856544888894,false,[[3,0]]],[6,91,null,706457060725101,false,[[1,[2,"bgm"]],[3,0]]],[15,50,null,399990244603092,false,[[10,0],[7,[0,1]]]]]],[0,null,false,null,532748443231555,[[1,77,null,1,false,false,false,419213596136778,false,[[4,15]]],[15,69,null,0,false,false,false,926326957937606,false,[[10,0],[8,0],[7,[0,1]]]],[15,78,null,0,false,false,false,804823921411396,false]],[[20,94,null,977450185168128,false],[15,49,null,670063708965675,false,[[0,[0,0]]]],[6,16,null,372275331971085,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[15,80,"Flash",113742305896573,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,900385124097116,false,[[0,[1,0.5]]]],[-1,92,null,695331528906453,false,[[5,[0,2]],[3,0]]],[0,76,null,338279072626337,false,[[3,1]]],[4,76,null,371330338747864,false,[[3,1]]],[8,93,null,358503142678550,false,[[3,1]]],[14,93,null,192887026023526,false,[[3,1]]],[21,76,null,584652547292123,false,[[3,1]]],[22,76,null,409790138347585,false,[[3,1]]],[0,29,"DragDrop",886574462493362,false,[[3,1]]],[6,91,null,693317578489009,false,[[1,[2,"bgm"]],[3,1]]],[15,50,null,468211770946126,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,297063884609973,[[1,77,null,1,false,false,false,386622849542303,false,[[4,18]]],[-1,95,null,0,false,false,false,363257598466262,false,[[5,[0,2]]]]],[[20,94,null,815752088305315,false],[15,49,null,209418858141601,false,[[0,[0,0]]]],[6,16,null,892125720911145,false,[[2,["bubble-pop-389501",false]],[3,0],[0,[0,10]],[1,[2,""]]]],[15,80,"Flash",926038900680013,false,[[0,[1,0.1]],[0,[1,0.1]],[0,[1,0.4]]]],[-1,21,null,821647409423555,false,[[0,[1,0.5]]]],[-1,92,null,480813966183110,false,[[5,[0,2]],[3,0]]],[0,76,null,876609529855384,false,[[3,1]]],[4,76,null,136625999145606,false,[[3,1]]],[8,93,null,927964586528148,false,[[3,1]]],[14,93,null,155360850450853,false,[[3,1]]],[21,76,null,825641412491834,false,[[3,1]]],[22,76,null,539962716879397,false,[[3,1]]],[0,29,"DragDrop",695861965483617,false,[[3,1]]],[6,91,null,652969105932762,false,[[1,[2,"bgm"]],[3,1]]],[15,50,null,943722776633160,false,[[10,0],[7,[0,0]]]]]],[0,null,false,null,792955897157891,[[2,33,null,2,false,false,false,979301415560581,false,[[1,[2,"Fade"]]]]],[[16,96,"Fade",820129408251933,false],[15,96,"Fade",948221853487772,false],[17,96,"Fade",225126965271644,false]]],[0,null,false,null,955859035444991,[[1,77,null,1,false,false,false,518910668901033,false,[[4,12]]],[12,69,null,0,false,false,false,290396959315441,false,[[10,0],[8,0],[7,[0,0]]]]],[[6,16,null,444001414569356,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[12,97,"Sine",818098073409429,false,[[3,1]]],[-1,21,null,441096782479652,false,[[0,[1,0.5]]]],[16,76,null,794558327843409,false,[[3,1]]],[15,76,null,679301757369962,false,[[3,1]]],[17,76,null,767519360841597,false,[[3,1]]],[2,27,null,793350220956891,false,[[1,[2,"Fade"]],[13]]],[12,50,null,261563617571114,false,[[10,0],[7,[0,1]]]],[12,97,"Sine",245771226696928,false,[[3,0]]]]],[0,null,false,null,467571648016628,[[1,77,null,1,false,false,false,432350690749805,false,[[4,12]]],[12,69,null,0,false,false,false,815726735468093,false,[[10,0],[8,0],[7,[0,1]]]]],[[6,16,null,747877391706105,false,[[2,["button-124476",false]],[3,0],[0,[0,0]],[1,[2,""]]]],[12,97,"Sine",128949433029818,false,[[3,1]]],[-1,21,null,827176291493130,false,[[0,[1,0.5]]]],[16,76,null,591127776141805,false,[[3,0]]],[15,76,null,854152891397620,false,[[3,0]]],[17,76,null,646200193534642,false,[[3,0]]],[-1,21,null,891033434354753,false,[[0,[1,0.1]]]],[12,50,null,461824223198453,false,[[10,0],[7,[0,0]]]],[12,97,"Sine",784451994863195,false,[[3,0]]]]]]]],[["alert-234711.ogg",23907],["bubble-pop-389501.ogg",18257],["button-124476.ogg",13157],["collect-5930.ogg",10731],["error-010-206498.ogg",11425],["error-08-206492.ogg",15621],["pop-reverb-423718.ogg",23653],["fm-freemusic-give-me-a-smile(chosic.com).ogg",2747008],["card_drag.ogg",7213],["card_flips.ogg",8015],["card_swipe.ogg",9018]],"media/",false,1200,1200,3,true,true,true,"1.0.0.0",true,false,3,0,40,false,true,1,true,"SQ_Word_Hint-Image",0,[]]}
\ No newline at end of file
diff --git a/SQ_Word_Hint-Image/images/newwords-sheet0.png b/SQ_Word_Hint-Image/images/newwords-sheet0.png
index cb3ea60..e9f83ac 100644
Binary files a/SQ_Word_Hint-Image/images/newwords-sheet0.png and b/SQ_Word_Hint-Image/images/newwords-sheet0.png differ
diff --git a/SQ_Word_Hint-Image/index.html b/SQ_Word_Hint-Image/index.html
index b483517..87fe43e 100644
--- a/SQ_Word_Hint-Image/index.html
+++ b/SQ_Word_Hint-Image/index.html
@@ -81,7 +81,7 @@
-
+
diff --git a/SQ_Word_Hint-Image/offline.js b/SQ_Word_Hint-Image/offline.js
index 28912de..884a94a 100644
--- a/SQ_Word_Hint-Image/offline.js
+++ b/SQ_Word_Hint-Image/offline.js
@@ -1,5 +1,5 @@
{
- "version": 1772000848,
+ "version": 1772103471,
"fileList": [
"data.js",
"c2runtime.js",
@@ -8,30 +8,13 @@
"images/answers-sheet0.png",
"images/slot-sheet0.png",
"images/submit-sheet0.png",
- "images/txt_instructions.png",
- "images/btn_submit2-sheet0.png",
- "images/btn_next-sheet0.png",
- "images/btn_play-sheet0.png",
- "images/btn_play-sheet1.png",
- "images/frame_door-sheet0.png",
- "images/frame_door_left-sheet0.png",
- "images/frame_door_right-sheet0.png",
- "images/hand_right-sheet0.png",
- "images/hand_left-sheet0.png",
"images/sprite-sheet0.png",
- "images/khung_thoai-sheet0.png",
- "images/khung-sheet0.png",
- "images/avatar-sheet0.png",
- "images/frame_score-sheet0.png",
- "images/sena_ui_frame_intro-sheet0.png",
"images/wrong-sheet0.png",
"images/correct-sheet0.png",
"images/setting-sheet0.png",
- "images/khung_score-sheet0.png",
"images/khung_timer-sheet0.png",
"images/pause-sheet0.png",
"images/pause-sheet1.png",
- "images/help-sheet0.png",
"images/board-sheet0.png",
"images/bgm-sheet0.png",
"images/bgm-sheet1.png",
@@ -40,33 +23,13 @@
"images/hint-sheet0.png",
"images/imageframe-sheet0.png",
"images/newwords-sheet0.png",
- "media/bg.m4a",
- "media/bg.ogg",
- "media/click.m4a",
- "media/click.ogg",
- "media/correct.m4a",
- "media/correct.ogg",
- "media/fail.m4a",
- "media/fail.ogg",
"media/alert-234711.ogg",
"media/bubble-pop-389501.ogg",
"media/button-124476.ogg",
- "media/click-234708.ogg",
"media/collect-5930.ogg",
- "media/edugamery-music-13.ogg",
"media/error-010-206498.ogg",
"media/error-08-206492.ogg",
- "media/fail-234710.ogg",
- "media/interface-2-126517.ogg",
- "media/material-buy-success-394517.ogg",
- "media/pick-92276.ogg",
"media/pop-reverb-423718.ogg",
- "media/retro-explode-1-236678.ogg",
- "media/sample_input_typing01_kofi_by_miraclei-363634.ogg",
- "media/edugamery-music-18.ogg",
- "media/edugamery-music-20.ogg",
- "media/edugamery-music-5.ogg",
- "media/edugamery-music-6.ogg",
"media/fm-freemusic-give-me-a-smile(chosic.com).ogg",
"media/card_drag.ogg",
"media/card_flips.ogg",
@@ -77,7 +40,6 @@
"icon-128.png",
"icon-256.png",
"loading-logo.png",
- "bg.mp4",
"sena_sdk.js"
]
}
\ No newline at end of file
diff --git a/SQ_Word_Hint-Image/sena_sdk.js b/SQ_Word_Hint-Image/sena_sdk.js
index 5649be2..842dc70 100644
--- a/SQ_Word_Hint-Image/sena_sdk.js
+++ b/SQ_Word_Hint-Image/sena_sdk.js
@@ -333,7 +333,7 @@ SenaSDK.prototype.getTotalQuestions = function () {
};
// Settings cho postMessage waiting
-SenaSDK.prototype.POSTMESSAGE_TIMEOUT_MS = 3000; // 5 giây (chỉ dùng cho preview mode)
+SenaSDK.prototype.POSTMESSAGE_TIMEOUT_MS = 1000; // 5 giây (chỉ dùng cho preview mode)
SenaSDK.prototype.load = function (callback, template = "G2510S1T30") {
let self = this;
diff --git a/source/SQ_Word_Hint-Image.capx b/source/SQ_Word_Hint-Image.capx
index cd99f30..b2f0a29 100644
Binary files a/source/SQ_Word_Hint-Image.capx and b/source/SQ_Word_Hint-Image.capx differ