diff --git a/audio_spelling_sequence_sentence_teacher/c2runtime.js b/audio_spelling_sequence_sentence_teacher/c2runtime.js index 9a2baba..6219e95 100644 --- a/audio_spelling_sequence_sentence_teacher/c2runtime.js +++ b/audio_spelling_sequence_sentence_teacher/c2runtime.js @@ -19820,6 +19820,9 @@ cr.plugins_.SenaPlugin = function (runtime) { instanceProto.onCreate = function () { console.log("๐Ÿ”ฅ LOAD CALLBACK FIRED"); window["SenaTrigger"] = this; + this.widthArray = []; + this.slotInstances = []; + this.slotPositions = []; this.sdk = null; this.isPaused = false; this.pauseTime = 0; @@ -19875,6 +19878,15 @@ cr.plugins_.SenaPlugin = function (runtime) { Cnds.prototype.OnMessage = function () { return true; }; + Cnds.prototype.OnWordLayoutFinished = function () { + return true; + }; + Cnds.prototype.OnSlotLayoutFinished = function () { + return true; + }; + Cnds.prototype.OnSlotLayoutFinished2 = function () { + return true; +}; pluginProto.cnds = new Cnds(); function Acts() {} Acts.prototype.Load = function () { @@ -19915,6 +19927,12 @@ Acts.prototype.Load = function () { console.error("SenaSDK not found"); this.isLoading = false; } +}; +Acts.prototype.SetObjectWidth = function (index, width) { + if (!this.widthArray) { + this.widthArray = []; + } + this.widthArray[index] = width; }; Acts.prototype.Start = function () { var self = this; @@ -20019,52 +20037,87 @@ Acts.prototype.Load = function () { this.totalPausedTime = 0; } }; - Acts.prototype.CalcObjectPositions = function ( - count, - objectWidth, - margin, - maxWidth, - rowBreak, - rowGap, - type, - groupGap - ) { - this.calculatedPositions = []; - if (count <= 0) return; - var rows = []; - if (rowBreak > 0) { - for (var i = 0; i < count; i += rowBreak) { - rows.push(Math.min(rowBreak, count - i)); - } +Acts.prototype.CalcObjectPositions = function ( + count, + objectWidth, + margin, + maxWidth, + rowBreak, + rowGap, + type, + groupGap +) { + var widthArray = this.widthArray || []; + if (!widthArray.length) { + console.warn("widthArray empty, fallback to objectWidth"); + widthArray = new Array(count).fill(objectWidth); + } + this.calculatedPositions = []; + if (count <= 0) { + this.runtime.trigger( + cr.plugins_.SenaPlugin.prototype.cnds.OnCalculateFinished, + this + ); + return; + } + var rows = []; + if (rowBreak > 0) { + for (var i = 0; i < count; i += rowBreak) { + rows.push(Math.min(rowBreak, count - i)); + } + } else { + if (count <= 5) { + rows.push(count); } else { - if (count <= 5) { - rows.push(count); - } else { - var top = Math.ceil((count + 1) / 2); - var bottom = count - top; - rows.push(top); - rows.push(bottom); - } + var top = Math.ceil((count + 1) / 2); + var bottom = count - top; + rows.push(top); + rows.push(bottom); } - var baseY = 0; - if (type === "word") { - baseY = groupGap || (rowGap * rows.length); // word always below slot + } + var baseY = 0; + if (type === "word") { + baseY = groupGap || (rowGap * rows.length); + } + var index = 0; + for (var r = 0; r < rows.length; r++) { + var itemsInRow = rows[r]; + var rowWidth = 0; + for (var i = 0; i < itemsInRow; i++) { + rowWidth += widthArray[index + i] || objectWidth; } - var index = 0; - for (var r = 0; r < rows.length; r++) { - var itemsInRow = rows[r]; - var rowWidth = itemsInRow * objectWidth + (itemsInRow - 1) * margin; - var startX = (maxWidth - rowWidth) / 2; - for (var i = 0; i < itemsInRow; i++) { - this.calculatedPositions.push({ - x: startX + i * (objectWidth + margin) + objectWidth / 2, - y: baseY + r * rowGap - }); - index++; - } + rowWidth += (itemsInRow - 1) * margin; + var startX = (maxWidth - rowWidth) / 2; + var currentX = startX; + for (var i = 0; i < itemsInRow; i++) { + var w = widthArray[index] || objectWidth; + this.calculatedPositions.push({ + x: currentX + w / 2, + y: baseY + r * rowGap + }); + currentX += w + margin; + index++; } - console.log("Calculated positions (multi-row):", this.calculatedPositions); - }; + } + console.log("Calculated positions:", this.calculatedPositions); + if (type === "word") { + this.runtime.trigger( + cr.plugins_.SenaPlugin.prototype.cnds.OnWordLayoutFinished, + this + ); + } else if (type === "slot") { + this.runtime.trigger( + cr.plugins_.SenaPlugin.prototype.cnds.OnSlotLayoutFinished, + this + ); + } + else if (type === "slot2") { + this.runtime.trigger( + cr.plugins_.SenaPlugin.prototype.cnds.OnSlotLayoutFinished2, + this + ); + } +}; Acts.prototype.LoadLevelG5 = function (levelIndex) { if (this.sdk && this.sdk.loadLevelG5) { this.sdk.loadLevelG5(levelIndex); @@ -20113,6 +20166,22 @@ Acts.prototype.Load = function () { }; pluginProto.acts = new Acts(); function Exps() {} + Exps.prototype.getObjectWidthByIndex = function (ret, index) { + if (!this.runtime) { + ret.set_float(0); + return; + } + var instances = this.runtime.getCurrentEventStack().current_event.solModifiers; + if (!instances) { + ret.set_float(0); + return; + } + if (this.widthArray && this.widthArray[index] !== undefined) { + ret.set_float(this.widthArray[index]); + } else { + ret.set_float(0); + } + }; Exps.prototype.getQuestionValue = function (ret) { if (this.sdk) { ret.set_string(this.sdk.getQuestionValue() || ""); @@ -25162,10 +25231,10 @@ cr.getObjectRefTable = function () { return [ cr.plugins_.Browser, cr.plugins_.JSON, cr.plugins_.Function, + cr.plugins_.SpriteFontPlus, cr.plugins_.SenaPlugin, cr.plugins_.Sprite, cr.plugins_.Touch, - cr.plugins_.SpriteFontPlus, cr.behaviors.Fade, cr.behaviors.DragnDrop, cr.behaviors.Rex_MoveTo, @@ -25194,30 +25263,37 @@ cr.getObjectRefTable = function () { return [ cr.plugins_.Sprite.prototype.exps.X, cr.plugins_.Sprite.prototype.exps.Y, cr.plugins_.Sprite.prototype.acts.SetPos, - cr.plugins_.SenaPlugin.prototype.acts.CalcObjectPositions, - cr.system_object.prototype.exps["int"], - cr.plugins_.Sprite.prototype.exps.Width, cr.system_object.prototype.cnds.Repeat, + cr.system_object.prototype.exps["int"], cr.system_object.prototype.exps.loopindex, cr.plugins_.SenaPlugin.prototype.exps.getHintType, cr.plugins_.SenaPlugin.prototype.exps.getHintValue, cr.system_object.prototype.acts.CreateObject, - cr.plugins_.SenaPlugin.prototype.exps.getPosXbyIndex, - cr.plugins_.SenaPlugin.prototype.exps.getPosYbyIndex, cr.system_object.prototype.cnds.Compare, cr.plugins_.Sprite.prototype.acts.SetBoolInstanceVar, cr.plugins_.Sprite.prototype.acts.SetAnimFrame, + cr.plugins_.Sprite.prototype.acts.SetWidth, + cr.plugins_.SpriteFontPlus.prototype.exps.TextWidth, + cr.plugins_.SenaPlugin.prototype.acts.SetObjectWidth, + cr.plugins_.Sprite.prototype.exps.Width, + cr.plugins_.SpriteFontPlus.prototype.acts.Destroy, cr.system_object.prototype.cnds.Else, - cr.system_object.prototype.acts.AddVar, - cr.plugins_.Sprite.prototype.acts.SetY, - cr.plugins_.SenaPlugin.prototype.exps.getOptionsType, + cr.plugins_.SenaPlugin.prototype.acts.CalcObjectPositions, cr.plugins_.SenaPlugin.prototype.exps.getOptionsValue, + cr.plugins_.Sprite.prototype.acts.SetY, + cr.plugins_.SenaPlugin.prototype.exps.getPosYbyIndex, + cr.plugins_.SenaPlugin.prototype.cnds.OnWordLayoutFinished, + cr.plugins_.SenaPlugin.prototype.exps.getOptionsType, + cr.plugins_.SenaPlugin.prototype.exps.getPosXbyIndex, + cr.plugins_.SenaPlugin.prototype.cnds.OnSlotLayoutFinished, + cr.system_object.prototype.acts.AddVar, + cr.plugins_.SenaPlugin.prototype.cnds.OnSlotLayoutFinished2, + cr.system_object.prototype.cnds.ForEach, + cr.system_object.prototype.cnds.PickByComparison, cr.plugins_.Touch.prototype.cnds.OnTouchObject, cr.plugins_.Sprite.prototype.cnds.IsVisible, cr.system_object.prototype.cnds.CompareVar, cr.plugins_.Audio.prototype.acts.Play, - cr.plugins_.SenaPlugin.prototype.acts.SetData, - cr.plugins_.SenaPlugin.prototype.acts.PostMessage, cr.plugins_.SenaPlugin.prototype.acts.PauseGame, cr.behaviors.DragnDrop.prototype.acts.SetEnabled, cr.plugins_.Function.prototype.acts.CallFunction, @@ -25229,7 +25305,6 @@ cr.getObjectRefTable = function () { return [ cr.plugins_.SenaPlugin.prototype.cnds.OnResume, cr.plugins_.Function.prototype.cnds.OnFunction, cr.system_object.prototype.cnds.For, - cr.system_object.prototype.cnds.PickByComparison, cr.system_object.prototype.exps.left, cr.system_object.prototype.exps.len, cr.plugins_.SenaPlugin.prototype.acts.Finish, @@ -25249,8 +25324,10 @@ cr.getObjectRefTable = function () { return [ cr.behaviors.DragnDrop.prototype.cnds.OnDrop, cr.plugins_.Sprite.prototype.cnds.IsBoolInstanceVarSet, cr.plugins_.Sprite.prototype.cnds.PickDistance, - cr.behaviors.Rex_MoveTo.prototype.acts.SetMaxSpeed, + cr.plugins_.SenaPlugin.prototype.acts.SetData, cr.system_object.prototype.exps.str, + cr.plugins_.SenaPlugin.prototype.acts.PostMessage, + cr.behaviors.Rex_MoveTo.prototype.acts.SetMaxSpeed, cr.behaviors.DragnDrop.prototype.cnds.IsDragging, cr.system_object.prototype.cnds.EveryTick, cr.plugins_.Sprite.prototype.acts.SetVisible, diff --git a/audio_spelling_sequence_sentence_teacher/data.js b/audio_spelling_sequence_sentence_teacher/data.js index 93aa441..31d92ca 100644 --- a/audio_spelling_sequence_sentence_teacher/data.js +++ b/audio_spelling_sequence_sentence_teacher/data.js @@ -1 +1 @@ -๏ปฟ{"project": [null,null,[[0,true,false,false,false,false,false,false,false,false],[1,true,false,false,false,false,false,false,false,false],[2,false,false,false,false,false,false,false,false,false],[3,true,false,false,false,false,false,false,false,false],[4,true,false,false,false,false,false,false,false,false],[5,false,true,true,true,true,true,true,true,false],[6,true,false,false,false,false,false,false,false,false],[7,false,true,true,true,true,true,true,true,true]],[["t0",4,false,[],0,0,null,null,[],false,false,394152958375253,[],null,["G2810S1T30"]],["t1",1,false,[],0,0,null,null,[],false,false,181015701933739,[],null,[]],["t2",5,false,[],0,0,null,[["Default",5,false,1,0,false,266653407798345,[["images/btn_check-sheet0.png",152223,0,0,500,325,1,0.5,0.5015384554862976,[],[],0]]]],[],false,false,870372553390403,[],null],["t3",6,false,[],0,0,null,null,[],false,false,288430412484243,[],null,[1]],["t4",5,false,[],0,0,null,[["Default",5,false,1,0,false,974942116247628,[["images/pause-sheet0.png",155,0,0,250,250,1,0.5,0.5,[],[],1]]]],[],false,false,829278278494442,[],null],["t5",5,false,[],0,0,null,[["Default",5,false,1,0,false,830476950235748,[["images/pause-sheet0.png",155,0,0,250,250,1,0.5,0.5,[],[],1]]]],[],false,false,250461366236378,[],null],["t6",5,false,[839027338172447,370467464601183,403859397610033],1,0,null,[["Default",0,false,1,0,false,201845729772152,[["images/slot-sheet0.png",152834,566,1,200,85,1,0.5049999952316284,0.4235294163227081,[],[],0],["images/slot-sheet0.png",152834,768,1,200,85,1,0.5,0.4235294163227081,[],[],0],["images/slot-sheet0.png",152834,566,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,1,1,563,238,1,0.5008881092071533,0.5,[],[],0],["images/slot-sheet0.png",152834,566,175,200,75,1,0.5,0.5066666603088379,[],[],0],["images/slot-sheet0.png",152834,768,175,200,75,1,0.5,0.4933333396911621,[],[],0],["images/slot-sheet0.png",152834,1,241,200,75,1,0.4350000023841858,0.5199999809265137,[],[],0]]]],[["Fade",8,588103285968005]],false,false,530929310100717,[],null],["t7",5,false,[401281652261798,308058330719086,937883104346632,243525000976275,435711195864159],3,0,null,[["Default",0,false,1,0,false,344548683716056,[["images/slot-sheet0.png",152834,768,1,200,85,1,0.5,0.4117647111415863,[],[],0],["images/slot-sheet0.png",152834,566,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,175,200,75,1,0.5,0.4933333396911621,[],[],0]]]],[["DragDrop",9,551257499299552],["Fade",8,430149822241515],["MoveTo",10,551694077436381]],false,false,515230787966511,[],null],["t8",3,false,[],0,0,null,null,[],false,false,825652157577718,[],null,[]],["t9",7,false,[],0,0,["images/txt_texttimer.png",94512,0],null,[],false,false,428453985749595,[],null],["t10",7,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,125516006976486,[],null],["t11",7,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,680183373657896,[],null],["t12",5,false,[],0,0,null,[["Default",5,false,1,0,false,174194635978617,[["images/senaaikhoi-sheet0.png",230528,0,0,1145,446,1,0.4995633065700531,0.4977578520774841,[],[],0]]]],[],false,false,577948289650662,[],null],["t13",5,false,[],0,0,null,[["Default",0,false,1,0,false,329974099612225,[["images/checker_wrong_correct-sheet0.png",10219,0,0,140,140,1,0.5,0.5,[],[-0.3642860054969788,-0.3642860054969788,0,-0.4357143044471741,0.3642860054969788,-0.3642860054969788,0.3999999761581421,0,0.3142859935760498,0.3142859935760498,0,0.442857027053833,-0.2928569912910461,0.2928569912910461,-0.3857139945030212,0],0],["images/checker_wrong_correct-sheet1.png",7978,0,0,140,140,1,0.5,0.5,[],[-0.357142984867096,-0.357142984867096,0,-0.4357143044471741,0.357142984867096,-0.357142984867096,0.3857139945030212,0,0.3642860054969788,0.3642860054969788,0,0.4142860174179077,-0.2857140004634857,0.2857139706611633,-0.3857139945030212,0],0]]]],[],false,false,246032193737445,[],null],["t14",0,false,[],0,0,null,null,[],false,false,396522085041537,[],null,[0,0,0,1,1,600,600,10000,1]],["t15",5,false,[],0,0,null,[["Default",5,false,1,0,false,857466576876240,[["images/btn_setting-sheet0.png",13202,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[-0.3656864762306213,-0.3547005355358124,-0.006272494792938232,-0.5028490424156189,0.355585515499115,-0.3547005355358124,0.485169529914856,-0.005494534969329834,0.3604755401611328,0.349002480506897,-0.006272494792938232,0.4865684509277344,-0.3681314587593079,0.3463574647903442,-0.4977155327796936,-0.005494534969329834],0]]]],[],false,false,444899307061590,[],null],["t16",5,false,[],1,0,null,[["Default",5,false,1,0,false,922486781068681,[["images/btn_audio-sheet0.png",183308,0,0,631,330,1,0.500792384147644,0.5,[],[],0]]]],[["Sine",11,146069028680288]],false,false,150393696478915,[],null],["t17",7,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,389192760965508,[],null],["t18",5,false,[637523801130517,567457434227301],1,0,null,[["Default",5,false,1,0,false,177577261579169,[["images/btn_pause-sheet0.png",11757,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[-0.365747481584549,-0.3577375411987305,-0.005050480365753174,-0.5028560161590576,0.3556455373764038,-0.3577375411987305,0.4899744987487793,-0.006813526153564453,0.3581334948539734,0.34938645362854,-0.005050480365753174,0.4892284870147705,-0.365747481584549,0.3467484712600708,-0.4975878000259399,-0.006813526153564453],0]]]],[["MoveTo",10,345261300394347]],false,false,680660539195378,[],null],["t19",5,false,[546775332106909,966775272495183],1,0,null,[["Default",0,false,1,0,false,632596314970396,[["images/btn_music-sheet0.png",13358,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[],0],["images/btn_music-sheet1.png",14207,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[],0]]]],[["MoveTo",10,561713266057788]],false,false,470943728107764,[],null],["t20",5,false,[],0,0,null,[["Default",5,false,1,0,false,804798480075980,[["images/panel_pause-sheet0.png",168,0,0,250,250,1,0.5,0.5,[],[],0]]]],[],false,false,103999013142366,[],null],["t21",5,false,[],1,0,null,[["Default",5,false,1,0,false,794524614026990,[["images/layer-sheet0.png",111520,0,0,400,376,1,0.5,0.5,[],[-0.362500011920929,-0.3537229895591736,0,-0.5,0.362500011920929,-0.3537229895591736,0.497499942779541,0,0.3650000095367432,0.3563830256462097,0,0.5,-0.3650000095367432,0.3563830256462097,-0.5,0],0]]]],[["Sine",11,152768910804631]],false,false,822735679292648,[],null],["t22",5,false,[],1,0,null,[["Default",5,false,1,0,false,185281331107930,[["images/newwordpng-sheet0.png",166389,0,0,500,341,1,0.5,0.5014662742614746,[],[-0.3939999938011169,-0.3460412621498108,0,-0.4398826658725739,0.1480000019073486,0.01466274261474609,0.2919999957084656,-0.00293228030204773,0.4660000205039978,0.4486806988716126,0,0.4721407294273377,-0.4620000123977661,0.4428157210350037,-0.2820000052452087,-0.00293228030204773],0]]]],[["Anchor",12,539593209741847]],false,false,139959116973831,[],null],["t23",2,false,[],0,0,null,null,[],true,false,262867654071762,[],null],["t24",5,false,[],0,0,null,[["Default",5,false,1,0,false,875954396420200,[["images/khungnen-sheet0.png",24865,0,0,1112,377,1,0.5,0.5013262629508972,[],[-0.4802157878875732,-0.442970871925354,0,-0.5013262629508972,0.4802160263061523,-0.442970871925354,0.5,-0.002652257680892944,0.4802160263061523,0.440318763256073,0,0.4986737370491028,-0.4802157878875732,0.440318763256073,-0.5,-0.002652257680892944],0]]]],[],false,false,880897063099908,[],null],["t25",7,true,[],1,0,null,null,[["Pin",13,693926857619114]],false,false,154178255437462,[],null],["t26",5,true,[],0,0,null,null,[],false,false,909098946188328,[],null]],[[25,17,11,9,10],[26,19,18,15,21]],[["Layout 1",1200,1200,false,"Event sheet 1",148229480160171,[["BG",0,977906834634586,true,[255,255,255],true,1,1,1,false,false,1,0,0,[],[]],["Main",1,715835324311419,true,[255,255,255],true,0,0,1,false,false,1,0,0,[[[600,-1099.549194335938,0,163.3448486328125,106.1741485595703,0,0,0.7900000214576721,0.5,0.5015384554862976,0,0,[]],2,2,[],[],[1,"Default",0,1]],[[314,-701,0,58,49,0,0,1,0.5,0.5,0,0,[]],4,5,[],[],[0,"Default",0,1]],[[313,-632,0,58.32666778564453,58.32666778564453,0,0,1,0.5,0.5,0,0,[]],5,6,[],[],[0,"Default",0,1]],[[209,-866,0,200,85,0,0,1,0.5049999952316284,0.4235294163227081,0,0,[]],6,7,[[0],[""],[0]],[[0,0,0,2,1]],[0,"Default",0,1]],[[-35,-863,0,200,85,0,0,1,0.5,0.4117647111415863,0,0,[]],7,8,[[""],[0],[0],[-1],[0]],[[0,1],[0,0,0,2,1],[1,1200,0,0]],[0,"Default",0,1]],[[-30,-972,0,160.2111206054688,55.53988647460938,0,0,1,0.5,0.5,0,0,[]],10,11,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Text",0.5,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[213,-970,0,160.2109985351563,55.54000091552734,0,0,1,0.5,0.5,0,0,[]],11,12,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Text",0.5,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[1113,-734,0,255.0779113769531,99.35787963867188,0,0,1,0.4995633065700531,0.4977578520774841,0,0,[]],12,14,[],[],[0,"Default",0,1]],[[1141,-732,0,132,77,0,0,1,0.5,0.5,0,0,[]],9,10,[],[[]],[76,83,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`\\/@ยฐ+=*$ยฃโ‚ฌ<>%","TIME",0.7,0,1,1,1,0,0,0,"[[34,\" \"],[14,\"|\"],[16,\"il\"],[17,\"I.:'\"],[18,\";!\"],[19,\",\"],[22,\"`\"],[24,\")\"],[25,\"(\\\\/\"],[26,\"[\"],[27,\"j]\"],[28,\"-\"],[29,\"ยฐ\"],[32,\"t1\"],[33,\"\\\"\"],[34,\"r\"],[35,\"f\"],[36,\"*\"],[39,\"s\"],[40,\"kx\"],[41,\"Jhnu\"],[42,\"v7?+=<>\"],[43,\"Faceyz0238\"],[44,\"L569_~$\"],[45,\"bdgopq\"],[46,\"P#\"],[47,\"EX\"],[48,\"S4โ‚ฌ\"],[49,\"Yยฃ\"],[50,\"BNR\"],[51,\"DHKTU\"],[52,\"VZ\"],[53,\"C\"],[54,\"A\"],[55,\"&\"],[56,\"GM\"],[57,\"O\"],[60,\"Q\"],[62,\"mw\"],[65,\"%\"],[72,\"W\"],[74,\"@\"]]",-1]],[[109,-653,0,140,140,0,0,1,0.5,0.5,0,0,[]],13,15,[],[],[0,"Default",0,1]],[[600,386,0,631,330,0,0,0.699999988079071,0.500792384147644,0.5,0,0,[]],16,18,[],[[0,2,0,1,0,0,0,20,0]],[0,"Default",0,1]],[[745,-1011,0,642,205,0,0,1,0.5,0.5,0,0,[]],17,19,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Sแบฏp xแบฟp cรกc tแปซ sau thร nh cรขu ฤ‘รบng",0.85,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[1858,-635,0,82.66699981689453,75.98699951171875,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],18,20,[[0],[0]],[[1,400,0,0]],[0,"Default",0,1]],[[1858,-727,0,82.66699981689453,75.98699951171875,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],19,21,[[0],[0]],[[1,400,0,0]],[0,"Default",0,1]],[[1859,-544,0,82.66677093505859,75.98662567138672,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],15,17,[],[],[0,"Default",0,1]],[[600,753.3103637695313,0,1112,234,0,0,0.800000011920929,0.5,0.5013262629508972,0,0,[]],24,25,[],[],[0,"Default",0,1]]],[]],["Pause",2,621954870190361,true,[255,255,255],true,1,1,1,false,false,1,0,0,[[[600,600,0,1946.036010742188,1251.02294921875,0,0,1,0.5,0.5,0,0,[]],20,22,[],[],[0,"Default",0,1]],[[600,600,0,400,376,0,0,1,0.5,0.5,0,0,[]],21,23,[],[[1,2,0,3,0,0,0,50,0]],[0,"Default",0,1]]],[]],["Logo",3,899027236628199,true,[255,255,255],true,1,1,1,false,false,1,0,0,[[[110,77,0,195.7390747070313,133.4940490722656,0,0,1,0.5,0.5014662742614746,0,0,[]],22,24,[],[[0,0,0,0,1]],[0,"Default",0,1]]],[]]],[[null,23,3,[],[],[]]],[]]],[["Event sheet 1",[[2,"move",false],[2,"DrapDrop",false],[1,"Paused",0,0,false,false,881036884152158,false],[1,"end",0,-1,false,false,348658772353398,false],[1,"isTimeUp",0,0,false,false,617056362802034,false],[1,"timeLeft",0,0,false,false,670843326082385,false],[1,"answer",1,"",false,false,538561721013949,false],[0,null,false,null,421297551205104,[[-1,14,null,1,false,false,false,438843515576193,false]],[[0,15,null,551138518888793,false],[-1,16,null,392038834754127,false,[[5,[0,2]],[3,0]]]]],[0,null,false,null,432411265738905,[[0,17,null,1,false,false,false,913106290597646,false]],[[1,18,null,260483465573520,false,[[3,0],[7,[2,"Load dแปฏ liแป‡u xong"]]]],[1,18,null,330854144982241,false,[[3,0],[7,[20,0,19,true,null]]]]],[[0,null,false,null,122100426567399,[],[[0,20,null,458181517098292,false]]]]],[0,null,false,null,495673204159818,[[0,21,null,1,false,false,false,157454832331304,false]],[[1,18,null,816803828558793,false,[[3,0],[7,[10,[10,[10,[2,"Question :"],[20,0,22,true,null]],[2," with value : "]],[20,0,23,true,null]]]]],[1,18,null,585706784629547,false,[[3,0],[7,[10,[10,[10,[2,"Request :"],[20,0,24,true,null]],[2," with value : "]],[20,0,25,true,null]]]]],[1,18,null,103090682922262,false,[[3,0],[7,[10,[2,"Options Count :"],[20,0,26,false,null]]]]],[1,18,null,460050924307031,false,[[3,0],[7,[10,[2,"Hint Count :"],[20,0,27,false,null]]]]],[6,28,null,227093858363506,false],[7,28,null,601277174090980,false],[-1,29,null,623599131030475,false,[[11,"isTimeUp"],[7,[0,0]]]],[17,30,"Pin",210783341114782,false,[[4,16],[3,0]]],[9,30,"Pin",636254900159958,false,[[4,12],[3,0]]],[17,31,null,808593987399542,false,[[7,[20,0,23,true,null]]]],[18,32,null,756761854102448,false,[[10,0],[7,[20,18,33,false,null]]]],[18,32,null,843231659647898,false,[[10,1],[7,[20,18,34,false,null]]]],[18,35,null,429067541495196,false,[[0,[20,15,33,false,null]],[0,[20,15,34,false,null]]]],[19,32,null,312955471850139,false,[[10,0],[7,[20,19,33,false,null]]]],[19,32,null,725880314927928,false,[[10,1],[7,[20,19,34,false,null]]]],[19,35,null,588637745430653,false,[[0,[20,15,33,false,null]],[0,[20,15,34,false,null]]]]],[[0,null,false,null,278599510819277,[],[[0,36,null,505162364268873,false,[[0,[19,37,[[20,0,27,false,null]]]],[0,[20,6,38,false,null]],[0,[0,5]],[0,[0,1200]],[0,[0,0]],[0,[0,100]],[1,[2,"slot"]],[0,[0,0]]]]],[[0,null,false,null,452078189778132,[[-1,39,null,0,true,false,false,488889777784546,false,[[0,[19,37,[[20,0,27,false,null]]]]]]],[[1,18,null,239886316843096,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Hint "],[19,40]],[2," : "]],[20,0,41,true,null]],[2," with value : "]],[20,0,42,false,null,[[19,40]]]]]]],[-1,43,null,371942430718793,false,[[4,6],[5,[0,1]],[0,[20,0,44,false,null,[[19,40]]]],[0,[4,[20,0,45,false,null,[[19,40]]],[0,700]]]]],[6,32,null,933941275549609,false,[[10,0],[7,[19,40]]]],[6,32,null,380164134533232,false,[[10,1],[7,[20,0,42,false,null,[[19,40]]]]]]],[[0,null,false,null,698796573985720,[[-1,46,null,0,false,false,false,410553190492367,false,[[7,[20,0,42,false,null,[[19,40]]]],[8,1],[7,[2,"_"]]]]],[[6,47,null,847566670403732,false,[[10,2],[3,1]]],[-1,43,null,521667370636870,false,[[4,11],[5,[0,1]],[0,[20,6,33,false,null]],[0,[20,6,34,false,null]]]],[11,30,"Pin",361028315192679,false,[[4,6],[3,0]]],[11,31,null,466267976699500,false,[[7,[21,6,true,null,1]]]],[6,48,null,354611702724504,false,[[0,[0,1]]]]]],[0,null,false,null,848543107448972,[[-1,49,null,0,false,false,false,386888311054006,false]],[[6,47,null,590812225579568,false,[[10,2],[3,0]]],[-1,50,null,916604551584151,false,[[11,"end"],[7,[0,1]]]]]]]]]],[0,null,false,null,822104816469346,[],[[0,36,null,737719939649407,false,[[0,[19,37,[[20,0,26,false,null]]]],[0,[20,7,38,false,null]],[0,[0,5]],[0,[0,1200]],[0,[0,0]],[0,[0,100]],[1,[2,"word"]],[0,[0,0]]]],[2,51,null,256704970269789,false,[[0,[4,[20,0,45,false,null,[[0,0]]],[0,740]]]]]],[[0,null,false,null,441467613146144,[[-1,39,null,0,true,false,false,218190693390519,false,[[0,[19,37,[[20,0,26,false,null]]]]]]],[[1,18,null,901551014325770,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Options "],[19,40]],[2," : "]],[20,0,52,true,null]],[2," with value : "]],[20,0,53,true,null,[[19,40]]]]]]],[-1,43,null,722355474670048,false,[[4,7],[5,[0,1]],[0,[20,0,44,false,null,[[19,40]]]],[0,[4,[20,0,45,false,null,[[19,40]]],[0,720]]]]],[7,32,null,424845902591780,false,[[10,0],[7,[20,0,53,true,null,[[19,40]]]]]],[7,32,null,732477610518970,false,[[10,3],[7,[0,-1]]]],[7,32,null,972534679995256,false,[[10,1],[7,[20,7,33,false,null]]]],[7,32,null,955022957314574,false,[[10,2],[7,[20,7,34,false,null]]]],[-1,43,null,820542104698850,false,[[4,10],[5,[0,1]],[0,[20,7,33,false,null]],[0,[20,7,34,false,null]]]],[10,30,"Pin",165265909130423,false,[[4,7],[3,0]]],[10,31,null,752256115955919,false,[[7,[21,7,true,null,0]]]]]]]]]],[0,null,false,null,391531229850255,[[3,54,null,1,false,false,false,541795463553529,false,[[4,2]]],[2,55,null,0,false,false,false,463624702778654,false],[-1,56,null,0,false,false,false,211208220731414,false,[[11,"Paused"],[8,0],[7,[0,0]]]]],[[14,57,null,933729384541080,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,58,null,298430500894761,false,[[1,[2,""]],[1,[2,""]],[1,[2,"1"]],[1,[2,""]],[1,[2,""]]]],[0,59,null,180385535286075,false],[0,60,null,256977907477815,false],[7,61,"DragDrop",500676445420163,false,[[3,0]]],[-1,29,null,392747038186299,false,[[11,"answer"],[7,[2,""]]]],[8,62,null,286145656469424,false,[[1,[2,"currentAnswer"]],[13]]],[-1,63,null,870335272692108,false,[[0,[0,3]]]]]],[0,null,false,null,131646557054595,[[0,64,null,1,false,false,false,891894169376380,false]],[[14,57,null,327930580854185,false,[[2,["correct",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[-1,43,null,202907159105342,false,[[4,13],[5,[0,1]],[0,[20,2,33,false,null]],[0,[20,2,34,false,null]]]],[13,48,null,145728902691754,false,[[0,[0,0]]]]]],[0,null,false,null,626804407280781,[[0,65,null,1,false,false,false,435087545862561,false]],[[14,57,null,217938364629081,false,[[2,["error-010-206498",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[-1,43,null,522820795913632,false,[[4,13],[5,[0,1]],[0,[20,2,33,false,null]],[0,[20,2,34,false,null]]]],[13,48,null,743250840849647,false,[[0,[0,1]]]]]],[0,null,false,null,138784311293898,[[3,54,null,1,false,false,false,318840334321068,false,[[4,4]]]],[[0,60,null,188346907636434,false]]],[0,null,false,null,144690028489488,[[3,54,null,1,false,false,false,961657910924384,false,[[4,5]]]],[[0,66,null,863067724909837,false]]],[0,null,false,null,339829265544415,[[0,67,null,1,false,false,false,425081282629100,false]],[[-1,29,null,357857564221621,false,[[11,"Paused"],[7,[0,1]]]]]],[0,null,false,null,619901953302901,[[0,68,null,1,false,false,false,453788771302771,false]],[[-1,29,null,986855891964228,false,[[11,"Paused"],[7,[0,0]]]]]],[0,null,false,null,365785861310817,[[8,69,null,2,false,false,false,466620429321609,false,[[1,[2,"currentAnswer"]]]]],[],[[0,null,false,null,780375794781622,[[-1,70,null,0,true,false,false,143001263185103,false,[[1,[2,"i"]],[0,[0,0]],[0,[5,[19,37,[[20,0,27,false,null]]],[0,1]]]]]],[],[[0,null,false,null,623354472074576,[[-1,71,null,0,false,false,false,929134158340487,false,[[4,6],[7,[21,6,false,null,0]],[8,0],[7,[19,40]]]]],[[-1,29,null,483299828391284,false,[[11,"answer"],[7,[10,[10,[23,"answer"],[21,6,true,null,1]],[2,"|"]]]]]]]]],[0,null,false,null,475666535596674,[],[[-1,29,null,374977936278745,false,[[11,"answer"],[7,[19,72,[[23,"answer"],[5,[19,73,[[23,"answer"]]],[0,1]]]]]]],[0,74,null,103117520878571,false,[[7,[23,"answer"]]]]]]]],[0,null,false,null,600608562107578,[[3,54,null,1,false,false,false,891500002256313,false,[[4,15]]],[-1,75,null,0,false,false,false,644231176588955,false,[[5,[0,1]]]]],[],[[0,null,false,null,426459896580949,[[19,76,null,0,false,false,false,811423894111416,false,[[8,0],[0,[20,15,34,false,null]]]]],[[14,57,null,983752186028969,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[18,77,"MoveTo",576994443738303,false,[[0,[21,18,false,null,0]],[0,[21,18,false,null,1]]]],[19,77,"MoveTo",664066818448917,false,[[0,[21,19,false,null,0]],[0,[21,19,false,null,1]]]]]],[0,null,false,null,813987173387856,[[19,76,null,0,false,false,false,360548133253360,false,[[8,0],[0,[21,19,false,null,1]]]]],[[14,57,null,232463401023509,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[18,78,"MoveTo",564863130284639,false,[[4,15]]],[19,78,"MoveTo",753250951346862,false,[[4,15]]]]]]],[0,null,false,null,398375489714286,[[3,54,null,1,false,false,false,723806263526938,false,[[4,19]]],[19,76,null,0,false,false,false,181942908228041,false,[[8,0],[0,[21,19,false,null,1]]]]],[[14,57,null,294000245663561,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,859972771487505,[[19,79,null,0,false,false,false,990148759371186,false,[[8,0],[0,[0,0]]]]],[[19,48,null,728229426682011,false,[[0,[0,1]]]],[14,80,null,436791612138112,false,[[3,0]]]]],[0,null,false,null,474877987440232,[[-1,49,null,0,false,false,false,904405232089990,false]],[[19,48,null,569169335937351,false,[[0,[0,0]]]],[14,80,null,898083323827850,false,[[3,1]]]]]]],[0,null,false,null,246743788520867,[[3,54,null,1,false,false,false,801931205987650,false,[[4,18]]],[18,76,null,0,false,false,false,551526414582339,false,[[8,0],[0,[21,18,false,null,1]]]]],[[14,57,null,447580256591419,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,60,null,135302385113891,false],[18,78,"MoveTo",959639910199972,false,[[4,15]]],[19,78,"MoveTo",258657396501857,false,[[4,15]]],[-1,63,null,387073202837793,false,[[0,[1,0.5]]]],[-1,16,null,357224634786112,false,[[5,[0,1]],[3,0]]],[-1,16,null,853002410411529,false,[[5,[0,2]],[3,1]]]]],[0,null,false,null,600080256108869,[[3,54,null,1,false,false,false,304672810310041,false,[[4,21]]],[-1,75,null,0,false,false,false,303482445048985,false,[[5,[0,2]]]]],[[14,57,null,993940209084387,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,66,null,684013340592645,false],[-1,16,null,519113282566716,false,[[5,[0,1]],[3,1]]],[-1,16,null,494131448394392,false,[[5,[0,2]],[3,0]]]]],[0,null,false,null,265453471250122,[[3,54,null,1,false,false,false,394936313563062,false,[[4,16]]]],[[14,57,null,625219449389702,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,81,null,987382448847975,false,[[1,[2,"question"]]]],[16,82,"Sine",893600720061045,false,[[3,1]]],[-1,63,null,942343107057151,false,[[0,[0,2]]]],[16,82,"Sine",115279746502493,false,[[3,0]]]]]]],["DrapDrop",[[1,"filledCount",0,-1,false,false,528865922993012,false],[0,null,false,null,197106660861514,[[7,83,"DragDrop",1,false,false,false,528907557634308,false]],[[14,57,null,162558464641912,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,266963171745346,[[7,84,null,0,false,false,false,673397366023432,false,[[10,3],[8,1],[7,[0,-1]]]],[6,84,null,0,false,false,false,577869128870380,false,[[10,0],[8,0],[7,[21,7,false,null,3]]]],[7,85,null,0,false,false,false,609479521709627,false,[[4,10]]]],[[6,32,null,445026196152632,false,[[10,1],[7,[2,"_"]]]],[7,86,null,670463517581139,false],[10,87,null,538995332098798,false]]],[0,null,false,null,816493828433722,[[-1,49,null,0,false,false,false,390659514117980,false]],[],[[0,null,false,null,487754364377713,[[7,85,null,0,false,false,false,443159185077976,false,[[4,10]]]],[[7,86,null,774809908055048,false],[10,87,null,501986465343455,false]]]]]]],[0,null,false,null,946639210805430,[[7,88,"DragDrop",1,false,false,false,155941787306139,false]],[[14,57,null,361413524752870,false,[[2,["immersivecontrol-button-click-sound-463065",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,504792991445212,[[7,85,null,0,false,false,false,845450333794375,false,[[4,6]]],[6,89,null,0,false,true,false,204552588897544,false,[[10,2]]]],[],[[0,null,false,null,106550985509374,[[6,90,null,0,false,false,true,170480452496238,false,[[3,0],[0,[20,7,33,false,null]],[0,[20,7,34,false,null]]]],[6,84,null,0,false,false,false,938809230173413,false,[[10,1],[8,0],[7,[2,"_"]]]]],[[7,91,"MoveTo",350887864650832,false,[[0,[0,350]]]],[7,77,"MoveTo",122919247741976,false,[[0,[20,6,33,false,null]],[0,[20,6,34,false,null]]]],[6,32,null,568930528296173,false,[[10,1],[7,[21,7,true,null,0]]]]],[[0,null,false,null,101266177713061,[[7,84,null,0,false,false,false,148334850256636,false,[[10,3],[8,0],[7,[0,-1]]]]],[[7,32,null,762068200313175,false,[[10,3],[7,[21,6,false,null,0]]]],[-1,50,null,348122173801647,false,[[11,"filledCount"],[7,[0,1]]]],[0,58,null,604094573215672,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[19,92,[[21,6,false,null,0]]]],[1,[2,""]],[1,[2,""]],[1,[2,""]]]],[0,59,null,786126685398007,false]]],[0,null,false,null,296319278611324,[[-1,49,null,0,false,false,false,250133201929726,false]],[[7,32,null,116855994129968,false,[[10,3],[7,[21,6,false,null,0]]]],[0,58,null,842443888451723,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[19,92,[[21,6,false,null,0]]]],[1,[2,""]],[1,[2,""]],[1,[2,""]]]],[0,59,null,156485599688224,false]]]]],[0,null,false,null,180540551233675,[[-1,49,null,0,false,false,false,806523891610870,false],[7,84,null,0,false,false,false,831308228851461,false,[[10,3],[8,1],[7,[0,-1]]]]],[[7,91,"MoveTo",416883713281691,false,[[0,[0,1200]]]],[7,77,"MoveTo",572186182608955,false,[[0,[21,7,false,null,1]],[0,[21,7,false,null,2]]]],[7,32,null,370498434376498,false,[[10,3],[7,[0,-1]]]],[-1,50,null,250504698972287,false,[[11,"filledCount"],[7,[0,-1]]]],[0,58,null,506661306954504,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,59,null,412688010532382,false]]],[0,null,false,null,664272208282422,[[-1,49,null,0,false,false,false,895425177786413,false],[7,84,null,0,false,false,false,246894625675163,false,[[10,3],[8,0],[7,[0,-1]]]]],[[7,91,"MoveTo",888826482377214,false,[[0,[0,1200]]]],[7,77,"MoveTo",393405307018971,false,[[0,[21,7,false,null,1]],[0,[21,7,false,null,2]]]],[7,32,null,503673017513230,false,[[10,3],[7,[0,-1]]]],[0,58,null,872163608896537,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,59,null,249407021381141,false]]]]],[0,null,false,null,818745098688947,[[-1,49,null,0,false,false,false,929804756669469,false],[7,84,null,0,false,false,false,177859681995434,false,[[10,3],[8,1],[7,[0,-1]]]]],[[7,91,"MoveTo",449724002535088,false,[[0,[0,1200]]]],[7,77,"MoveTo",721292388859295,false,[[0,[21,7,false,null,1]],[0,[21,7,false,null,2]]]],[7,32,null,733212651291432,false,[[10,3],[7,[0,-1]]]],[-1,50,null,739300525987860,false,[[11,"filledCount"],[7,[0,-1]]]],[0,58,null,712656902299986,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,59,null,662902606044899,false]]],[0,null,false,null,358120937494399,[[-1,49,null,0,false,false,false,416712700522674,false],[7,84,null,0,false,false,false,261187518957115,false,[[10,3],[8,0],[7,[0,-1]]]]],[[7,91,"MoveTo",431242330954619,false,[[0,[0,1200]]]],[7,77,"MoveTo",754072653542168,false,[[0,[21,7,false,null,1]],[0,[21,7,false,null,2]]]],[7,32,null,272960877861772,false,[[10,3],[7,[0,-1]]]],[0,58,null,303992708864385,false,[[1,[19,92,[[21,7,true,null,0]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,59,null,102997629264439,false]]]]],[0,null,false,null,580675938654997,[[7,93,"DragDrop",0,false,false,false,411147921527630,false]],[]],[0,null,false,null,622060364017684,[[-1,94,null,0,false,false,false,228576696549219,false]],[],[[0,null,false,null,108730370076990,[[-1,56,null,0,false,false,false,538413628199561,false,[[11,"filledCount"],[8,0],[7,[23,"end"]]]]],[[2,95,null,445242465744130,false,[[3,1]]]]],[0,null,false,null,218835501607731,[[-1,49,null,0,false,false,false,933470660702724,false]],[[2,95,null,797052197521566,false,[[3,0]]]]]]]]],["move",[[0,null,false,null,247537098385321,[[0,96,null,1,false,false,false,357653839729988,false]],[[23,97,null,481034101118882,false,[[1,[20,0,98,true,null]],[3,0],[13]]],[-1,63,null,923787823234004,false,[[0,[1,0.0001]]]]],[[0,null,false,null,501329491159206,[[-1,71,null,0,false,false,false,329723730163277,false,[[4,7],[7,[21,7,true,null,0]],[8,0],[7,[19,92,[[20,23,99,false,null,[[0,0],[2,"data1"]]]]]]]]],[],[[0,null,false,null,373485886439115,[[-1,71,null,0,false,false,false,667505268608524,false,[[4,6],[7,[19,37,[[20,23,99,false,null,[[0,0],[2,"data2"]]]]]],[8,0],[7,[21,6,false,null,0]]]]],[[7,78,"MoveTo",724531557833079,false,[[4,6]]]]],[0,null,false,null,176622797861199,[[-1,49,null,0,false,false,false,494998059713904,false],[-1,71,null,0,false,false,false,646024827473206,false,[[4,7],[7,[21,7,true,null,0]],[8,0],[7,[19,92,[[20,23,99,false,null,[[0,0],[2,"data1"]]]]]]]]],[[7,77,"MoveTo",116962450760903,false,[[0,[21,7,false,null,1]],[0,[21,7,false,null,2]]]]]]]],[0,null,false,null,792444421721800,[[-1,46,null,0,false,false,false,412210749337503,false,[[7,[19,37,[[20,23,99,false,null,[[0,0],[2,"data3"]]]]]],[8,0],[7,[0,1]]]],[2,55,null,0,false,false,false,770004061029044,false]],[[14,57,null,961642601760274,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,60,null,825609295904113,false],[7,61,"DragDrop",371494147684829,false,[[3,0]]],[-1,29,null,269282654558436,false,[[11,"answer"],[7,[2,""]]]],[8,62,null,789440314920250,false,[[1,[2,"currentAnswer"]],[13]]],[-1,63,null,740289121171042,false,[[0,[0,3]]]]]],[0,null,false,null,636272565355450,[[-1,46,null,0,false,false,false,892448585455581,false,[[7,[19,37,[[20,23,99,false,null,[[0,0],[2,"data3"]]]]]],[8,0],[7,[0,2]]]]],[[14,57,null,356443660530524,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,81,null,733652133293167,false,[[1,[2,"question"]]]]]]]]]]],[["click.ogg",24620],["correct.ogg",60630],["error-010-206498.ogg",11425],["immersivecontrol-button-click-sound-463065.ogg",3830]],"media/",false,1200,1200,3,true,true,true,"1.0.0.0",true,false,3,0,26,false,true,1,true,"audio_spelling_sequence_sentence_teacher",0,[]]} \ No newline at end of file +๏ปฟ{"project": [null,null,[[0,true,false,false,false,false,false,false,false,false],[1,true,false,false,false,false,false,false,false,false],[2,false,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,true],[5,true,false,false,false,false,false,false,false,false],[6,false,true,true,true,true,true,true,true,false],[7,true,false,false,false,false,false,false,false,false]],[["t0",5,false,[],0,0,null,null,[],false,false,394152958375253,[],null,["G2810S1T30"]],["t1",1,false,[],0,0,null,null,[],false,false,181015701933739,[],null,[]],["t2",6,false,[],0,0,null,[["Default",5,false,1,0,false,266653407798345,[["images/btn_check-sheet0.png",152223,0,0,500,325,1,0.5,0.5015384554862976,[],[],0]]]],[],false,false,870372553390403,[],null],["t3",7,false,[],0,0,null,null,[],false,false,288430412484243,[],null,[1]],["t4",6,false,[],0,0,null,[["Default",5,false,1,0,false,974942116247628,[["images/pause-sheet0.png",155,0,0,250,250,1,0.5,0.5,[],[],1]]]],[],false,false,829278278494442,[],null],["t5",6,false,[],0,0,null,[["Default",5,false,1,0,false,830476950235748,[["images/pause-sheet0.png",155,0,0,250,250,1,0.5,0.5,[],[],1]]]],[],false,false,250461366236378,[],null],["t6",6,false,[839027338172447,370467464601183,403859397610033],1,0,null,[["Default",0,false,1,0,false,201845729772152,[["images/slot-sheet0.png",152834,566,1,200,85,1,0.5049999952316284,0.4235294163227081,[],[],0],["images/slot-sheet0.png",152834,768,1,200,85,1,0.5,0.4235294163227081,[],[],0],["images/slot-sheet0.png",152834,566,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,1,1,563,238,1,0.5008881092071533,0.5,[],[],0],["images/slot-sheet0.png",152834,566,175,200,75,1,0.5,0.5066666603088379,[],[],0],["images/slot-sheet0.png",152834,768,175,200,75,1,0.5,0.4933333396911621,[],[],0],["images/slot-sheet0.png",152834,1,241,200,75,1,0.4350000023841858,0.5199999809265137,[],[],0]]]],[["Fade",8,588103285968005]],false,false,530929310100717,[],null],["t7",6,false,[995533348710807,401281652261798,308058330719086,937883104346632,243525000976275,435711195864159],3,0,null,[["Default",0,false,1,0,false,344548683716056,[["images/slot-sheet0.png",152834,768,1,200,85,1,0.5,0.4117647111415863,[],[],0],["images/slot-sheet0.png",152834,566,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,88,200,85,1,0.5,0.5058823823928833,[],[],0],["images/slot-sheet0.png",152834,768,175,200,75,1,0.5,0.4933333396911621,[],[],0]]]],[["DragDrop",9,551257499299552],["Fade",8,430149822241515],["MoveTo",10,551694077436381]],false,false,515230787966511,[],null],["t8",3,false,[],0,0,null,null,[],false,false,825652157577718,[],null,[]],["t9",4,false,[],0,0,["images/txt_texttimer.png",94512,0],null,[],false,false,428453985749595,[],null],["t10",4,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,125516006976486,[],null],["t11",4,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,680183373657896,[],null],["t12",6,false,[],0,0,null,[["Default",5,false,1,0,false,174194635978617,[["images/senaaikhoi-sheet0.png",230528,0,0,1145,446,1,0.4995633065700531,0.4977578520774841,[],[],0]]]],[],false,false,577948289650662,[],null],["t13",6,false,[],0,0,null,[["Default",0,false,1,0,false,329974099612225,[["images/checker_wrong_correct-sheet0.png",10219,0,0,140,140,1,0.5,0.5,[],[-0.3642860054969788,-0.3642860054969788,0,-0.4357143044471741,0.3642860054969788,-0.3642860054969788,0.3999999761581421,0,0.3142859935760498,0.3142859935760498,0,0.442857027053833,-0.2928569912910461,0.2928569912910461,-0.3857139945030212,0],0],["images/checker_wrong_correct-sheet1.png",7978,0,0,140,140,1,0.5,0.5,[],[-0.357142984867096,-0.357142984867096,0,-0.4357143044471741,0.357142984867096,-0.357142984867096,0.3857139945030212,0,0.3642860054969788,0.3642860054969788,0,0.4142860174179077,-0.2857140004634857,0.2857139706611633,-0.3857139945030212,0],0]]]],[],false,false,246032193737445,[],null],["t14",0,false,[],0,0,null,null,[],false,false,396522085041537,[],null,[0,0,0,1,1,600,600,10000,1]],["t15",6,false,[],0,0,null,[["Default",5,false,1,0,false,857466576876240,[["images/btn_setting-sheet0.png",13202,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[-0.3656864762306213,-0.3547005355358124,-0.006272494792938232,-0.5028490424156189,0.355585515499115,-0.3547005355358124,0.485169529914856,-0.005494534969329834,0.3604755401611328,0.349002480506897,-0.006272494792938232,0.4865684509277344,-0.3681314587593079,0.3463574647903442,-0.4977155327796936,-0.005494534969329834],0]]]],[],false,false,444899307061590,[],null],["t16",6,false,[],1,0,null,[["Default",5,false,1,0,false,922486781068681,[["images/btn_audio-sheet0.png",183308,0,0,631,330,1,0.500792384147644,0.5,[],[],0]]]],[["Sine",11,146069028680288]],false,false,150393696478915,[],null],["t17",4,false,[],0,0,["images/txt_worditem.png",157188,0],null,[],false,false,389192760965508,[],null],["t18",6,false,[637523801130517,567457434227301],1,0,null,[["Default",5,false,1,0,false,177577261579169,[["images/btn_pause-sheet0.png",11757,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[-0.365747481584549,-0.3577375411987305,-0.005050480365753174,-0.5028560161590576,0.3556455373764038,-0.3577375411987305,0.4899744987487793,-0.006813526153564453,0.3581334948539734,0.34938645362854,-0.005050480365753174,0.4892284870147705,-0.365747481584549,0.3467484712600708,-0.4975878000259399,-0.006813526153564453],0]]]],[["MoveTo",10,345261300394347]],false,false,680660539195378,[],null],["t19",6,false,[546775332106909,966775272495183],1,0,null,[["Default",0,false,1,0,false,632596314970396,[["images/btn_music-sheet0.png",13358,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[],0],["images/btn_music-sheet1.png",14207,0,0,99,91,1,0.5050504803657532,0.5054945349693298,[],[],0]]]],[["MoveTo",10,561713266057788]],false,false,470943728107764,[],null],["t20",6,false,[],0,0,null,[["Default",5,false,1,0,false,804798480075980,[["images/panel_pause-sheet0.png",168,0,0,250,250,1,0.5,0.5,[],[],0]]]],[],false,false,103999013142366,[],null],["t21",6,false,[],1,0,null,[["Default",5,false,1,0,false,794524614026990,[["images/layer-sheet0.png",111520,0,0,400,376,1,0.5,0.5,[],[-0.362500011920929,-0.3537229895591736,0,-0.5,0.362500011920929,-0.3537229895591736,0.497499942779541,0,0.3650000095367432,0.3563830256462097,0,0.5,-0.3650000095367432,0.3563830256462097,-0.5,0],0]]]],[["Sine",11,152768910804631]],false,false,822735679292648,[],null],["t22",6,false,[],1,0,null,[["Default",5,false,1,0,false,185281331107930,[["images/newwordpng-sheet0.png",166389,0,0,500,341,1,0.5,0.5014662742614746,[],[-0.3939999938011169,-0.3460412621498108,0,-0.4398826658725739,0.1480000019073486,0.01466274261474609,0.2919999957084656,-0.00293228030204773,0.4660000205039978,0.4486806988716126,0,0.4721407294273377,-0.4620000123977661,0.4428157210350037,-0.2820000052452087,-0.00293228030204773],0]]]],[["Anchor",12,539593209741847]],false,false,139959116973831,[],null],["t23",2,false,[],0,0,null,null,[],true,false,262867654071762,[],null],["t24",4,true,[],1,0,null,null,[["Pin",13,693926857619114]],false,false,154178255437462,[],null],["t25",6,true,[],0,0,null,null,[],false,false,909098946188328,[],null]],[[24,17,11,9,10],[25,19,18,15,21]],[["Layout 1",1200,1200,false,"Event sheet 1",148229480160171,[["BG",0,977906834634586,true,[255,255,255],true,1,1,1,false,false,1,0,0,[],[]],["Main",1,715835324311419,true,[255,255,255],true,0,0,1,false,false,1,0,0,[[[600,-1099.549194335938,0,163.3448486328125,106.1741485595703,0,0,0.7900000214576721,0.5,0.5015384554862976,0,0,[]],2,2,[],[],[1,"Default",0,1]],[[314,-701,0,58,49,0,0,1,0.5,0.5,0,0,[]],4,5,[],[],[0,"Default",0,1]],[[313,-632,0,58.32666778564453,58.32666778564453,0,0,1,0.5,0.5,0,0,[]],5,6,[],[],[0,"Default",0,1]],[[209,-866,0,200,85,0,0,1,0.5049999952316284,0.4235294163227081,0,0,[]],6,7,[[0],[""],[0]],[[0,0,0,2,1]],[0,"Default",0,1]],[[-35,-863,0,200,85,0,0,1,0.5,0.4117647111415863,0,0,[]],7,8,[[0],[""],[0],[0],[-1],[0]],[[0,1],[0,0,0,2,1],[1,1200,0,0]],[0,"Default",0,1]],[[-30,-972,0,160.2111206054688,55.53988647460938,0,0,1,0.5,0.5,0,0,[]],10,11,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Text",0.5,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[213,-970,0,160.2109985351563,55.54000091552734,0,0,1,0.5,0.5,0,0,[]],11,12,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Text",0.5,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[1113,-734,0,255.0779113769531,99.35787963867188,0,0,1,0.4995633065700531,0.4977578520774841,0,0,[]],12,14,[],[],[0,"Default",0,1]],[[1141,-732,0,132,77,0,0,1,0.5,0.5,0,0,[]],9,10,[],[[]],[76,83,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`\\/@ยฐ+=*$ยฃโ‚ฌ<>%","TIME",0.7,0,1,1,1,0,0,0,"[[34,\" \"],[14,\"|\"],[16,\"il\"],[17,\"I.:'\"],[18,\";!\"],[19,\",\"],[22,\"`\"],[24,\")\"],[25,\"(\\\\/\"],[26,\"[\"],[27,\"j]\"],[28,\"-\"],[29,\"ยฐ\"],[32,\"t1\"],[33,\"\\\"\"],[34,\"r\"],[35,\"f\"],[36,\"*\"],[39,\"s\"],[40,\"kx\"],[41,\"Jhnu\"],[42,\"v7?+=<>\"],[43,\"Faceyz0238\"],[44,\"L569_~$\"],[45,\"bdgopq\"],[46,\"P#\"],[47,\"EX\"],[48,\"S4โ‚ฌ\"],[49,\"Yยฃ\"],[50,\"BNR\"],[51,\"DHKTU\"],[52,\"VZ\"],[53,\"C\"],[54,\"A\"],[55,\"&\"],[56,\"GM\"],[57,\"O\"],[60,\"Q\"],[62,\"mw\"],[65,\"%\"],[72,\"W\"],[74,\"@\"]]",-1]],[[109,-653,0,140,140,0,0,1,0.5,0.5,0,0,[]],13,15,[],[],[0,"Default",0,1]],[[600,386,0,631,330,0,0,0.699999988079071,0.500792384147644,0.5,0,0,[]],16,18,[],[[0,2,0,1,0,0,0,20,0]],[0,"Default",0,1]],[[745,-1011,0,642,205,0,0,1,0.5,0.5,0,0,[]],17,19,[],[[]],[73,91,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.,;:?!-_~#\"'&()[]|`/@ยฐ+=*$ยฃโ‚ฌ<>%รร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบชฤร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„รรŒแปŠแปˆฤจร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–ฦ แปœแปšแปขแปžแป รšร™แปคแปฆลจฦฏแปชแปจแปฐแปฌแปฎรแปฒแปดแปถแปธรกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซฤ‘รฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…รญรฌแป‹แป‰ฤฉรณรฒแปแปรตรดแป“แป‘แป™แป•แป—ฦกแปแป›แปฃแปŸแปกรบรนแปฅแปงลฉฦฐแปซแปฉแปฑแปญแปฏรฝแปณแปตแปทแปน","Sแบฏp xแบฟp cรกc tแปซ sau thร nh cรขu ฤ‘รบng",0.85,0,1,1,1,0,0,0,"{\"\"c2array\"\":true,\"\"size\"\":[2,40,1],\"\"data\"\":[[[22],[11],[13],[14],[15],[19],[20],[21],[22],[23],[24],[26],[27],[28],[29],[30],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[49],[50],[51],[52],[53],[54],[55],[56],[58],[59],[61],[62],[71]],[[\"\" \"\"],[\"\"|\"\"],[\"\":\"\"],[\"\"Iil.,;'แปŠแป‹\"\"],[\"\"!\"\"],[\"\"แปˆแป‰\"\"],[\"\"`รรŒรญรฌ\"\"],[\"\"[]\"\"],[\"\"j()\"\"],[\"\"-\"\"],[\"\"/\"\"],[\"\"tยฐ\"\"],[\"\"1\"\"],[\"\"rฤจฤฉ\"\"],[\"\"*\"\"],[\"\"f\\\"\"\"\"],[\"\"Juz078รบรนแปฅแปงลฉ\"\"],[\"\"hn3569$\"\"],[\"\"Faceks2+=<>รกร แบฃแบกรฃฤƒแบฑแบฏแบทแบณแบตรขแบงแบฅแบญแบฉแบซรฉรจแบปแบนแบฝรชแปแบฟแป‡แปƒแป…\"\"],[\"\"Ldgq\"\"],[\"\"bp4?~\"\"],[\"\"oyยฃโ‚ฌรณรฒแปแปรตรดแป“แป‘แป™แป•แป—รฝแปณแปตแปทแปน\"\"],[\"\"EPvx#ร‰รˆแบบแบธแบผรŠแป€แบพแป†แป‚แป„\"\"],[\"\"ฤ‘\"\"],[\"\"HNTU_รšร™แปคแปฆลจ\"\"],[\"\"SZ\"\"],[\"\"BD\"\"],[\"\"C\"\"],[\"\"KR\"\"],[\"\"VX&ฦฐแปซแปฉแปฑแปญแปฏ\"\"],[\"\"GYรแปฒแปดแปถแปธฦกแปแป›แปฃแปŸแปก\"\"],[\"\"Mฤ\"\"],[\"\"Oร“ร’แปŒแปŽร•ร”แป’แปแป˜แป”แป–\"\"],[\"\"Aรร€แบขแบ รƒฤ‚แบฐแบฎแบถแบฒแบดร‚แบฆแบคแบฌแบจแบช\"\"],[\"\"Q\"\"],[\"\"ฦฏแปชแปจแปฐแปฌแปฎ\"\"],[\"\"mw\"\"],[\"\"%\"\"],[\"\"ฦ แปœแปšแปขแปžแป \"\"],[\"\"W@\"\"]]]}",-1]],[[1858,-635,0,82.66699981689453,75.98699951171875,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],18,20,[[0],[0]],[[1,400,0,0]],[0,"Default",0,1]],[[1858,-727,0,82.66699981689453,75.98699951171875,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],19,21,[[0],[0]],[[1,400,0,0]],[0,"Default",0,1]],[[1859,-544,0,82.66677093505859,75.98662567138672,0,0,1,0.5050504803657532,0.5054945349693298,0,0,[]],15,17,[],[],[0,"Default",0,1]]],[]],["Pause",2,621954870190361,true,[255,255,255],true,1,1,1,false,false,1,0,0,[[[600,600,0,1946.036010742188,1251.02294921875,0,0,1,0.5,0.5,0,0,[]],20,22,[],[],[0,"Default",0,1]],[[600,600,0,400,376,0,0,1,0.5,0.5,0,0,[]],21,23,[],[[1,2,0,3,0,0,0,50,0]],[0,"Default",0,1]]],[]],["Logo",3,899027236628199,true,[255,255,255],true,1,1,1,false,false,1,0,0,[[[110,77,0,195.7390747070313,133.4940490722656,0,0,1,0.5,0.5014662742614746,0,0,[]],22,24,[],[[0,0,0,0,1]],[0,"Default",0,1]]],[]]],[[null,23,3,[],[],[]]],[]]],[["Event sheet 1",[[2,"move",false],[2,"DrapDrop",false],[1,"Paused",0,0,false,false,881036884152158,false],[1,"end",0,-1,false,false,348658772353398,false],[1,"isTimeUp",0,0,false,false,617056362802034,false],[1,"timeLeft",0,0,false,false,670843326082385,false],[1,"answer",1,"",false,false,538561721013949,false],[0,null,false,null,421297551205104,[[-1,14,null,1,false,false,false,438843515576193,false]],[[0,15,null,551138518888793,false],[-1,16,null,392038834754127,false,[[5,[0,2]],[3,0]]]]],[0,null,false,null,432411265738905,[[0,17,null,1,false,false,false,913106290597646,false]],[[1,18,null,260483465573520,false,[[3,0],[7,[2,"Load dแปฏ liแป‡u xong"]]]],[1,18,null,330854144982241,false,[[3,0],[7,[20,0,19,true,null]]]]],[[0,null,false,null,122100426567399,[],[[0,20,null,458181517098292,false]]]]],[0,null,false,null,495673204159818,[[0,21,null,1,false,false,false,157454832331304,false]],[[1,18,null,816803828558793,false,[[3,0],[7,[10,[10,[10,[2,"Question :"],[20,0,22,true,null]],[2," with value : "]],[20,0,23,true,null]]]]],[1,18,null,585706784629547,false,[[3,0],[7,[10,[10,[10,[2,"Request :"],[20,0,24,true,null]],[2," with value : "]],[20,0,25,true,null]]]]],[1,18,null,103090682922262,false,[[3,0],[7,[10,[2,"Options Count :"],[20,0,26,false,null]]]]],[1,18,null,460050924307031,false,[[3,0],[7,[10,[2,"Hint Count :"],[20,0,27,false,null]]]]],[6,28,null,227093858363506,false],[7,28,null,601277174090980,false],[-1,29,null,623599131030475,false,[[11,"isTimeUp"],[7,[0,0]]]],[17,30,"Pin",210783341114782,false,[[4,16],[3,0]]],[9,30,"Pin",636254900159958,false,[[4,12],[3,0]]],[17,31,null,808593987399542,false,[[7,[20,0,23,true,null]]]],[18,32,null,756761854102448,false,[[10,0],[7,[20,18,33,false,null]]]],[18,32,null,843231659647898,false,[[10,1],[7,[20,18,34,false,null]]]],[18,35,null,429067541495196,false,[[0,[20,15,33,false,null]],[0,[20,15,34,false,null]]]],[19,32,null,312955471850139,false,[[10,0],[7,[20,19,33,false,null]]]],[19,32,null,725880314927928,false,[[10,1],[7,[20,19,34,false,null]]]],[19,35,null,588637745430653,false,[[0,[20,15,33,false,null]],[0,[20,15,34,false,null]]]]],[[0,null,false,null,485548080945358,[],[],[[0,null,false,null,353360617038747,[[-1,36,null,0,true,false,false,426031302720883,false,[[0,[19,37,[[20,0,27,false,null]]]]]]],[[1,18,null,774283986832004,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Hint "],[19,38]],[2," : "]],[20,0,39,true,null]],[2," with value : "]],[20,0,40,false,null,[[19,38]]]]]]],[-1,41,null,293640594498419,false,[[4,6],[5,[0,1]],[0,[0,0]],[0,[0,0]]]],[6,32,null,928449826019931,false,[[10,0],[7,[19,38]]]],[6,32,null,469368349287922,false,[[10,1],[7,[20,0,40,false,null,[[19,38]]]]]]],[[0,null,false,null,281186941363198,[[-1,42,null,0,false,false,false,270228085573728,false,[[7,[20,0,40,false,null,[[19,38]]]],[8,1],[7,[2,"_"]]]]],[[6,43,null,479660887524793,false,[[10,2],[3,1]]],[-1,41,null,444212703779207,false,[[4,11],[5,[0,1]],[0,[20,6,33,false,null]],[0,[20,6,34,false,null]]]],[11,30,"Pin",107645244014340,false,[[4,6],[3,0]]],[11,31,null,587331202720984,false,[[7,[21,6,true,null,1]]]],[6,44,null,766787258116670,false,[[0,[0,1]]]],[6,45,null,184627778112595,false,[[0,[4,[20,11,46,false,null],[0,40]]]]],[0,47,null,710326262862679,false,[[0,[19,38]],[0,[20,6,48,false,null]]]],[11,49,null,384268264373252,false],[6,28,null,467966829409923,false]]],[0,null,false,null,814070861308285,[[-1,50,null,0,false,false,false,239499034251328,false]],[[6,43,null,144502413238243,false,[[10,2],[3,0]]],[6,44,null,933284006554880,false,[[0,[0,0]]]],[0,47,null,598853831883573,false,[[0,[19,38]],[0,[20,6,48,false,null]]]],[6,28,null,176232854345510,false]]]]],[0,null,false,null,874203978797425,[],[[0,51,null,561296199895152,false,[[0,[19,37,[[20,0,27,false,null]]]],[0,[0,0]],[0,[0,5]],[0,[0,1200]],[0,[0,0]],[0,[0,100]],[1,[2,"slot"]],[0,[0,0]]]]]],[0,null,false,null,909153821270848,[[-1,36,null,0,true,false,false,635603436944920,false,[[0,[19,37,[[20,0,26,false,null]]]]]]],[[-1,41,null,442013143842296,false,[[4,7],[5,[0,1]],[0,[0,0]],[0,[0,0]]]],[7,32,null,352987646507981,false,[[10,1],[7,[20,0,52,true,null,[[19,38]]]]]],[-1,41,null,982597223865073,false,[[4,10],[5,[0,1]],[0,[20,7,33,false,null]],[0,[20,7,34,false,null]]]],[10,30,"Pin",165160892312361,false,[[4,7],[3,0]]],[10,31,null,764953221168172,false,[[7,[21,7,true,null,1]]]],[7,45,null,545043311794061,false,[[0,[4,[20,10,46,false,null],[0,40]]]]],[0,47,null,532744520616907,false,[[0,[19,38]],[0,[20,7,48,false,null]]]],[10,49,null,629741382173206,false],[7,28,null,250921468219019,false]]],[0,null,false,null,552086902445386,[],[[0,51,null,303455584672272,false,[[0,[19,37,[[20,0,26,false,null]]]],[0,[0,0]],[0,[0,5]],[0,[0,1200]],[0,[0,0]],[0,[0,100]],[1,[2,"word"]],[0,[0,0]]]],[2,53,null,896032366405997,false,[[0,[4,[20,0,54,false,null,[[0,0]]],[0,740]]]]]]]]]]],[0,null,false,null,497236469772730,[[0,55,null,1,false,false,false,443884083216682,false]],[],[[0,null,false,null,687736791253513,[[-1,36,null,0,true,false,false,279932131981764,false,[[0,[19,37,[[20,0,26,false,null]]]]]]],[[1,18,null,364738576330795,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Options "],[19,38]],[2," : "]],[20,0,56,true,null]],[2," with value : "]],[20,0,52,true,null,[[19,38]]]]]]],[-1,41,null,307050525392225,false,[[4,7],[5,[0,1]],[0,[20,0,57,false,null,[[19,38]]]],[0,[4,[20,0,54,false,null,[[19,38]]],[0,720]]]]],[7,32,null,506421085652188,false,[[10,0],[7,[19,38]]]],[7,32,null,133815760263373,false,[[10,1],[7,[20,0,52,true,null,[[19,38]]]]]],[7,32,null,305354109629358,false,[[10,4],[7,[0,-1]]]],[7,32,null,535327498664712,false,[[10,2],[7,[20,7,33,false,null]]]],[7,32,null,647890946310855,false,[[10,3],[7,[20,7,34,false,null]]]],[0,47,null,910263256932855,false,[[0,[19,38]],[0,[20,7,48,false,null]]]],[-1,41,null,622351652945152,false,[[4,10],[5,[0,1]],[0,[20,7,33,false,null]],[0,[20,7,34,false,null]]]],[10,30,"Pin",885937465451292,false,[[4,7],[3,0]]],[10,31,null,218466788479069,false,[[7,[21,7,true,null,1]]]],[7,45,null,857763140031264,false,[[0,[4,[20,10,46,false,null],[0,40]]]]]]]]],[0,null,false,null,584160187360303,[[0,58,null,1,false,false,false,425417686539516,false]],[],[[0,null,false,null,147031426467368,[[-1,36,null,0,true,false,false,363665944892905,false,[[0,[19,37,[[20,0,27,false,null]]]]]]],[[1,18,null,105172189607853,false,[[3,0],[7,[10,[10,[10,[10,[10,[2,"Hint "],[19,38]],[2," : "]],[20,0,39,true,null]],[2," with value : "]],[20,0,40,false,null,[[19,38]]]]]]],[-1,41,null,107087916524681,false,[[4,6],[5,[0,1]],[0,[20,0,57,false,null,[[19,38]]]],[0,[4,[20,0,54,false,null,[[19,38]]],[0,700]]]]],[6,32,null,973426876473079,false,[[10,0],[7,[19,38]]]],[6,32,null,249684067255769,false,[[10,1],[7,[20,0,40,false,null,[[19,38]]]]]]],[[0,null,false,null,689853423825256,[[-1,42,null,0,false,false,false,650772162712985,false,[[7,[20,0,40,false,null,[[19,38]]]],[8,1],[7,[2,"_"]]]]],[[6,43,null,992817751735948,false,[[10,2],[3,1]]],[-1,41,null,312627765225569,false,[[4,11],[5,[0,1]],[0,[20,6,33,false,null]],[0,[20,6,34,false,null]]]],[11,30,"Pin",765949005396322,false,[[4,6],[3,0]]],[11,31,null,806266466329195,false,[[7,[21,6,true,null,1]]]],[6,44,null,854705266477157,false,[[0,[0,1]]]],[6,45,null,296637704953944,false,[[0,[4,[20,11,46,false,null],[0,40]]]]],[0,47,null,653467195280465,false,[[0,[19,38]],[0,[20,6,48,false,null]]]]]],[0,null,false,null,137644931092221,[[-1,50,null,0,false,false,false,473512648737442,false]],[[6,43,null,130661888375897,false,[[10,2],[3,0]]],[6,44,null,358959824219578,false,[[0,[0,0]]]],[0,47,null,502012875689432,false,[[0,[19,38]],[0,[20,6,48,false,null]]]],[-1,59,null,417907288920677,false,[[11,"end"],[7,[0,1]]]]]]]]]],[0,null,false,null,904805547462025,[[0,60,null,1,false,false,false,388006929812782,false]],[],[[0,null,false,null,541804770049852,[[-1,61,null,0,true,false,false,316221783183192,false,[[4,6]]]],[[6,35,null,285654947097596,false,[[0,[20,0,57,false,null,[[19,38]]]],[0,[4,[20,0,54,false,null,[[19,38]]],[0,700]]]]]],[[0,null,false,null,613582084338927,[[-1,62,null,0,false,false,false,434913480423303,false,[[4,7],[7,[21,7,false,null,4]],[8,0],[7,[21,6,false,null,0]]]]],[[7,35,null,217777624466158,false,[[0,[20,6,33,false,null]],[0,[20,6,34,false,null]]]]]]]]]],[0,null,false,null,932049977722067,[[3,63,null,1,false,false,false,151476745182048,false,[[4,2]]],[2,64,null,0,false,false,false,914799178539547,false],[-1,65,null,0,false,false,false,776435398611135,false,[[11,"Paused"],[8,0],[7,[0,0]]]]],[[14,66,null,781225671930289,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,67,null,776454437518919,false],[7,68,"DragDrop",428417579665433,false,[[3,0]]],[-1,29,null,565320428504236,false,[[11,"answer"],[7,[2,""]]]],[8,69,null,748468837587588,false,[[1,[2,"currentAnswer"]],[13]]],[-1,70,null,635436410796893,false,[[0,[0,3]]]]]],[0,null,false,null,451460987332911,[[0,71,null,1,false,false,false,411629545703808,false]],[[14,66,null,650874861891851,false,[[2,["correct",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[-1,41,null,141913232396713,false,[[4,13],[5,[0,1]],[0,[20,2,33,false,null]],[0,[20,2,34,false,null]]]],[13,44,null,780721550445968,false,[[0,[0,0]]]]]],[0,null,false,null,237750427110144,[[0,72,null,1,false,false,false,645708292101144,false]],[[14,66,null,756460021400588,false,[[2,["error-010-206498",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[-1,41,null,197616758330077,false,[[4,13],[5,[0,1]],[0,[20,2,33,false,null]],[0,[20,2,34,false,null]]]],[13,44,null,297340547807244,false,[[0,[0,1]]]]]],[0,null,false,null,228267429685141,[[3,63,null,1,false,false,false,541066650772747,false,[[4,4]]]],[[0,67,null,412248459161675,false]]],[0,null,false,null,226192062877487,[[3,63,null,1,false,false,false,627019942440358,false,[[4,5]]]],[[0,73,null,522068149285571,false]]],[0,null,false,null,613335823878662,[[0,74,null,1,false,false,false,670114858178561,false]],[[-1,29,null,483830616149680,false,[[11,"Paused"],[7,[0,1]]]]]],[0,null,false,null,845311172350984,[[0,75,null,1,false,false,false,852031510809572,false]],[[-1,29,null,211181223380704,false,[[11,"Paused"],[7,[0,0]]]]]],[0,null,false,null,400619595242537,[[8,76,null,2,false,false,false,297664733670764,false,[[1,[2,"currentAnswer"]]]]],[],[[0,null,false,null,811570638863629,[[-1,77,null,0,true,false,false,280102595703497,false,[[1,[2,"i"]],[0,[0,0]],[0,[5,[19,37,[[20,0,27,false,null]]],[0,1]]]]]],[],[[0,null,false,null,841450815052621,[[-1,62,null,0,false,false,false,618717887635296,false,[[4,6],[7,[21,6,false,null,0]],[8,0],[7,[19,38]]]]],[[-1,29,null,200900741675217,false,[[11,"answer"],[7,[10,[10,[23,"answer"],[21,6,true,null,1]],[2,"|"]]]]]]]]],[0,null,false,null,921414236068002,[],[[-1,29,null,295374732045975,false,[[11,"answer"],[7,[19,78,[[23,"answer"],[5,[19,79,[[23,"answer"]]],[0,1]]]]]]],[0,80,null,251772190533413,false,[[7,[23,"answer"]]]]]]]],[0,null,false,null,324095037803423,[[3,63,null,1,false,false,false,266860739471470,false,[[4,15]]],[-1,81,null,0,false,false,false,737993891934682,false,[[5,[0,1]]]]],[],[[0,null,false,null,846196779865624,[[19,82,null,0,false,false,false,489738907565431,false,[[8,0],[0,[20,15,34,false,null]]]]],[[14,66,null,473853830798718,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[18,83,"MoveTo",726233460308860,false,[[0,[21,18,false,null,0]],[0,[21,18,false,null,1]]]],[19,83,"MoveTo",414352241457494,false,[[0,[21,19,false,null,0]],[0,[21,19,false,null,1]]]]]],[0,null,false,null,362377921578391,[[19,82,null,0,false,false,false,554334838351899,false,[[8,0],[0,[21,19,false,null,1]]]]],[[14,66,null,602079707793078,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[18,84,"MoveTo",539151342728551,false,[[4,15]]],[19,84,"MoveTo",256000459726317,false,[[4,15]]]]]]],[0,null,false,null,336506631538230,[[3,63,null,1,false,false,false,970103290788656,false,[[4,19]]],[19,82,null,0,false,false,false,357901707524031,false,[[8,0],[0,[21,19,false,null,1]]]]],[[14,66,null,336400504897000,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,277114100298874,[[19,85,null,0,false,false,false,275335205093176,false,[[8,0],[0,[0,0]]]]],[[19,44,null,608917399759272,false,[[0,[0,1]]]],[14,86,null,923597021372960,false,[[3,0]]]]],[0,null,false,null,169131772180463,[[-1,50,null,0,false,false,false,133414781774768,false]],[[19,44,null,752460233349342,false,[[0,[0,0]]]],[14,86,null,440909844477599,false,[[3,1]]]]]]],[0,null,false,null,701373002143734,[[3,63,null,1,false,false,false,911523338521087,false,[[4,18]]],[18,82,null,0,false,false,false,885151383952548,false,[[8,0],[0,[21,18,false,null,1]]]]],[[14,66,null,913732012447620,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,67,null,481323005300266,false],[18,84,"MoveTo",572432848914893,false,[[4,15]]],[19,84,"MoveTo",836224042532692,false,[[4,15]]],[-1,70,null,119386672562391,false,[[0,[1,0.5]]]],[-1,16,null,476889441960862,false,[[5,[0,1]],[3,0]]],[-1,16,null,913822679924478,false,[[5,[0,2]],[3,1]]]]],[0,null,false,null,674169569082659,[[3,63,null,1,false,false,false,452207939033638,false,[[4,21]]],[-1,81,null,0,false,false,false,339629376237303,false,[[5,[0,2]]]]],[[14,66,null,511540787718242,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,73,null,299598090064236,false],[-1,16,null,676390283460101,false,[[5,[0,1]],[3,1]]],[-1,16,null,952547328557324,false,[[5,[0,2]],[3,0]]]]],[0,null,false,null,265453471250122,[[3,63,null,1,false,false,false,394936313563062,false,[[4,16]]]],[[14,66,null,625219449389702,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,87,null,987382448847975,false,[[1,[2,"question"]]]],[16,88,"Sine",893600720061045,false,[[3,1]]],[-1,70,null,942343107057151,false,[[0,[0,2]]]],[16,88,"Sine",115279746502493,false,[[3,0]]]]]]],["DrapDrop",[[1,"filledCount",0,-1,false,false,528865922993012,false],[0,null,false,null,997263652717160,[[7,89,"DragDrop",1,false,false,false,418873575551008,false]],[[14,66,null,278885709896242,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,902357475050471,[[7,90,null,0,false,false,false,432762737462953,false,[[10,4],[8,1],[7,[0,-1]]]],[6,90,null,0,false,false,false,585356771407287,false,[[10,0],[8,0],[7,[21,7,false,null,4]]]],[7,91,null,0,false,false,false,457421371134107,false,[[4,10]]]],[[6,32,null,435887953438418,false,[[10,1],[7,[2,"_"]]]],[7,92,null,149676672295486,false],[10,93,null,613006750122617,false]]],[0,null,false,null,433587141135095,[[-1,50,null,0,false,false,false,945678443167381,false]],[],[[0,null,false,null,405280169020425,[[7,91,null,0,false,false,false,958796179230597,false,[[4,10]]]],[[7,92,null,379267445128585,false],[10,93,null,820601644155509,false]]]]]]],[0,null,false,null,681682231504980,[[7,94,"DragDrop",1,false,false,false,104419942933931,false]],[[14,66,null,471291351309416,false,[[2,["immersivecontrol-button-click-sound-463065",false]],[3,0],[0,[0,-2]],[1,[2,""]]]]],[[0,null,false,null,973840870987386,[[7,91,null,0,false,false,false,927133214683559,false,[[4,6]]],[6,95,null,0,false,true,false,709711711099656,false,[[10,2]]]],[],[[0,null,false,null,249673865769984,[[6,96,null,0,false,false,true,696490355074480,false,[[3,0],[0,[20,7,33,false,null]],[0,[20,7,34,false,null]]]],[6,90,null,0,false,false,false,597855320778323,false,[[10,1],[8,0],[7,[2,"_"]]]]],[],[[0,null,false,null,588421277544275,[[7,90,null,0,false,false,false,936269482754803,false,[[10,4],[8,0],[7,[0,-1]]]]],[[6,32,null,331466182833990,false,[[10,1],[7,[21,7,true,null,1]]]],[6,45,null,836606904340226,false,[[0,[20,7,48,false,null]]]],[7,32,null,960442907874950,false,[[10,4],[7,[21,6,false,null,0]]]],[-1,59,null,105162628877280,false,[[11,"filledCount"],[7,[0,1]]]],[0,97,null,866335500525010,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[19,98,[[21,6,false,null,0]]]],[1,[2,""]],[1,[2,""]],[1,[2,""]]]],[0,99,null,422371119260859,false]]],[0,null,false,null,921115780075975,[[-1,50,null,0,false,false,false,137006193882867,false]],[[6,32,null,273442902926236,false,[[10,1],[7,[21,7,true,null,1]]]],[6,45,null,244226561949136,false,[[0,[20,7,48,false,null]]]],[7,32,null,853181189884784,false,[[10,4],[7,[21,6,false,null,0]]]],[0,97,null,135936710083839,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[19,98,[[21,6,false,null,0]]]],[1,[2,""]],[1,[2,""]],[1,[2,""]]]],[0,99,null,969387709025098,false]]]]],[0,null,false,null,861304008004030,[[-1,50,null,0,false,false,false,724024125107371,false],[7,90,null,0,false,false,false,325718392316355,false,[[10,4],[8,1],[7,[0,-1]]]]],[[7,100,"MoveTo",103946852443737,false,[[0,[0,1200]]]],[7,83,"MoveTo",585145205175561,false,[[0,[21,7,false,null,2]],[0,[21,7,false,null,3]]]],[7,32,null,587633356138751,false,[[10,4],[7,[0,-1]]]],[-1,59,null,113943314767689,false,[[11,"filledCount"],[7,[0,-1]]]],[0,97,null,102909933865032,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,99,null,911467806321118,false]]],[0,null,false,null,294276428171109,[[-1,50,null,0,false,false,false,105054270803605,false],[7,90,null,0,false,false,false,639924014328369,false,[[10,4],[8,0],[7,[0,-1]]]]],[[7,100,"MoveTo",619524095714479,false,[[0,[0,1200]]]],[7,83,"MoveTo",522081930094513,false,[[0,[21,7,false,null,2]],[0,[21,7,false,null,3]]]],[7,32,null,898894925626339,false,[[10,4],[7,[0,-1]]]],[0,97,null,410139767441332,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,99,null,434185648859484,false]]]]],[0,null,false,null,518549979406572,[[-1,50,null,0,false,false,false,626164382265109,false],[7,90,null,0,false,false,false,370765125390818,false,[[10,4],[8,1],[7,[0,-1]]]]],[[7,100,"MoveTo",559519774916166,false,[[0,[0,1200]]]],[7,83,"MoveTo",394150204818891,false,[[0,[21,7,false,null,2]],[0,[21,7,false,null,3]]]],[7,32,null,134293064117620,false,[[10,4],[7,[0,-1]]]],[-1,59,null,639499111117844,false,[[11,"filledCount"],[7,[0,-1]]]],[0,97,null,416067919220395,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,99,null,449652634518401,false]]],[0,null,false,null,253318896106578,[[-1,50,null,0,false,false,false,976130912248524,false],[7,90,null,0,false,false,false,212336455323504,false,[[10,4],[8,0],[7,[0,-1]]]]],[[7,100,"MoveTo",715887113417151,false,[[0,[0,1200]]]],[7,83,"MoveTo",323445385016640,false,[[0,[21,7,false,null,2]],[0,[21,7,false,null,3]]]],[7,32,null,831177819961123,false,[[10,4],[7,[0,-1]]]],[0,97,null,517554266842520,false,[[1,[19,98,[[21,7,true,null,1]]]],[1,[2,"-1"]],[1,[2,"d3"]],[1,[2,"d4"]],[1,[2,"d5"]]]],[0,99,null,886894584036340,false]]],[0,null,false,null,574896636757510,[[6,90,null,0,false,false,false,571028565003838,false,[[10,1],[8,0],[7,[2,"_"]]]]],[[6,45,null,279102524976165,false,[[0,[0,200]]]]]]]],[0,null,false,null,247884214403179,[[7,101,"DragDrop",0,false,false,false,659651277524317,false]],[]],[0,null,false,null,362402383492184,[[-1,102,null,0,false,false,false,434516667121053,false]],[],[[0,null,false,null,965835500403048,[[-1,65,null,0,false,false,false,675646424461590,false,[[11,"filledCount"],[8,0],[7,[23,"end"]]]]],[[2,103,null,891431703000104,false,[[3,1]]]]],[0,null,false,null,212517230239479,[[-1,50,null,0,false,false,false,952492598263828,false]],[[2,103,null,354729763832272,false,[[3,0]]]]]]],[0,null,false,null,411103602702519,[[7,94,"DragDrop",1,false,false,false,225123457256246,false]],[],[[0,null,false,null,791897165854458,[[-1,61,null,0,true,false,false,895156882406219,false,[[4,6]]]],[[0,47,null,339019604203678,false,[[0,[19,38]],[0,[20,6,48,false,null]]]]]],[0,null,false,null,989890278111859,[],[[0,51,null,785776740218163,false,[[0,[19,37,[[20,0,27,false,null]]]],[0,[0,0]],[0,[0,5]],[0,[0,1200]],[0,[0,0]],[0,[0,100]],[1,[2,"slot2"]],[0,[0,0]]]]]]]]]],["move",[[0,null,false,null,247537098385321,[[0,104,null,1,false,false,false,357653839729988,false]],[[23,105,null,481034101118882,false,[[1,[20,0,106,true,null]],[3,0],[13]]],[-1,70,null,923787823234004,false,[[0,[1,0.0001]]]]],[[0,null,false,null,501329491159206,[[-1,62,null,0,false,false,false,329723730163277,false,[[4,7],[7,[21,7,true,null,1]],[8,0],[7,[19,98,[[20,23,107,false,null,[[0,0],[2,"data1"]]]]]]]]],[],[[0,null,false,null,373485886439115,[[-1,62,null,0,false,false,false,667505268608524,false,[[4,6],[7,[19,37,[[20,23,107,false,null,[[0,0],[2,"data2"]]]]]],[8,0],[7,[21,6,false,null,0]]]]],[[7,84,"MoveTo",724531557833079,false,[[4,6]]]]],[0,null,false,null,176622797861199,[[-1,50,null,0,false,false,false,494998059713904,false],[-1,62,null,0,false,false,false,646024827473206,false,[[4,7],[7,[21,7,true,null,1]],[8,0],[7,[19,98,[[20,23,107,false,null,[[0,0],[2,"data1"]]]]]]]]],[[7,83,"MoveTo",116962450760903,false,[[0,[21,7,false,null,2]],[0,[21,7,false,null,3]]]]]]]],[0,null,false,null,792444421721800,[[-1,42,null,0,false,false,false,412210749337503,false,[[7,[19,37,[[20,23,107,false,null,[[0,0],[2,"data3"]]]]]],[8,0],[7,[0,1]]]],[2,64,null,0,false,false,false,770004061029044,false]],[[14,66,null,961642601760274,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,67,null,825609295904113,false],[7,68,"DragDrop",371494147684829,false,[[3,0]]],[-1,29,null,269282654558436,false,[[11,"answer"],[7,[2,""]]]],[8,69,null,789440314920250,false,[[1,[2,"currentAnswer"]],[13]]],[-1,70,null,740289121171042,false,[[0,[0,3]]]]]],[0,null,false,null,636272565355450,[[-1,42,null,0,false,false,false,892448585455581,false,[[7,[19,37,[[20,23,107,false,null,[[0,0],[2,"data3"]]]]]],[8,0],[7,[0,2]]]]],[[14,66,null,356443660530524,false,[[2,["click",false]],[3,0],[0,[0,-2]],[1,[2,""]]]],[0,87,null,733652133293167,false,[[1,[2,"question"]]]]]]]]]]],[["click.ogg",24620],["correct.ogg",60630],["error-010-206498.ogg",11425],["immersivecontrol-button-click-sound-463065.ogg",3830]],"media/",false,1200,1200,3,true,true,true,"1.0.0.0",true,false,3,0,26,false,true,1,true,"audio_spelling_sequence_sentence_teacher",0,[]]} \ No newline at end of file diff --git a/audio_spelling_sequence_sentence_teacher/images/khungnen-sheet0.png b/audio_spelling_sequence_sentence_teacher/images/khungnen-sheet0.png deleted file mode 100644 index ac41506..0000000 Binary files a/audio_spelling_sequence_sentence_teacher/images/khungnen-sheet0.png and /dev/null differ diff --git a/audio_spelling_sequence_sentence_teacher/offline.js b/audio_spelling_sequence_sentence_teacher/offline.js index cfc383d..fb588a0 100644 --- a/audio_spelling_sequence_sentence_teacher/offline.js +++ b/audio_spelling_sequence_sentence_teacher/offline.js @@ -1,5 +1,5 @@ ๏ปฟ{ - "version": 1772008087, + "version": 1772175811, "fileList": [ "data.js", "c2runtime.js", @@ -21,7 +21,6 @@ "images/panel_pause-sheet0.png", "images/layer-sheet0.png", "images/newwordpng-sheet0.png", - "images/khungnen-sheet0.png", "media/click.ogg", "media/correct.ogg", "media/error-010-206498.ogg", diff --git a/audio_spelling_sequence_sentence_teacher/sena_sdk.js b/audio_spelling_sequence_sentence_teacher/sena_sdk.js index a7fd89e..aea3c0c 100644 --- a/audio_spelling_sequence_sentence_teacher/sena_sdk.js +++ b/audio_spelling_sequence_sentence_teacher/sena_sdk.js @@ -814,7 +814,7 @@ SenaSDK.prototype.start = function () { if (self.shuffle && self.data?.options) { self.shuffleArray(self.data.options); } - self.startTime = Date.now(); + // self.startTime = Date.now(); }; SenaSDK.prototype.markUserInteraction = function () { @@ -870,8 +870,8 @@ SenaSDK.prototype.end = function (answer, callback) { // ========== STANDARD GAMES (Quiz/Sort/Fill) ========== - self.endTime = Date.now(); - const duration = (self.endTime - self.startTime) / 1000; + // self.endTime = Date.now(); + // const duration = (self.endTime - self.startTime) / 1000; const answerStr = String(answer || ''); const userAnswers = answerStr.includes('|') @@ -918,21 +918,19 @@ SenaSDK.prototype.end = function (answer, callback) { }); } - // Check time limit - if (self.timeLimit > 0 && duration > self.timeLimit) { - isCorrect = false; - console.log('๐ŸŽฎ Sena SDK: Time limit exceeded'); - } + // // Check time limit + // if (self.timeLimit > 0 && duration > self.timeLimit) { + // isCorrect = false; + // console.log('๐ŸŽฎ Sena SDK: Time limit exceeded'); + // } const result = { - isCorrect: isCorrect, - duration: duration, - correctAnswer: correctAnswers.join(' | '), - userAnswer: userAnswers.join(' | ') - }; + isCorrect: isCorrect, + correctAnswer: correctAnswers.join(' | '), + userAnswer: userAnswers.join(' | ') +}; - console.log(`๐ŸŽฎ Sena SDK: Result: ${isCorrect ? 'CORRECT' : 'INCORRECT'} (${duration}s)`); - + console.log(`๐ŸŽฎ Sena SDK: Result: ${isCorrect ? 'CORRECT' : 'INCORRECT'}`); if (callback) callback(result.isCorrect); return result; }; diff --git a/source/audio_spelling_sequence_sentence_teacher.capx b/source/audio_spelling_sequence_sentence_teacher.capx index 14ec0cd..34f2e1d 100644 Binary files a/source/audio_spelling_sequence_sentence_teacher.capx and b/source/audio_spelling_sequence_sentence_teacher.capx differ diff --git a/source/audio_spelling_sequence_sentence_teacher.capx.backup1 b/source/audio_spelling_sequence_sentence_teacher.capx.backup1 index cb02ade..14ec0cd 100644 Binary files a/source/audio_spelling_sequence_sentence_teacher.capx.backup1 and b/source/audio_spelling_sequence_sentence_teacher.capx.backup1 differ