card.temp.json 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  1. {
  2. "version": "1.0.0",
  3. "cardConfig": {
  4. "pageSize": "A3",
  5. "columnNumber": 2,
  6. "columnGap": 20,
  7. "showForbidArea": true,
  8. "cardName": "样例题卡",
  9. "missAndFill": true,
  10. "writeSign": true,
  11. "examNumberStyle": "auto",
  12. "aOrBSystem": true,
  13. "aOrBType": "auto",
  14. "schoolName": "河南财经政法大学",
  15. "cardTitleDesc": "",
  16. "businessParams": [
  17. {
  18. "name": "学号",
  19. "field": "studentNo"
  20. },
  21. {
  22. "name": "姓名",
  23. "field": "username"
  24. },
  25. {
  26. "name": "课程名称",
  27. "field": "courseName"
  28. },
  29. {
  30. "name": "课程名称",
  31. "field": "subjectName"
  32. }
  33. ],
  34. "noticeHead": [
  35. "答题前,请考生认真核对姓名、学号、教学班号、课程名称等信息,确认无误后签名。",
  36. "客观题部分必须使用2B铅笔填涂,主观题部分请使用黑色签字笔写在指定的答题区内。",
  37. "保持卡面清洁,不破损。"
  38. ],
  39. "objectiveNotice": "注意:必须使用2B铅笔填涂;在答题区内作答,超出涂填边框限定区域的答案无效。",
  40. "subjectiveNotice": "注意:必须使用黑色字迹签字笔书写;在答题区内作答,超出以下黑色矩形边框限定区域的答案无效。"
  41. },
  42. "paperParams": {},
  43. "pages": [
  44. {
  45. "type": "PAGE",
  46. "columnGap": 20,
  47. "locators": [
  48. [
  49. {
  50. "type": "LOCATOR",
  51. "x": "",
  52. "y": "",
  53. "w": "",
  54. "h": "",
  55. "id": "locator-0-00"
  56. },
  57. {
  58. "type": "LOCATOR",
  59. "x": "",
  60. "y": "",
  61. "w": "",
  62. "h": "",
  63. "id": "locator-0-01"
  64. }
  65. ],
  66. [
  67. {
  68. "type": "LOCATOR",
  69. "x": "",
  70. "y": "",
  71. "w": "",
  72. "h": "",
  73. "id": "locator-0-10"
  74. },
  75. {
  76. "type": "LOCATOR",
  77. "x": "",
  78. "y": "",
  79. "w": "",
  80. "h": "",
  81. "id": "locator-0-11"
  82. }
  83. ],
  84. [
  85. {
  86. "type": "LOCATOR",
  87. "x": "",
  88. "y": "",
  89. "w": "",
  90. "h": "",
  91. "id": "locator-0-20"
  92. },
  93. {
  94. "type": "LOCATOR",
  95. "x": "",
  96. "y": "",
  97. "w": "",
  98. "h": "",
  99. "id": "locator-0-21"
  100. }
  101. ]
  102. ],
  103. "globals": [],
  104. "columns": [
  105. {
  106. "type": "COLUMN",
  107. "x": "",
  108. "y": "",
  109. "w": "",
  110. "h": "",
  111. "isFull": false,
  112. "elements": [
  113. {
  114. "type": "CARD_HEAD",
  115. "x": 0,
  116. "y": 0,
  117. "w": 703,
  118. "h": 395,
  119. "schoolName": "河南财经政法大学",
  120. "cardName": "样例题卡",
  121. "aOrB": true,
  122. "aOrBType": "auto",
  123. "missAndFill": true,
  124. "writeSign": true,
  125. "examNumberStyle": "auto",
  126. "businessParams": [
  127. {
  128. "name": "学号",
  129. "field": "studentNo"
  130. },
  131. {
  132. "name": "姓名",
  133. "field": "username"
  134. },
  135. {
  136. "name": "课程名称",
  137. "field": "courseName"
  138. },
  139. {
  140. "name": "课程名称",
  141. "field": "subjectName"
  142. }
  143. ],
  144. "noticeHead": [
  145. "答题前,请考生认真核对姓名、学号、教学班号、课程名称等信息,确认无误后签名。",
  146. "客观题部分必须使用2B铅笔填涂,主观题部分请使用黑色签字笔写在指定的答题区内。",
  147. "保持卡面清洁,不破损。"
  148. ],
  149. "columnNumber": 2,
  150. "isSimple": false,
  151. "sign": "head",
  152. "pageSize": "A3",
  153. "columnGap": 20,
  154. "showForbidArea": true,
  155. "aOrBSystem": true,
  156. "cardTitleDesc": "",
  157. "objectiveNotice": "注意:必须使用2B铅笔填涂;在答题区内作答,超出涂填边框限定区域的答案无效。",
  158. "subjectiveNotice": "注意:必须使用黑色字迹签字笔书写;在答题区内作答,超出以下黑色矩形边框限定区域的答案无效。",
  159. "id": "element-sb5kumbg5q2l9j5g",
  160. "isCovered": false,
  161. "fieldInfos": {
  162. "studentNo": "${studentNo}",
  163. "username": "${username}",
  164. "courseName": "${courseName}",
  165. "subjectName": "${subjectName}",
  166. "examNumber": "data:image/png;base64,${examNumber}",
  167. "examNumberStr": "${examNumberStr}"
  168. }
  169. },
  170. {
  171. "type": "TOPIC_HEAD",
  172. "x": 0,
  173. "y": 0,
  174. "w": 0,
  175. "h": 70,
  176. "content": "注意:必须使用2B铅笔填涂;在答题区内作答,超出涂填边框限定区域的答案无效。",
  177. "typeName": "客观题",
  178. "isColumnFirst": false,
  179. "sign": "objective",
  180. "id": "element-jl53l5dob5gdve6o"
  181. },
  182. {
  183. "id": "element-fkrok2e8agu96lsd",
  184. "type": "FILL_QUESTION",
  185. "x": 0,
  186. "y": 0,
  187. "w": 703,
  188. "h": 172,
  189. "minHeight": 172,
  190. "sign": "objective",
  191. "topicName": "选择题",
  192. "topicNo": 1,
  193. "startNumber": 1,
  194. "questionsCount": 20,
  195. "optionCount": 4,
  196. "questionCountPerGroup": 5,
  197. "groupPerLine": 4,
  198. "optionDirection": "horizontal",
  199. "questionDirection": "vertical",
  200. "questionGap": 8,
  201. "groupGap": 30,
  202. "optionGap": 12,
  203. "isBoolean": false,
  204. "booleanType": "√,×",
  205. "isMultiply": false,
  206. "isCovered": false,
  207. "fontSize": "14px",
  208. "endNumber": 30,
  209. "parent": {
  210. "id": "element-u43bb3g8k4sqv1m8",
  211. "type": "FILL_QUESTION",
  212. "x": 0,
  213. "y": 0,
  214. "w": 703,
  215. "h": 138,
  216. "minHeight": 138,
  217. "sign": "objective",
  218. "topicName": "选择题",
  219. "topicNo": null,
  220. "startNumber": 1,
  221. "questionsCount": 30,
  222. "optionCount": 4,
  223. "questionCountPerGroup": 5,
  224. "groupPerLine": 4,
  225. "optionDirection": "horizontal",
  226. "questionDirection": "vertical",
  227. "questionGap": 8,
  228. "groupGap": 30,
  229. "optionGap": 12,
  230. "isBoolean": false,
  231. "booleanType": "√,×",
  232. "isMultiply": false,
  233. "isCovered": false,
  234. "fontSize": "14px",
  235. "endNumber": 30
  236. },
  237. "isLast": false,
  238. "elementSerialNo": 0
  239. },
  240. {
  241. "id": "element-5p9anrjolga90qmg",
  242. "type": "FILL_QUESTION",
  243. "x": 0,
  244. "y": 0,
  245. "w": 703,
  246. "h": 138,
  247. "minHeight": 138,
  248. "sign": "objective",
  249. "topicName": "选择题",
  250. "topicNo": 1,
  251. "startNumber": 21,
  252. "questionsCount": 10,
  253. "optionCount": 4,
  254. "questionCountPerGroup": 5,
  255. "groupPerLine": 4,
  256. "optionDirection": "horizontal",
  257. "questionDirection": "vertical",
  258. "questionGap": 8,
  259. "groupGap": 30,
  260. "optionGap": 12,
  261. "isBoolean": false,
  262. "booleanType": "√,×",
  263. "isMultiply": false,
  264. "isCovered": false,
  265. "fontSize": "14px",
  266. "endNumber": 30,
  267. "parent": {
  268. "id": "element-u43bb3g8k4sqv1m8",
  269. "type": "FILL_QUESTION",
  270. "x": 0,
  271. "y": 0,
  272. "w": 703,
  273. "h": 138,
  274. "minHeight": 138,
  275. "sign": "objective",
  276. "topicName": "选择题",
  277. "topicNo": null,
  278. "startNumber": 1,
  279. "questionsCount": 30,
  280. "optionCount": 4,
  281. "questionCountPerGroup": 5,
  282. "groupPerLine": 4,
  283. "optionDirection": "horizontal",
  284. "questionDirection": "vertical",
  285. "questionGap": 8,
  286. "groupGap": 30,
  287. "optionGap": 12,
  288. "isBoolean": false,
  289. "booleanType": "√,×",
  290. "isMultiply": false,
  291. "isCovered": false,
  292. "fontSize": "14px",
  293. "endNumber": 30
  294. },
  295. "isLast": true,
  296. "elementSerialNo": 1
  297. },
  298. {
  299. "type": "TOPIC_HEAD",
  300. "x": 0,
  301. "y": 0,
  302. "w": 0,
  303. "h": 70,
  304. "content": "注意:必须使用黑色字迹签字笔书写;在答题区内作答,超出以下黑色矩形边框限定区域的答案无效。",
  305. "typeName": "主观题",
  306. "isColumnFirst": false,
  307. "sign": "subjective",
  308. "id": "element-fs1j6e880dbf3od8"
  309. },
  310. {
  311. "id": "element-i1cfse8gi264p7e8",
  312. "type": "FILL_LINE",
  313. "x": 0,
  314. "y": 0,
  315. "w": 703,
  316. "h": 129,
  317. "minHeight": 114,
  318. "sign": "subjective",
  319. "topicName": "填空题",
  320. "topicNo": 2,
  321. "startNumber": 1,
  322. "questionsCount": 2,
  323. "questionNumberPerLine": 2,
  324. "lineNumberPerQuestion": 2,
  325. "lineSpacing": 40,
  326. "questionDirection": "vertical",
  327. "questionLineType": "norm",
  328. "questionLineNums": [
  329. {
  330. "no": 1,
  331. "count": 2
  332. },
  333. {
  334. "no": 2,
  335. "count": 2
  336. }
  337. ],
  338. "numberPre": "",
  339. "isCovered": false,
  340. "endNumber": 4,
  341. "parent": {
  342. "id": "element-sgoeasg8bbuo2da8",
  343. "type": "FILL_LINE",
  344. "x": 0,
  345. "y": 0,
  346. "w": 703,
  347. "h": 40,
  348. "minHeight": 40,
  349. "sign": "subjective",
  350. "topicName": "填空题",
  351. "topicNo": null,
  352. "startNumber": 1,
  353. "questionsCount": 4,
  354. "questionNumberPerLine": 2,
  355. "lineNumberPerQuestion": 2,
  356. "lineSpacing": 40,
  357. "questionDirection": "vertical",
  358. "questionLineType": "norm",
  359. "questionLineNums": [],
  360. "numberPre": "",
  361. "isCovered": false,
  362. "endNumber": 4
  363. },
  364. "isLast": false,
  365. "elementSerialNo": 2,
  366. "init": false
  367. },
  368. {
  369. "id": "element-fm9ppnagegn12cv8",
  370. "type": "FILL_LINE",
  371. "x": 0,
  372. "y": 0,
  373. "w": 703,
  374. "h": 0,
  375. "minHeight": null,
  376. "sign": "subjective",
  377. "topicName": "填空题",
  378. "topicNo": 2,
  379. "startNumber": 3,
  380. "questionsCount": 2,
  381. "questionNumberPerLine": 2,
  382. "lineNumberPerQuestion": 2,
  383. "lineSpacing": 40,
  384. "questionDirection": "vertical",
  385. "questionLineType": "norm",
  386. "questionLineNums": [],
  387. "numberPre": "",
  388. "isCovered": false,
  389. "endNumber": 4,
  390. "parent": {
  391. "id": "element-sgoeasg8bbuo2da8",
  392. "type": "FILL_LINE",
  393. "x": 0,
  394. "y": 0,
  395. "w": 703,
  396. "h": 40,
  397. "minHeight": 40,
  398. "sign": "subjective",
  399. "topicName": "填空题",
  400. "topicNo": null,
  401. "startNumber": 1,
  402. "questionsCount": 4,
  403. "questionNumberPerLine": 2,
  404. "lineNumberPerQuestion": 2,
  405. "lineSpacing": 40,
  406. "questionDirection": "vertical",
  407. "questionLineType": "norm",
  408. "questionLineNums": [],
  409. "numberPre": "",
  410. "isCovered": false,
  411. "endNumber": 4
  412. },
  413. "isLast": true,
  414. "elementSerialNo": 3
  415. }
  416. ]
  417. },
  418. {
  419. "type": "COLUMN",
  420. "x": "",
  421. "y": "",
  422. "w": "",
  423. "h": "",
  424. "isFull": false,
  425. "elements": [
  426. {
  427. "type": "TOPIC_HEAD",
  428. "x": 0,
  429. "y": 0,
  430. "w": 0,
  431. "h": 60,
  432. "content": "注意:必须使用黑色字迹签字笔书写;在答题区内作答,超出以下黑色矩形边框限定区域的答案无效。",
  433. "typeName": "主观题",
  434. "isColumnFirst": true,
  435. "sign": "subjective",
  436. "id": "element-tggkhsr89hs82ouo"
  437. },
  438. {
  439. "type": "EXPLAIN",
  440. "x": 0,
  441. "y": 0,
  442. "w": 703,
  443. "h": 458,
  444. "minHeight": 60,
  445. "sign": "subjective",
  446. "topicNo": 3,
  447. "isCovered": false,
  448. "isLast": true,
  449. "isExtend": false,
  450. "showTitle": true,
  451. "serialNumber": 1,
  452. "elements": [],
  453. "parent": {
  454. "id": "element-06stpgkc7li7tjgq",
  455. "type": "EXPLAIN",
  456. "sign": "subjective",
  457. "topicNo": null,
  458. "topicName": "解答题",
  459. "startNumber": 1,
  460. "questionsCount": 3,
  461. "w": 703,
  462. "endNumber": 3
  463. },
  464. "id": "element-d4gglamee612cim5",
  465. "elementSerialNo": 4
  466. },
  467. {
  468. "type": "EXPLAIN",
  469. "x": 0,
  470. "y": 0,
  471. "w": 703,
  472. "h": 458,
  473. "minHeight": 60,
  474. "sign": "subjective",
  475. "topicNo": 3,
  476. "isCovered": false,
  477. "isLast": true,
  478. "isExtend": false,
  479. "showTitle": false,
  480. "serialNumber": 2,
  481. "elements": [],
  482. "parent": {
  483. "id": "element-06stpgkc7li7tjgq",
  484. "type": "EXPLAIN",
  485. "sign": "subjective",
  486. "topicNo": null,
  487. "topicName": "解答题",
  488. "startNumber": 1,
  489. "questionsCount": 3,
  490. "w": 703,
  491. "endNumber": 3
  492. },
  493. "id": "element-rn5njbgo3je7bcbo",
  494. "elementSerialNo": 5
  495. }
  496. ]
  497. }
  498. ],
  499. "exchange": {
  500. "locator": [
  501. {
  502. "top": [
  503. 0.0504413619,
  504. 0.0356506239,
  505. 0.0151324086,
  506. 0.0142602496
  507. ],
  508. "bottom": [
  509. 0.0504413619,
  510. 0.9500891266,
  511. 0.0151324086,
  512. 0.0142602496
  513. ]
  514. },
  515. {
  516. "top": [
  517. 0.4924337957,
  518. 0.0356506239,
  519. 0.0151324086,
  520. 0.0142602496
  521. ],
  522. "bottom": [
  523. 0.4924337957,
  524. 0.9500891266,
  525. 0.0151324086,
  526. 0.0142602496
  527. ]
  528. },
  529. {
  530. "top": [
  531. 0.8738965952,
  532. 0.0356506239,
  533. 0.0151324086,
  534. 0.0142602496
  535. ],
  536. "bottom": [
  537. 0.8738965952,
  538. 0.9500891266,
  539. 0.0151324086,
  540. 0.0142602496
  541. ]
  542. }
  543. ],
  544. "barcode": [
  545. {
  546. "field": "examNumber",
  547. "area": [
  548. 0.0504413619,
  549. 0.1229946524,
  550. 0.2187894073,
  551. 0.1176470588
  552. ]
  553. },
  554. {
  555. "field": "paperType",
  556. "area": [
  557. 0.3600252207,
  558. 0.367201426,
  559. 0.1330390921,
  560. 0.0374331551
  561. ]
  562. }
  563. ],
  564. "info_area": [
  565. [
  566. 0.0504413619,
  567. 0.0534759358,
  568. 0.4432534678,
  569. 0.3520499109
  570. ]
  571. ],
  572. "fill_area": [
  573. {
  574. "field": "absent",
  575. "index": 1,
  576. "single": true,
  577. "horizontal": true,
  578. "items": [
  579. {
  580. "main_number": null,
  581. "sub_number": null,
  582. "options": [
  583. [
  584. 0.3177805801,
  585. 0.3351158645,
  586. 0.0201765448,
  587. 0.0142602496
  588. ]
  589. ]
  590. }
  591. ]
  592. },
  593. {
  594. "field": "question",
  595. "index": 1,
  596. "single": true,
  597. "horizontal": true,
  598. "items": [
  599. {
  600. "main_number": 1,
  601. "sub_number": "1",
  602. "options": [
  603. [
  604. 0.079445145,
  605. 0.5142602496,
  606. 0.0113493064,
  607. 0.0124777184
  608. ],
  609. [
  610. 0.0983606557,
  611. 0.5142602496,
  612. 0.0113493064,
  613. 0.0124777184
  614. ],
  615. [
  616. 0.1172761665,
  617. 0.5142602496,
  618. 0.0113493064,
  619. 0.0124777184
  620. ],
  621. [
  622. 0.1361916772,
  623. 0.5142602496,
  624. 0.0113493064,
  625. 0.0124777184
  626. ]
  627. ]
  628. },
  629. {
  630. "main_number": 1,
  631. "sub_number": "2",
  632. "options": [
  633. [
  634. 0.079445145,
  635. 0.5338680927,
  636. 0.0113493064,
  637. 0.0124777184
  638. ],
  639. [
  640. 0.0983606557,
  641. 0.5338680927,
  642. 0.0113493064,
  643. 0.0124777184
  644. ],
  645. [
  646. 0.1172761665,
  647. 0.5338680927,
  648. 0.0113493064,
  649. 0.0124777184
  650. ],
  651. [
  652. 0.1361916772,
  653. 0.5338680927,
  654. 0.0113493064,
  655. 0.0124777184
  656. ]
  657. ]
  658. },
  659. {
  660. "main_number": 1,
  661. "sub_number": "3",
  662. "options": [
  663. [
  664. 0.079445145,
  665. 0.5534759358,
  666. 0.0113493064,
  667. 0.0124777184
  668. ],
  669. [
  670. 0.0983606557,
  671. 0.5534759358,
  672. 0.0113493064,
  673. 0.0124777184
  674. ],
  675. [
  676. 0.1172761665,
  677. 0.5534759358,
  678. 0.0113493064,
  679. 0.0124777184
  680. ],
  681. [
  682. 0.1361916772,
  683. 0.5534759358,
  684. 0.0113493064,
  685. 0.0124777184
  686. ]
  687. ]
  688. },
  689. {
  690. "main_number": 1,
  691. "sub_number": "4",
  692. "options": [
  693. [
  694. 0.079445145,
  695. 0.573083779,
  696. 0.0113493064,
  697. 0.0124777184
  698. ],
  699. [
  700. 0.0983606557,
  701. 0.573083779,
  702. 0.0113493064,
  703. 0.0124777184
  704. ],
  705. [
  706. 0.1172761665,
  707. 0.573083779,
  708. 0.0113493064,
  709. 0.0124777184
  710. ],
  711. [
  712. 0.1361916772,
  713. 0.573083779,
  714. 0.0113493064,
  715. 0.0124777184
  716. ]
  717. ]
  718. },
  719. {
  720. "main_number": 1,
  721. "sub_number": "5",
  722. "options": [
  723. [
  724. 0.079445145,
  725. 0.5926916221,
  726. 0.0113493064,
  727. 0.0124777184
  728. ],
  729. [
  730. 0.0983606557,
  731. 0.5926916221,
  732. 0.0113493064,
  733. 0.0124777184
  734. ],
  735. [
  736. 0.1172761665,
  737. 0.5926916221,
  738. 0.0113493064,
  739. 0.0124777184
  740. ],
  741. [
  742. 0.1361916772,
  743. 0.5926916221,
  744. 0.0113493064,
  745. 0.0124777184
  746. ]
  747. ]
  748. }
  749. ]
  750. },
  751. {
  752. "field": "question",
  753. "index": 2,
  754. "single": true,
  755. "horizontal": true,
  756. "items": [
  757. {
  758. "main_number": 1,
  759. "sub_number": "6",
  760. "options": [
  761. [
  762. 0.185372005,
  763. 0.5142602496,
  764. 0.0113493064,
  765. 0.0124777184
  766. ],
  767. [
  768. 0.2042875158,
  769. 0.5142602496,
  770. 0.0113493064,
  771. 0.0124777184
  772. ],
  773. [
  774. 0.2232030265,
  775. 0.5142602496,
  776. 0.0113493064,
  777. 0.0124777184
  778. ],
  779. [
  780. 0.2421185372,
  781. 0.5142602496,
  782. 0.0113493064,
  783. 0.0124777184
  784. ]
  785. ]
  786. },
  787. {
  788. "main_number": 1,
  789. "sub_number": "7",
  790. "options": [
  791. [
  792. 0.185372005,
  793. 0.5338680927,
  794. 0.0113493064,
  795. 0.0124777184
  796. ],
  797. [
  798. 0.2042875158,
  799. 0.5338680927,
  800. 0.0113493064,
  801. 0.0124777184
  802. ],
  803. [
  804. 0.2232030265,
  805. 0.5338680927,
  806. 0.0113493064,
  807. 0.0124777184
  808. ],
  809. [
  810. 0.2421185372,
  811. 0.5338680927,
  812. 0.0113493064,
  813. 0.0124777184
  814. ]
  815. ]
  816. },
  817. {
  818. "main_number": 1,
  819. "sub_number": "8",
  820. "options": [
  821. [
  822. 0.185372005,
  823. 0.5534759358,
  824. 0.0113493064,
  825. 0.0124777184
  826. ],
  827. [
  828. 0.2042875158,
  829. 0.5534759358,
  830. 0.0113493064,
  831. 0.0124777184
  832. ],
  833. [
  834. 0.2232030265,
  835. 0.5534759358,
  836. 0.0113493064,
  837. 0.0124777184
  838. ],
  839. [
  840. 0.2421185372,
  841. 0.5534759358,
  842. 0.0113493064,
  843. 0.0124777184
  844. ]
  845. ]
  846. },
  847. {
  848. "main_number": 1,
  849. "sub_number": "9",
  850. "options": [
  851. [
  852. 0.185372005,
  853. 0.573083779,
  854. 0.0113493064,
  855. 0.0124777184
  856. ],
  857. [
  858. 0.2042875158,
  859. 0.573083779,
  860. 0.0113493064,
  861. 0.0124777184
  862. ],
  863. [
  864. 0.2232030265,
  865. 0.573083779,
  866. 0.0113493064,
  867. 0.0124777184
  868. ],
  869. [
  870. 0.2421185372,
  871. 0.573083779,
  872. 0.0113493064,
  873. 0.0124777184
  874. ]
  875. ]
  876. },
  877. {
  878. "main_number": 1,
  879. "sub_number": "10",
  880. "options": [
  881. [
  882. 0.185372005,
  883. 0.5926916221,
  884. 0.0113493064,
  885. 0.0124777184
  886. ],
  887. [
  888. 0.2042875158,
  889. 0.5926916221,
  890. 0.0113493064,
  891. 0.0124777184
  892. ],
  893. [
  894. 0.2232030265,
  895. 0.5926916221,
  896. 0.0113493064,
  897. 0.0124777184
  898. ],
  899. [
  900. 0.2421185372,
  901. 0.5926916221,
  902. 0.0113493064,
  903. 0.0124777184
  904. ]
  905. ]
  906. }
  907. ]
  908. },
  909. {
  910. "field": "question",
  911. "index": 3,
  912. "single": true,
  913. "horizontal": true,
  914. "items": [
  915. {
  916. "main_number": 1,
  917. "sub_number": "11",
  918. "options": [
  919. [
  920. 0.2912988651,
  921. 0.5142602496,
  922. 0.0113493064,
  923. 0.0124777184
  924. ],
  925. [
  926. 0.3102143758,
  927. 0.5142602496,
  928. 0.0113493064,
  929. 0.0124777184
  930. ],
  931. [
  932. 0.3291298865,
  933. 0.5142602496,
  934. 0.0113493064,
  935. 0.0124777184
  936. ],
  937. [
  938. 0.3480453972,
  939. 0.5142602496,
  940. 0.0113493064,
  941. 0.0124777184
  942. ]
  943. ]
  944. },
  945. {
  946. "main_number": 1,
  947. "sub_number": "12",
  948. "options": [
  949. [
  950. 0.2912988651,
  951. 0.5338680927,
  952. 0.0113493064,
  953. 0.0124777184
  954. ],
  955. [
  956. 0.3102143758,
  957. 0.5338680927,
  958. 0.0113493064,
  959. 0.0124777184
  960. ],
  961. [
  962. 0.3291298865,
  963. 0.5338680927,
  964. 0.0113493064,
  965. 0.0124777184
  966. ],
  967. [
  968. 0.3480453972,
  969. 0.5338680927,
  970. 0.0113493064,
  971. 0.0124777184
  972. ]
  973. ]
  974. },
  975. {
  976. "main_number": 1,
  977. "sub_number": "13",
  978. "options": [
  979. [
  980. 0.2912988651,
  981. 0.5534759358,
  982. 0.0113493064,
  983. 0.0124777184
  984. ],
  985. [
  986. 0.3102143758,
  987. 0.5534759358,
  988. 0.0113493064,
  989. 0.0124777184
  990. ],
  991. [
  992. 0.3291298865,
  993. 0.5534759358,
  994. 0.0113493064,
  995. 0.0124777184
  996. ],
  997. [
  998. 0.3480453972,
  999. 0.5534759358,
  1000. 0.0113493064,
  1001. 0.0124777184
  1002. ]
  1003. ]
  1004. },
  1005. {
  1006. "main_number": 1,
  1007. "sub_number": "14",
  1008. "options": [
  1009. [
  1010. 0.2912988651,
  1011. 0.573083779,
  1012. 0.0113493064,
  1013. 0.0124777184
  1014. ],
  1015. [
  1016. 0.3102143758,
  1017. 0.573083779,
  1018. 0.0113493064,
  1019. 0.0124777184
  1020. ],
  1021. [
  1022. 0.3291298865,
  1023. 0.573083779,
  1024. 0.0113493064,
  1025. 0.0124777184
  1026. ],
  1027. [
  1028. 0.3480453972,
  1029. 0.573083779,
  1030. 0.0113493064,
  1031. 0.0124777184
  1032. ]
  1033. ]
  1034. },
  1035. {
  1036. "main_number": 1,
  1037. "sub_number": "15",
  1038. "options": [
  1039. [
  1040. 0.2912988651,
  1041. 0.5926916221,
  1042. 0.0113493064,
  1043. 0.0124777184
  1044. ],
  1045. [
  1046. 0.3102143758,
  1047. 0.5926916221,
  1048. 0.0113493064,
  1049. 0.0124777184
  1050. ],
  1051. [
  1052. 0.3291298865,
  1053. 0.5926916221,
  1054. 0.0113493064,
  1055. 0.0124777184
  1056. ],
  1057. [
  1058. 0.3480453972,
  1059. 0.5926916221,
  1060. 0.0113493064,
  1061. 0.0124777184
  1062. ]
  1063. ]
  1064. }
  1065. ]
  1066. },
  1067. {
  1068. "field": "question",
  1069. "index": 4,
  1070. "single": true,
  1071. "horizontal": true,
  1072. "items": [
  1073. {
  1074. "main_number": 1,
  1075. "sub_number": "16",
  1076. "options": [
  1077. [
  1078. 0.3972257251,
  1079. 0.5142602496,
  1080. 0.0113493064,
  1081. 0.0124777184
  1082. ],
  1083. [
  1084. 0.4161412358,
  1085. 0.5142602496,
  1086. 0.0113493064,
  1087. 0.0124777184
  1088. ],
  1089. [
  1090. 0.4350567465,
  1091. 0.5142602496,
  1092. 0.0113493064,
  1093. 0.0124777184
  1094. ],
  1095. [
  1096. 0.4539722573,
  1097. 0.5142602496,
  1098. 0.0113493064,
  1099. 0.0124777184
  1100. ]
  1101. ]
  1102. },
  1103. {
  1104. "main_number": 1,
  1105. "sub_number": "17",
  1106. "options": [
  1107. [
  1108. 0.3972257251,
  1109. 0.5338680927,
  1110. 0.0113493064,
  1111. 0.0124777184
  1112. ],
  1113. [
  1114. 0.4161412358,
  1115. 0.5338680927,
  1116. 0.0113493064,
  1117. 0.0124777184
  1118. ],
  1119. [
  1120. 0.4350567465,
  1121. 0.5338680927,
  1122. 0.0113493064,
  1123. 0.0124777184
  1124. ],
  1125. [
  1126. 0.4539722573,
  1127. 0.5338680927,
  1128. 0.0113493064,
  1129. 0.0124777184
  1130. ]
  1131. ]
  1132. },
  1133. {
  1134. "main_number": 1,
  1135. "sub_number": "18",
  1136. "options": [
  1137. [
  1138. 0.3972257251,
  1139. 0.5534759358,
  1140. 0.0113493064,
  1141. 0.0124777184
  1142. ],
  1143. [
  1144. 0.4161412358,
  1145. 0.5534759358,
  1146. 0.0113493064,
  1147. 0.0124777184
  1148. ],
  1149. [
  1150. 0.4350567465,
  1151. 0.5534759358,
  1152. 0.0113493064,
  1153. 0.0124777184
  1154. ],
  1155. [
  1156. 0.4539722573,
  1157. 0.5534759358,
  1158. 0.0113493064,
  1159. 0.0124777184
  1160. ]
  1161. ]
  1162. },
  1163. {
  1164. "main_number": 1,
  1165. "sub_number": "19",
  1166. "options": [
  1167. [
  1168. 0.3972257251,
  1169. 0.573083779,
  1170. 0.0113493064,
  1171. 0.0124777184
  1172. ],
  1173. [
  1174. 0.4161412358,
  1175. 0.573083779,
  1176. 0.0113493064,
  1177. 0.0124777184
  1178. ],
  1179. [
  1180. 0.4350567465,
  1181. 0.573083779,
  1182. 0.0113493064,
  1183. 0.0124777184
  1184. ],
  1185. [
  1186. 0.4539722573,
  1187. 0.573083779,
  1188. 0.0113493064,
  1189. 0.0124777184
  1190. ]
  1191. ]
  1192. },
  1193. {
  1194. "main_number": 1,
  1195. "sub_number": "20",
  1196. "options": [
  1197. [
  1198. 0.3972257251,
  1199. 0.5926916221,
  1200. 0.0113493064,
  1201. 0.0124777184
  1202. ],
  1203. [
  1204. 0.4161412358,
  1205. 0.5926916221,
  1206. 0.0113493064,
  1207. 0.0124777184
  1208. ],
  1209. [
  1210. 0.4350567465,
  1211. 0.5926916221,
  1212. 0.0113493064,
  1213. 0.0124777184
  1214. ],
  1215. [
  1216. 0.4539722573,
  1217. 0.5926916221,
  1218. 0.0113493064,
  1219. 0.0124777184
  1220. ]
  1221. ]
  1222. }
  1223. ]
  1224. },
  1225. {
  1226. "field": "question",
  1227. "index": 5,
  1228. "single": true,
  1229. "horizontal": true,
  1230. "items": [
  1231. {
  1232. "main_number": 1,
  1233. "sub_number": "21",
  1234. "options": [
  1235. [
  1236. 0.079445145,
  1237. 0.637254902,
  1238. 0.0113493064,
  1239. 0.0124777184
  1240. ],
  1241. [
  1242. 0.0983606557,
  1243. 0.637254902,
  1244. 0.0113493064,
  1245. 0.0124777184
  1246. ],
  1247. [
  1248. 0.1172761665,
  1249. 0.637254902,
  1250. 0.0113493064,
  1251. 0.0124777184
  1252. ],
  1253. [
  1254. 0.1361916772,
  1255. 0.637254902,
  1256. 0.0113493064,
  1257. 0.0124777184
  1258. ]
  1259. ]
  1260. },
  1261. {
  1262. "main_number": 1,
  1263. "sub_number": "22",
  1264. "options": [
  1265. [
  1266. 0.079445145,
  1267. 0.6568627451,
  1268. 0.0113493064,
  1269. 0.0124777184
  1270. ],
  1271. [
  1272. 0.0983606557,
  1273. 0.6568627451,
  1274. 0.0113493064,
  1275. 0.0124777184
  1276. ],
  1277. [
  1278. 0.1172761665,
  1279. 0.6568627451,
  1280. 0.0113493064,
  1281. 0.0124777184
  1282. ],
  1283. [
  1284. 0.1361916772,
  1285. 0.6568627451,
  1286. 0.0113493064,
  1287. 0.0124777184
  1288. ]
  1289. ]
  1290. },
  1291. {
  1292. "main_number": 1,
  1293. "sub_number": "23",
  1294. "options": [
  1295. [
  1296. 0.079445145,
  1297. 0.6764705882,
  1298. 0.0113493064,
  1299. 0.0124777184
  1300. ],
  1301. [
  1302. 0.0983606557,
  1303. 0.6764705882,
  1304. 0.0113493064,
  1305. 0.0124777184
  1306. ],
  1307. [
  1308. 0.1172761665,
  1309. 0.6764705882,
  1310. 0.0113493064,
  1311. 0.0124777184
  1312. ],
  1313. [
  1314. 0.1361916772,
  1315. 0.6764705882,
  1316. 0.0113493064,
  1317. 0.0124777184
  1318. ]
  1319. ]
  1320. },
  1321. {
  1322. "main_number": 1,
  1323. "sub_number": "24",
  1324. "options": [
  1325. [
  1326. 0.079445145,
  1327. 0.6960784314,
  1328. 0.0113493064,
  1329. 0.0124777184
  1330. ],
  1331. [
  1332. 0.0983606557,
  1333. 0.6960784314,
  1334. 0.0113493064,
  1335. 0.0124777184
  1336. ],
  1337. [
  1338. 0.1172761665,
  1339. 0.6960784314,
  1340. 0.0113493064,
  1341. 0.0124777184
  1342. ],
  1343. [
  1344. 0.1361916772,
  1345. 0.6960784314,
  1346. 0.0113493064,
  1347. 0.0124777184
  1348. ]
  1349. ]
  1350. },
  1351. {
  1352. "main_number": 1,
  1353. "sub_number": "25",
  1354. "options": [
  1355. [
  1356. 0.079445145,
  1357. 0.7156862745,
  1358. 0.0113493064,
  1359. 0.0124777184
  1360. ],
  1361. [
  1362. 0.0983606557,
  1363. 0.7156862745,
  1364. 0.0113493064,
  1365. 0.0124777184
  1366. ],
  1367. [
  1368. 0.1172761665,
  1369. 0.7156862745,
  1370. 0.0113493064,
  1371. 0.0124777184
  1372. ],
  1373. [
  1374. 0.1361916772,
  1375. 0.7156862745,
  1376. 0.0113493064,
  1377. 0.0124777184
  1378. ]
  1379. ]
  1380. }
  1381. ]
  1382. },
  1383. {
  1384. "field": "question",
  1385. "index": 6,
  1386. "single": true,
  1387. "horizontal": true,
  1388. "items": [
  1389. {
  1390. "main_number": 1,
  1391. "sub_number": "26",
  1392. "options": [
  1393. [
  1394. 0.185372005,
  1395. 0.637254902,
  1396. 0.0113493064,
  1397. 0.0124777184
  1398. ],
  1399. [
  1400. 0.2042875158,
  1401. 0.637254902,
  1402. 0.0113493064,
  1403. 0.0124777184
  1404. ],
  1405. [
  1406. 0.2232030265,
  1407. 0.637254902,
  1408. 0.0113493064,
  1409. 0.0124777184
  1410. ],
  1411. [
  1412. 0.2421185372,
  1413. 0.637254902,
  1414. 0.0113493064,
  1415. 0.0124777184
  1416. ]
  1417. ]
  1418. },
  1419. {
  1420. "main_number": 1,
  1421. "sub_number": "27",
  1422. "options": [
  1423. [
  1424. 0.185372005,
  1425. 0.6568627451,
  1426. 0.0113493064,
  1427. 0.0124777184
  1428. ],
  1429. [
  1430. 0.2042875158,
  1431. 0.6568627451,
  1432. 0.0113493064,
  1433. 0.0124777184
  1434. ],
  1435. [
  1436. 0.2232030265,
  1437. 0.6568627451,
  1438. 0.0113493064,
  1439. 0.0124777184
  1440. ],
  1441. [
  1442. 0.2421185372,
  1443. 0.6568627451,
  1444. 0.0113493064,
  1445. 0.0124777184
  1446. ]
  1447. ]
  1448. },
  1449. {
  1450. "main_number": 1,
  1451. "sub_number": "28",
  1452. "options": [
  1453. [
  1454. 0.185372005,
  1455. 0.6764705882,
  1456. 0.0113493064,
  1457. 0.0124777184
  1458. ],
  1459. [
  1460. 0.2042875158,
  1461. 0.6764705882,
  1462. 0.0113493064,
  1463. 0.0124777184
  1464. ],
  1465. [
  1466. 0.2232030265,
  1467. 0.6764705882,
  1468. 0.0113493064,
  1469. 0.0124777184
  1470. ],
  1471. [
  1472. 0.2421185372,
  1473. 0.6764705882,
  1474. 0.0113493064,
  1475. 0.0124777184
  1476. ]
  1477. ]
  1478. },
  1479. {
  1480. "main_number": 1,
  1481. "sub_number": "29",
  1482. "options": [
  1483. [
  1484. 0.185372005,
  1485. 0.6960784314,
  1486. 0.0113493064,
  1487. 0.0124777184
  1488. ],
  1489. [
  1490. 0.2042875158,
  1491. 0.6960784314,
  1492. 0.0113493064,
  1493. 0.0124777184
  1494. ],
  1495. [
  1496. 0.2232030265,
  1497. 0.6960784314,
  1498. 0.0113493064,
  1499. 0.0124777184
  1500. ],
  1501. [
  1502. 0.2421185372,
  1503. 0.6960784314,
  1504. 0.0113493064,
  1505. 0.0124777184
  1506. ]
  1507. ]
  1508. },
  1509. {
  1510. "main_number": 1,
  1511. "sub_number": "30",
  1512. "options": [
  1513. [
  1514. 0.185372005,
  1515. 0.7156862745,
  1516. 0.0113493064,
  1517. 0.0124777184
  1518. ],
  1519. [
  1520. 0.2042875158,
  1521. 0.7156862745,
  1522. 0.0113493064,
  1523. 0.0124777184
  1524. ],
  1525. [
  1526. 0.2232030265,
  1527. 0.7156862745,
  1528. 0.0113493064,
  1529. 0.0124777184
  1530. ],
  1531. [
  1532. 0.2421185372,
  1533. 0.7156862745,
  1534. 0.0113493064,
  1535. 0.0124777184
  1536. ]
  1537. ]
  1538. }
  1539. ]
  1540. },
  1541. {
  1542. "field": "pageNumber",
  1543. "index": 1,
  1544. "single": true,
  1545. "horizontal": true,
  1546. "items": [
  1547. {
  1548. "main_number": null,
  1549. "sub_number": null,
  1550. "options": [
  1551. [
  1552. 0.0958385876,
  1553. 0.9500891266,
  1554. 0.0151324086,
  1555. 0.0142602496
  1556. ],
  1557. [
  1558. 0.1172761665,
  1559. 0.9500891266,
  1560. 0.0151324086,
  1561. 0.0142602496
  1562. ]
  1563. ]
  1564. }
  1565. ]
  1566. }
  1567. ],
  1568. "answer_area": [
  1569. {
  1570. "main_number": 2,
  1571. "sub_numbers": [
  1572. 1,
  1573. 2
  1574. ],
  1575. "area": [
  1576. 0.0504413619,
  1577. 0.8065953654,
  1578. 0.4432534678,
  1579. 0.114973262
  1580. ]
  1581. },
  1582. {
  1583. "main_number": 2,
  1584. "sub_numbers": [
  1585. 3,
  1586. 4
  1587. ],
  1588. "area": [
  1589. 0.0504413619,
  1590. 0.9215686275,
  1591. 0.4432534678,
  1592. 0
  1593. ]
  1594. },
  1595. {
  1596. "main_number": 3,
  1597. "sub_numbers": [
  1598. 1
  1599. ],
  1600. "area": [
  1601. 0.5063051702,
  1602. 0.1069518717,
  1603. 0.4432534678,
  1604. 0.4081996435
  1605. ]
  1606. },
  1607. {
  1608. "main_number": 3,
  1609. "sub_numbers": [
  1610. 2
  1611. ],
  1612. "area": [
  1613. 0.5063051702,
  1614. 0.5151515152,
  1615. 0.4432534678,
  1616. 0.4081996435
  1617. ]
  1618. }
  1619. ]
  1620. }
  1621. },
  1622. {
  1623. "type": "PAGE",
  1624. "columnGap": 20,
  1625. "locators": [
  1626. [
  1627. {
  1628. "type": "LOCATOR",
  1629. "x": "",
  1630. "y": "",
  1631. "w": "",
  1632. "h": "",
  1633. "id": "locator-1-00"
  1634. },
  1635. {
  1636. "type": "LOCATOR",
  1637. "x": "",
  1638. "y": "",
  1639. "w": "",
  1640. "h": "",
  1641. "id": "locator-1-01"
  1642. }
  1643. ],
  1644. [
  1645. {
  1646. "type": "LOCATOR",
  1647. "x": "",
  1648. "y": "",
  1649. "w": "",
  1650. "h": "",
  1651. "id": "locator-1-10"
  1652. },
  1653. {
  1654. "type": "LOCATOR",
  1655. "x": "",
  1656. "y": "",
  1657. "w": "",
  1658. "h": "",
  1659. "id": "locator-1-11"
  1660. }
  1661. ],
  1662. [
  1663. {
  1664. "type": "LOCATOR",
  1665. "x": "",
  1666. "y": "",
  1667. "w": "",
  1668. "h": "",
  1669. "id": "locator-1-20"
  1670. },
  1671. {
  1672. "type": "LOCATOR",
  1673. "x": "",
  1674. "y": "",
  1675. "w": "",
  1676. "h": "",
  1677. "id": "locator-1-21"
  1678. }
  1679. ]
  1680. ],
  1681. "globals": [],
  1682. "columns": [
  1683. {
  1684. "type": "COLUMN",
  1685. "x": "",
  1686. "y": "",
  1687. "w": "",
  1688. "h": "",
  1689. "isFull": false,
  1690. "elements": [
  1691. {
  1692. "type": "TOPIC_HEAD",
  1693. "x": 0,
  1694. "y": 0,
  1695. "w": 0,
  1696. "h": 60,
  1697. "content": "注意:必须使用黑色字迹签字笔书写;在答题区内作答,超出以下黑色矩形边框限定区域的答案无效。",
  1698. "typeName": "主观题",
  1699. "isColumnFirst": true,
  1700. "sign": "subjective",
  1701. "id": "element-55oier2o1a709008"
  1702. },
  1703. {
  1704. "type": "EXPLAIN",
  1705. "x": 0,
  1706. "y": 0,
  1707. "w": 703,
  1708. "h": 458,
  1709. "minHeight": 60,
  1710. "sign": "subjective",
  1711. "topicNo": 3,
  1712. "isCovered": false,
  1713. "isLast": true,
  1714. "isExtend": false,
  1715. "showTitle": false,
  1716. "serialNumber": 3,
  1717. "elements": [],
  1718. "parent": {
  1719. "id": "element-06stpgkc7li7tjgq",
  1720. "type": "EXPLAIN",
  1721. "sign": "subjective",
  1722. "topicNo": null,
  1723. "topicName": "解答题",
  1724. "startNumber": 1,
  1725. "questionsCount": 3,
  1726. "w": 703,
  1727. "endNumber": 3
  1728. },
  1729. "id": "element-vskf86agcjafagno",
  1730. "elementSerialNo": 6
  1731. },
  1732. {
  1733. "id": "element-9svc4qlo7f1cifp8",
  1734. "type": "COMPOSITION",
  1735. "x": 0,
  1736. "y": 0,
  1737. "w": 703,
  1738. "h": 457,
  1739. "minHeight": 60,
  1740. "sign": "subjective",
  1741. "topicNo": 4,
  1742. "isCovered": false,
  1743. "isLast": true,
  1744. "isExtend": false,
  1745. "showTitle": true,
  1746. "serialNumber": 0,
  1747. "elements": [
  1748. {
  1749. "id": "element-kq3r8odof9tm8bsg",
  1750. "type": "GRIDS",
  1751. "x": 0,
  1752. "y": 40,
  1753. "w": 703,
  1754. "h": 356,
  1755. "sign": "",
  1756. "columnSize": 43,
  1757. "columnCount": 16,
  1758. "rowCount": 8,
  1759. "rowSpace": 0,
  1760. "halving": true,
  1761. "style": "solid",
  1762. "container": {
  1763. "id": "element-9svc4qlo7f1cifp8",
  1764. "type": "COMPOSITION"
  1765. }
  1766. }
  1767. ],
  1768. "parent": {
  1769. "id": "element-pgldd42su2ro0r6o",
  1770. "type": "COMPOSITION",
  1771. "sign": "subjective",
  1772. "topicNo": null,
  1773. "topicName": "作文题",
  1774. "w": 703
  1775. },
  1776. "elementSerialNo": 7,
  1777. "init": false
  1778. }
  1779. ]
  1780. },
  1781. {
  1782. "type": "COLUMN",
  1783. "x": "",
  1784. "y": "",
  1785. "w": "",
  1786. "h": "",
  1787. "isFull": false,
  1788. "elements": []
  1789. }
  1790. ],
  1791. "exchange": {
  1792. "locator": [
  1793. {
  1794. "top": [
  1795. 0.0315258512,
  1796. 0.0356506239,
  1797. 0.0151324086,
  1798. 0.0142602496
  1799. ],
  1800. "bottom": [
  1801. 0.0315258512,
  1802. 0.9500891266,
  1803. 0.0151324086,
  1804. 0.0142602496
  1805. ]
  1806. },
  1807. {
  1808. "top": [
  1809. 0.4924337957,
  1810. 0.0356506239,
  1811. 0.0151324086,
  1812. 0.0142602496
  1813. ],
  1814. "bottom": [
  1815. 0.4924337957,
  1816. 0.9500891266,
  1817. 0.0151324086,
  1818. 0.0142602496
  1819. ]
  1820. },
  1821. {
  1822. "top": [
  1823. 0.8738965952,
  1824. 0.0356506239,
  1825. 0.0151324086,
  1826. 0.0142602496
  1827. ],
  1828. "bottom": [
  1829. 0.8738965952,
  1830. 0.9500891266,
  1831. 0.0151324086,
  1832. 0.0142602496
  1833. ]
  1834. }
  1835. ],
  1836. "barcode": [],
  1837. "info_area": [],
  1838. "fill_area": [],
  1839. "answer_area": [
  1840. {
  1841. "main_number": 3,
  1842. "sub_numbers": [
  1843. 3
  1844. ],
  1845. "area": [
  1846. 0.0504413619,
  1847. 0.1069518717,
  1848. 0.4432534678,
  1849. 0.4081996435
  1850. ]
  1851. },
  1852. {
  1853. "main_number": 4,
  1854. "sub_numbers": [],
  1855. "area": [
  1856. 0.0504413619,
  1857. 0.5151515152,
  1858. 0.4432534678,
  1859. 0.4073083779
  1860. ]
  1861. }
  1862. ]
  1863. }
  1864. }
  1865. ]
  1866. }