Commit 0169d504 authored by 李维's avatar 李维

添加专业连线题

parent 1307dcea
...@@ -635,6 +635,7 @@ const DRAWING = "14"; ...@@ -635,6 +635,7 @@ const DRAWING = "14";
const DRAWING_CHECK = "15"; const DRAWING_CHECK = "15";
const CONNECTION_2LEVEL = "16"; const CONNECTION_2LEVEL = "16";
const MULTIPLE_TEXT_SELECT = "17"; const MULTIPLE_TEXT_SELECT = "17";
const CONNECTION_PRO = "18";
// 评分体系 // 评分体系
const RS_15_5L_FAF = "0"; const RS_15_5L_FAF = "0";
...@@ -1342,6 +1343,11 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -1342,6 +1343,11 @@ export default class SceneComponent extends MyCocosSceneComponent {
validater = this.setConnectionGroup(configItem, isDebug); validater = this.setConnectionGroup(configItem, isDebug);
this.scoreValidater.push(validater); this.scoreValidater.push(validater);
break; break;
// 连线组(专业题型)
case CONNECTION_PRO:
validater = this.setConnectionPro(configItem, isDebug);
this.scoreValidater.push(validater);
break;
// 文字输入区 // 文字输入区
case TEXTINPUT: case TEXTINPUT:
validater = this.setTextInput(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex], isDebug); validater = this.setTextInput(configItem, this.data.hotZoneItemArr[configItem.linkHotZoneIndex], isDebug);
...@@ -2439,6 +2445,355 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -2439,6 +2445,355 @@ export default class SceneComponent extends MyCocosSceneComponent {
return validater; return validater;
} }
// 设置连线组(专业)
setConnectionPro(contentData, debugMode=false) {
const uid = getUUID();
this.allConnectionEndPoints[uid] = [];
// 该题型需要配置一个显示正确错误符号的热区
const resultIconShowData = this.data.hotZoneItemArr[contentData.linkResultShowHotZoneIndex];
const resultIconRect = this.newRectNode(resultIconShowData, layer_2, debugMode);
// 存储所有连线
let currentConnectionList = [];
// 设置校验器
let validater = () => {
const result = {
detail: {
contentType: CONNECTION_PRO,
configIndex: contentData.index,
contentIndex: -1,
results: []
},
contextData: {
currentConnectionList: currentConnectionList
},
configIndex: contentData.index,
rect: resultIconRect,
allRight: true,
score: 0
};
console.log(contentData, currentConnectionList)
contentData.contentList.forEach((option, index) => {
const detailItem = {
startIndex: index,
startText: option.startTextShow ? option.startTextShow : "",
correctStartIndex: option.selectStartHotZoneIndex,
correctEndIndex: option.selectEndHotZoneIndex,
correctEndText: "",
currentStartIndex: null,
currentEndIndex: null,
currentEndText: "",
right: false
}
const res = currentConnectionList.find(item=>{
return item.startHotZoneIndex == option.selectStartHotZoneIndex && item.endHotZoneIndex == option.selectEndHotZoneIndex
})
if(res != undefined) {
result.score += (option.score != null && !isNaN(Number(option.score))) ? Number(option.score) : 0
detailItem.right = true;
} else {
// 如果有错误 - 则标记这道题为错误
result.allRight = false;
}
result.detail.results.push(detailItem)
});
return [result];
};
// 临时存储连接所用 手指在移动时保存上一次命中的索引
let tempConnectResultIndex = -1;
const handleOnTouchMove = (e, connectData) => {
let {
isStartNode,
startRect,
startLineNode,
startLineCtx
} = connectData;
const lineNode = isStartNode ? startRect.children[startRect.children.length - 1] : startLineNode
const ctx = isStartNode ? startRect.lineCtx[startRect.lineCtx.length - 1] : startLineCtx;
// 获取点击的世界坐标
const worldPos = e.getLocation();
// 本地坐标
let localPos = null;
// 遍历所有终点坐标 找到是否命中某一个终点
let hitSomeone = false;
this.allConnectionEndPoints[uid].forEach(endPoint => {
if(hitSomeone) {
// 找到命中点 不再处理其他点
return
}
const checkResult = this.checkHitEndPoint(endPoint, worldPos);
if(checkResult.hit) {
hitSomeone = true;
// 命中终点 把线段终点定为热区中心 会产生吸附效果
localPos = lineNode.parent.convertToNodeSpaceAR(checkResult.centerPos);
// 保存信息 当用户抬手时再判断是否命中
tempConnectResultIndex = checkResult.connectionIndex;
lineNode.connected = true;
} else {
// 没有命中任何终点 线段终点为实际手指位置
localPos = lineNode.parent.convertToNodeSpaceAR(worldPos);
tempConnectResultIndex = -1;
lineNode.connected = false;
}
})
// 清除上一次的痕迹
ctx.clear()
// 移动到当前开始节点的中心开始画线
ctx.moveTo(startRect.width / 2, startRect.height / 2);
// 终点坐标在上面已经计算好了 这里使用
ctx.lineTo(localPos.x, localPos.y);
// 画线
ctx.stroke();
}
const handleOnTouchEnd = (connectData) => {
let {
cuid,
isStartNode,
startIndex,
startHotZoneIndex,
startRect,
startLineNode,
startLineCtx
} = connectData;
// 启用页面滚动
this.enableScroll();
// 检查是否可以提交
// this.checkCanSubmit();
// 隐藏所有终点高亮
this.setActiveEndPointsByUID(false, uid);
// 把命中的节点的连接索引更新
if(tempConnectResultIndex >= 0) {
// 查询当前连接的列表
const isExist = currentConnectionList.find(it=>{
return it.startIndex == startIndex && it.endIndex == tempConnectResultIndex
})
if(isExist == undefined) {
// 新的连线
currentConnectionList.push({
cuid: getUUID(), // 连线数据的唯一标识
startIndex: startIndex,
endIndex: tempConnectResultIndex,
startHotZoneIndex: startHotZoneIndex,
endHotZoneIndex: contentData.connectionPRO_endArr[tempConnectResultIndex],
startRect: startRect,
startLineNode: startRect.children[startRect.children.length - 1],
startLineCtx: startRect.lineCtx[startRect.lineCtx.length - 1],
})
} else if(cuid != isExist.cuid) {
// 连线已经存在 并且又新添加了一条连线
startRect.lineCtx[startRect.lineCtx.length - 1].clear();
} else {
// 连线已经存在 当前的线是之前已经连接过 不处理(用户从终点触发的连线,想要重新连接已有的连线)
}
tempConnectResultIndex = -1;
} else {
const ci = currentConnectionList.findIndex(it=>it.cuid == cuid)
if(ci >= 0) {
// 删除在已连接清单中的连线
currentConnectionList.splice(ci, 1)
}
if(isStartNode && (!startLineNode || !startLineCtx)) {
startLineNode = startRect.children[startRect.children.length - 1]
startLineCtx = startRect.lineCtx[startRect.lineCtx.length - 1]
}
if(startLineCtx) {
startLineCtx.clear();
}
}
}
// 开始点
contentData.connectionPRO_startArr.forEach((startPoint, index) => {
const startHotZoneData = this.data.hotZoneItemArr[startPoint];
const startRect = this.newRectNode(startHotZoneData, layer_4, debugMode);
const iconStart = this.getSprNode("icon_connect_start");
iconStart.zIndex = layer_2;
iconStart.x = startRect.width / 2;
iconStart.y = startRect.height / 2;
startRect.addChild(iconStart);
startRect.lineCtx = [];
// 手点击连线起点 发起连线
startRect.on(cc.Node.EventType.TOUCH_START, () => {
if(this.submitted) {
return
}
let lineNode = null;
let ctx = null;
// 新建节点 放置线条
lineNode = new cc.Node();
lineNode.name = 'connect_' + index;
lineNode.connected = false;
startRect.addChild(lineNode)
ctx = lineNode.addComponent(cc.Graphics);
ctx.lineWidth = 4;
startRect.lineCtx.push(ctx);
// 因为页面滚动 所以在发起连线时要更新所有终点坐标
this.updateAllConnectionEndPoint();
// 显示所有终点高亮
this.setActiveEndPointsByUID(true, uid);
// 禁用滚动 开始连线
this.disableScroll();
// console.log("触摸开始")
})
// 松手 离开屏幕
startRect.on(cc.Node.EventType.TOUCH_CANCEL, () => {
if(this.submitted) {
return
}
handleOnTouchEnd({
startRect: startRect,
startIndex: index,
startHotZoneIndex: startPoint,
isStartNode: true,
});
// console.log("触摸取消")
})
startRect.on(cc.Node.EventType.TOUCH_END, () => {
if(this.submitted) {
return
}
handleOnTouchEnd({
startRect: startRect,
startIndex: index,
startHotZoneIndex: startPoint,
isStartNode: true,
});
// console.log("触摸结束")
})
// 手指移动
startRect.on(cc.Node.EventType.TOUCH_MOVE, (e) => {
if(this.submitted) {
return
}
handleOnTouchMove(e, {
startRect: startRect,
startIndex: index,
startHotZoneIndex: startPoint,
isStartNode: true,
});
})
});
// 结束点
contentData.connectionPRO_endArr.forEach((endPoint, index) => {
const endHotZoneData = this.data.hotZoneItemArr[endPoint];
const endRect = this.newRectNode(endHotZoneData, layer_5, debugMode);
const iconEndActive = this.getSprNode("icon_connect_start");
const iconEnd = this.getSprNode("icon_connect_end");
iconEnd.zIndex = layer_2;
iconEnd.x = endRect.width / 2;
iconEnd.y = endRect.height / 2;
iconEndActive.x = endRect.width / 2;
iconEndActive.y = endRect.height / 2;
iconEndActive.active = false;
endRect.addChild(iconEnd);
endRect.addChild(iconEndActive);
// 中心点 左下角 右下角 正确索引
this.allConnectionEndPoints[uid].push({
parentNode: endRect,
endActiveNode: iconEndActive,
centerPos: endRect.parent.convertToWorldSpaceAR(cc.v2(endRect.x + endRect.width / 2, endRect.y + endRect.height / 2)),
leftBottomPos: endRect.parent.convertToWorldSpaceAR(cc.v2(endRect.x, endRect.y)),
rightTopPos: endRect.parent.convertToWorldSpaceAR(cc.v2(endRect.x + endRect.width, endRect.y + endRect.height)),
connectionIndex: index,
linkedIndex: -1,
getEndShowText: () => ""
})
// 手点击连线起点 发起连线
endRect.on(cc.Node.EventType.TOUCH_START, () => {
if(this.submitted) {
return
}
// 因为页面滚动 所以在发起连线时要更新所有终点坐标
this.updateAllConnectionEndPoint();
// 显示所有终点高亮
this.setActiveEndPointsByUID(true, uid);
// 禁用滚动 开始连线
this.disableScroll();
// console.log("触摸开始")
})
// 松手 离开屏幕
endRect.on(cc.Node.EventType.TOUCH_CANCEL, () => {
if(this.submitted) {
return
}
const connectData = currentConnectionList.find(item=>item.endIndex == index);
if(connectData != undefined) {
handleOnTouchEnd({
...connectData,
endHotZoneIndex: endPoint,
isStartNode: false,
})
} else {
this.enableScroll();
}
// console.log("触摸取消")
})
endRect.on(cc.Node.EventType.TOUCH_END, () => {
if(this.submitted) {
return
}
const connectData = currentConnectionList.find(item=>item.endIndex == index);
if(connectData != undefined) {
handleOnTouchEnd({
...connectData,
endHotZoneIndex: endPoint,
isStartNode: false,
})
} else {
this.enableScroll();
}
// console.log("触摸结束")
})
// 手指移动
endRect.on(cc.Node.EventType.TOUCH_MOVE, (e) => {
if(this.submitted) {
return
}
const connectData = currentConnectionList.find(item=>item.endIndex == index);
if(connectData != undefined) {
handleOnTouchMove(e, {
...connectData,
endHotZoneIndex: endPoint,
isStartNode: false,
});
}
})
});
return validater;
}
// 设置2级连线组 // 设置2级连线组
setConnectionGroup2L(contentData, debugMode=false) { setConnectionGroup2L(contentData, debugMode=false) {
const uid_1 = getUUID(); const uid_1 = getUUID();
......
export const defaultData = {"unitName":"L1-B1","lastModify":"2023-06-25T02:21:14.868Z","author":"刘佳","header_image_url":"http://staging-teach.cdn.ireadabc.com/5d8773508da5d62972152751b73c19d3.jpg","footer_image_url":"http://staging-teach.cdn.ireadabc.com/6b80948bc8d8500c914ea83c15886e06.png","alignMode":"left","bgItem":{"rect":{"x":0,"y":1536.4533333333334,"width":894,"height":1923.0933333333332},"url":"http://teach.cdn.ireadabc.com/096bedf3e7a2429463fd345a69b629dd.jpg"},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-1-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":105.65,"width":25.4,"height":25.4}},{"index":1,"itemType":"rect","itemName":"1-2-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":156.92,"width":25.4,"height":25.4}},{"index":2,"itemType":"rect","itemName":"1-3-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":208.2,"width":25.4,"height":25.4}},{"index":3,"itemType":"rect","itemName":"1-4-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":259.48,"width":25.4,"height":25.4}},{"index":4,"itemType":"rect","itemName":"1-5-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":310.76,"width":25.4,"height":25.4}},{"index":5,"itemType":"rect","itemName":"1-6-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":362.04,"width":25.4,"height":25.4}},{"index":6,"itemType":"rect","itemName":"1-7-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":413.32,"width":25.4,"height":25.4}},{"index":7,"itemType":"rect","itemName":"1-8-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":164.24,"y":464.6,"width":25.4,"height":25.4}},{"index":8,"itemType":"rect","itemName":"1-1-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":105.65,"width":25.4,"height":25.4}},{"index":9,"itemType":"rect","itemName":"1-2-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":156.92,"width":25.4,"height":25.4}},{"index":10,"itemType":"rect","itemName":"1-3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":208.2,"width":25.4,"height":25.4}},{"index":11,"itemType":"rect","itemName":"1-4-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":259.48,"width":25.4,"height":25.4}},{"index":12,"itemType":"rect","itemName":"1-5-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":310.76,"width":25.4,"height":25.4}},{"index":13,"itemType":"rect","itemName":"1-6-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":362.04,"width":25.4,"height":25.4}},{"index":14,"itemType":"rect","itemName":"1-7-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":413.32,"width":25.4,"height":25.4}},{"index":15,"itemType":"rect","itemName":"1-8-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":224.35,"y":464.6,"width":25.4,"height":25.4}},{"index":16,"itemType":"rect","itemName":"1-结果","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":186.25,"y":35.38,"width":33.86,"height":33.86}},{"index":17,"itemType":"rect","itemName":"2-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":756.85,"y":101.41,"width":42.33,"height":25.4}},{"index":18,"itemType":"rect","itemName":"2-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":740.77,"y":154.75,"width":42.33,"height":25.4}},{"index":19,"itemType":"rect","itemName":"2-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":741.61,"y":202.16,"width":42.33,"height":25.4}},{"index":20,"itemType":"rect","itemName":"2-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":728.07,"y":255.49,"width":42.33,"height":25.4}},{"index":21,"itemType":"rect","itemName":"2-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":731.45,"y":306.29,"width":42.33,"height":25.4}},{"index":22,"itemType":"rect","itemName":"2-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":772.09,"y":360.47,"width":42.33,"height":25.4}},{"index":23,"itemType":"rect","itemName":"2-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":738.23,"y":409.57,"width":42.33,"height":25.4}},{"index":24,"itemType":"rect","itemName":"2-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":750.08,"y":462.91,"width":42.33,"height":25.4}},{"index":25,"itemType":"rect","itemName":"3-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":112.6,"y":775.3,"width":84.66,"height":25.4}},{"index":26,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":283.61,"y":775.3,"width":84.66,"height":25.4}},{"index":27,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":112.6,"y":927.69,"width":84.66,"height":25.4}},{"index":28,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":283.61,"y":927.69,"width":84.66,"height":25.4}},{"index":29,"itemType":"rect","itemName":"4-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":729.39,"y":604.72,"width":60,"height":35}},{"index":30,"itemType":"rect","itemName":"4-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":729.39,"y":681.39,"width":60,"height":35}},{"index":31,"itemType":"rect","itemName":"4-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":729.39,"y":759.07,"width":60,"height":35}},{"index":32,"itemType":"rect","itemName":"4-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":729.39,"y":836.74,"width":60,"height":35}},{"index":33,"itemType":"rect","itemName":"4-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":729.39,"y":914.42,"width":60,"height":35}},{"index":34,"itemType":"rect","itemName":"5-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":197.68,"y":1188.86,"width":29.63,"height":29.63}},{"index":35,"itemType":"rect","itemName":"5-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":373.77,"y":1188.86,"width":29.63,"height":29.63}},{"index":36,"itemType":"rect","itemName":"5-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":197.68,"y":1322.62,"width":29.63,"height":29.63}},{"index":37,"itemType":"rect","itemName":"5-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":373.77,"y":1322.62,"width":29.63,"height":29.63}},{"index":38,"itemType":"rect","itemName":"6-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":590.5,"y":1181.24,"width":29.63,"height":29.63}},{"index":39,"itemType":"rect","itemName":"6-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":786.91,"y":1181.24,"width":29.63,"height":29.63}},{"index":40,"itemType":"rect","itemName":"6-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":590.5,"y":1328.55,"width":29.63,"height":29.63}},{"index":41,"itemType":"rect","itemName":"6-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":0.6984375,"imgScale":1,"mapScale":0.6984375,"rect":{"x":786.91,"y":1328.55,"width":29.63,"height":29.63}}],"hotZoneBgSliceList":[{"image_url":""}],"hotZoneConfigArr":[{"hotZoneType":"6","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":"1725bfbf-1709-433c-9921-0104d7a72e15","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":0,"selectEndHotZoneIndex":14,"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},{"uuid":"7c1a6463-3ddf-4768-8db3-9b0b20ef74bc","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":1,"selectEndHotZoneIndex":15,"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},{"uuid":"d2138be6-7157-4730-b506-805872010bc1","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":2,"selectEndHotZoneIndex":8,"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},{"uuid":"dbd4fb01-8ea0-40a8-90f2-a5d34099b2b7","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":3,"selectEndHotZoneIndex":9,"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},{"uuid":"02ba9478-3e46-428c-80b8-5ddea884a33f","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":4,"selectEndHotZoneIndex":13,"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},{"uuid":"09fac921-75f7-442b-a5cf-c6e7c85944c9","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":5,"selectEndHotZoneIndex":12,"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},{"uuid":"22c6541a-678d-47af-939d-c0763f0735e5","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":6,"selectEndHotZoneIndex":11,"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},{"uuid":"c4944a3c-4ed5-4e18-b04a-eb32489ba5ce","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":7,"selectEndHotZoneIndex":10,"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}],"linkResultShowHotZoneIndex":16},{"hotZoneType":"5","linkHotZoneIndex":17,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"e","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":18,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"r","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":19,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"n","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":20,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"s","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":21,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"i","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":22,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"t","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":23,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"w","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":24,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"u","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":25,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"eight","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":26,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"four","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":27,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"seven","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":28,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"five","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":29,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"eight","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":30,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"five","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":31,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"seven","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":32,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"six","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":33,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"two","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"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":"","optionShowText":"panda"},{"text":"","optionShowText":"pandas"}],"contentList":[{"uuid":"e824444f-eaeb-449f-9cff-23d1f64c9eea","text":"","selectOptionListIndex":0,"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},{"uuid":"3f650a78-56cb-4703-9453-24f8b145a3f1","text":"","selectOptionListIndex":1,"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":35},{"uuid":"1c5a749a-e734-4d48-b5d6-f0e84fa966bb","text":"","selectOptionListIndex":1,"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":"b73bcb23-59a2-4314-b44a-7cc342a22318","text":"","selectOptionListIndex":1,"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":37}]},{"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":"","optionShowText":"bird"},{"text":"","optionShowText":"birds"},{"text":"","optionShowText":"butterfly"},{"text":"","optionShowText":"butterflies"}],"contentList":[{"uuid":"e824444f-eaeb-449f-9cff-23d1f64c9eea","text":"","selectOptionListIndex":0,"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":38},{"uuid":"3f650a78-56cb-4703-9453-24f8b145a3f1","text":"","selectOptionListIndex":3,"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":39},{"uuid":"1c5a749a-e734-4d48-b5d6-f0e84fa966bb","text":"","selectOptionListIndex":1,"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":40},{"uuid":"b73bcb23-59a2-4314-b44a-7cc342a22318","text":"","selectOptionListIndex":2,"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":41}]}],"scoreConfigArr":[{"linkHotZoneIndex":-1,"linkHotZoneIndexArr":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]}],"ratingSystem":"7","alignModeFooter":"right","bgColorFooter":"#027cc5"} export const defaultData = {"unitName":"L1-B1","lastModify":"2023-06-26T06:13:47.230Z","author":"刘佳","header_image_url":"http://staging-teach.cdn.ireadabc.com/5d8773508da5d62972152751b73c19d3.jpg","footer_image_url":"http://staging-teach.cdn.ireadabc.com/6b80948bc8d8500c914ea83c15886e06.png","alignMode":"left","bgItem":{"rect":{"x":0,"y":1086.871111111111,"width":1312,"height":2822.257777777778},"url":"http://teach.cdn.ireadabc.com/096bedf3e7a2429463fd345a69b629dd.jpg"},"hotZoneItemArr":[{"index":0,"itemType":"rect","itemName":"1-1-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":155.05,"width":37.28,"height":37.28}},{"index":1,"itemType":"rect","itemName":"1-2-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":230.29,"width":37.28,"height":37.28}},{"index":2,"itemType":"rect","itemName":"1-3-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":305.55,"width":37.28,"height":37.28}},{"index":3,"itemType":"rect","itemName":"1-4-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":380.8,"width":37.28,"height":37.28}},{"index":4,"itemType":"rect","itemName":"1-5-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":456.06,"width":37.28,"height":37.28}},{"index":5,"itemType":"rect","itemName":"1-6-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":531.32,"width":37.28,"height":37.28}},{"index":6,"itemType":"rect","itemName":"1-7-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":606.57,"width":37.28,"height":37.28}},{"index":7,"itemType":"rect","itemName":"1-8-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":241.03,"y":681.83,"width":37.28,"height":37.28}},{"index":8,"itemType":"rect","itemName":"1-1-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":155.05,"width":37.28,"height":37.28}},{"index":9,"itemType":"rect","itemName":"1-2-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":230.29,"width":37.28,"height":37.28}},{"index":10,"itemType":"rect","itemName":"1-3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":305.55,"width":37.28,"height":37.28}},{"index":11,"itemType":"rect","itemName":"1-4-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":380.8,"width":37.28,"height":37.28}},{"index":12,"itemType":"rect","itemName":"1-5-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":456.06,"width":37.28,"height":37.28}},{"index":13,"itemType":"rect","itemName":"1-6-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":531.32,"width":37.28,"height":37.28}},{"index":14,"itemType":"rect","itemName":"1-7-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":606.57,"width":37.28,"height":37.28}},{"index":15,"itemType":"rect","itemName":"1-8-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":329.25,"y":681.83,"width":37.28,"height":37.28}},{"index":16,"itemType":"rect","itemName":"1-结果","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":273.33,"y":51.92,"width":49.69,"height":49.69}},{"index":17,"itemType":"rect","itemName":"2-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1110.72,"y":148.83,"width":62.12,"height":37.28}},{"index":18,"itemType":"rect","itemName":"2-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1087.13,"y":227.11,"width":62.12,"height":37.28}},{"index":19,"itemType":"rect","itemName":"2-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1088.36,"y":296.68,"width":62.12,"height":37.28}},{"index":20,"itemType":"rect","itemName":"2-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1068.49,"y":374.95,"width":62.12,"height":37.28}},{"index":21,"itemType":"rect","itemName":"2-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1073.45,"y":449.5,"width":62.12,"height":37.28}},{"index":22,"itemType":"rect","itemName":"2-6","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1133.09,"y":529.01,"width":62.12,"height":37.28}},{"index":23,"itemType":"rect","itemName":"2-7","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1083.4,"y":601.07,"width":62.12,"height":37.28}},{"index":24,"itemType":"rect","itemName":"2-8","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1100.79,"y":679.35,"width":62.12,"height":37.28}},{"index":25,"itemType":"rect","itemName":"3-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":165.25,"y":1137.8,"width":124.24,"height":37.28}},{"index":26,"itemType":"rect","itemName":"3-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":416.22,"y":1137.8,"width":124.24,"height":37.28}},{"index":27,"itemType":"rect","itemName":"3-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":165.25,"y":1361.44,"width":124.24,"height":37.28}},{"index":28,"itemType":"rect","itemName":"3-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":416.22,"y":1361.44,"width":124.24,"height":37.28}},{"index":29,"itemType":"rect","itemName":"4-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1070.42,"y":887.46,"width":88.05,"height":51.36}},{"index":30,"itemType":"rect","itemName":"4-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1070.42,"y":999.98,"width":88.05,"height":51.36}},{"index":31,"itemType":"rect","itemName":"4-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1070.42,"y":1113.98,"width":88.05,"height":51.36}},{"index":32,"itemType":"rect","itemName":"4-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1070.42,"y":1227.97,"width":88.05,"height":51.36}},{"index":33,"itemType":"rect","itemName":"4-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1070.42,"y":1341.97,"width":88.05,"height":51.36}},{"index":34,"itemType":"rect","itemName":"5-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":290.11,"y":1744.73,"width":43.48,"height":43.48}},{"index":35,"itemType":"rect","itemName":"5-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":548.53,"y":1744.73,"width":43.48,"height":43.48}},{"index":36,"itemType":"rect","itemName":"5-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":290.11,"y":1941.03,"width":43.48,"height":43.48}},{"index":37,"itemType":"rect","itemName":"5-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":548.53,"y":1941.03,"width":43.48,"height":43.48}},{"index":38,"itemType":"rect","itemName":"6-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":866.6,"y":1733.54,"width":43.48,"height":43.48}},{"index":39,"itemType":"rect","itemName":"6-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1154.84,"y":1733.54,"width":43.48,"height":43.48}},{"index":40,"itemType":"rect","itemName":"6-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":866.6,"y":1949.73,"width":43.48,"height":43.48}},{"index":41,"itemType":"rect","itemName":"6-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":1154.84,"y":1949.73,"width":43.48,"height":43.48}},{"index":42,"itemType":"rect","itemName":"T-0","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":208,"y":2263.13,"width":34,"height":34}},{"index":43,"itemType":"rect","itemName":"T-1","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":520,"y":2261.13,"width":34,"height":34}},{"index":44,"itemType":"rect","itemName":"T-2","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":208,"y":2456.13,"width":34,"height":34}},{"index":45,"itemType":"rect","itemName":"T-3","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":520,"y":2462.13,"width":34,"height":34}},{"index":46,"itemType":"rect","itemName":"T-4","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":208,"y":2662.13,"width":34,"height":34}},{"index":47,"itemType":"rect","itemName":"T-5","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":520,"y":2659.13,"width":34,"height":34}},{"index":48,"itemType":"rect","itemName":"T-R","fontSize":50,"fontName":"BRLNSR_1","fontColor":"#8f3758","fontScale":1.025,"imgScale":1,"mapScale":1.025,"rect":{"x":35,"y":2093.13,"width":66,"height":66}}],"hotZoneBgSliceList":[{"image_url":""}],"hotZoneConfigArr":[{"hotZoneType":"6","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":"1725bfbf-1709-433c-9921-0104d7a72e15","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":0,"selectEndHotZoneIndex":14,"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},{"uuid":"7c1a6463-3ddf-4768-8db3-9b0b20ef74bc","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":1,"selectEndHotZoneIndex":15,"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},{"uuid":"d2138be6-7157-4730-b506-805872010bc1","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":2,"selectEndHotZoneIndex":8,"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},{"uuid":"dbd4fb01-8ea0-40a8-90f2-a5d34099b2b7","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":3,"selectEndHotZoneIndex":9,"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},{"uuid":"02ba9478-3e46-428c-80b8-5ddea884a33f","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":4,"selectEndHotZoneIndex":13,"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},{"uuid":"09fac921-75f7-442b-a5cf-c6e7c85944c9","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":5,"selectEndHotZoneIndex":12,"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},{"uuid":"22c6541a-678d-47af-939d-c0763f0735e5","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":6,"selectEndHotZoneIndex":11,"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},{"uuid":"c4944a3c-4ed5-4e18-b04a-eb32489ba5ce","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"0","isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":7,"selectEndHotZoneIndex":10,"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}],"linkResultShowHotZoneIndex":16},{"hotZoneType":"5","linkHotZoneIndex":17,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"e","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":18,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"r","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":19,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"n","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":20,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"s","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":21,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"i","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":22,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"t","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":23,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"w","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":24,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"u","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":25,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"eight","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":26,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"four","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":27,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"seven","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":28,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"five","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":true,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[{"text":"seven","optionShowText":""},{"text":"five","optionShowText":""},{"text":"four","optionShowText":""},{"text":"eight","optionShowText":""}],"contentList":[{"uuid":"14baa6eb-109a-4a2a-9ae6-6660553c1c32","text":"","selectOptionListIndex":3,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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},{"uuid":"5dae3d1a-932c-447f-9711-ff335f463bbe","text":"","selectOptionListIndex":2,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":26},{"uuid":"dad69a91-abe2-41bc-b5a1-b5043b8cbbb6","text":"","selectOptionListIndex":0,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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":27},{"uuid":"ece89618-30f6-42ef-8847-7d657af1c22a","text":"","selectOptionListIndex":1,"selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":"1","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}]},{"hotZoneType":"5","linkHotZoneIndex":29,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"eight","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":30,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"five","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":31,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"seven","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":32,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"six","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"hotZoneType":"5","linkHotZoneIndex":33,"audio_url":"","video_url":"","score":"0","unselectedStyle":"none","selectedStyle":"border","rightOrWrongStyleType":"symbol","inputText":"two","keyWordMatch":false,"isCaseInsensitive":false,"openAnswer":false,"useSelectOptionList":false,"keyWordMatchInOrder":false,"capitalizedFirstLetter":false,"notAdaptContraction":false,"textAlignLeft":false,"selectOptionList":[],"contentList":[]},{"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":"","optionShowText":"panda"},{"text":"","optionShowText":"pandas"}],"contentList":[{"uuid":"e824444f-eaeb-449f-9cff-23d1f64c9eea","text":"","selectOptionListIndex":0,"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},{"uuid":"3f650a78-56cb-4703-9453-24f8b145a3f1","text":"","selectOptionListIndex":1,"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":35},{"uuid":"1c5a749a-e734-4d48-b5d6-f0e84fa966bb","text":"","selectOptionListIndex":1,"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":"b73bcb23-59a2-4314-b44a-7cc342a22318","text":"","selectOptionListIndex":1,"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":37}]},{"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":"","optionShowText":"bird"},{"text":"","optionShowText":"birds"},{"text":"","optionShowText":"butterfly"},{"text":"","optionShowText":"butterflies"}],"contentList":[{"uuid":"e824444f-eaeb-449f-9cff-23d1f64c9eea","text":"","selectOptionListIndex":0,"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":38},{"uuid":"3f650a78-56cb-4703-9453-24f8b145a3f1","text":"","selectOptionListIndex":3,"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":39},{"uuid":"1c5a749a-e734-4d48-b5d6-f0e84fa966bb","text":"","selectOptionListIndex":1,"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":40},{"uuid":"b73bcb23-59a2-4314-b44a-7cc342a22318","text":"","selectOptionListIndex":2,"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":41}]},{"hotZoneType":"18","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":"8859a4c5-1dcc-47aa-8306-10da7f8e0566","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":42,"selectEndHotZoneIndex":46,"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},{"uuid":"7df1f44d-7e50-4c57-948a-d59001dbb2de","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":42,"selectEndHotZoneIndex":47,"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},{"uuid":"56cb5937-a98c-49d3-bea8-084ce3244123","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":43,"selectEndHotZoneIndex":46,"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},{"uuid":"14d6511e-901e-4bce-9ac3-b2b0b0750e00","text":"","selectOptionListIndex":"","selectOptionListIndexArr":[],"optionShowText":"","image_url":"","hotZoneIndex":null,"score":0,"isCorrect":false,"isCheck":false,"linkedShowText":"","selectStartHotZoneIndex":44,"selectEndHotZoneIndex":47,"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}],"connectionPRO_startArr":[42,43,44,45],"connectionPRO_endArr":[46,47],"linkResultShowHotZoneIndex":48}],"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]}],"ratingSystem":"7","alignModeFooter":"left","bgColorFooter":"#027cc5"}
\ No newline at end of file \ No newline at end of file
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