Commit 3ec21225 authored by 李维's avatar 李维

暂时提交代码

未完成连线组
parent 8f2961c4
...@@ -117,9 +117,13 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -117,9 +117,13 @@ export default class SceneComponent extends MyCocosSceneComponent {
isDestroy = false; isDestroy = false;
startTimestamp = null; startTimestamp = null;
isHistoryMode = false; // 历史记录模式
async onLoadEnd() { async onLoadEnd() {
// TODO 加载完成后的逻辑写在这里 // TODO 加载完成后的逻辑写在这里
console.log(this.data); console.log(this.data);
if(this.isHistoryMode) {
this.data = historyData.dataSaved;
}
this.disableScroll(); // 禁用页面滚动 this.disableScroll(); // 禁用页面滚动
this.initSize(); // 页面尺寸 this.initSize(); // 页面尺寸
this.initMiddleLayer(); // 中间层相关 this.initMiddleLayer(); // 中间层相关
...@@ -128,8 +132,11 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -128,8 +132,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.initVideoPlayerLayer(); // 视频播放层 this.initVideoPlayerLayer(); // 视频播放层
await this.initHotZoneBg(); // 初始化背景 await this.initHotZoneBg(); // 初始化背景
this.initSlicedHotZoneBg(); // 切片背景图 - 修复某些设备上背景图过长导致的黑屏 this.initSlicedHotZoneBg(); // 切片背景图 - 修复某些设备上背景图过长导致的黑屏
if(!this.isHistoryMode) {
this.initHotZoneItem(); // 初始化热区数据 this.initHotZoneItem(); // 初始化热区数据
// this.showHistory(); // 展示模式 } else {
this.showHistory(); // 展示模式
}
this.initScorePanel(); this.initScorePanel();
this.initActionButton(); this.initActionButton();
this.initScoreShow(); this.initScoreShow();
...@@ -810,7 +817,7 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -810,7 +817,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
// 显示历史做题记录 // 显示历史做题记录
showHistory() { showHistory() {
historyData.dataSaved.hotZoneConfigArr.forEach((configItem, index) => { this.data.hotZoneConfigArr.forEach((configItem, index) => {
const resultData = historyData.details.filter(item=>item.configIndex == index); const resultData = historyData.details.filter(item=>item.configIndex == index);
if(resultData.length == 0) { if(resultData.length == 0) {
return return
...@@ -844,6 +851,10 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -844,6 +851,10 @@ export default class SceneComponent extends MyCocosSceneComponent {
case HOT_ZONE_CHECKBOX: case HOT_ZONE_CHECKBOX:
this.showCheckboxGroup(configItem, resultData); this.showCheckboxGroup(configItem, resultData);
break; break;
// 连线组
case CONNECTION:
this.showConnectionGroup(configItem, resultData);
break;
} }
}) })
...@@ -862,7 +873,6 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -862,7 +873,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
this.newDecorativeFrame(hotZoneItemData, layer_1, "#FFFFFF", "#6dbef6", debugMode); this.newDecorativeFrame(hotZoneItemData, layer_1, "#FFFFFF", "#6dbef6", debugMode);
const rect = this.newRectNode(hotZoneItemData, layer_4, debugMode); const rect = this.newRectNode(hotZoneItemData, layer_4, debugMode);
const historyItem = resultData.find(item=>item.contentIndex == index) const historyItem = resultData.find(item=>item.contentIndex == index)
console.log(historyItem)
const textShow = historyItem.currentSelectIndex ? configItem.selectOptionList[historyItem.currentSelectIndex].text : "" const textShow = historyItem.currentSelectIndex ? configItem.selectOptionList[historyItem.currentSelectIndex].text : ""
const inputLabel = this.newInputTextNode(textShow + "", 0); const inputLabel = this.newInputTextNode(textShow + "", 0);
inputLabel.x = rect.width / 2; inputLabel.x = rect.width / 2;
...@@ -911,11 +921,81 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -911,11 +921,81 @@ export default class SceneComponent extends MyCocosSceneComponent {
resultRect.addChild(errIcon); resultRect.addChild(errIcon);
} }
}) })
}
// 连线组 - 历史记录
showConnectionGroup(configItem, resultData) {
console.log(configItem, resultData)
const debugMode = false;
const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode);
let allRight = true;
resultData[0].results.forEach(item => {
if(item.right == false) {
allRight = false
}
});
const errIcon = getSprNode("icon_answer_wrong");
const rightIcon = getSprNode("icon_answer_right");
// 图标太大 缩小一半
errIcon.scale = rightIcon.scale = 0.5;
// 显示在热区的中间
errIcon.x = rightIcon.x = resultIconRect.width / 2;
errIcon.y = rightIcon.y = resultIconRect.height / 2;
if(allRight) {
resultIconRect.addChild(rightIcon);
} else {
resultIconRect.addChild(errIcon);
}
resultData[0].results.forEach((resData, index) => {
const startHotZoneData = this.data.hotZoneItemArr[configItem.contentList[index].selectStartHotZoneIndex];
const startRect = this.newRectNode(startHotZoneData, layer_4, debugMode);
const endHotZoneData = this.data.hotZoneItemArr[configItem.contentList[resData.currentEndIndex].selectEndHotZoneIndex];
const endRect = this.newRectNode(endHotZoneData, layer_5, debugMode);
const iconStart = this.getSprNode("icon_connect_start");
const iconEnd = this.getSprNode("icon_connect_end");
iconStart.zIndex = layer_2;
iconEnd.zIndex = layer_2;
iconStart.x = startRect.width / 2;
iconStart.y = startRect.height / 2;
iconEnd.x = endRect.width / 2;
iconEnd.y = endRect.height / 2;
endRect.addChild(iconEnd);
startRect.addChild(iconStart);
const lineNode = new cc.Node();
lineNode.name = 'connect1_' + index;
startRect.addChild(lineNode)
const ctx = lineNode.addComponent(cc.Graphics);
ctx.lineWidth = 4;
const localPos = lineNode.parent.convertToNodeSpaceAR(endRect.parent.convertToWorldSpaceAR(cc.v2(endRect.x + endRect.width / 2, endRect.y + endRect.height / 2)));
// 清除上一次的痕迹
ctx.clear()
// 移动到当前开始节点的中心开始画线
ctx.moveTo(startRect.width / 2, startRect.height / 2);
// 终点坐标在上面已经计算好了 这里使用
ctx.lineTo(localPos.x, localPos.y);
// 画线
ctx.stroke();
});
} }
// 判断对错 - 历史记录 // 判断对错 - 历史记录
showRightOrWrongGroup(configItem, resultData) { showRightOrWrongGroup(configItem, resultData) {
console.log(configItem, resultData)
const debugMode = false; const debugMode = false;
const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex]; const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode); const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode);
...@@ -986,7 +1066,6 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -986,7 +1066,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
showHistoryRadio(configItem, resultData) { showHistoryRadio(configItem, resultData) {
const debugMode = false; const debugMode = false;
const historyItem = resultData[0]; const historyItem = resultData[0];
const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex]; const resultIconShowData = this.data.hotZoneItemArr[configItem.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, false); const resultIconRect = this.newRectNode(resultIconShowData, layer_2, false);
...@@ -996,7 +1075,6 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -996,7 +1075,6 @@ export default class SceneComponent extends MyCocosSceneComponent {
configItem.contentList.forEach((option, index) => { configItem.contentList.forEach((option, index) => {
const hotZoneData = this.data.hotZoneItemArr[option.selectHotZoneIndex]; const hotZoneData = this.data.hotZoneItemArr[option.selectHotZoneIndex];
const rect = this.newRectNode(hotZoneData, layer_4, debugMode); const rect = this.newRectNode(hotZoneData, layer_4, debugMode);
// 创建 结果节点 颜色区域 和 边框 // 创建 结果节点 颜色区域 和 边框
const maskNode = this.newMaskRectNode(hotZoneData, layer_2, "#00000033"); const maskNode = this.newMaskRectNode(hotZoneData, layer_2, "#00000033");
const selLineNode = this.newOutlineNode(hotZoneData, layer_2, "#6dbef6"); const selLineNode = this.newOutlineNode(hotZoneData, layer_2, "#6dbef6");
......
export const defaultData = {"unitName":"L5-B6","author":"李建华","header_image_url":"http://teach.cdn.ireadabc.com/6a946a79366b6dac1838a9485ece349b.jpg","footer_image_url":"http://teach.cdn.ireadabc.com/29406cdda9fc6d703e0dc4f755bd9b5b.png","bgItem":{"url":"http://teach.cdn.ireadabc.com/e875dda1f58c8b8eb828ec41a169979c.jpg","rect":{"x":0,"y":1540.7555555555555,"width":890,"height":1914.488888888889}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-11","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":115.17,"y":84.73,"width":108.54,"height":96.48}},{"index":1,"itemType":"rect","itemName":"1-12","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":294.86,"y":84.73,"width":108.54,"height":96.48}},{"index":2,"itemType":"rect","itemName":"1-13","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":115.17,"y":212.56,"width":108.54,"height":96.48}},{"index":3,"itemType":"rect","itemName":"1-14","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":294.86,"y":212.56,"width":108.54,"height":96.48}},{"index":4,"itemType":"rect","itemName":" 1-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":75.98,"y":363.31,"width":325.61,"height":24.12}},{"index":5,"itemType":"rect","itemName":"1-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":75.98,"y":397.08,"width":325.61,"height":24.12}},{"index":6,"itemType":"rect","itemName":"1-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":75.98,"y":430.84,"width":325.61,"height":24.12}},{"index":7,"itemType":"rect","itemName":"1-24","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":75.98,"y":464.61,"width":325.61,"height":24.12}},{"index":8,"itemType":"rect","itemName":" 2-10","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":737.45,"y":81.72,"width":18.09,"height":18.09}},{"index":9,"itemType":"rect","itemName":"2-11","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":759.45,"y":97.09,"width":21.1,"height":16.28}},{"index":10,"itemType":"rect","itemName":"2-12","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":782.07,"y":95.89,"width":24.12,"height":16.28}},{"index":11,"itemType":"rect","itemName":"2-110","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":599.36,"y":126.34,"width":18.09,"height":18.09}},{"index":12,"itemType":"rect","itemName":"2-111","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":617.75,"y":111.56,"width":21.1,"height":16.28}},{"index":13,"itemType":"rect","itemName":"2-112","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":641.57,"y":110.96,"width":24.12,"height":16.28}},{"index":14,"itemType":"rect","itemName":"2-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":599.36,"y":149.85,"width":18.09,"height":18.09}},{"index":15,"itemType":"rect","itemName":"2-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":622.58,"y":162.82,"width":21.1,"height":16.28}},{"index":16,"itemType":"rect","itemName":"2-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":645.79,"y":162.21,"width":24.12,"height":16.28}},{"index":17,"itemType":"rect","itemName":"2-210","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":196.28,"width":18.09,"height":18.09}},{"index":18,"itemType":"rect","itemName":"2-211","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":498.36,"y":177.89,"width":21.1,"height":16.28}},{"index":19,"itemType":"rect","itemName":"2-212","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":521.58,"y":177.29,"width":24.12,"height":16.28}},{"index":20,"itemType":"rect","itemName":" 2-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":448.62,"y":233.06,"width":18.09,"height":18.09}},{"index":21,"itemType":"rect","itemName":"2-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":675.04,"y":230.95,"width":21.1,"height":16.28}},{"index":22,"itemType":"rect","itemName":"2-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":698.86,"y":230.95,"width":24.12,"height":16.28}},{"index":23,"itemType":"rect","itemName":"2-40","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":450.43,"y":289.14,"width":18.09,"height":18.09}},{"index":24,"itemType":"rect","itemName":"2-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":532.13,"y":288.24,"width":21.1,"height":16.28}},{"index":25,"itemType":"rect","itemName":"2-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":553.54,"y":289.44,"width":24.12,"height":16.28}},{"index":26,"itemType":"rect","itemName":"2-50","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":450.43,"y":336.17,"width":18.09,"height":18.09}},{"index":27,"itemType":"rect","itemName":"2-51","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":516.45,"y":336.48,"width":21.1,"height":16.28}},{"index":28,"itemType":"rect","itemName":"2-52","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":540.27,"y":337.08,"width":24.12,"height":16.28}},{"index":29,"itemType":"rect","itemName":"2-60","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":451.03,"y":383.81,"width":18.09,"height":18.09}},{"index":30,"itemType":"rect","itemName":"2-61","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":520.67,"y":384.71,"width":21.1,"height":16.28}},{"index":31,"itemType":"rect","itemName":"2-62","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":543.89,"y":384.71,"width":24.12,"height":16.28}},{"index":32,"itemType":"rect","itemName":"2-70","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":452.84,"y":429.64,"width":18.09,"height":18.09}},{"index":33,"itemType":"rect","itemName":"2-71","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":555.04,"y":430.54,"width":21.1,"height":16.28}},{"index":34,"itemType":"rect","itemName":"2-72","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":578.86,"y":429.94,"width":24.12,"height":16.28}},{"index":35,"itemType":"rect","itemName":"2-80","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":452.84,"y":474.26,"width":18.09,"height":18.09}},{"index":36,"itemType":"rect","itemName":"2-81","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":500.17,"y":475.16,"width":21.1,"height":16.28}},{"index":37,"itemType":"rect","itemName":"2-82","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":523.99,"y":474.56,"width":24.12,"height":16.28}},{"index":38,"itemType":"rect","itemName":" 3-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":195.37,"y":641.28,"width":108.54,"height":24.12}},{"index":39,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":161,"y":687.11,"width":108.54,"height":24.12}},{"index":40,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":193.56,"y":746.8,"width":108.54,"height":24.12}},{"index":41,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":136.88,"y":810.12,"width":108.54,"height":24.12}},{"index":42,"itemType":"rect","itemName":"3-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":174.26,"y":858.36,"width":108.54,"height":24.12}},{"index":43,"itemType":"rect","itemName":"3-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":249.03,"y":910.21,"width":108.54,"height":24.12}},{"index":44,"itemType":"rect","itemName":" 4-10","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":451.03,"y":587.01,"width":18.09,"height":18.09}},{"index":45,"itemType":"rect","itemName":"4-11","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":612.94,"width":18.09,"height":18.09}},{"index":46,"itemType":"rect","itemName":"4-12","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":638.27,"width":18.09,"height":18.09}},{"index":47,"itemType":"rect","itemName":"4-13","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":663.59,"width":18.09,"height":18.09}},{"index":48,"itemType":"rect","itemName":"4-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":451.03,"y":690.12,"width":18.09,"height":18.09}},{"index":49,"itemType":"rect","itemName":"4-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":716.66,"width":18.09,"height":18.09}},{"index":50,"itemType":"rect","itemName":"4-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":759.47,"width":18.09,"height":18.09}},{"index":51,"itemType":"rect","itemName":"4-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":802.88,"width":18.09,"height":18.09}},{"index":52,"itemType":"rect","itemName":"4-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":450.43,"y":846.3,"width":18.09,"height":18.09}},{"index":53,"itemType":"rect","itemName":"4-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":873.43,"width":18.09,"height":18.09}},{"index":54,"itemType":"rect","itemName":"4-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":897.55,"width":18.09,"height":18.09}},{"index":55,"itemType":"rect","itemName":"4-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":478.77,"y":925.89,"width":18.09,"height":18.09}},{"index":56,"itemType":"rect","itemName":" 5-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":191.14,"y":1262.35,"width":90.45,"height":36.18}},{"index":57,"itemType":"rect","itemName":"5-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":285.21,"y":1262.35,"width":90.45,"height":36.18}},{"index":58,"itemType":"rect","itemName":"5-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":191.14,"y":1306.67,"width":90.45,"height":36.18}},{"index":59,"itemType":"rect","itemName":"5-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":285.21,"y":1306.67,"width":90.45,"height":36.18}},{"index":60,"itemType":"rect","itemName":"5-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":191.14,"y":1350.99,"width":90.45,"height":36.18}},{"index":61,"itemType":"rect","itemName":"5-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":285.21,"y":1350.99,"width":90.45,"height":36.18}},{"index":62,"itemType":"rect","itemName":" 6-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":703.34,"y":1111.4,"width":95,"height":12.06}},{"index":63,"itemType":"rect","itemName":"6-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":726.59,"y":1170.7,"width":72.36,"height":12.06}},{"index":64,"itemType":"rect","itemName":"6-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":722.37,"y":1231.6,"width":72.36,"height":12.06}},{"index":65,"itemType":"rect","itemName":"6-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":620.47,"y":1297.93,"width":78.39,"height":12.06}},{"index":66,"itemType":"rect","itemName":"6-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":729.61,"y":1359.43,"width":78.39,"height":12.06}},{"index":67,"itemType":"rect","itemName":" 7-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":179.09,"y":1598.82,"width":217.07,"height":72.36}},{"index":68,"itemType":"rect","itemName":"7-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":179.09,"y":1697.4,"width":217.07,"height":72.36}},{"index":69,"itemType":"rect","itemName":"7-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":179.09,"y":1795.99,"width":217.07,"height":72.36}},{"index":70,"itemType":"rect","itemName":"8-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":474.55,"y":1485.46,"width":337.67,"height":391.94}},{"index":71,"itemType":"rect","itemName":"5-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":226.12,"y":1408.27,"width":12.06,"height":12.06}},{"index":72,"itemType":"rect","itemName":"5-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6953125,"imgScale":1,"mapScale":0.6953125,"rect":{"x":332.85,"y":1405.86,"width":12.06,"height":12.06}}],"lastModify":"2023-07-10T02:01:34.590Z","ratingSystem":"7","hotZoneConfigArr":[{"hotZoneType":"5","linkHotZoneIndex":0,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"to ask sb to come to a social event","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":2,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"to be defeated; to fail to win a competition.a court case. an argument, etc","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":3,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"to allow sb to do sth or to allow sth to happen","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":4,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":5,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":6,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":7,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"They were divided into two groups.","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":9},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":10}],"linkResultShowHotZoneIndex":8},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":12},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":13}],"linkResultShowHotZoneIndex":11},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":15},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":16}],"linkResultShowHotZoneIndex":14},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":18},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":19}],"linkResultShowHotZoneIndex":17},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":21},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":22}],"linkResultShowHotZoneIndex":20},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":24},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":25}],"linkResultShowHotZoneIndex":23},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":27},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":28}],"linkResultShowHotZoneIndex":26},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":30},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":31}],"linkResultShowHotZoneIndex":29},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":33},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":34}],"linkResultShowHotZoneIndex":32},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"31561391-d690-43a1-8259-b5c41789897b","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":36},{"uuid":"0e819205-ab7d-4462-97b1-48ff862bf14c","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":37}],"linkResultShowHotZoneIndex":35},{"hotZoneType":"5","linkHotZoneIndex":38,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as soon as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":39,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as many as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":40,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as well as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":41,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as hard as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":42,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as much as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":43,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"as long as","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"d21a6f1b-3b6b-4261-bda1-bc43ec4e1952","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":45},{"uuid":"5f29ba53-3136-4987-bc0b-829b2d447feb","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":46},{"uuid":"251a1d87-b430-4cfd-a1a4-60ee22829c03","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":47}],"linkResultShowHotZoneIndex":44},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"d21a6f1b-3b6b-4261-bda1-bc43ec4e1952","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":49},{"uuid":"5f29ba53-3136-4987-bc0b-829b2d447feb","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":50},{"uuid":"251a1d87-b430-4cfd-a1a4-60ee22829c03","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":51}],"linkResultShowHotZoneIndex":48},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"border","selectedStyle":"right","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"d21a6f1b-3b6b-4261-bda1-bc43ec4e1952","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":53},{"uuid":"5f29ba53-3136-4987-bc0b-829b2d447feb","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":54},{"uuid":"251a1d87-b430-4cfd-a1a4-60ee22829c03","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":55}],"linkResultShowHotZoneIndex":52},{"hotZoneType":"0","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"Fastest horse","optionShowText":""},{"text":"Medium speed horse","optionShowText":""},{"text":"Slowest horse","optionShowText":""}],"contentList":[{"uuid":"9b3fb488-2e85-45e7-ac47-0ca707298508","text":"Fastest horse","selectOptionListIndex":0,"selectOptionListIndexArr":[0],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":56},{"uuid":"5307227c-2065-499a-a4e6-74f4429ab834","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[2],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":57},{"uuid":"677ae665-4c52-4121-9ee5-2e5bbcb41664","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[1],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":58},{"uuid":"f8f1dbc3-5ef5-4706-a6be-218f5dfd8e1e","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[1],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":59},{"uuid":"0330850e-a3fa-42b4-9a02-7853c82ee995","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[2],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":60},{"uuid":"9cbb0339-9370-475a-a7a8-65fc75cbcf63","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[0],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":61}]},{"hotZoneType":"0","linkHotZoneIndex":-1,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[{"uuid":"87baddf9-a496-4f3f-9b97-7c3ce3f5fdfc","text":"bet","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":63},{"uuid":"ab2bdae3-bc69-4867-977f-0e9b31456249","text":"fastest","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":66},{"uuid":"485d09a5-836e-45e7-a441-1ac8ebbd5d17","text":"horse racing","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":62},{"uuid":"a9b76a10-1621-454b-8401-7f0caf5c4b5d","text":"second","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":65},{"uuid":"f0f180c0-f73e-40ef-b842-17fac067e520","text":"rounds","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectStartHotZoneIndex_1":null,"selectEndHotZoneIndex_1":null,"selectStartHotZoneIndex_2":null,"selectEndHotZoneIndex_2":null,"inputText":"","keyWordMatch":false,"keyWordMatchInOrder":false,"isCaseInsensitive":false,"openAnswer":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"drawingCheckCorrectColors":[],"drawingCheckStrictEqual":false,"painterOnCenter":false,"oplistCol2":false,"selectHotZoneIndex":64}]},{"hotZoneType":"5","linkHotZoneIndex":67,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":68,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":69,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":70,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":true,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":true,"selectOptionList":[],"contentList":[]}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32]}],"bgColorFooter":"#a8bfc7","alignMode":"middle","alignModeFooter":"right"} export const defaultData = {"footer_image_url":"http://teach.cdn.ireadabc.com/5b6405c5beff73d99bb647a510ab8fed.jpg","alignMode":"left","header_image_url":"http://teach.cdn.ireadabc.com/3e5a38c05e69318b60cade381821d106.jpg","bgItem":{"url":"http://teach.cdn.ireadabc.com/93797b71f7f6300e7c3fea252e17423a.jpg","rect":{"x":0,"y":1565.091111111111,"width":1502,"height":1865.8177777777778}},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":190.3,"width":174.99,"height":45.93}},{"index":1,"itemType":"rect","itemName":"1-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":190.3,"width":174.99,"height":45.93}},{"index":2,"itemType":"rect","itemName":"1-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":254.83,"width":174.99,"height":45.93}},{"index":3,"itemType":"rect","itemName":"1-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":254.83,"width":174.99,"height":45.93}},{"index":4,"itemType":"rect","itemName":"1-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":320.45,"width":174.99,"height":45.93}},{"index":5,"itemType":"rect","itemName":"1-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":386.07,"width":174.99,"height":45.93}},{"index":6,"itemType":"rect","itemName":"1-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":384.98,"width":174.99,"height":45.93}},{"index":7,"itemType":"rect","itemName":"1-9","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":931.82,"y":450.6,"width":174.99,"height":45.93}},{"index":8,"itemType":"rect","itemName":"2-20","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":702.14,"width":43.75,"height":43.75}},{"index":9,"itemType":"rect","itemName":"2-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":775.32,"y":697.83,"width":160,"height":50}},{"index":10,"itemType":"rect","itemName":"2-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":949,"y":697.83,"width":50,"height":50}},{"index":11,"itemType":"rect","itemName":"2-30","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":765.58,"width":43.75,"height":43.75}},{"index":12,"itemType":"rect","itemName":"2-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":797.41,"y":763.92,"width":110,"height":50}},{"index":13,"itemType":"rect","itemName":"2-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":927.13,"y":763.92,"width":50,"height":50}},{"index":14,"itemType":"rect","itemName":"2-40","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":532.62,"y":831.2,"width":43.75,"height":43.75}},{"index":15,"itemType":"rect","itemName":"2-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":820.91,"y":827.54,"width":170,"height":50}},{"index":16,"itemType":"rect","itemName":"2-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1013.27,"y":827.54,"width":120,"height":50}},{"index":17,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1141.8,"width":174.99,"height":45.93}},{"index":18,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1219.45,"width":174.99,"height":45.93}},{"index":19,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1298.2,"width":174.99,"height":45.93}},{"index":20,"itemType":"rect","itemName":"3-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":838.85,"y":1375.85,"width":174.99,"height":45.93}},{"index":21,"itemType":"rect","itemName":" 4-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":27.34,"y":1491.78,"width":54.68,"height":54.68}},{"index":22,"itemType":"rect","itemName":"4-21","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1637.24,"width":54.68,"height":54.68}},{"index":23,"itemType":"rect","itemName":"4-22","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1637.24,"width":54.68,"height":54.68}},{"index":24,"itemType":"rect","itemName":"4-23","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1637.24,"width":54.68,"height":54.68}},{"index":25,"itemType":"rect","itemName":"4-31","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1702.31,"width":54.68,"height":54.68}},{"index":26,"itemType":"rect","itemName":"4-32","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1765.2,"width":54.68,"height":54.68}},{"index":27,"itemType":"rect","itemName":"4-33","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1701.22,"width":54.68,"height":54.68}},{"index":28,"itemType":"rect","itemName":"4-41","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":604.8,"y":1765.2,"width":54.68,"height":54.68}},{"index":29,"itemType":"rect","itemName":"4-42","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":694.49,"y":1570.52,"width":54.68,"height":54.68}},{"index":30,"itemType":"rect","itemName":"4-43","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":544.65,"y":1765.2,"width":54.68,"height":54.68}},{"index":31,"itemType":"rect","itemName":"1-10","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.1734375,"imgScale":1,"mapScale":1.1734375,"rect":{"x":1211.8,"y":450.6,"width":174.99,"height":45.93}}],"hotZoneConfigArr":[{"hotZoneType":"5","linkHotZoneIndex":0,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"lay","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":1,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"occer","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":2,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ide","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":3,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ike","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":4,"audio_url":"","score":"1","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"kate","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":5,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ide","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":6,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"orse","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":7,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"lay","contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":31,"audio_url":"","score":"0.5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"ennis","contentList":[]},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":9},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":10}],"linkResultShowHotZoneIndex":8},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":12},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":13}],"linkResultShowHotZoneIndex":11},{"hotZoneType":"3","linkHotZoneIndex":-1,"audio_url":"","score":"1","unselectedStyle":"mask","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"2f54a92f-d499-4daf-ae73-ce2e15e94396","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":15},{"uuid":"2dabe85e-8f0d-4024-851d-e9020b9ea22b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":true,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectHotZoneIndex":16}],"linkResultShowHotZoneIndex":14},{"hotZoneType":"0","linkHotZoneIndex":17,"audio_url":"","score":"5","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"can","contentList":[{"uuid":"72289426-e75e-4847-b392-a886d8fc9362","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":0,"selectHotZoneIndex":17},{"uuid":"4e657b61-d6b9-4f48-b68c-890d0da5b94c","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":18},{"uuid":"5c18d7fd-6cd8-4341-b527-9877f0bc2407","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":1,"selectHotZoneIndex":19},{"uuid":"f8faf9f5-b1b7-4c3e-8e64-f4dc9a57710b","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":null,"selectEndHotZoneIndex":null,"selectEndHotZoneShowIndex":null,"selectOptionListIndex":0,"selectHotZoneIndex":20}],"useSelectOptionList":true,"selectOptionList":[{"text":"can","optionShowText":"can"},{"text":"can't","optionShowText":"can't"}]},{"hotZoneType":"6","linkHotZoneIndex":-1,"audio_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"","contentList":[{"uuid":"bcd860e3-460d-4890-8c42-dd28c2c84910","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"b","selectStartHotZoneIndex":22,"selectEndHotZoneIndex":23,"selectEndHotZoneShowIndex":24},{"uuid":"09160a26-c0e9-42cf-88c6-b5ff2fa9aab2","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"d","selectStartHotZoneIndex":25,"selectEndHotZoneIndex":26,"selectEndHotZoneShowIndex":27},{"uuid":"3ae28df1-d0b8-441d-b172-c166c8db54ab","text":"","optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","isCorrect":false,"isCheck":false,"linkedShowText":"a","selectStartHotZoneIndex":28,"selectEndHotZoneIndex":29,"selectEndHotZoneShowIndex":30}],"linkResultShowHotZoneIndex":21}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]}],"ratingSystem":"0"}
\ No newline at end of file \ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment