@inseefr/lunatic 2.0.2 → 2.0.3-v2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (746) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +25 -22
  3. package/lib/components/button/button.scss +24 -0
  4. package/lib/components/button/index.js +15 -0
  5. package/lib/components/button/lunatic-button.js +66 -0
  6. package/lib/components/checkbox/checkbox-boolean/checkbox-boolean.js +36 -0
  7. package/lib/components/checkbox/checkbox-boolean/index.js +15 -0
  8. package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +48 -0
  9. package/lib/components/checkbox/checkbox-group/checkbox-group.js +96 -0
  10. package/lib/components/checkbox/checkbox-group/checkbox.scss +4 -0
  11. package/lib/components/checkbox/checkbox-group/index.js +15 -0
  12. package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +42 -0
  13. package/lib/components/checkbox/checkbox-one/index.js +15 -0
  14. package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +39 -0
  15. package/lib/components/checkbox/commons/checkbox-option.js +68 -0
  16. package/lib/components/checkbox/commons/checkbox-option.scss +3 -0
  17. package/lib/components/checkbox/commons/index.js +15 -0
  18. package/lib/components/checkbox/index.js +31 -0
  19. package/lib/components/commons/build-style-object.js +36 -0
  20. package/lib/components/commons/components/combo-box/combo-box-container.js +37 -0
  21. package/lib/components/commons/components/combo-box/combo-box-content.js +73 -0
  22. package/lib/components/commons/components/combo-box/combo-box.js +222 -0
  23. package/lib/components/commons/components/combo-box/combo-box.scss +205 -0
  24. package/lib/components/commons/components/combo-box/index.js +15 -0
  25. package/lib/components/commons/components/combo-box/panel/index.js +15 -0
  26. package/lib/components/commons/components/combo-box/panel/option-container.js +77 -0
  27. package/lib/components/commons/components/combo-box/panel/panel-container.js +31 -0
  28. package/lib/components/commons/components/combo-box/panel/panel.js +70 -0
  29. package/lib/components/commons/components/combo-box/selection/delete.js +69 -0
  30. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +30 -0
  31. package/lib/components/commons/components/combo-box/selection/index.js +15 -0
  32. package/lib/components/commons/components/combo-box/selection/input.js +68 -0
  33. package/lib/components/commons/components/combo-box/selection/label-selection.js +39 -0
  34. package/lib/components/commons/components/combo-box/selection/selection-container.js +40 -0
  35. package/lib/components/commons/components/combo-box/selection/selection.js +71 -0
  36. package/lib/components/commons/components/combo-box/state-management/actions.js +98 -0
  37. package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +20 -0
  38. package/lib/components/commons/components/combo-box/state-management/index.js +42 -0
  39. package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
  40. package/lib/components/commons/components/combo-box/state-management/reducer/index.js +15 -0
  41. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +22 -0
  42. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +24 -0
  43. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +23 -0
  44. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +22 -0
  45. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +46 -0
  46. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +15 -0
  47. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
  48. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +37 -0
  49. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +37 -0
  50. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +28 -0
  51. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +23 -0
  52. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +22 -0
  53. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +28 -0
  54. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +22 -0
  55. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +59 -0
  56. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +24 -0
  57. package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +63 -0
  58. package/lib/components/commons/components/create-lunatic-component/create-lunatic-component.js +75 -0
  59. package/lib/components/commons/components/create-lunatic-component/index.js +14 -0
  60. package/lib/components/commons/components/default-label-renderer.js +54 -0
  61. package/lib/components/commons/components/default-option-renderer.js +43 -0
  62. package/lib/components/commons/components/dragger/dragger.js +118 -0
  63. package/lib/components/commons/components/dragger/dragger.scss +8 -0
  64. package/lib/components/commons/components/dragger/index.js +15 -0
  65. package/lib/components/commons/components/errors/errors.js +55 -0
  66. package/lib/components/commons/components/errors/errors.scss +5 -0
  67. package/lib/components/commons/components/errors/index.js +15 -0
  68. package/lib/components/commons/components/fab/fab.js +56 -0
  69. package/lib/components/commons/components/fab/fab.scss +32 -0
  70. package/lib/components/commons/components/fab/index.js +15 -0
  71. package/lib/components/commons/components/field-container/field-container.js +48 -0
  72. package/lib/components/commons/components/field-container/field-container.scss +0 -0
  73. package/lib/components/commons/components/field-container/index.js +15 -0
  74. package/lib/components/commons/components/fieldset.js +26 -0
  75. package/lib/components/commons/components/fieldset.scss +5 -0
  76. package/lib/components/commons/components/html-table/index.js +55 -0
  77. package/lib/components/commons/components/html-table/table.js +38 -0
  78. package/lib/components/commons/components/html-table/tbody.js +38 -0
  79. package/lib/components/commons/components/html-table/td.js +50 -0
  80. package/lib/components/commons/components/html-table/th.js +48 -0
  81. package/lib/components/commons/components/html-table/thead.js +38 -0
  82. package/lib/components/commons/components/html-table/tr.js +40 -0
  83. package/lib/components/commons/components/is-network/index.js +15 -0
  84. package/lib/components/commons/components/is-network/is-network.js +70 -0
  85. package/lib/components/commons/components/is-network/use-online-status.js +55 -0
  86. package/lib/components/commons/components/label.js +35 -0
  87. package/lib/components/commons/components/lunatic-component.js +67 -0
  88. package/lib/components/commons/components/lunatic-fieldset-component.js +60 -0
  89. package/lib/components/commons/components/md-label/index.js +15 -0
  90. package/lib/components/commons/components/md-label/link.js +57 -0
  91. package/lib/components/commons/components/md-label/md-label.js +52 -0
  92. package/lib/components/commons/components/missing/index.js +15 -0
  93. package/lib/components/commons/components/missing/missing.js +90 -0
  94. package/lib/components/commons/components/missing/missing.scss +30 -0
  95. package/lib/components/commons/components/nothing-to-display.js +17 -0
  96. package/lib/components/commons/components/orchestrated-component.js +71 -0
  97. package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/edited.png +0 -0
  98. package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/forced.png +0 -0
  99. package/lib/components/commons/components/variable-status/img/index.js +23 -0
  100. package/lib/components/commons/components/variable-status/index.js +15 -0
  101. package/lib/components/commons/components/variable-status/variable-status.js +95 -0
  102. package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
  103. package/lib/components/commons/create-customizable-field.js +37 -0
  104. package/lib/components/commons/create-row-orchestrator.js +60 -0
  105. package/lib/components/commons/icons/checkbox-checked.icon.js +41 -0
  106. package/lib/components/commons/icons/checkbox-unchecked.icon.js +41 -0
  107. package/lib/components/commons/icons/closed.icon.js +38 -0
  108. package/lib/components/commons/icons/cross.icon.js +38 -0
  109. package/lib/components/commons/icons/index.js +87 -0
  110. package/lib/components/commons/icons/load.icon.js +38 -0
  111. package/lib/components/commons/icons/lunatic-icon.js +25 -0
  112. package/lib/components/commons/icons/lunatic-icon.scss +3 -0
  113. package/lib/components/commons/icons/network.icon.js +38 -0
  114. package/lib/components/commons/icons/on-drag.icon.js +38 -0
  115. package/lib/components/commons/icons/opened.icon.js +38 -0
  116. package/lib/components/commons/icons/radio-checked.icon.js +41 -0
  117. package/lib/components/commons/icons/radio-unchecked.icon.js +41 -0
  118. package/lib/components/commons/index.js +162 -0
  119. package/lib/components/commons/prop-types/declarations.js +27 -0
  120. package/lib/components/commons/prop-types/index.js +47 -0
  121. package/lib/components/commons/prop-types/lines.js +17 -0
  122. package/lib/components/commons/prop-types/options.js +17 -0
  123. package/lib/components/commons/prop-types/response.js +17 -0
  124. package/lib/components/commons/prop-types/value-type.js +22 -0
  125. package/lib/components/commons/safety-label.js +34 -0
  126. package/lib/components/commons/use-document-add-event-listener.js +108 -0
  127. package/lib/components/commons/use-on-handle-change.js +22 -0
  128. package/lib/components/commons/use-options-keydown.js +29 -0
  129. package/lib/components/commons/use-previous.js +19 -0
  130. package/lib/components/components.js +188 -0
  131. package/lib/components/datepicker/datepicker.js +56 -0
  132. package/lib/components/datepicker/datepicker.scss +1 -0
  133. package/lib/components/datepicker/index.js +15 -0
  134. package/lib/components/datepicker/lunatic-datepicker.js +39 -0
  135. package/lib/components/declarations/declaration.js +26 -0
  136. package/lib/components/declarations/declarations-after-text.js +29 -0
  137. package/lib/components/declarations/declarations-before-text.js +29 -0
  138. package/lib/components/declarations/declarations-detachable.js +29 -0
  139. package/lib/components/declarations/declarations.js +61 -0
  140. package/lib/components/declarations/declarations.scss +36 -0
  141. package/lib/components/declarations/index.js +51 -0
  142. package/lib/components/dropdown/dropdown-simple/dropdown-simple.js +43 -0
  143. package/lib/components/dropdown/dropdown-simple/index.js +15 -0
  144. package/lib/components/dropdown/dropdown-simple/simple-label-renderer.js +53 -0
  145. package/lib/components/dropdown/dropdown-simple/simple-option-renderer.js +42 -0
  146. package/lib/components/dropdown/dropdown-writable/dropdown-writable.js +79 -0
  147. package/lib/components/dropdown/dropdown-writable/filter-tools/filter-options.js +47 -0
  148. package/lib/components/dropdown/dropdown-writable/filter-tools/letters-matching.js +40 -0
  149. package/lib/components/dropdown/dropdown-writable/filter-tools/match.js +27 -0
  150. package/lib/components/dropdown/dropdown-writable/filter-tools/prepare-prefix.js +17 -0
  151. package/lib/components/dropdown/dropdown-writable/index.js +15 -0
  152. package/lib/components/dropdown/dropdown-writable/writable-label-renderer.js +53 -0
  153. package/lib/components/dropdown/dropdown-writable/writable-option-renderer.js +170 -0
  154. package/lib/components/dropdown/dropdown.js +58 -0
  155. package/lib/components/dropdown/dropdown.scss +41 -0
  156. package/lib/components/dropdown/index.js +15 -0
  157. package/lib/components/dropdown/lunatic-dropdown.js +62 -0
  158. package/lib/components/filter-description/component.js +26 -0
  159. package/lib/components/filter-description/index.js +15 -0
  160. package/lib/components/index.js +32 -0
  161. package/lib/components/index.scss +136 -0
  162. package/lib/components/input/index.js +15 -0
  163. package/lib/components/input/input.js +61 -0
  164. package/lib/components/input/input.scss +32 -0
  165. package/lib/components/input/lunatic-input.js +43 -0
  166. package/lib/components/input-number/index.js +15 -0
  167. package/lib/components/input-number/input-number.js +61 -0
  168. package/lib/components/input-number/input-number.scss +7 -0
  169. package/lib/components/input-number/lunatic-input-number.js +37 -0
  170. package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +16 -0
  171. package/lib/components/loop/block-for-loop/block-for-loop.js +171 -0
  172. package/lib/components/loop/block-for-loop/index.js +15 -0
  173. package/lib/components/loop/block-for-loop/row.js +84 -0
  174. package/lib/components/loop/commons/get-init-length.js +19 -0
  175. package/lib/components/loop/commons/handle-row-button.js +25 -0
  176. package/lib/components/loop/commons/index.js +23 -0
  177. package/lib/components/loop/commons/row-component.js +86 -0
  178. package/lib/components/loop/index.js +15 -0
  179. package/lib/components/loop/loop.js +94 -0
  180. package/lib/components/loop/roster-for-loop/body.js +69 -0
  181. package/lib/components/loop/roster-for-loop/header.js +42 -0
  182. package/lib/components/loop/roster-for-loop/index.js +15 -0
  183. package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +16 -0
  184. package/lib/components/loop/roster-for-loop/roster-for-loop.js +153 -0
  185. package/lib/components/loop/roster-for-loop/roster-table.js +61 -0
  186. package/lib/components/loop/roster-for-loop/roster.scss +42 -0
  187. package/lib/components/loop/roster-for-loop/row.js +88 -0
  188. package/lib/components/modal-controls/close-or-skip.js +46 -0
  189. package/lib/components/modal-controls/index.js +15 -0
  190. package/lib/components/modal-controls/modal-container.js +24 -0
  191. package/lib/components/modal-controls/modal-controls.js +94 -0
  192. package/lib/components/modal-controls/modal-controls.scss +47 -0
  193. package/lib/components/pairwise/index.js +15 -0
  194. package/lib/components/pairwise/links/index.js +15 -0
  195. package/lib/components/pairwise/links/orchestrator.js +16 -0
  196. package/lib/components/pairwise/links/pairwise-links.js +75 -0
  197. package/lib/components/pairwise/links/row.js +95 -0
  198. package/lib/components/radio/index.js +15 -0
  199. package/lib/components/radio/lunatic-radio-group.js +45 -0
  200. package/lib/components/radio/radio-group.js +48 -0
  201. package/lib/components/radio/radio-option.js +94 -0
  202. package/lib/components/radio/radio.scss +66 -0
  203. package/lib/components/sequence/index.js +15 -0
  204. package/lib/components/sequence/sequence.js +41 -0
  205. package/lib/components/sequence/sequence.scss +10 -0
  206. package/lib/components/subsequence/index.js +15 -0
  207. package/lib/components/subsequence/subsequence.js +38 -0
  208. package/lib/components/suggester/check-store.js +149 -0
  209. package/lib/components/suggester/default-style.scss +125 -0
  210. package/lib/components/suggester/find-best-label/find-best-label.js +67 -0
  211. package/lib/components/suggester/find-best-label/index.js +15 -0
  212. package/lib/components/suggester/idb-suggester.js +95 -0
  213. package/lib/components/suggester/index.js +15 -0
  214. package/lib/components/suggester/lunatic-suggester.js +94 -0
  215. package/lib/components/suggester/searching/create-searching.js +88 -0
  216. package/lib/components/suggester/searching/index.js +15 -0
  217. package/lib/components/suggester/suggester.js +172 -0
  218. package/lib/components/suggester-loader-widget/index.js +15 -0
  219. package/lib/components/suggester-loader-widget/loader-row.js +150 -0
  220. package/lib/components/suggester-loader-widget/loader.js +180 -0
  221. package/lib/components/suggester-loader-widget/progress.js +45 -0
  222. package/lib/components/suggester-loader-widget/tools/action-tool.js +35 -0
  223. package/lib/components/suggester-loader-widget/tools/index.js +23 -0
  224. package/lib/components/suggester-loader-widget/tools/tools.js +20 -0
  225. package/lib/components/suggester-loader-widget/widget-container.js +48 -0
  226. package/lib/components/suggester-loader-widget/widget.js +170 -0
  227. package/lib/components/suggester-loader-widget/widget.scss +176 -0
  228. package/lib/components/switch/index.js +15 -0
  229. package/lib/components/switch/lunatic-switch.js +59 -0
  230. package/lib/components/switch/switch.js +92 -0
  231. package/lib/components/switch/switch.scss +47 -0
  232. package/lib/components/table/cell.js +113 -0
  233. package/lib/components/table/components/cell.js +113 -0
  234. package/lib/components/table/components/header.js +48 -0
  235. package/lib/components/table/components/row.js +47 -0
  236. package/lib/components/table/components/table.js +38 -0
  237. package/lib/components/table/components/table.scss +27 -0
  238. package/lib/components/table/index.js +15 -0
  239. package/lib/components/table/lunatic-table.js +97 -0
  240. package/lib/components/table/table-orchestrator.js +55 -0
  241. package/lib/components/textarea/index.js +15 -0
  242. package/lib/components/textarea/lunatic-textarea.js +52 -0
  243. package/lib/components/textarea/textarea.js +54 -0
  244. package/lib/components/textarea/textarea.scss +8 -0
  245. package/lib/constants/component-types.js +8 -0
  246. package/lib/constants/declarations.js +26 -0
  247. package/lib/constants/event-types.js +28 -0
  248. package/lib/constants/index.js +70 -0
  249. package/lib/constants/supported-preferences.js +18 -0
  250. package/lib/constants/value-types.js +16 -0
  251. package/lib/constants/variable-types.js +12 -0
  252. package/lib/i18n/build-dictionary.js +56 -0
  253. package/lib/i18n/dictionary.js +26 -0
  254. package/lib/i18n/index.js +19 -0
  255. package/lib/index.js +21 -4300
  256. package/lib/stories/Introduction.stories.mdx +114 -0
  257. package/lib/stories/checkboxBoolean/checkboxBoolean.stories.js +35 -0
  258. package/lib/stories/checkboxBoolean/source.json +36 -0
  259. package/lib/stories/checkboxOne/checkboxOne.stories.js +35 -0
  260. package/lib/stories/checkboxOne/source.json +36 -0
  261. package/lib/stories/custom-mui/checkbox-boolean-mui.js +39 -0
  262. package/lib/stories/custom-mui/checkbox-group-mui.js +80 -0
  263. package/lib/stories/custom-mui/checkbox-one-mui.js +17 -0
  264. package/lib/stories/custom-mui/index.js +127 -0
  265. package/lib/stories/custom-mui/input-mui.js +61 -0
  266. package/lib/stories/custom-mui/input-number-mui.js +47 -0
  267. package/lib/stories/custom-mui/radio-mui.js +75 -0
  268. package/lib/stories/custom-mui/suggester-mui/index.js +15 -0
  269. package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +328 -0
  270. package/lib/stories/custom-mui/switch-mui.js +51 -0
  271. package/lib/stories/custom-mui/table-mui.js +33 -0
  272. package/lib/stories/custom-mui/tbody-mui.js +27 -0
  273. package/lib/stories/custom-mui/td-mui.js +29 -0
  274. package/lib/stories/custom-mui/textarea-mui.js +51 -0
  275. package/lib/stories/custom-mui/th-mui.js +28 -0
  276. package/lib/stories/custom-mui/thead-mui.js +27 -0
  277. package/lib/stories/custom-mui/tr-mui.js +38 -0
  278. package/lib/stories/date-picker/data.json +3 -0
  279. package/lib/stories/date-picker/datepicker.stories.js +40 -0
  280. package/lib/stories/date-picker/source.json +91 -0
  281. package/lib/stories/dropdown/data.json +16 -0
  282. package/lib/stories/dropdown/dropdown.stories.js +41 -0
  283. package/lib/stories/dropdown/source.json +122 -0
  284. package/lib/stories/filter-description/filter-description.stories.js +58 -0
  285. package/lib/stories/filter-description/source-options.json +81 -0
  286. package/lib/stories/filter-description/source.json +11 -0
  287. package/lib/stories/input/data.json +1 -0
  288. package/lib/stories/input/input.stories.js +38 -0
  289. package/lib/stories/input/source.json +28 -0
  290. package/lib/stories/input-number/input-number.stories.js +43 -0
  291. package/lib/stories/input-number/source-euros.json +38 -0
  292. package/lib/stories/input-number/source.json +37 -0
  293. package/lib/stories/pairwise/data.json +13 -0
  294. package/lib/stories/pairwise/links.json +207 -0
  295. package/lib/stories/pairwise/pairwise-links.stories.js +39 -0
  296. package/lib/stories/paste-questionnaire/source.json +6290 -0
  297. package/lib/stories/paste-questionnaire/test.stories.js +91 -0
  298. package/lib/stories/questionnaires/logement/data.json +2691 -0
  299. package/lib/stories/questionnaires/logement/logement.stories.js +86 -0
  300. package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
  301. package/lib/stories/questionnaires/logement/source-sum.json +34612 -0
  302. package/lib/stories/questionnaires/logement/source.json +34191 -0
  303. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +71 -0
  304. package/lib/stories/questionnaires/simpsons/source.json +6290 -0
  305. package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
  306. package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
  307. package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
  308. package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
  309. package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +666 -0
  310. package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1957 -0
  311. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
  312. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +533 -0
  313. package/lib/stories/questionnaires-test/controls/boucles-n.json +202 -0
  314. package/lib/stories/questionnaires-test/controls/controls.stories.js +108 -0
  315. package/lib/stories/questionnaires-test/test-dylan.json +558 -0
  316. package/lib/stories/questionnaires-test/test.stories.js +104 -0
  317. package/lib/stories/radio/radio.stories.js +35 -0
  318. package/lib/stories/radio/source.json +36 -0
  319. package/lib/stories/roster-for-loop/roster-for-loop.stories.js +35 -0
  320. package/lib/stories/roster-for-loop/source.json +114 -0
  321. package/lib/stories/suggester/source.json +234 -0
  322. package/lib/stories/suggester/suggester-workers.stories.js +242 -0
  323. package/lib/stories/suggester/suggester.stories.js +59 -0
  324. package/{src/stories/checkbox-one → lib/stories/switch}/README.md +31 -31
  325. package/lib/stories/switch/SwitchMaterialUI.js +51 -0
  326. package/{src/stories/checkbox-boolean/data.json → lib/stories/switch/data-forced.json} +48 -48
  327. package/lib/stories/switch/data.json +80 -0
  328. package/lib/stories/switch/switch.js +108 -0
  329. package/lib/stories/table/data-roster.json +1 -0
  330. package/lib/stories/table/data.json +1 -0
  331. package/{src/stories/table/data-roster.json → lib/stories/table/source-roster.json} +504 -461
  332. package/{src/stories/table/data-default.json → lib/stories/table/source.json} +19 -19
  333. package/lib/stories/table/table-dynamique.json +67 -0
  334. package/lib/stories/table/table.stories.js +73 -0
  335. package/lib/stories/utils/custom-lunatic.scss +28 -0
  336. package/lib/stories/utils/default-arg-types.js +23 -0
  337. package/lib/stories/utils/options.js +32 -0
  338. package/lib/stories/utils/orchestrator.js +188 -0
  339. package/lib/stories/utils/waiting/index.js +15 -0
  340. package/lib/stories/utils/waiting/preloader.svg +1 -0
  341. package/lib/stories/utils/waiting/waiting.js +40 -0
  342. package/lib/stories/utils/waiting/waiting.scss +21 -0
  343. package/lib/tests/sample.spec.js +7 -0
  344. package/lib/use-lunatic/actions.js +102 -0
  345. package/lib/use-lunatic/commons/calculated-variables.js +124 -0
  346. package/lib/use-lunatic/commons/check-loops.js +111 -0
  347. package/lib/use-lunatic/commons/compose.js +28 -0
  348. package/lib/use-lunatic/commons/create-map-pages.js +108 -0
  349. package/lib/use-lunatic/commons/execute-condition-filter.js +34 -0
  350. package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +308 -0
  351. package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +78 -0
  352. package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +160 -0
  353. package/lib/use-lunatic/commons/execute-expression/execute-expression.js +118 -0
  354. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +51 -0
  355. package/lib/use-lunatic/commons/execute-expression/get-safety-expression.js +37 -0
  356. package/lib/use-lunatic/commons/execute-expression/index.js +15 -0
  357. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +149 -0
  358. package/lib/use-lunatic/commons/fill-components/fill-component-value.js +26 -0
  359. package/lib/use-lunatic/commons/fill-components/fill-components.js +47 -0
  360. package/lib/use-lunatic/commons/fill-components/fill-errors.js +31 -0
  361. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +26 -0
  362. package/lib/use-lunatic/commons/fill-components/fill-management.js +27 -0
  363. package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +37 -0
  364. package/lib/use-lunatic/commons/fill-components/fill-pagination.js +23 -0
  365. package/lib/use-lunatic/commons/fill-components/index.js +15 -0
  366. package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +32 -0
  367. package/lib/use-lunatic/commons/get-component-value/get-component-value.js +217 -0
  368. package/lib/use-lunatic/commons/get-component-value/index.js +15 -0
  369. package/lib/use-lunatic/commons/get-components-from-state.js +44 -0
  370. package/lib/use-lunatic/commons/get-data.js +90 -0
  371. package/lib/use-lunatic/commons/get-errors-without-empty-value.js +31 -0
  372. package/lib/use-lunatic/commons/index.js +123 -0
  373. package/lib/use-lunatic/commons/is-First-last-page.js +20 -0
  374. package/lib/use-lunatic/commons/is-paginated-loop.js +15 -0
  375. package/lib/use-lunatic/commons/load-suggesters.js +199 -0
  376. package/lib/use-lunatic/commons/page-tag.js +83 -0
  377. package/lib/use-lunatic/commons/use-components-from-state.js +49 -0
  378. package/lib/use-lunatic/index.js +15 -0
  379. package/lib/use-lunatic/initial-state.js +44 -0
  380. package/lib/use-lunatic/reducer/commons/index.js +41 -0
  381. package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +49 -0
  382. package/lib/use-lunatic/reducer/commons/resize-array-variable.js +48 -0
  383. package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +41 -0
  384. package/lib/use-lunatic/reducer/index.js +15 -0
  385. package/lib/use-lunatic/reducer/reduce-go-next-page.js +218 -0
  386. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +165 -0
  387. package/lib/use-lunatic/reducer/reduce-go-to-page.js +60 -0
  388. package/lib/use-lunatic/reducer/reduce-handle-change/index.js +15 -0
  389. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +77 -0
  390. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +142 -0
  391. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +53 -0
  392. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +90 -0
  393. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +118 -0
  394. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +50 -0
  395. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +29 -0
  396. package/lib/use-lunatic/reducer/reduce-on-init.js +260 -0
  397. package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +23 -0
  398. package/lib/use-lunatic/reducer/reducer.js +58 -0
  399. package/lib/use-lunatic/reducer/validate-controls/create-controls-reducer.js +69 -0
  400. package/lib/use-lunatic/reducer/validate-controls/create-modal-controls-reducer.js +100 -0
  401. package/lib/use-lunatic/reducer/validate-controls/index.js +23 -0
  402. package/lib/use-lunatic/reducer/validate-controls/validation-utils.js +73 -0
  403. package/lib/use-lunatic/use-lunatic.js +215 -0
  404. package/lib/utils/constants/features.js +12 -0
  405. package/lib/utils/constants/index.js +70 -0
  406. package/lib/utils/constants/links.js +10 -0
  407. package/lib/utils/constants/missing.js +10 -0
  408. package/lib/utils/constants/variable-status.js +16 -0
  409. package/lib/utils/constants/variable-types.js +8 -0
  410. package/lib/utils/idb-tools/clear-store.js +52 -0
  411. package/lib/utils/idb-tools/create-db-opener.js +60 -0
  412. package/lib/utils/idb-tools/create-open-db.js +35 -0
  413. package/lib/utils/idb-tools/get-entity.js +25 -0
  414. package/lib/utils/idb-tools/get-idb.js +15 -0
  415. package/lib/utils/idb-tools/idb-bulk-insert.js +157 -0
  416. package/lib/utils/idb-tools/index.js +75 -0
  417. package/lib/utils/idb-tools/insert-entity.js +25 -0
  418. package/lib/utils/idb-tools/open-db.js +29 -0
  419. package/lib/utils/idb-tools/open-or-create-db.js +49 -0
  420. package/lib/utils/is-element.js +12 -0
  421. package/lib/utils/store-tools/auto-load.js +209 -0
  422. package/lib/utils/store-tools/clear-store-data.js +46 -0
  423. package/lib/utils/store-tools/clear-store-info.js +46 -0
  424. package/lib/utils/store-tools/constantes.js +31 -0
  425. package/lib/utils/store-tools/create/create.js +70 -0
  426. package/lib/utils/store-tools/create/index.js +23 -0
  427. package/lib/utils/store-tools/create/update-store-info.js +33 -0
  428. package/lib/utils/store-tools/get-store-count.js +29 -0
  429. package/lib/utils/store-tools/index.js +66 -0
  430. package/lib/utils/store-tools/open-or-create-store.js +60 -0
  431. package/lib/utils/store-tools/use-store-index.js +82 -0
  432. package/lib/utils/suggester-workers/append-to-index/append.js +96 -0
  433. package/lib/utils/suggester-workers/append-to-index/append.worker.js +31 -0
  434. package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
  435. package/lib/utils/suggester-workers/append-to-index/index.js +23 -0
  436. package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +114 -0
  437. package/lib/utils/suggester-workers/append-to-index/store-messages.js +48 -0
  438. package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +70 -0
  439. package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +103 -0
  440. package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +47 -0
  441. package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +24 -0
  442. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +47 -0
  443. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +16 -0
  444. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +24 -0
  445. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +18 -0
  446. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +34 -0
  447. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +25 -0
  448. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +17 -0
  449. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +25 -0
  450. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +29 -0
  451. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +18 -0
  452. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +71 -0
  453. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
  454. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +19 -0
  455. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +16 -0
  456. package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +23 -0
  457. package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
  458. package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +17 -0
  459. package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +31 -0
  460. package/lib/utils/suggester-workers/commons-tokenizer/index.js +79 -0
  461. package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +24 -0
  462. package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +15 -0
  463. package/lib/utils/suggester-workers/create-worker.js +64 -0
  464. package/lib/utils/suggester-workers/find-best-label/find-best-label.js +81 -0
  465. package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +67 -0
  466. package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
  467. package/lib/utils/suggester-workers/find-best-label/tokenize.js +62 -0
  468. package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +26 -0
  469. package/lib/utils/suggester-workers/searching/compute-score.js +63 -0
  470. package/lib/utils/suggester-workers/searching/get-db.js +64 -0
  471. package/lib/utils/suggester-workers/searching/index.js +15 -0
  472. package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +33 -0
  473. package/lib/utils/suggester-workers/searching/order/index.js +33 -0
  474. package/lib/utils/suggester-workers/searching/query-parser/index.js +23 -0
  475. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +15 -0
  476. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +28 -0
  477. package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +51 -0
  478. package/lib/utils/suggester-workers/searching/resolve-query-parser.js +73 -0
  479. package/lib/utils/suggester-workers/searching/search-in-index.js +25 -0
  480. package/lib/utils/suggester-workers/searching/searching.js +170 -0
  481. package/lib/utils/suggester-workers/searching/searching.worker.js +23 -0
  482. package/lib/utils/vtl/dataset-builder.js +28 -0
  483. package/lib/utils/vtl/index.js +15 -0
  484. package/package.json +161 -139
  485. package/lib/index.js.map +0 -1
  486. package/src/components/breadcrumb/breadcrumb.scss +0 -22
  487. package/src/components/breadcrumb/component.js +0 -29
  488. package/src/components/breadcrumb/index.js +0 -1
  489. package/src/components/button/button.scss +0 -26
  490. package/src/components/button/component.js +0 -25
  491. package/src/components/button/index.js +0 -1
  492. package/src/components/checkbox/boolean.js +0 -147
  493. package/src/components/checkbox/checkbox.scss +0 -43
  494. package/src/components/checkbox/group.js +0 -183
  495. package/src/components/checkbox/index.js +0 -3
  496. package/src/components/checkbox/one.js +0 -10
  497. package/src/components/components.js +0 -16
  498. package/src/components/datepicker/component.js +0 -10
  499. package/src/components/datepicker/datepicker.scss +0 -16
  500. package/src/components/datepicker/index.js +0 -1
  501. package/src/components/declarations/component.js +0 -38
  502. package/src/components/declarations/declarations.scss +0 -34
  503. package/src/components/declarations/index.js +0 -1
  504. package/src/components/declarations/wrappers/index.js +0 -3
  505. package/src/components/declarations/wrappers/input-declarations-wrapper.js +0 -168
  506. package/src/components/declarations/wrappers/list-declarations-wrapper.js +0 -190
  507. package/src/components/declarations/wrappers/simple-declarations-wrapper.js +0 -54
  508. package/src/components/dropdown/commons/actions.js +0 -56
  509. package/src/components/dropdown/commons/children-to-option.js +0 -9
  510. package/src/components/dropdown/commons/cleaner-callbacks.js +0 -58
  511. package/src/components/dropdown/commons/components/closed.icon.js +0 -24
  512. package/src/components/dropdown/commons/components/dropdown-container.js +0 -29
  513. package/src/components/dropdown/commons/components/dropdown-field.js +0 -46
  514. package/src/components/dropdown/commons/components/dropdown.js +0 -182
  515. package/src/components/dropdown/commons/components/label.js +0 -28
  516. package/src/components/dropdown/commons/components/opened.icon.js +0 -24
  517. package/src/components/dropdown/commons/components/panel.js +0 -78
  518. package/src/components/dropdown/commons/event-callbacks/index.js +0 -5
  519. package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +0 -29
  520. package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +0 -11
  521. package/src/components/dropdown/commons/reducer.js +0 -149
  522. package/src/components/dropdown/commons/tools/index.js +0 -17
  523. package/src/components/dropdown/component.js +0 -117
  524. package/src/components/dropdown/dropdown-edit/cross.icon.js +0 -20
  525. package/src/components/dropdown/dropdown-edit/dropdown-edit.js +0 -185
  526. package/src/components/dropdown/dropdown-edit/icone.js +0 -33
  527. package/src/components/dropdown/dropdown-edit/index.js +0 -11
  528. package/src/components/dropdown/dropdown-edit/option.js +0 -62
  529. package/src/components/dropdown/dropdown-edit/prefix-tools.js +0 -51
  530. package/src/components/dropdown/dropdown-simple/dropdown.js +0 -155
  531. package/src/components/dropdown/dropdown-simple/index.js +0 -20
  532. package/src/components/dropdown/dropdown-simple/option.js +0 -15
  533. package/src/components/dropdown/dropdown.scss +0 -201
  534. package/src/components/dropdown/index.js +0 -1
  535. package/src/components/filter-description/component.js +0 -41
  536. package/src/components/filter-description/index.js +0 -1
  537. package/src/components/index.js +0 -4
  538. package/src/components/index.scss +0 -76
  539. package/src/components/input/index.js +0 -2
  540. package/src/components/input/input-number.js +0 -232
  541. package/src/components/input/input.js +0 -10
  542. package/src/components/input/input.scss +0 -27
  543. package/src/components/loop/build-components.js +0 -33
  544. package/src/components/loop/component.js +0 -94
  545. package/src/components/loop/index.js +0 -1
  546. package/src/components/loop/loop.scss +0 -17
  547. package/src/components/loop/wrapper.js +0 -11
  548. package/src/components/loop-constructor/block/block.scss +0 -10
  549. package/src/components/loop-constructor/block/component.js +0 -8
  550. package/src/components/loop-constructor/block/index.js +0 -1
  551. package/src/components/loop-constructor/index.js +0 -1
  552. package/src/components/loop-constructor/roster/component.js +0 -7
  553. package/src/components/loop-constructor/roster/index.js +0 -1
  554. package/src/components/loop-constructor/wrapper/body-component.js +0 -118
  555. package/src/components/loop-constructor/wrapper/build-components.js +0 -33
  556. package/src/components/loop-constructor/wrapper/component.js +0 -152
  557. package/src/components/loop-constructor/wrapper/index.js +0 -1
  558. package/src/components/progress-bar/component.js +0 -28
  559. package/src/components/progress-bar/index.js +0 -1
  560. package/src/components/progress-bar/progress-bar.scss +0 -54
  561. package/src/components/radio/component.js +0 -8
  562. package/src/components/radio/index.js +0 -1
  563. package/src/components/radio/radio.scss +0 -24
  564. package/src/components/sequence/component.js +0 -41
  565. package/src/components/sequence/index.js +0 -1
  566. package/src/components/sequence/sequence.scss +0 -15
  567. package/src/components/subsequence/component.js +0 -48
  568. package/src/components/subsequence/index.js +0 -1
  569. package/src/components/subsequence/subsequence.scss +0 -15
  570. package/src/components/table/index.js +0 -1
  571. package/src/components/table/table.js +0 -160
  572. package/src/components/table/table.scss +0 -23
  573. package/src/components/textarea/component.js +0 -10
  574. package/src/components/textarea/index.js +0 -1
  575. package/src/components/textarea/textarea.scss +0 -16
  576. package/src/components/tooltip/img/collected.png +0 -0
  577. package/src/components/tooltip/img/index.js +0 -5
  578. package/src/components/tooltip/index.js +0 -1
  579. package/src/components/tooltip/response.js +0 -51
  580. package/src/components/tooltip/tooltip.scss +0 -35
  581. package/src/constants/component-types.js +0 -1
  582. package/src/constants/declarations.js +0 -14
  583. package/src/constants/index.js +0 -4
  584. package/src/constants/supported-preferences.js +0 -10
  585. package/src/constants/value-types.js +0 -5
  586. package/src/constants/variable-types.js +0 -4
  587. package/src/stories/breadcrumb/README.md +0 -14
  588. package/src/stories/breadcrumb/breadcrumb.stories.js +0 -33
  589. package/src/stories/button/README.md +0 -14
  590. package/src/stories/button/button.stories.js +0 -63
  591. package/src/stories/checkbox-boolean/README.md +0 -27
  592. package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +0 -30
  593. package/src/stories/checkbox-group/README.md +0 -29
  594. package/src/stories/checkbox-group/checkbox-group.stories.js +0 -81
  595. package/src/stories/checkbox-group/data-vtl.json +0 -89
  596. package/src/stories/checkbox-group/data.json +0 -89
  597. package/src/stories/checkbox-one/checkbox-one.stories.js +0 -77
  598. package/src/stories/checkbox-one/data-vtl.json +0 -33
  599. package/src/stories/checkbox-one/data.json +0 -33
  600. package/src/stories/datepicker/README.md +0 -31
  601. package/src/stories/datepicker/data.json +0 -28
  602. package/src/stories/datepicker/datepicker.stories.js +0 -65
  603. package/src/stories/declarations/README.md +0 -19
  604. package/src/stories/declarations/declarations.stories.js +0 -112
  605. package/src/stories/dropdown/README.md +0 -44
  606. package/src/stories/dropdown/data-naf.json +0 -6963
  607. package/src/stories/dropdown/data-props.json +0 -81
  608. package/src/stories/dropdown/data.json +0 -78
  609. package/src/stories/dropdown/dropdown.stories.js +0 -65
  610. package/src/stories/filter-description/README.md +0 -15
  611. package/src/stories/filter-description/filter-description.stories.js +0 -70
  612. package/src/stories/input/README.md +0 -33
  613. package/src/stories/input/data.json +0 -28
  614. package/src/stories/input/input.stories.js +0 -67
  615. package/src/stories/input-number/README.md +0 -37
  616. package/src/stories/input-number/data.json +0 -30
  617. package/src/stories/input-number/input-number.stories.js +0 -75
  618. package/src/stories/loop/README.md +0 -25
  619. package/src/stories/loop/loop.stories.js +0 -80
  620. package/src/stories/loop/with-loop/data-loop-deeper.json +0 -298
  621. package/src/stories/loop/with-loop/data-loop.json +0 -211
  622. package/src/stories/loop/with-loop/data-vqs.json +0 -1384
  623. package/src/stories/loop/with-loop/index.js +0 -3
  624. package/src/stories/loop/with-roster/data-loop-deeper.json +0 -298
  625. package/src/stories/loop/with-roster/data-loop.json +0 -213
  626. package/src/stories/loop/with-roster/data-vqs.json +0 -1383
  627. package/src/stories/loop/with-roster/index.js +0 -3
  628. package/src/stories/loop-constructor/README.md +0 -27
  629. package/src/stories/loop-constructor/data-loop.json +0 -66
  630. package/src/stories/loop-constructor/data-roster.json +0 -68
  631. package/src/stories/loop-constructor/loop-constructor.stories.js +0 -42
  632. package/src/stories/progress-bar/README.md +0 -13
  633. package/src/stories/progress-bar/progress-bar.stories.js +0 -24
  634. package/src/stories/questionnaire/fat.json +0 -6558
  635. package/src/stories/questionnaire/questionnaire.stories.js +0 -25
  636. package/src/stories/radio/README.md +0 -31
  637. package/src/stories/radio/data-vtl.json +0 -32
  638. package/src/stories/radio/data.json +0 -32
  639. package/src/stories/radio/radio.stories.js +0 -81
  640. package/src/stories/sequence/README.md +0 -18
  641. package/src/stories/sequence/sequence.stories.js +0 -58
  642. package/src/stories/subsequence/README.md +0 -18
  643. package/src/stories/subsequence/subsequence.stories.js +0 -58
  644. package/src/stories/table/README.md +0 -29
  645. package/src/stories/table/data-one-axis-one-measure.json +0 -124
  646. package/src/stories/table/data-one-axis-two-measures.json +0 -193
  647. package/src/stories/table/data-one-hierarchical-axis.json +0 -204
  648. package/src/stories/table/data-two-axis-one-measure.json +0 -492
  649. package/src/stories/table/table.stories.js +0 -77
  650. package/src/stories/textarea/README.md +0 -33
  651. package/src/stories/textarea/data-forced.json +0 -28
  652. package/src/stories/textarea/data.json +0 -28
  653. package/src/stories/textarea/textarea.stories.js +0 -90
  654. package/src/stories/tooltip-response/README.md +0 -14
  655. package/src/stories/tooltip-response/tooltip.stories.js +0 -43
  656. package/src/stories/utils/custom-lunatic.scss +0 -595
  657. package/src/stories/utils/img/arrow.png +0 -0
  658. package/src/stories/utils/img/check_box.svg +0 -1
  659. package/src/stories/utils/img/check_box_outline.svg +0 -1
  660. package/src/stories/utils/img/lunatic-logo.png +0 -0
  661. package/src/stories/utils/img/menu-down.svg +0 -1
  662. package/src/stories/utils/img/menu-up.svg +0 -1
  663. package/src/stories/utils/img/radio_button_checked.svg +0 -1
  664. package/src/stories/utils/img/radio_button_unchecked.svg +0 -1
  665. package/src/stories/utils/options.js +0 -21
  666. package/src/stories/utils/orchestrator.js +0 -53
  667. package/src/tests/components/breadcrumb.spec.js +0 -13
  668. package/src/tests/components/button.spec.js +0 -11
  669. package/src/tests/components/checkbox-boolean.spec.js +0 -45
  670. package/src/tests/components/checkbox-group.spec.js +0 -53
  671. package/src/tests/components/checkbox-one.spec.js +0 -32
  672. package/src/tests/components/datepicker.spec.js +0 -22
  673. package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +0 -67
  674. package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +0 -52
  675. package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +0 -21
  676. package/src/tests/components/declarations.spec.js +0 -46
  677. package/src/tests/components/input-number.spec.js +0 -175
  678. package/src/tests/components/input.spec.js +0 -18
  679. package/src/tests/components/progress-bar.spec.js +0 -15
  680. package/src/tests/components/radio.spec.js +0 -27
  681. package/src/tests/components/sequence.spec.js +0 -9
  682. package/src/tests/components/subsequence.spec.js +0 -9
  683. package/src/tests/components/table.spec.js +0 -11
  684. package/src/tests/components/textarea.spec.js +0 -18
  685. package/src/tests/components/tooltip.spec.js +0 -25
  686. package/src/tests/setup/setupTests.js +0 -4
  687. package/src/tests/utils/lib/alphabet.spec.js +0 -36
  688. package/src/tests/utils/lib/checkbox/group.spec.js +0 -72
  689. package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
  690. package/src/tests/utils/lib/items-positioning.spec.js +0 -17
  691. package/src/tests/utils/lib/label-position.spec.js +0 -22
  692. package/src/tests/utils/lib/loops/bindings.spec.js +0 -60
  693. package/src/tests/utils/lib/loops/shared.spec.js +0 -77
  694. package/src/tests/utils/lib/responses.spec.js +0 -64
  695. package/src/tests/utils/lib/style.spec.js +0 -26
  696. package/src/tests/utils/lib/table/roster.spec.js +0 -25
  697. package/src/tests/utils/lib/tooltip/build-response.spec.js +0 -95
  698. package/src/tests/utils/lib/tooltip/content.spec.js +0 -109
  699. package/src/tests/utils/to-expose/handler/handler.spec.js +0 -86
  700. package/src/tests/utils/to-expose/handler/questionnaire.json +0 -154
  701. package/src/tests/utils/to-expose/handler/results/index.js +0 -6
  702. package/src/tests/utils/to-expose/handler/results/res-double.json +0 -157
  703. package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -154
  704. package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -157
  705. package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -157
  706. package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -157
  707. package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -157
  708. package/src/tests/utils/to-expose/init-questionnaire/data.json +0 -12
  709. package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +0 -19
  710. package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +0 -129
  711. package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -162
  712. package/src/tests/utils/to-expose/interpret.spec.js +0 -42
  713. package/src/tests/utils/to-expose/state/questionnaire.json +0 -61
  714. package/src/tests/utils/to-expose/state/results.js +0 -78
  715. package/src/tests/utils/to-expose/state/state.spec.js +0 -59
  716. package/src/utils/lib/alphabet.js +0 -1
  717. package/src/utils/lib/checkbox/group.js +0 -21
  718. package/src/utils/lib/checkbox/index.js +0 -1
  719. package/src/utils/lib/decorator/index.js +0 -1
  720. package/src/utils/lib/decorator/title-decorator.js +0 -16
  721. package/src/utils/lib/index.js +0 -12
  722. package/src/utils/lib/label-position.js +0 -12
  723. package/src/utils/lib/loops/bindings.js +0 -47
  724. package/src/utils/lib/loops/index.js +0 -2
  725. package/src/utils/lib/loops/shared.js +0 -43
  726. package/src/utils/lib/memo-check.js +0 -24
  727. package/src/utils/lib/options-positioning.js +0 -9
  728. package/src/utils/lib/prop-types/declarations.js +0 -22
  729. package/src/utils/lib/prop-types/index.js +0 -5
  730. package/src/utils/lib/prop-types/lines.js +0 -6
  731. package/src/utils/lib/prop-types/options.js +0 -8
  732. package/src/utils/lib/prop-types/response.js +0 -6
  733. package/src/utils/lib/prop-types/value-type.js +0 -9
  734. package/src/utils/lib/responses.js +0 -9
  735. package/src/utils/lib/style.js +0 -10
  736. package/src/utils/lib/table/index.js +0 -1
  737. package/src/utils/lib/table/roster.js +0 -18
  738. package/src/utils/lib/tooltip/build-response.js +0 -41
  739. package/src/utils/lib/tooltip/content.js +0 -52
  740. package/src/utils/lib/tooltip/index.js +0 -6
  741. package/src/utils/to-expose/handler.js +0 -99
  742. package/src/utils/to-expose/hook.js +0 -65
  743. package/src/utils/to-expose/index.js +0 -11
  744. package/src/utils/to-expose/init-questionnaire.js +0 -114
  745. package/src/utils/to-expose/interpret.js +0 -53
  746. package/src/utils/to-expose/state.js +0 -58
@@ -0,0 +1,2691 @@
1
+ {
2
+ "EXTERNAL": {
3
+ "ADR": "AVENUE CHARLES DE GAULLE",
4
+ "NUMTH": "29",
5
+ "CADRTH": null,
6
+ "CIV_D1": "MONSIEUR",
7
+ "CIV_D2": null,
8
+ "LIBCOM": "PARIS",
9
+ "PREN_D1": "JEAN-MARC",
10
+ "PREN_D2": null,
11
+ "CODEPOST1": "75017",
12
+ "NOMVOUS_D1": "MIERLOT",
13
+ "NOMVOUS_D2": null
14
+ },
15
+ "COLLECTED": {
16
+ "DAG": {
17
+ "EDITED": null,
18
+ "FORCED": null,
19
+ "INPUTED": null,
20
+ "PREVIOUS": null,
21
+ "COLLECTED": null
22
+ },
23
+ "DST": {
24
+ "EDITED": null,
25
+ "FORCED": null,
26
+ "INPUTED": null,
27
+ "PREVIOUS": null,
28
+ "COLLECTED": null
29
+ },
30
+ "DTA": {
31
+ "EDITED": null,
32
+ "FORCED": null,
33
+ "INPUTED": null,
34
+ "PREVIOUS": null,
35
+ "COLLECTED": null
36
+ },
37
+ "DTL": {
38
+ "EDITED": null,
39
+ "FORCED": null,
40
+ "INPUTED": null,
41
+ "PREVIOUS": null,
42
+ "COLLECTED": null
43
+ },
44
+ "HPA": {
45
+ "EDITED": null,
46
+ "FORCED": null,
47
+ "INPUTED": null,
48
+ "PREVIOUS": null,
49
+ "COLLECTED": null
50
+ },
51
+ "HPH": {
52
+ "EDITED": null,
53
+ "FORCED": null,
54
+ "INPUTED": null,
55
+ "PREVIOUS": null,
56
+ "COLLECTED": null
57
+ },
58
+ "HPP": {
59
+ "EDITED": null,
60
+ "FORCED": null,
61
+ "INPUTED": null,
62
+ "PREVIOUS": null,
63
+ "COLLECTED": null
64
+ },
65
+ "HSP": {
66
+ "EDITED": null,
67
+ "FORCED": null,
68
+ "INPUTED": null,
69
+ "PREVIOUS": null,
70
+ "COLLECTED": null
71
+ },
72
+ "HST": {
73
+ "EDITED": null,
74
+ "FORCED": null,
75
+ "INPUTED": null,
76
+ "PREVIOUS": null,
77
+ "COLLECTED": null
78
+ },
79
+ "HUA": {
80
+ "EDITED": null,
81
+ "FORCED": null,
82
+ "INPUTED": null,
83
+ "PREVIOUS": null,
84
+ "COLLECTED": null
85
+ },
86
+ "HUP": {
87
+ "EDITED": null,
88
+ "FORCED": null,
89
+ "INPUTED": null,
90
+ "PREVIOUS": null,
91
+ "COLLECTED": null
92
+ },
93
+ "HUT": {
94
+ "EDITED": null,
95
+ "FORCED": null,
96
+ "INPUTED": null,
97
+ "PREVIOUS": null,
98
+ "COLLECTED": null
99
+ },
100
+ "IAS": {
101
+ "EDITED": null,
102
+ "FORCED": null,
103
+ "INPUTED": null,
104
+ "PREVIOUS": null,
105
+ "COLLECTED": null
106
+ },
107
+ "IEL": {
108
+ "EDITED": null,
109
+ "FORCED": null,
110
+ "INPUTED": null,
111
+ "PREVIOUS": null,
112
+ "COLLECTED": null
113
+ },
114
+ "IMI": {
115
+ "EDITED": null,
116
+ "FORCED": null,
117
+ "INPUTED": null,
118
+ "PREVIOUS": null,
119
+ "COLLECTED": "1"
120
+ },
121
+ "KBA": {
122
+ "EDITED": null,
123
+ "FORCED": null,
124
+ "INPUTED": null,
125
+ "PREVIOUS": null,
126
+ "COLLECTED": null
127
+ },
128
+ "KBD": {
129
+ "EDITED": null,
130
+ "FORCED": null,
131
+ "INPUTED": null,
132
+ "PREVIOUS": null,
133
+ "COLLECTED": null
134
+ },
135
+ "KCA": {
136
+ "EDITED": null,
137
+ "FORCED": null,
138
+ "INPUTED": null,
139
+ "PREVIOUS": null,
140
+ "COLLECTED": null
141
+ },
142
+ "KJA": {
143
+ "EDITED": null,
144
+ "FORCED": null,
145
+ "INPUTED": null,
146
+ "PREVIOUS": null,
147
+ "COLLECTED": null
148
+ },
149
+ "KJC": {
150
+ "EDITED": null,
151
+ "FORCED": null,
152
+ "INPUTED": null,
153
+ "PREVIOUS": null,
154
+ "COLLECTED": null
155
+ },
156
+ "KSB": {
157
+ "EDITED": null,
158
+ "FORCED": null,
159
+ "INPUTED": null,
160
+ "PREVIOUS": null,
161
+ "COLLECTED": null
162
+ },
163
+ "KSV": {
164
+ "EDITED": null,
165
+ "FORCED": null,
166
+ "INPUTED": null,
167
+ "PREVIOUS": null,
168
+ "COLLECTED": null
169
+ },
170
+ "KVE": {
171
+ "EDITED": null,
172
+ "FORCED": null,
173
+ "INPUTED": null,
174
+ "PREVIOUS": null,
175
+ "COLLECTED": null
176
+ },
177
+ "ODF": {
178
+ "EDITED": null,
179
+ "FORCED": null,
180
+ "INPUTED": null,
181
+ "PREVIOUS": null,
182
+ "COLLECTED": null
183
+ },
184
+ "ODL": {
185
+ "EDITED": null,
186
+ "FORCED": null,
187
+ "INPUTED": null,
188
+ "PREVIOUS": null,
189
+ "COLLECTED": null
190
+ },
191
+ "OIH": {
192
+ "EDITED": null,
193
+ "FORCED": null,
194
+ "INPUTED": null,
195
+ "PREVIOUS": null,
196
+ "COLLECTED": null
197
+ },
198
+ "OLA": {
199
+ "EDITED": null,
200
+ "FORCED": null,
201
+ "INPUTED": null,
202
+ "PREVIOUS": null,
203
+ "COLLECTED": null
204
+ },
205
+ "OQA": {
206
+ "EDITED": null,
207
+ "FORCED": null,
208
+ "INPUTED": null,
209
+ "PREVIOUS": null,
210
+ "COLLECTED": null
211
+ },
212
+ "VIN": {
213
+ "EDITED": null,
214
+ "FORCED": null,
215
+ "INPUTED": null,
216
+ "PREVIOUS": null,
217
+ "COLLECTED": null
218
+ },
219
+ "VLR": {
220
+ "EDITED": null,
221
+ "FORCED": null,
222
+ "INPUTED": null,
223
+ "PREVIOUS": null,
224
+ "COLLECTED": null
225
+ },
226
+ "VND": {
227
+ "EDITED": null,
228
+ "FORCED": null,
229
+ "INPUTED": null,
230
+ "PREVIOUS": null,
231
+ "COLLECTED": null
232
+ },
233
+ "VOP": {
234
+ "EDITED": null,
235
+ "FORCED": null,
236
+ "INPUTED": null,
237
+ "PREVIOUS": null,
238
+ "COLLECTED": null
239
+ },
240
+ "VPI": {
241
+ "EDITED": null,
242
+ "FORCED": null,
243
+ "INPUTED": null,
244
+ "PREVIOUS": null,
245
+ "COLLECTED": null
246
+ },
247
+ "VSY": {
248
+ "EDITED": null,
249
+ "FORCED": null,
250
+ "INPUTED": null,
251
+ "PREVIOUS": null,
252
+ "COLLECTED": null
253
+ },
254
+ "CADR": {
255
+ "EDITED": null,
256
+ "FORCED": null,
257
+ "INPUTED": null,
258
+ "PREVIOUS": null,
259
+ "COLLECTED": "2"
260
+ },
261
+ "DALO": {
262
+ "EDITED": null,
263
+ "FORCED": null,
264
+ "INPUTED": null,
265
+ "PREVIOUS": null,
266
+ "COLLECTED": null
267
+ },
268
+ "DDAT": {
269
+ "EDITED": null,
270
+ "FORCED": null,
271
+ "INPUTED": null,
272
+ "PREVIOUS": null,
273
+ "COLLECTED": null
274
+ },
275
+ "DDEM": {
276
+ "EDITED": null,
277
+ "FORCED": null,
278
+ "INPUTED": null,
279
+ "PREVIOUS": null,
280
+ "COLLECTED": null
281
+ },
282
+ "DORM": {
283
+ "EDITED": [null],
284
+ "FORCED": [null],
285
+ "INPUTED": [null],
286
+ "PREVIOUS": [null],
287
+ "COLLECTED": [null, null, null, null]
288
+ },
289
+ "DSTL": {
290
+ "EDITED": null,
291
+ "FORCED": null,
292
+ "INPUTED": null,
293
+ "PREVIOUS": null,
294
+ "COLLECTED": null
295
+ },
296
+ "DSTP": {
297
+ "EDITED": null,
298
+ "FORCED": null,
299
+ "INPUTED": null,
300
+ "PREVIOUS": null,
301
+ "COLLECTED": null
302
+ },
303
+ "HAUT": {
304
+ "EDITED": null,
305
+ "FORCED": null,
306
+ "INPUTED": null,
307
+ "PREVIOUS": null,
308
+ "COLLECTED": null
309
+ },
310
+ "HCHA": {
311
+ "EDITED": null,
312
+ "FORCED": null,
313
+ "INPUTED": null,
314
+ "PREVIOUS": null,
315
+ "COLLECTED": null
316
+ },
317
+ "HPI1": {
318
+ "EDITED": null,
319
+ "FORCED": null,
320
+ "INPUTED": null,
321
+ "PREVIOUS": null,
322
+ "COLLECTED": null
323
+ },
324
+ "HPI2": {
325
+ "EDITED": null,
326
+ "FORCED": null,
327
+ "INPUTED": null,
328
+ "PREVIOUS": null,
329
+ "COLLECTED": null
330
+ },
331
+ "HSI1": {
332
+ "EDITED": null,
333
+ "FORCED": null,
334
+ "INPUTED": null,
335
+ "PREVIOUS": null,
336
+ "COLLECTED": null
337
+ },
338
+ "HSI2": {
339
+ "EDITED": null,
340
+ "FORCED": null,
341
+ "INPUTED": null,
342
+ "PREVIOUS": null,
343
+ "COLLECTED": null
344
+ },
345
+ "ICOI": {
346
+ "EDITED": null,
347
+ "FORCED": null,
348
+ "INPUTED": null,
349
+ "PREVIOUS": null,
350
+ "COLLECTED": "2"
351
+ },
352
+ "KAO1": {
353
+ "EDITED": null,
354
+ "FORCED": null,
355
+ "INPUTED": null,
356
+ "PREVIOUS": null,
357
+ "COLLECTED": null
358
+ },
359
+ "KCU1": {
360
+ "EDITED": null,
361
+ "FORCED": null,
362
+ "INPUTED": null,
363
+ "PREVIOUS": null,
364
+ "COLLECTED": null
365
+ },
366
+ "KCU2": {
367
+ "EDITED": null,
368
+ "FORCED": null,
369
+ "INPUTED": null,
370
+ "PREVIOUS": null,
371
+ "COLLECTED": null
372
+ },
373
+ "KGA1": {
374
+ "EDITED": null,
375
+ "FORCED": null,
376
+ "INPUTED": null,
377
+ "PREVIOUS": null,
378
+ "COLLECTED": null
379
+ },
380
+ "KGA2": {
381
+ "EDITED": null,
382
+ "FORCED": null,
383
+ "INPUTED": null,
384
+ "PREVIOUS": null,
385
+ "COLLECTED": null
386
+ },
387
+ "KGA3": {
388
+ "EDITED": null,
389
+ "FORCED": null,
390
+ "INPUTED": null,
391
+ "PREVIOUS": null,
392
+ "COLLECTED": null
393
+ },
394
+ "KGA4": {
395
+ "EDITED": null,
396
+ "FORCED": null,
397
+ "INPUTED": null,
398
+ "PREVIOUS": null,
399
+ "COLLECTED": null
400
+ },
401
+ "KGRA": {
402
+ "EDITED": null,
403
+ "FORCED": null,
404
+ "INPUTED": null,
405
+ "PREVIOUS": null,
406
+ "COLLECTED": null
407
+ },
408
+ "KSE1": {
409
+ "EDITED": null,
410
+ "FORCED": null,
411
+ "INPUTED": null,
412
+ "PREVIOUS": null,
413
+ "COLLECTED": null
414
+ },
415
+ "KSE3": {
416
+ "EDITED": null,
417
+ "FORCED": null,
418
+ "INPUTED": null,
419
+ "PREVIOUS": null,
420
+ "COLLECTED": null
421
+ },
422
+ "KSJC": {
423
+ "EDITED": null,
424
+ "FORCED": null,
425
+ "INPUTED": null,
426
+ "PREVIOUS": null,
427
+ "COLLECTED": null
428
+ },
429
+ "KSMI": {
430
+ "EDITED": null,
431
+ "FORCED": null,
432
+ "INPUTED": null,
433
+ "PREVIOUS": null,
434
+ "COLLECTED": null
435
+ },
436
+ "KSOA": {
437
+ "EDITED": null,
438
+ "FORCED": null,
439
+ "INPUTED": null,
440
+ "PREVIOUS": null,
441
+ "COLLECTED": null
442
+ },
443
+ "KSV1": {
444
+ "EDITED": null,
445
+ "FORCED": null,
446
+ "INPUTED": null,
447
+ "PREVIOUS": null,
448
+ "COLLECTED": null
449
+ },
450
+ "KWC1": {
451
+ "EDITED": null,
452
+ "FORCED": null,
453
+ "INPUTED": null,
454
+ "PREVIOUS": null,
455
+ "COLLECTED": null
456
+ },
457
+ "KWCD": {
458
+ "EDITED": null,
459
+ "FORCED": null,
460
+ "INPUTED": null,
461
+ "PREVIOUS": null,
462
+ "COLLECTED": null
463
+ },
464
+ "KWCI": {
465
+ "EDITED": null,
466
+ "FORCED": null,
467
+ "INPUTED": null,
468
+ "PREVIOUS": null,
469
+ "COLLECTED": null
470
+ },
471
+ "LIEN": {
472
+ "EDITED": [null],
473
+ "FORCED": [null],
474
+ "INPUTED": [null],
475
+ "PREVIOUS": [null],
476
+ "COLLECTED": [null, "1", "3", "3"]
477
+ },
478
+ "MAA3": {
479
+ "EDITED": null,
480
+ "FORCED": null,
481
+ "INPUTED": null,
482
+ "PREVIOUS": null,
483
+ "COLLECTED": null
484
+ },
485
+ "OIHD": {
486
+ "EDITED": null,
487
+ "FORCED": null,
488
+ "INPUTED": null,
489
+ "PREVIOUS": null,
490
+ "COLLECTED": null
491
+ },
492
+ "OIHE": {
493
+ "EDITED": null,
494
+ "FORCED": null,
495
+ "INPUTED": null,
496
+ "PREVIOUS": null,
497
+ "COLLECTED": null
498
+ },
499
+ "OLAD": {
500
+ "EDITED": null,
501
+ "FORCED": null,
502
+ "INPUTED": null,
503
+ "PREVIOUS": null,
504
+ "COLLECTED": null
505
+ },
506
+ "OQAD": {
507
+ "EDITED": null,
508
+ "FORCED": null,
509
+ "INPUTED": null,
510
+ "PREVIOUS": null,
511
+ "COLLECTED": null
512
+ },
513
+ "SDL2": {
514
+ "EDITED": [null],
515
+ "FORCED": [null],
516
+ "INPUTED": [null],
517
+ "PREVIOUS": [null],
518
+ "COLLECTED": [null]
519
+ },
520
+ "SDL4": {
521
+ "EDITED": [null],
522
+ "FORCED": [null],
523
+ "INPUTED": [null],
524
+ "PREVIOUS": [null],
525
+ "COLLECTED": [null]
526
+ },
527
+ "SDN1": {
528
+ "EDITED": [null],
529
+ "FORCED": [null],
530
+ "INPUTED": [null],
531
+ "PREVIOUS": [null],
532
+ "COLLECTED": [null]
533
+ },
534
+ "SDT1": {
535
+ "EDITED": [null],
536
+ "FORCED": [null],
537
+ "INPUTED": [null],
538
+ "PREVIOUS": [null],
539
+ "COLLECTED": [null]
540
+ },
541
+ "SDT2": {
542
+ "EDITED": [null],
543
+ "FORCED": [null],
544
+ "INPUTED": [null],
545
+ "PREVIOUS": [null],
546
+ "COLLECTED": [null]
547
+ },
548
+ "SEXE": {
549
+ "EDITED": [null],
550
+ "FORCED": [null],
551
+ "INPUTED": [null],
552
+ "PREVIOUS": [null],
553
+ "COLLECTED": ["1", "2", "2", "1"]
554
+ },
555
+ "UWEB": {
556
+ "EDITED": null,
557
+ "FORCED": null,
558
+ "INPUTED": null,
559
+ "PREVIOUS": null,
560
+ "COLLECTED": null
561
+ },
562
+ "VAID": {
563
+ "EDITED": null,
564
+ "FORCED": null,
565
+ "INPUTED": null,
566
+ "PREVIOUS": null,
567
+ "COLLECTED": null
568
+ },
569
+ "VDD1": {
570
+ "EDITED": null,
571
+ "FORCED": null,
572
+ "INPUTED": null,
573
+ "PREVIOUS": null,
574
+ "COLLECTED": null
575
+ },
576
+ "VDSY": {
577
+ "EDITED": null,
578
+ "FORCED": null,
579
+ "INPUTED": null,
580
+ "PREVIOUS": null,
581
+ "COLLECTED": null
582
+ },
583
+ "VFFH": {
584
+ "EDITED": null,
585
+ "FORCED": null,
586
+ "INPUTED": null,
587
+ "PREVIOUS": null,
588
+ "COLLECTED": null
589
+ },
590
+ "VFLA": {
591
+ "EDITED": null,
592
+ "FORCED": null,
593
+ "INPUTED": null,
594
+ "PREVIOUS": null,
595
+ "COLLECTED": null
596
+ },
597
+ "VLA1": {
598
+ "EDITED": null,
599
+ "FORCED": null,
600
+ "INPUTED": null,
601
+ "PREVIOUS": null,
602
+ "COLLECTED": null
603
+ },
604
+ "VLRD": {
605
+ "EDITED": null,
606
+ "FORCED": null,
607
+ "INPUTED": null,
608
+ "PREVIOUS": null,
609
+ "COLLECTED": null
610
+ },
611
+ "VPID": {
612
+ "EDITED": null,
613
+ "FORCED": null,
614
+ "INPUTED": null,
615
+ "PREVIOUS": null,
616
+ "COLLECTED": null
617
+ },
618
+ "VPRA": {
619
+ "EDITED": null,
620
+ "FORCED": null,
621
+ "INPUTED": null,
622
+ "PREVIOUS": null,
623
+ "COLLECTED": null
624
+ },
625
+ "VSO1": {
626
+ "EDITED": null,
627
+ "FORCED": null,
628
+ "INPUTED": null,
629
+ "PREVIOUS": null,
630
+ "COLLECTED": null
631
+ },
632
+ "VTL1": {
633
+ "EDITED": null,
634
+ "FORCED": null,
635
+ "INPUTED": null,
636
+ "PREVIOUS": null,
637
+ "COLLECTED": null
638
+ },
639
+ "VTLD": {
640
+ "EDITED": null,
641
+ "FORCED": null,
642
+ "INPUTED": null,
643
+ "PREVIOUS": null,
644
+ "COLLECTED": null
645
+ },
646
+ "CHGNC": {
647
+ "EDITED": null,
648
+ "FORCED": null,
649
+ "INPUTED": null,
650
+ "PREVIOUS": null,
651
+ "COLLECTED": null
652
+ },
653
+ "DAGEO": {
654
+ "EDITED": null,
655
+ "FORCED": null,
656
+ "INPUTED": null,
657
+ "PREVIOUS": null,
658
+ "COLLECTED": null
659
+ },
660
+ "DAGRL": {
661
+ "EDITED": null,
662
+ "FORCED": null,
663
+ "INPUTED": null,
664
+ "PREVIOUS": null,
665
+ "COLLECTED": null
666
+ },
667
+ "EAMIA": {
668
+ "EDITED": [null],
669
+ "FORCED": [null],
670
+ "INPUTED": [null],
671
+ "PREVIOUS": [null],
672
+ "COLLECTED": [null]
673
+ },
674
+ "EAMIH": {
675
+ "EDITED": [null],
676
+ "FORCED": [null],
677
+ "INPUTED": [null],
678
+ "PREVIOUS": [null],
679
+ "COLLECTED": [null]
680
+ },
681
+ "EAMIK": {
682
+ "EDITED": [null],
683
+ "FORCED": [null],
684
+ "INPUTED": [null],
685
+ "PREVIOUS": [null],
686
+ "COLLECTED": [null]
687
+ },
688
+ "EAMIL": {
689
+ "EDITED": [null],
690
+ "FORCED": [null],
691
+ "INPUTED": [null],
692
+ "PREVIOUS": [null],
693
+ "COLLECTED": [null]
694
+ },
695
+ "EPAS1": {
696
+ "EDITED": [null],
697
+ "FORCED": [null],
698
+ "INPUTED": [null],
699
+ "PREVIOUS": [null],
700
+ "COLLECTED": [null]
701
+ },
702
+ "EPASB": {
703
+ "EDITED": [null],
704
+ "FORCED": [null],
705
+ "INPUTED": [null],
706
+ "PREVIOUS": [null],
707
+ "COLLECTED": [null]
708
+ },
709
+ "EPASC": {
710
+ "EDITED": [null],
711
+ "FORCED": [null],
712
+ "INPUTED": [null],
713
+ "PREVIOUS": [null],
714
+ "COLLECTED": [null]
715
+ },
716
+ "EPROJ": {
717
+ "EDITED": [null],
718
+ "FORCED": [null],
719
+ "INPUTED": [null],
720
+ "PREVIOUS": [null],
721
+ "COLLECTED": [null]
722
+ },
723
+ "GARDE": {
724
+ "EDITED": [null],
725
+ "FORCED": [null],
726
+ "INPUTED": [null],
727
+ "PREVIOUS": [null],
728
+ "COLLECTED": [null, null, null, null]
729
+ },
730
+ "HPEUP": {
731
+ "EDITED": null,
732
+ "FORCED": null,
733
+ "INPUTED": null,
734
+ "PREVIOUS": null,
735
+ "COLLECTED": null
736
+ },
737
+ "HTLC1": {
738
+ "EDITED": null,
739
+ "FORCED": null,
740
+ "INPUTED": null,
741
+ "PREVIOUS": null,
742
+ "COLLECTED": "1"
743
+ },
744
+ "IAATC": {
745
+ "EDITED": null,
746
+ "FORCED": null,
747
+ "INPUTED": null,
748
+ "PREVIOUS": null,
749
+ "COLLECTED": "5"
750
+ },
751
+ "KDLK1": {
752
+ "EDITED": null,
753
+ "FORCED": null,
754
+ "INPUTED": null,
755
+ "PREVIOUS": null,
756
+ "COLLECTED": null
757
+ },
758
+ "KDLK2": {
759
+ "EDITED": null,
760
+ "FORCED": null,
761
+ "INPUTED": null,
762
+ "PREVIOUS": null,
763
+ "COLLECTED": null
764
+ },
765
+ "KGA11": {
766
+ "EDITED": null,
767
+ "FORCED": null,
768
+ "INPUTED": null,
769
+ "PREVIOUS": null,
770
+ "COLLECTED": null
771
+ },
772
+ "KGA12": {
773
+ "EDITED": null,
774
+ "FORCED": null,
775
+ "INPUTED": null,
776
+ "PREVIOUS": null,
777
+ "COLLECTED": null
778
+ },
779
+ "KGA13": {
780
+ "EDITED": null,
781
+ "FORCED": null,
782
+ "INPUTED": null,
783
+ "PREVIOUS": null,
784
+ "COLLECTED": null
785
+ },
786
+ "KGA14": {
787
+ "EDITED": null,
788
+ "FORCED": null,
789
+ "INPUTED": null,
790
+ "PREVIOUS": null,
791
+ "COLLECTED": null
792
+ },
793
+ "KGRAA": {
794
+ "EDITED": null,
795
+ "FORCED": null,
796
+ "INPUTED": null,
797
+ "PREVIOUS": null,
798
+ "COLLECTED": null
799
+ },
800
+ "KPISC": {
801
+ "EDITED": null,
802
+ "FORCED": null,
803
+ "INPUTED": null,
804
+ "PREVIOUS": null,
805
+ "COLLECTED": null
806
+ },
807
+ "KSJPC": {
808
+ "EDITED": null,
809
+ "FORCED": null,
810
+ "INPUTED": null,
811
+ "PREVIOUS": null,
812
+ "COLLECTED": null
813
+ },
814
+ "KSJPI": {
815
+ "EDITED": null,
816
+ "FORCED": null,
817
+ "INPUTED": null,
818
+ "PREVIOUS": null,
819
+ "COLLECTED": null
820
+ },
821
+ "KVELO": {
822
+ "EDITED": null,
823
+ "FORCED": null,
824
+ "INPUTED": null,
825
+ "PREVIOUS": null,
826
+ "COLLECTED": null
827
+ },
828
+ "LIMT1": {
829
+ "EDITED": null,
830
+ "FORCED": null,
831
+ "INPUTED": null,
832
+ "PREVIOUS": null,
833
+ "COLLECTED": null
834
+ },
835
+ "LIMT2": {
836
+ "EDITED": [null],
837
+ "FORCED": [null],
838
+ "INPUTED": [null],
839
+ "PREVIOUS": [null],
840
+ "COLLECTED": [null]
841
+ },
842
+ "LNAIS": {
843
+ "EDITED": [null],
844
+ "FORCED": [null],
845
+ "INPUTED": [null],
846
+ "PREVIOUS": [null],
847
+ "COLLECTED": ["1", "1", "1", "1"]
848
+ },
849
+ "LOGCO": {
850
+ "EDITED": [null],
851
+ "FORCED": [null],
852
+ "INPUTED": [null],
853
+ "PREVIOUS": [null],
854
+ "COLLECTED": [null, null, null, null]
855
+ },
856
+ "MAA2A": {
857
+ "EDITED": null,
858
+ "FORCED": null,
859
+ "INPUTED": null,
860
+ "PREVIOUS": null,
861
+ "COLLECTED": null
862
+ },
863
+ "MAA2M": {
864
+ "EDITED": null,
865
+ "FORCED": null,
866
+ "INPUTED": null,
867
+ "PREVIOUS": null,
868
+ "COLLECTED": null
869
+ },
870
+ "MAA3A": {
871
+ "EDITED": null,
872
+ "FORCED": null,
873
+ "INPUTED": null,
874
+ "PREVIOUS": null,
875
+ "COLLECTED": null
876
+ },
877
+ "MAA3M": {
878
+ "EDITED": null,
879
+ "FORCED": null,
880
+ "INPUTED": null,
881
+ "PREVIOUS": null,
882
+ "COLLECTED": null
883
+ },
884
+ "MCHR1": {
885
+ "EDITED": null,
886
+ "FORCED": null,
887
+ "INPUTED": null,
888
+ "PREVIOUS": null,
889
+ "COLLECTED": null
890
+ },
891
+ "MCHR2": {
892
+ "EDITED": [null],
893
+ "FORCED": [null],
894
+ "INPUTED": [null],
895
+ "PREVIOUS": [null],
896
+ "COLLECTED": [null]
897
+ },
898
+ "NBHAB": {
899
+ "EDITED": null,
900
+ "FORCED": null,
901
+ "INPUTED": null,
902
+ "PREVIOUS": null,
903
+ "COLLECTED": "4"
904
+ },
905
+ "OIHB1": {
906
+ "EDITED": null,
907
+ "FORCED": null,
908
+ "INPUTED": null,
909
+ "PREVIOUS": null,
910
+ "COLLECTED": null
911
+ },
912
+ "OIHB2": {
913
+ "EDITED": null,
914
+ "FORCED": null,
915
+ "INPUTED": null,
916
+ "PREVIOUS": null,
917
+ "COLLECTED": null
918
+ },
919
+ "OIHB3": {
920
+ "EDITED": null,
921
+ "FORCED": null,
922
+ "INPUTED": null,
923
+ "PREVIOUS": null,
924
+ "COLLECTED": null
925
+ },
926
+ "OIHC1": {
927
+ "EDITED": null,
928
+ "FORCED": null,
929
+ "INPUTED": null,
930
+ "PREVIOUS": null,
931
+ "COLLECTED": null
932
+ },
933
+ "OIHC2": {
934
+ "EDITED": null,
935
+ "FORCED": null,
936
+ "INPUTED": null,
937
+ "PREVIOUS": null,
938
+ "COLLECTED": null
939
+ },
940
+ "OIHC3": {
941
+ "EDITED": null,
942
+ "FORCED": null,
943
+ "INPUTED": null,
944
+ "PREVIOUS": null,
945
+ "COLLECTED": null
946
+ },
947
+ "OIHC4": {
948
+ "EDITED": null,
949
+ "FORCED": null,
950
+ "INPUTED": null,
951
+ "PREVIOUS": null,
952
+ "COLLECTED": null
953
+ },
954
+ "OIHC5": {
955
+ "EDITED": null,
956
+ "FORCED": null,
957
+ "INPUTED": null,
958
+ "PREVIOUS": null,
959
+ "COLLECTED": null
960
+ },
961
+ "OIHC6": {
962
+ "EDITED": null,
963
+ "FORCED": null,
964
+ "INPUTED": null,
965
+ "PREVIOUS": null,
966
+ "COLLECTED": null
967
+ },
968
+ "OIHF1": {
969
+ "EDITED": null,
970
+ "FORCED": null,
971
+ "INPUTED": null,
972
+ "PREVIOUS": null,
973
+ "COLLECTED": null
974
+ },
975
+ "OIHF2": {
976
+ "EDITED": null,
977
+ "FORCED": null,
978
+ "INPUTED": null,
979
+ "PREVIOUS": null,
980
+ "COLLECTED": null
981
+ },
982
+ "OIHF3": {
983
+ "EDITED": null,
984
+ "FORCED": null,
985
+ "INPUTED": null,
986
+ "PREVIOUS": null,
987
+ "COLLECTED": null
988
+ },
989
+ "OIHF4": {
990
+ "EDITED": null,
991
+ "FORCED": null,
992
+ "INPUTED": null,
993
+ "PREVIOUS": null,
994
+ "COLLECTED": null
995
+ },
996
+ "OIHF5": {
997
+ "EDITED": null,
998
+ "FORCED": null,
999
+ "INPUTED": null,
1000
+ "PREVIOUS": null,
1001
+ "COLLECTED": null
1002
+ },
1003
+ "OIHF6": {
1004
+ "EDITED": null,
1005
+ "FORCED": null,
1006
+ "INPUTED": null,
1007
+ "PREVIOUS": null,
1008
+ "COLLECTED": null
1009
+ },
1010
+ "SANT1": {
1011
+ "EDITED": null,
1012
+ "FORCED": null,
1013
+ "INPUTED": null,
1014
+ "PREVIOUS": null,
1015
+ "COLLECTED": null
1016
+ },
1017
+ "SDL11": {
1018
+ "EDITED": [null],
1019
+ "FORCED": [null],
1020
+ "INPUTED": [null],
1021
+ "PREVIOUS": [null],
1022
+ "COLLECTED": [null]
1023
+ },
1024
+ "SDL12": {
1025
+ "EDITED": [null],
1026
+ "FORCED": [null],
1027
+ "INPUTED": [null],
1028
+ "PREVIOUS": [null],
1029
+ "COLLECTED": [null]
1030
+ },
1031
+ "SDL13": {
1032
+ "EDITED": [null],
1033
+ "FORCED": [null],
1034
+ "INPUTED": [null],
1035
+ "PREVIOUS": [null],
1036
+ "COLLECTED": [null]
1037
+ },
1038
+ "SDL14": {
1039
+ "EDITED": [null],
1040
+ "FORCED": [null],
1041
+ "INPUTED": [null],
1042
+ "PREVIOUS": [null],
1043
+ "COLLECTED": [null]
1044
+ },
1045
+ "SDL15": {
1046
+ "EDITED": [null],
1047
+ "FORCED": [null],
1048
+ "INPUTED": [null],
1049
+ "PREVIOUS": [null],
1050
+ "COLLECTED": [null]
1051
+ },
1052
+ "SDL16": {
1053
+ "EDITED": [null],
1054
+ "FORCED": [null],
1055
+ "INPUTED": [null],
1056
+ "PREVIOUS": [null],
1057
+ "COLLECTED": [null]
1058
+ },
1059
+ "SDL17": {
1060
+ "EDITED": [null],
1061
+ "FORCED": [null],
1062
+ "INPUTED": [null],
1063
+ "PREVIOUS": [null],
1064
+ "COLLECTED": [null]
1065
+ },
1066
+ "SDTAD": {
1067
+ "EDITED": [null],
1068
+ "FORCED": [null],
1069
+ "INPUTED": [null],
1070
+ "PREVIOUS": [null],
1071
+ "COLLECTED": [null]
1072
+ },
1073
+ "SITUA": {
1074
+ "EDITED": [null],
1075
+ "FORCED": [null],
1076
+ "INPUTED": [null],
1077
+ "PREVIOUS": [null],
1078
+ "COLLECTED": ["1", "1", "2", "5"]
1079
+ },
1080
+ "STOC1": {
1081
+ "EDITED": null,
1082
+ "FORCED": null,
1083
+ "INPUTED": null,
1084
+ "PREVIOUS": null,
1085
+ "COLLECTED": "1"
1086
+ },
1087
+ "STOC2": {
1088
+ "EDITED": null,
1089
+ "FORCED": null,
1090
+ "INPUTED": null,
1091
+ "PREVIOUS": null,
1092
+ "COLLECTED": null
1093
+ },
1094
+ "STOCP": {
1095
+ "EDITED": null,
1096
+ "FORCED": null,
1097
+ "INPUTED": null,
1098
+ "PREVIOUS": null,
1099
+ "COLLECTED": "1"
1100
+ },
1101
+ "TELET": {
1102
+ "EDITED": [null],
1103
+ "FORCED": [null],
1104
+ "INPUTED": [null],
1105
+ "PREVIOUS": [null],
1106
+ "COLLECTED": ["3", "5", null, null]
1107
+ },
1108
+ "TRAGE": {
1109
+ "EDITED": [null],
1110
+ "FORCED": [null],
1111
+ "INPUTED": [null],
1112
+ "PREVIOUS": [null],
1113
+ "COLLECTED": [null, null, null, null]
1114
+ },
1115
+ "UNLOG": {
1116
+ "EDITED": [null],
1117
+ "FORCED": [null],
1118
+ "INPUTED": [null],
1119
+ "PREVIOUS": [null],
1120
+ "COLLECTED": ["1", "1", "1", "1"]
1121
+ },
1122
+ "VLAB1": {
1123
+ "EDITED": null,
1124
+ "FORCED": null,
1125
+ "INPUTED": null,
1126
+ "PREVIOUS": null,
1127
+ "COLLECTED": null
1128
+ },
1129
+ "VSURF": {
1130
+ "EDITED": null,
1131
+ "FORCED": null,
1132
+ "INPUTED": null,
1133
+ "PREVIOUS": null,
1134
+ "COLLECTED": null
1135
+ },
1136
+ "COUPLE": {
1137
+ "EDITED": [null],
1138
+ "FORCED": [null],
1139
+ "INPUTED": [null],
1140
+ "PREVIOUS": [null],
1141
+ "COLLECTED": ["1", "1", "3", "3"]
1142
+ },
1143
+ "DAGEO1": {
1144
+ "EDITED": null,
1145
+ "FORCED": null,
1146
+ "INPUTED": null,
1147
+ "PREVIOUS": null,
1148
+ "COLLECTED": null
1149
+ },
1150
+ "DAGEO2": {
1151
+ "EDITED": null,
1152
+ "FORCED": null,
1153
+ "INPUTED": null,
1154
+ "PREVIOUS": null,
1155
+ "COLLECTED": null
1156
+ },
1157
+ "DAGEO3": {
1158
+ "EDITED": null,
1159
+ "FORCED": null,
1160
+ "INPUTED": null,
1161
+ "PREVIOUS": null,
1162
+ "COLLECTED": null
1163
+ },
1164
+ "DEPART": {
1165
+ "EDITED": null,
1166
+ "FORCED": null,
1167
+ "INPUTED": null,
1168
+ "PREVIOUS": null,
1169
+ "COLLECTED": null
1170
+ },
1171
+ "DURLOG": {
1172
+ "EDITED": [null],
1173
+ "FORCED": [null],
1174
+ "INPUTED": [null],
1175
+ "PREVIOUS": [null],
1176
+ "COLLECTED": [null, null, null, null]
1177
+ },
1178
+ "ECOVID": {
1179
+ "EDITED": [null],
1180
+ "FORCED": [null],
1181
+ "INPUTED": [null],
1182
+ "PREVIOUS": [null],
1183
+ "COLLECTED": [null]
1184
+ },
1185
+ "EPROJB": {
1186
+ "EDITED": [null],
1187
+ "FORCED": [null],
1188
+ "INPUTED": [null],
1189
+ "PREVIOUS": [null],
1190
+ "COLLECTED": [null]
1191
+ },
1192
+ "EPROJC": {
1193
+ "EDITED": [null],
1194
+ "FORCED": [null],
1195
+ "INPUTED": [null],
1196
+ "PREVIOUS": [null],
1197
+ "COLLECTED": [null]
1198
+ },
1199
+ "EPROJD": {
1200
+ "EDITED": [null],
1201
+ "FORCED": [null],
1202
+ "INPUTED": [null],
1203
+ "PREVIOUS": [null],
1204
+ "COLLECTED": [null]
1205
+ },
1206
+ "ERET11": {
1207
+ "EDITED": [null],
1208
+ "FORCED": [null],
1209
+ "INPUTED": [null],
1210
+ "PREVIOUS": [null],
1211
+ "COLLECTED": [null]
1212
+ },
1213
+ "ERET12": {
1214
+ "EDITED": [null],
1215
+ "FORCED": [null],
1216
+ "INPUTED": [null],
1217
+ "PREVIOUS": [null],
1218
+ "COLLECTED": [null]
1219
+ },
1220
+ "ERET13": {
1221
+ "EDITED": [null],
1222
+ "FORCED": [null],
1223
+ "INPUTED": [null],
1224
+ "PREVIOUS": [null],
1225
+ "COLLECTED": [null]
1226
+ },
1227
+ "ERET14": {
1228
+ "EDITED": [null],
1229
+ "FORCED": [null],
1230
+ "INPUTED": [null],
1231
+ "PREVIOUS": [null],
1232
+ "COLLECTED": [null]
1233
+ },
1234
+ "ERET15": {
1235
+ "EDITED": [null],
1236
+ "FORCED": [null],
1237
+ "INPUTED": [null],
1238
+ "PREVIOUS": [null],
1239
+ "COLLECTED": [null]
1240
+ },
1241
+ "GRDIPA": {
1242
+ "EDITED": [null],
1243
+ "FORCED": [null],
1244
+ "INPUTED": [null],
1245
+ "PREVIOUS": [null],
1246
+ "COLLECTED": ["8", "4", "5", "5"]
1247
+ },
1248
+ "GRDIPB": {
1249
+ "EDITED": [null],
1250
+ "FORCED": [null],
1251
+ "INPUTED": [null],
1252
+ "PREVIOUS": [null],
1253
+ "COLLECTED": [null, null, null, null]
1254
+ },
1255
+ "GRDIPC": {
1256
+ "EDITED": [null],
1257
+ "FORCED": [null],
1258
+ "INPUTED": [null],
1259
+ "PREVIOUS": [null],
1260
+ "COLLECTED": ["1", null, null, null]
1261
+ },
1262
+ "IAATCD": {
1263
+ "EDITED": null,
1264
+ "FORCED": null,
1265
+ "INPUTED": null,
1266
+ "PREVIOUS": null,
1267
+ "COLLECTED": null
1268
+ },
1269
+ "KSJPIT": {
1270
+ "EDITED": null,
1271
+ "FORCED": null,
1272
+ "INPUTED": null,
1273
+ "PREVIOUS": null,
1274
+ "COLLECTED": null
1275
+ },
1276
+ "LOGAUT": {
1277
+ "EDITED": [null],
1278
+ "FORCED": [null],
1279
+ "INPUTED": [null],
1280
+ "PREVIOUS": [null],
1281
+ "COLLECTED": [null, null, null, null]
1282
+ },
1283
+ "LOGENQ": {
1284
+ "EDITED": [null],
1285
+ "FORCED": [null],
1286
+ "INPUTED": [null],
1287
+ "PREVIOUS": [null],
1288
+ "COLLECTED": [null, null, null, null]
1289
+ },
1290
+ "MAA2AC": {
1291
+ "EDITED": null,
1292
+ "FORCED": null,
1293
+ "INPUTED": null,
1294
+ "PREVIOUS": null,
1295
+ "COLLECTED": null
1296
+ },
1297
+ "MAA2MC": {
1298
+ "EDITED": null,
1299
+ "FORCED": null,
1300
+ "INPUTED": null,
1301
+ "PREVIOUS": null,
1302
+ "COLLECTED": null
1303
+ },
1304
+ "ODFRA2": {
1305
+ "EDITED": null,
1306
+ "FORCED": null,
1307
+ "INPUTED": null,
1308
+ "PREVIOUS": null,
1309
+ "COLLECTED": null
1310
+ },
1311
+ "OLAR11": {
1312
+ "EDITED": null,
1313
+ "FORCED": null,
1314
+ "INPUTED": null,
1315
+ "PREVIOUS": null,
1316
+ "COLLECTED": null
1317
+ },
1318
+ "OLAR12": {
1319
+ "EDITED": null,
1320
+ "FORCED": null,
1321
+ "INPUTED": null,
1322
+ "PREVIOUS": null,
1323
+ "COLLECTED": null
1324
+ },
1325
+ "OLAR13": {
1326
+ "EDITED": null,
1327
+ "FORCED": null,
1328
+ "INPUTED": null,
1329
+ "PREVIOUS": null,
1330
+ "COLLECTED": null
1331
+ },
1332
+ "OLAR14": {
1333
+ "EDITED": null,
1334
+ "FORCED": null,
1335
+ "INPUTED": null,
1336
+ "PREVIOUS": null,
1337
+ "COLLECTED": null
1338
+ },
1339
+ "OLAR15": {
1340
+ "EDITED": null,
1341
+ "FORCED": null,
1342
+ "INPUTED": null,
1343
+ "PREVIOUS": null,
1344
+ "COLLECTED": null
1345
+ },
1346
+ "OLAR21": {
1347
+ "EDITED": null,
1348
+ "FORCED": null,
1349
+ "INPUTED": null,
1350
+ "PREVIOUS": null,
1351
+ "COLLECTED": null
1352
+ },
1353
+ "OLAR22": {
1354
+ "EDITED": null,
1355
+ "FORCED": null,
1356
+ "INPUTED": null,
1357
+ "PREVIOUS": null,
1358
+ "COLLECTED": null
1359
+ },
1360
+ "OLAR23": {
1361
+ "EDITED": null,
1362
+ "FORCED": null,
1363
+ "INPUTED": null,
1364
+ "PREVIOUS": null,
1365
+ "COLLECTED": null
1366
+ },
1367
+ "OLAR24": {
1368
+ "EDITED": null,
1369
+ "FORCED": null,
1370
+ "INPUTED": null,
1371
+ "PREVIOUS": null,
1372
+ "COLLECTED": null
1373
+ },
1374
+ "OLAR25": {
1375
+ "EDITED": null,
1376
+ "FORCED": null,
1377
+ "INPUTED": null,
1378
+ "PREVIOUS": null,
1379
+ "COLLECTED": null
1380
+ },
1381
+ "OLAR31": {
1382
+ "EDITED": null,
1383
+ "FORCED": null,
1384
+ "INPUTED": null,
1385
+ "PREVIOUS": null,
1386
+ "COLLECTED": null
1387
+ },
1388
+ "OLAR32": {
1389
+ "EDITED": null,
1390
+ "FORCED": null,
1391
+ "INPUTED": null,
1392
+ "PREVIOUS": null,
1393
+ "COLLECTED": null
1394
+ },
1395
+ "OLAR33": {
1396
+ "EDITED": null,
1397
+ "FORCED": null,
1398
+ "INPUTED": null,
1399
+ "PREVIOUS": null,
1400
+ "COLLECTED": null
1401
+ },
1402
+ "SANTE2": {
1403
+ "EDITED": [null],
1404
+ "FORCED": [null],
1405
+ "INPUTED": [null],
1406
+ "PREVIOUS": [null],
1407
+ "COLLECTED": [null]
1408
+ },
1409
+ "STOCA3": {
1410
+ "EDITED": [null],
1411
+ "FORCED": [null],
1412
+ "INPUTED": [null],
1413
+ "PREVIOUS": [null],
1414
+ "COLLECTED": [null, null, null, null]
1415
+ },
1416
+ "STOCA4": {
1417
+ "EDITED": [null],
1418
+ "FORCED": [null],
1419
+ "INPUTED": [null],
1420
+ "PREVIOUS": [null],
1421
+ "COLLECTED": ["1", "1", "2", "2"]
1422
+ },
1423
+ "STOCB1": {
1424
+ "EDITED": [null],
1425
+ "FORCED": [null],
1426
+ "INPUTED": [null],
1427
+ "PREVIOUS": [null],
1428
+ "COLLECTED": [null, null, null, null]
1429
+ },
1430
+ "TELMOB": {
1431
+ "EDITED": null,
1432
+ "FORCED": null,
1433
+ "INPUTED": null,
1434
+ "PREVIOUS": null,
1435
+ "COLLECTED": null
1436
+ },
1437
+ "VACHAL": {
1438
+ "EDITED": null,
1439
+ "FORCED": null,
1440
+ "INPUTED": null,
1441
+ "PREVIOUS": null,
1442
+ "COLLECTED": null
1443
+ },
1444
+ "VCRCOM": {
1445
+ "EDITED": null,
1446
+ "FORCED": null,
1447
+ "INPUTED": null,
1448
+ "PREVIOUS": null,
1449
+ "COLLECTED": null
1450
+ },
1451
+ "VLOYER": {
1452
+ "EDITED": null,
1453
+ "FORCED": null,
1454
+ "INPUTED": null,
1455
+ "PREVIOUS": null,
1456
+ "COLLECTED": null
1457
+ },
1458
+ "VMODM1": {
1459
+ "EDITED": null,
1460
+ "FORCED": null,
1461
+ "INPUTED": null,
1462
+ "PREVIOUS": null,
1463
+ "COLLECTED": null
1464
+ },
1465
+ "VMODM2": {
1466
+ "EDITED": null,
1467
+ "FORCED": null,
1468
+ "INPUTED": null,
1469
+ "PREVIOUS": null,
1470
+ "COLLECTED": null
1471
+ },
1472
+ "VMODM3": {
1473
+ "EDITED": null,
1474
+ "FORCED": null,
1475
+ "INPUTED": null,
1476
+ "PREVIOUS": null,
1477
+ "COLLECTED": null
1478
+ },
1479
+ "VMODM4": {
1480
+ "EDITED": null,
1481
+ "FORCED": null,
1482
+ "INPUTED": null,
1483
+ "PREVIOUS": null,
1484
+ "COLLECTED": null
1485
+ },
1486
+ "VMODM5": {
1487
+ "EDITED": null,
1488
+ "FORCED": null,
1489
+ "INPUTED": null,
1490
+ "PREVIOUS": null,
1491
+ "COLLECTED": null
1492
+ },
1493
+ "VMODM6": {
1494
+ "EDITED": null,
1495
+ "FORCED": null,
1496
+ "INPUTED": null,
1497
+ "PREVIOUS": null,
1498
+ "COLLECTED": null
1499
+ },
1500
+ "VMODM7": {
1501
+ "EDITED": null,
1502
+ "FORCED": null,
1503
+ "INPUTED": null,
1504
+ "PREVIOUS": null,
1505
+ "COLLECTED": null
1506
+ },
1507
+ "VSURFD": {
1508
+ "EDITED": null,
1509
+ "FORCED": null,
1510
+ "INPUTED": null,
1511
+ "PREVIOUS": null,
1512
+ "COLLECTED": null
1513
+ },
1514
+ "VVENDL": {
1515
+ "EDITED": null,
1516
+ "FORCED": null,
1517
+ "INPUTED": null,
1518
+ "PREVIOUS": null,
1519
+ "COLLECTED": null
1520
+ },
1521
+ "CIVCOLL": {
1522
+ "EDITED": null,
1523
+ "FORCED": null,
1524
+ "INPUTED": null,
1525
+ "PREVIOUS": null,
1526
+ "COLLECTED": null
1527
+ },
1528
+ "DALOBIS": {
1529
+ "EDITED": null,
1530
+ "FORCED": null,
1531
+ "INPUTED": null,
1532
+ "PREVIOUS": null,
1533
+ "COLLECTED": null
1534
+ },
1535
+ "DEPNAIS": {
1536
+ "EDITED": [null],
1537
+ "FORCED": [null],
1538
+ "INPUTED": [null],
1539
+ "PREVIOUS": [null],
1540
+ "COLLECTED": [null, null, null, null]
1541
+ },
1542
+ "DSTLOC2": {
1543
+ "EDITED": null,
1544
+ "FORCED": null,
1545
+ "INPUTED": null,
1546
+ "PREVIOUS": null,
1547
+ "COLLECTED": null
1548
+ },
1549
+ "EAMID11": {
1550
+ "EDITED": [null],
1551
+ "FORCED": [null],
1552
+ "INPUTED": [null],
1553
+ "PREVIOUS": [null],
1554
+ "COLLECTED": [null]
1555
+ },
1556
+ "EAMID12": {
1557
+ "EDITED": [null],
1558
+ "FORCED": [null],
1559
+ "INPUTED": [null],
1560
+ "PREVIOUS": [null],
1561
+ "COLLECTED": [null]
1562
+ },
1563
+ "EAMID13": {
1564
+ "EDITED": [null],
1565
+ "FORCED": [null],
1566
+ "INPUTED": [null],
1567
+ "PREVIOUS": [null],
1568
+ "COLLECTED": [null]
1569
+ },
1570
+ "EAMID14": {
1571
+ "EDITED": [null],
1572
+ "FORCED": [null],
1573
+ "INPUTED": [null],
1574
+ "PREVIOUS": [null],
1575
+ "COLLECTED": [null]
1576
+ },
1577
+ "EAMID15": {
1578
+ "EDITED": [null],
1579
+ "FORCED": [null],
1580
+ "INPUTED": [null],
1581
+ "PREVIOUS": [null],
1582
+ "COLLECTED": [null]
1583
+ },
1584
+ "EAMID16": {
1585
+ "EDITED": [null],
1586
+ "FORCED": [null],
1587
+ "INPUTED": [null],
1588
+ "PREVIOUS": [null],
1589
+ "COLLECTED": [null]
1590
+ },
1591
+ "ECOVID2": {
1592
+ "EDITED": [null],
1593
+ "FORCED": [null],
1594
+ "INPUTED": [null],
1595
+ "PREVIOUS": [null],
1596
+ "COLLECTED": [null]
1597
+ },
1598
+ "ERETOUR": {
1599
+ "EDITED": [null],
1600
+ "FORCED": [null],
1601
+ "INPUTED": [null],
1602
+ "PREVIOUS": [null],
1603
+ "COLLECTED": [null]
1604
+ },
1605
+ "HULHUI1": {
1606
+ "EDITED": null,
1607
+ "FORCED": null,
1608
+ "INPUTED": null,
1609
+ "PREVIOUS": null,
1610
+ "COLLECTED": null
1611
+ },
1612
+ "INDCOLL": {
1613
+ "EDITED": null,
1614
+ "FORCED": null,
1615
+ "INPUTED": null,
1616
+ "PREVIOUS": null,
1617
+ "COLLECTED": null
1618
+ },
1619
+ "MARRIVC": {
1620
+ "EDITED": null,
1621
+ "FORCED": null,
1622
+ "INPUTED": null,
1623
+ "PREVIOUS": null,
1624
+ "COLLECTED": null
1625
+ },
1626
+ "NATIO2N": {
1627
+ "EDITED": [null],
1628
+ "FORCED": [null],
1629
+ "INPUTED": [null],
1630
+ "PREVIOUS": [null],
1631
+ "COLLECTED": [null, null, null, null]
1632
+ },
1633
+ "NOMCOLL": {
1634
+ "EDITED": null,
1635
+ "FORCED": null,
1636
+ "INPUTED": null,
1637
+ "PREVIOUS": null,
1638
+ "COLLECTED": null
1639
+ },
1640
+ "RESAUTO": {
1641
+ "EDITED": null,
1642
+ "FORCED": null,
1643
+ "INPUTED": null,
1644
+ "PREVIOUS": null,
1645
+ "COLLECTED": null
1646
+ },
1647
+ "STOCA12": {
1648
+ "EDITED": [null],
1649
+ "FORCED": [null],
1650
+ "INPUTED": [null],
1651
+ "PREVIOUS": [null],
1652
+ "COLLECTED": ["1", "1", "2", "2"]
1653
+ },
1654
+ "TELFIXE": {
1655
+ "EDITED": null,
1656
+ "FORCED": null,
1657
+ "INPUTED": null,
1658
+ "PREVIOUS": null,
1659
+ "COLLECTED": null
1660
+ },
1661
+ "TRAVAIL": {
1662
+ "EDITED": [null],
1663
+ "FORCED": [null],
1664
+ "INPUTED": [null],
1665
+ "PREVIOUS": [null],
1666
+ "COLLECTED": [null, null, "2", "2"]
1667
+ },
1668
+ "VANCIEN": {
1669
+ "EDITED": null,
1670
+ "FORCED": null,
1671
+ "INPUTED": null,
1672
+ "PREVIOUS": null,
1673
+ "COLLECTED": null
1674
+ },
1675
+ "VBILLOG": {
1676
+ "EDITED": null,
1677
+ "FORCED": null,
1678
+ "INPUTED": null,
1679
+ "PREVIOUS": null,
1680
+ "COLLECTED": null
1681
+ },
1682
+ "VMODP11": {
1683
+ "EDITED": null,
1684
+ "FORCED": null,
1685
+ "INPUTED": null,
1686
+ "PREVIOUS": null,
1687
+ "COLLECTED": null
1688
+ },
1689
+ "VMODP12": {
1690
+ "EDITED": null,
1691
+ "FORCED": null,
1692
+ "INPUTED": null,
1693
+ "PREVIOUS": null,
1694
+ "COLLECTED": null
1695
+ },
1696
+ "VMODP13": {
1697
+ "EDITED": null,
1698
+ "FORCED": null,
1699
+ "INPUTED": null,
1700
+ "PREVIOUS": null,
1701
+ "COLLECTED": null
1702
+ },
1703
+ "VMODP14": {
1704
+ "EDITED": null,
1705
+ "FORCED": null,
1706
+ "INPUTED": null,
1707
+ "PREVIOUS": null,
1708
+ "COLLECTED": null
1709
+ },
1710
+ "VMODP21": {
1711
+ "EDITED": null,
1712
+ "FORCED": null,
1713
+ "INPUTED": null,
1714
+ "PREVIOUS": null,
1715
+ "COLLECTED": null
1716
+ },
1717
+ "VMODP22": {
1718
+ "EDITED": null,
1719
+ "FORCED": null,
1720
+ "INPUTED": null,
1721
+ "PREVIOUS": null,
1722
+ "COLLECTED": null
1723
+ },
1724
+ "VMODP23": {
1725
+ "EDITED": null,
1726
+ "FORCED": null,
1727
+ "INPUTED": null,
1728
+ "PREVIOUS": null,
1729
+ "COLLECTED": null
1730
+ },
1731
+ "VRAIS11": {
1732
+ "EDITED": null,
1733
+ "FORCED": null,
1734
+ "INPUTED": null,
1735
+ "PREVIOUS": null,
1736
+ "COLLECTED": null
1737
+ },
1738
+ "VRAIS12": {
1739
+ "EDITED": null,
1740
+ "FORCED": null,
1741
+ "INPUTED": null,
1742
+ "PREVIOUS": null,
1743
+ "COLLECTED": null
1744
+ },
1745
+ "VRAIS13": {
1746
+ "EDITED": null,
1747
+ "FORCED": null,
1748
+ "INPUTED": null,
1749
+ "PREVIOUS": null,
1750
+ "COLLECTED": null
1751
+ },
1752
+ "VRAIS14": {
1753
+ "EDITED": null,
1754
+ "FORCED": null,
1755
+ "INPUTED": null,
1756
+ "PREVIOUS": null,
1757
+ "COLLECTED": null
1758
+ },
1759
+ "VRAIS21": {
1760
+ "EDITED": null,
1761
+ "FORCED": null,
1762
+ "INPUTED": null,
1763
+ "PREVIOUS": null,
1764
+ "COLLECTED": null
1765
+ },
1766
+ "VRAIS22": {
1767
+ "EDITED": null,
1768
+ "FORCED": null,
1769
+ "INPUTED": null,
1770
+ "PREVIOUS": null,
1771
+ "COLLECTED": null
1772
+ },
1773
+ "VRAIS23": {
1774
+ "EDITED": null,
1775
+ "FORCED": null,
1776
+ "INPUTED": null,
1777
+ "PREVIOUS": null,
1778
+ "COLLECTED": null
1779
+ },
1780
+ "VRAIS24": {
1781
+ "EDITED": null,
1782
+ "FORCED": null,
1783
+ "INPUTED": null,
1784
+ "PREVIOUS": null,
1785
+ "COLLECTED": null
1786
+ },
1787
+ "VRAIS25": {
1788
+ "EDITED": null,
1789
+ "FORCED": null,
1790
+ "INPUTED": null,
1791
+ "PREVIOUS": null,
1792
+ "COLLECTED": null
1793
+ },
1794
+ "VRAIS26": {
1795
+ "EDITED": null,
1796
+ "FORCED": null,
1797
+ "INPUTED": null,
1798
+ "PREVIOUS": null,
1799
+ "COLLECTED": null
1800
+ },
1801
+ "VRAIS31": {
1802
+ "EDITED": null,
1803
+ "FORCED": null,
1804
+ "INPUTED": null,
1805
+ "PREVIOUS": null,
1806
+ "COLLECTED": null
1807
+ },
1808
+ "VRAIS32": {
1809
+ "EDITED": null,
1810
+ "FORCED": null,
1811
+ "INPUTED": null,
1812
+ "PREVIOUS": null,
1813
+ "COLLECTED": null
1814
+ },
1815
+ "VRAIS33": {
1816
+ "EDITED": null,
1817
+ "FORCED": null,
1818
+ "INPUTED": null,
1819
+ "PREVIOUS": null,
1820
+ "COLLECTED": null
1821
+ },
1822
+ "VRAIS34": {
1823
+ "EDITED": null,
1824
+ "FORCED": null,
1825
+ "INPUTED": null,
1826
+ "PREVIOUS": null,
1827
+ "COLLECTED": null
1828
+ },
1829
+ "VRAIS35": {
1830
+ "EDITED": null,
1831
+ "FORCED": null,
1832
+ "INPUTED": null,
1833
+ "PREVIOUS": null,
1834
+ "COLLECTED": null
1835
+ },
1836
+ "VRAIS36": {
1837
+ "EDITED": null,
1838
+ "FORCED": null,
1839
+ "INPUTED": null,
1840
+ "PREVIOUS": null,
1841
+ "COLLECTED": null
1842
+ },
1843
+ "VRAIS41": {
1844
+ "EDITED": null,
1845
+ "FORCED": null,
1846
+ "INPUTED": null,
1847
+ "PREVIOUS": null,
1848
+ "COLLECTED": null
1849
+ },
1850
+ "VRAIS42": {
1851
+ "EDITED": null,
1852
+ "FORCED": null,
1853
+ "INPUTED": null,
1854
+ "PREVIOUS": null,
1855
+ "COLLECTED": null
1856
+ },
1857
+ "VRAIS43": {
1858
+ "EDITED": null,
1859
+ "FORCED": null,
1860
+ "INPUTED": null,
1861
+ "PREVIOUS": null,
1862
+ "COLLECTED": null
1863
+ },
1864
+ "VRAIS44": {
1865
+ "EDITED": null,
1866
+ "FORCED": null,
1867
+ "INPUTED": null,
1868
+ "PREVIOUS": null,
1869
+ "COLLECTED": null
1870
+ },
1871
+ "VRAIS45": {
1872
+ "EDITED": null,
1873
+ "FORCED": null,
1874
+ "INPUTED": null,
1875
+ "PREVIOUS": null,
1876
+ "COLLECTED": null
1877
+ },
1878
+ "ADR_COLL": {
1879
+ "EDITED": null,
1880
+ "FORCED": null,
1881
+ "INPUTED": null,
1882
+ "PREVIOUS": null,
1883
+ "COLLECTED": "rue Vincent Auriol"
1884
+ },
1885
+ "CIVCOLL2": {
1886
+ "EDITED": null,
1887
+ "FORCED": null,
1888
+ "INPUTED": null,
1889
+ "PREVIOUS": null,
1890
+ "COLLECTED": null
1891
+ },
1892
+ "DATENAIS": {
1893
+ "EDITED": [null],
1894
+ "FORCED": [null],
1895
+ "INPUTED": [null],
1896
+ "PREVIOUS": [null],
1897
+ "COLLECTED": ["1970-09-15", "1970-01-01", "2003-01-01", "2003-02-01"]
1898
+ },
1899
+ "G_PRENOM": {
1900
+ "EDITED": [null],
1901
+ "FORCED": [null],
1902
+ "INPUTED": [null],
1903
+ "PREVIOUS": [null],
1904
+ "COLLECTED": ["Jean-Marc", "Magali", "Lauriane", "Mathis"]
1905
+ },
1906
+ "HULHUI21": {
1907
+ "EDITED": null,
1908
+ "FORCED": null,
1909
+ "INPUTED": null,
1910
+ "PREVIOUS": null,
1911
+ "COLLECTED": null
1912
+ },
1913
+ "HULHUI22": {
1914
+ "EDITED": null,
1915
+ "FORCED": null,
1916
+ "INPUTED": null,
1917
+ "PREVIOUS": null,
1918
+ "COLLECTED": null
1919
+ },
1920
+ "HULHUI23": {
1921
+ "EDITED": null,
1922
+ "FORCED": null,
1923
+ "INPUTED": null,
1924
+ "PREVIOUS": null,
1925
+ "COLLECTED": null
1926
+ },
1927
+ "INDNVOCC": {
1928
+ "EDITED": null,
1929
+ "FORCED": null,
1930
+ "INPUTED": null,
1931
+ "PREVIOUS": null,
1932
+ "COLLECTED": null
1933
+ },
1934
+ "MAA2AT_Q": {
1935
+ "EDITED": null,
1936
+ "FORCED": null,
1937
+ "INPUTED": null,
1938
+ "PREVIOUS": null,
1939
+ "COLLECTED": null
1940
+ },
1941
+ "NATIO1N1": {
1942
+ "EDITED": [null],
1943
+ "FORCED": [null],
1944
+ "INPUTED": [null],
1945
+ "PREVIOUS": [null],
1946
+ "COLLECTED": [true, true, true, true]
1947
+ },
1948
+ "NATIO1N2": {
1949
+ "EDITED": [null],
1950
+ "FORCED": [null],
1951
+ "INPUTED": [null],
1952
+ "PREVIOUS": [null],
1953
+ "COLLECTED": [null, null, null, null]
1954
+ },
1955
+ "NATIO1N3": {
1956
+ "EDITED": [null],
1957
+ "FORCED": [null],
1958
+ "INPUTED": [null],
1959
+ "PREVIOUS": [null],
1960
+ "COLLECTED": [null, null, null, null]
1961
+ },
1962
+ "NATIO1N4": {
1963
+ "EDITED": [null],
1964
+ "FORCED": [null],
1965
+ "INPUTED": [null],
1966
+ "PREVIOUS": [null],
1967
+ "COLLECTED": [null, null, null, null]
1968
+ },
1969
+ "NOMCOLL2": {
1970
+ "EDITED": null,
1971
+ "FORCED": null,
1972
+ "INPUTED": null,
1973
+ "PREVIOUS": null,
1974
+ "COLLECTED": null
1975
+ },
1976
+ "PAYSNAIS": {
1977
+ "EDITED": [null],
1978
+ "FORCED": [null],
1979
+ "INPUTED": [null],
1980
+ "PREVIOUS": [null],
1981
+ "COLLECTED": [null, null, null, null]
1982
+ },
1983
+ "SDL_SIT1": {
1984
+ "EDITED": [null],
1985
+ "FORCED": [null],
1986
+ "INPUTED": [null],
1987
+ "PREVIOUS": [null],
1988
+ "COLLECTED": [null]
1989
+ },
1990
+ "SDL_SIT2": {
1991
+ "EDITED": [null],
1992
+ "FORCED": [null],
1993
+ "INPUTED": [null],
1994
+ "PREVIOUS": [null],
1995
+ "COLLECTED": [null]
1996
+ },
1997
+ "TELNVOCC": {
1998
+ "EDITED": null,
1999
+ "FORCED": null,
2000
+ "INPUTED": null,
2001
+ "PREVIOUS": null,
2002
+ "COLLECTED": null
2003
+ },
2004
+ "TEMPS1_1": {
2005
+ "EDITED": null,
2006
+ "FORCED": null,
2007
+ "INPUTED": null,
2008
+ "PREVIOUS": null,
2009
+ "COLLECTED": null
2010
+ },
2011
+ "TYPLOGCO": {
2012
+ "EDITED": [null],
2013
+ "FORCED": [null],
2014
+ "INPUTED": [null],
2015
+ "PREVIOUS": [null],
2016
+ "COLLECTED": [null, null, null, null]
2017
+ },
2018
+ "testSTOC": {
2019
+ "EDITED": null,
2020
+ "FORCED": null,
2021
+ "INPUTED": null,
2022
+ "PREVIOUS": null,
2023
+ "COLLECTED": null
2024
+ },
2025
+ "FOYPAGEES": {
2026
+ "EDITED": null,
2027
+ "FORCED": null,
2028
+ "INPUTED": null,
2029
+ "PREVIOUS": null,
2030
+ "COLLECTED": null
2031
+ },
2032
+ "LNAISMERE": {
2033
+ "EDITED": null,
2034
+ "FORCED": null,
2035
+ "INPUTED": null,
2036
+ "PREVIOUS": null,
2037
+ "COLLECTED": null
2038
+ },
2039
+ "LNAISPERE": {
2040
+ "EDITED": null,
2041
+ "FORCED": null,
2042
+ "INPUTED": null,
2043
+ "PREVIOUS": null,
2044
+ "COLLECTED": null
2045
+ },
2046
+ "MAA2ATC_Q": {
2047
+ "EDITED": null,
2048
+ "FORCED": null,
2049
+ "INPUTED": null,
2050
+ "PREVIOUS": null,
2051
+ "COLLECTED": null
2052
+ },
2053
+ "MAILNVOCC": {
2054
+ "EDITED": null,
2055
+ "FORCED": null,
2056
+ "INPUTED": null,
2057
+ "PREVIOUS": null,
2058
+ "COLLECTED": null
2059
+ },
2060
+ "NOMNVOCC1": {
2061
+ "EDITED": null,
2062
+ "FORCED": null,
2063
+ "INPUTED": null,
2064
+ "PREVIOUS": null,
2065
+ "COLLECTED": null
2066
+ },
2067
+ "NOMNVOCC2": {
2068
+ "EDITED": null,
2069
+ "FORCED": null,
2070
+ "INPUTED": null,
2071
+ "PREVIOUS": null,
2072
+ "COLLECTED": null
2073
+ },
2074
+ "NOTELCOLL": {
2075
+ "EDITED": null,
2076
+ "FORCED": null,
2077
+ "INPUTED": null,
2078
+ "PREVIOUS": null,
2079
+ "COLLECTED": null
2080
+ },
2081
+ "SDT2_SIT2": {
2082
+ "EDITED": [null],
2083
+ "FORCED": [null],
2084
+ "INPUTED": [null],
2085
+ "PREVIOUS": [null],
2086
+ "COLLECTED": [null]
2087
+ },
2088
+ "NUMTH_COLL": {
2089
+ "EDITED": null,
2090
+ "FORCED": null,
2091
+ "INPUTED": null,
2092
+ "PREVIOUS": null,
2093
+ "COLLECTED": "1"
2094
+ },
2095
+ "PRENOMCOLL": {
2096
+ "EDITED": null,
2097
+ "FORCED": null,
2098
+ "INPUTED": null,
2099
+ "PREVIOUS": null,
2100
+ "COLLECTED": null
2101
+ },
2102
+ "SDTAD_SIT2": {
2103
+ "EDITED": [null],
2104
+ "FORCED": [null],
2105
+ "INPUTED": [null],
2106
+ "PREVIOUS": [null],
2107
+ "COLLECTED": [null]
2108
+ },
2109
+ "SITUMATRI1": {
2110
+ "EDITED": [null],
2111
+ "FORCED": [null],
2112
+ "INPUTED": [null],
2113
+ "PREVIOUS": [null],
2114
+ "COLLECTED": [true, true, null, null]
2115
+ },
2116
+ "SITUMATRI2": {
2117
+ "EDITED": [null],
2118
+ "FORCED": [null],
2119
+ "INPUTED": [null],
2120
+ "PREVIOUS": [null],
2121
+ "COLLECTED": [null, null, null, null]
2122
+ },
2123
+ "SITUMATRI3": {
2124
+ "EDITED": [null],
2125
+ "FORCED": [null],
2126
+ "INPUTED": [null],
2127
+ "PREVIOUS": [null],
2128
+ "COLLECTED": [null, null, null, null]
2129
+ },
2130
+ "SITUMATRI4": {
2131
+ "EDITED": [null],
2132
+ "FORCED": [null],
2133
+ "INPUTED": [null],
2134
+ "PREVIOUS": [null],
2135
+ "COLLECTED": [null, null, null, null]
2136
+ },
2137
+ "SITUMATRI5": {
2138
+ "EDITED": [null],
2139
+ "FORCED": [null],
2140
+ "INPUTED": [null],
2141
+ "PREVIOUS": [null],
2142
+ "COLLECTED": [null, null, null, null]
2143
+ },
2144
+ "SITUMATRI6": {
2145
+ "EDITED": [null],
2146
+ "FORCED": [null],
2147
+ "INPUTED": [null],
2148
+ "PREVIOUS": [null],
2149
+ "COLLECTED": [null, null, true, true]
2150
+ },
2151
+ "CADRTH_COLL": {
2152
+ "EDITED": null,
2153
+ "FORCED": null,
2154
+ "INPUTED": null,
2155
+ "PREVIOUS": null,
2156
+ "COLLECTED": "1er étage UIA"
2157
+ },
2158
+ "LIBCOM_COLL": {
2159
+ "EDITED": null,
2160
+ "FORCED": null,
2161
+ "INPUTED": null,
2162
+ "PREVIOUS": null,
2163
+ "COLLECTED": "AMIENS"
2164
+ },
2165
+ "NATIONMERE1": {
2166
+ "EDITED": null,
2167
+ "FORCED": null,
2168
+ "INPUTED": null,
2169
+ "PREVIOUS": null,
2170
+ "COLLECTED": null
2171
+ },
2172
+ "NATIONMERE2": {
2173
+ "EDITED": null,
2174
+ "FORCED": null,
2175
+ "INPUTED": null,
2176
+ "PREVIOUS": null,
2177
+ "COLLECTED": null
2178
+ },
2179
+ "NATIONMERE3": {
2180
+ "EDITED": null,
2181
+ "FORCED": null,
2182
+ "INPUTED": null,
2183
+ "PREVIOUS": null,
2184
+ "COLLECTED": null
2185
+ },
2186
+ "NATIONPERE1": {
2187
+ "EDITED": null,
2188
+ "FORCED": null,
2189
+ "INPUTED": null,
2190
+ "PREVIOUS": null,
2191
+ "COLLECTED": null
2192
+ },
2193
+ "NATIONPERE2": {
2194
+ "EDITED": null,
2195
+ "FORCED": null,
2196
+ "INPUTED": null,
2197
+ "PREVIOUS": null,
2198
+ "COLLECTED": null
2199
+ },
2200
+ "NATIONPERE3": {
2201
+ "EDITED": null,
2202
+ "FORCED": null,
2203
+ "INPUTED": null,
2204
+ "PREVIOUS": null,
2205
+ "COLLECTED": null
2206
+ },
2207
+ "PRENOMCOLL2": {
2208
+ "EDITED": null,
2209
+ "FORCED": null,
2210
+ "INPUTED": null,
2211
+ "PREVIOUS": null,
2212
+ "COLLECTED": null
2213
+ },
2214
+ "PAYSNAISMERE": {
2215
+ "EDITED": null,
2216
+ "FORCED": null,
2217
+ "INPUTED": null,
2218
+ "PREVIOUS": null,
2219
+ "COLLECTED": null
2220
+ },
2221
+ "PAYSNAISPERE": {
2222
+ "EDITED": null,
2223
+ "FORCED": null,
2224
+ "INPUTED": null,
2225
+ "PREVIOUS": null,
2226
+ "COLLECTED": null
2227
+ },
2228
+ "PRENOMNVOCC1": {
2229
+ "EDITED": null,
2230
+ "FORCED": null,
2231
+ "INPUTED": null,
2232
+ "PREVIOUS": null,
2233
+ "COLLECTED": null
2234
+ },
2235
+ "PRENOMNVOCC2": {
2236
+ "EDITED": null,
2237
+ "FORCED": null,
2238
+ "INPUTED": null,
2239
+ "PREVIOUS": null,
2240
+ "COLLECTED": null
2241
+ },
2242
+ "COMMUNEPASSEE": {
2243
+ "EDITED": null,
2244
+ "FORCED": null,
2245
+ "INPUTED": null,
2246
+ "PREVIOUS": null,
2247
+ "COLLECTED": null
2248
+ },
2249
+ "CODEPOST1_COLL": {
2250
+ "EDITED": null,
2251
+ "FORCED": null,
2252
+ "INPUTED": null,
2253
+ "PREVIOUS": null,
2254
+ "COLLECTED": "80000"
2255
+ },
2256
+ "testfiltreHEB1": {
2257
+ "EDITED": [null],
2258
+ "FORCED": [null],
2259
+ "INPUTED": [null],
2260
+ "PREVIOUS": [null],
2261
+ "COLLECTED": [null]
2262
+ },
2263
+ "testfiltreHEB2": {
2264
+ "EDITED": [null],
2265
+ "FORCED": [null],
2266
+ "INPUTED": [null],
2267
+ "PREVIOUS": [null],
2268
+ "COLLECTED": [null, null, null, null]
2269
+ }
2270
+ },
2271
+ "CALCULATED": {
2272
+ "HC": 0,
2273
+ "AGE": [51, 51, 18, 18],
2274
+ "NHAB": 4,
2275
+ "STOC": "1",
2276
+ "STOCA": ["1", "1", "2", "2"],
2277
+ "STOCC": ["1", "1", "1", "1"],
2278
+ "nLIEN": ["9", "1", "3", "3"],
2279
+ "EMPLOI": ["1", "1", "0", "0"],
2280
+ "LIB_SI": ["s il", "si elle", "si elle", "s il"],
2281
+ "MAA1AT": "",
2282
+ "MAA2AT": "",
2283
+ "MAA3AT": "",
2284
+ "PRENOM": ["Jean-Marc", "Magali", "Lauriane", "Mathis"],
2285
+ "STOC_i": ["1", "1", "1", "1"],
2286
+ "TEXT_E": " ",
2287
+ "libHSP": "vos pièces",
2288
+ "libHST": " ",
2289
+ "libHUT": "Ne pas tenir compte des pièces dédiées au télétravail.",
2290
+ "libKAO": "",
2291
+ "libKBA": "",
2292
+ "libKJA": "Avez-vous",
2293
+ "libOIH": "cette personne a-t-elle",
2294
+ "libSDT": [
2295
+ "ces situations",
2296
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2297
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2298
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\""
2299
+ ],
2300
+ "nblien": "01133",
2301
+ "ADRESSE": "29 AVENUE CHARLES DE GAULLE 75017 PARIS",
2302
+ "ANNEENQ": "2021",
2303
+ "CTR_LOG": [
2304
+ "Vous ne pouvez pas avoir deux résidences principales.",
2305
+ "Magali ne peut pas avoir deux résidences principales.",
2306
+ "Lauriane ne peut pas avoir deux résidences principales.",
2307
+ "Mathis ne peut pas avoir deux résidences principales."
2308
+ ],
2309
+ "INDconj": "1",
2310
+ "LIB_FEM": ["", "e", "e", ""],
2311
+ "MAA2ATC": "",
2312
+ "MOISENQ": "10",
2313
+ "NOMOCC1": "MONSIEUR JEAN-MARC MIERLOT",
2314
+ "NOMOCC2": "null null null",
2315
+ "SEXEREF": "1",
2316
+ "liHPHc2": "",
2317
+ "libHPHa": "",
2318
+ "libHPHc": "",
2319
+ "libHPHp": "",
2320
+ "libHSI1": "ces pièces annexes réservées",
2321
+ "libHSI2": "ces pièces annexes réservées",
2322
+ "libHSTa": "",
2323
+ "libHSTc": "",
2324
+ "libHSTp": "",
2325
+ "libHTLC": "individuel",
2326
+ "libKBA1": "",
2327
+ "libKSMI": " et de la véranda",
2328
+ "libMAA3": "votre arrivée",
2329
+ "libOIHB": "ou votre conjoint",
2330
+ "libVFFH": "",
2331
+ "libVFLA": "L'un de ces logements maintenant vendus",
2332
+ "libVOUS": ["Vous", "Magali", "Lauriane", "Mathis"],
2333
+ "persXRP": [0, 0, 0, 0],
2334
+ "persmaj": [1, 1, 1, 1],
2335
+ "ADRCOLLC": "1 rue Vincent Auriol 1er étage UIA 80000 AMIENS",
2336
+ "LIB_FEM2": ["er", "ère", "ère", "er"],
2337
+ "LIB_VEUF": [
2338
+ "Veuf, conjoint(e) décédé(e)",
2339
+ "Veuve, conjoint(e) décédé(e)",
2340
+ "Veuve, conjoint(e) décédé(e)",
2341
+ "Veuf, conjoint(e) décédé(e)"
2342
+ ],
2343
+ "NOMCOLLC": "MONSIEUR JEAN-MARC MIERLOT, null null null",
2344
+ "libCHGNC": "MONSIEUR JEAN-MARC MIERLOT",
2345
+ "libENVS1": "pour transmettre votre questionnaire à l'Insee.",
2346
+ "libFINS1": "Vous êtes arrivé(e) à la fin de ce questionnaire. Nous vous remercions de votre participation.",
2347
+ "libGARDE": [
2348
+ "Êtes-vous",
2349
+ "Magali est-elle",
2350
+ "Lauriane est-elle",
2351
+ "Mathis est-il"
2352
+ ],
2353
+ "libHTLC2": "la propriété",
2354
+ "libIAATC": "de la maison",
2355
+ "libKSJPI": "",
2356
+ "libKVELO": "l'immeuble",
2357
+ "libSANTE": ", le lieu et la nationalité de naissance de vos parents",
2358
+ "libSTOC1": "",
2359
+ "persconj": [0, 1, 0, 0],
2360
+ "LIB_SUJET": ["il", "elle", "elle", "il"],
2361
+ "PRENOMREF": "Jean-Marc",
2362
+ "libFINS12": "Vous serez contacté(e) à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.",
2363
+ "libHSTmoy": null,
2364
+ "libPCSACT": [
2365
+ "votre catégorie de profession",
2366
+ "la catégorie de profession de Magali",
2367
+ "la catégorie de profession de Lauriane",
2368
+ "la catégorie de profession de Mathis"
2369
+ ],
2370
+ "libSTOCA3": [
2371
+ "êtes-vous",
2372
+ "Magali est-elle",
2373
+ "Lauriane est-elle",
2374
+ "Mathis est-il"
2375
+ ],
2376
+ "libSTOCB1": "locataire ou colocataire",
2377
+ "nbpersXRP": 0,
2378
+ "nbpersmaj": 4,
2379
+ "perstelet": [1, 0, 0, 0],
2380
+ "testSTOCA": ["1", "1", "1", "1"],
2381
+ "LIB_ENFANT": [
2382
+ "Votre fils, votre beau-fils",
2383
+ "Votre fille, votre belle-fille",
2384
+ "Votre fille, votre belle-fille",
2385
+ "Votre fils, votre beau-fils"
2386
+ ],
2387
+ "LIB_PARENT": [
2388
+ "Votre père, votre beau-père",
2389
+ "Votre mère, votre belle-mère",
2390
+ "Votre mère, votre belle-mère",
2391
+ "Votre père, votre beau-père"
2392
+ ],
2393
+ "LIB_PRONOM": ["lui", "elle", "elle", "lui"],
2394
+ "PRENOMVIDE": "PRÉNOM",
2395
+ "filtre_HEB": [
2396
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2397
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2398
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2399
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0"
2400
+ ],
2401
+ "filtre_SIT": "1",
2402
+ "filtre_XRP": "0",
2403
+ "libHSTmoy2": null,
2404
+ "libMOISENQ": "Octobre",
2405
+ "nbpersconj": 1,
2406
+ "persparent": [0, 0, 0, 0],
2407
+ "persplus25": [1, 1, 0, 0],
2408
+ "iDEPENDANCE": null,
2409
+ "libVBILLOG1": "logement vendu",
2410
+ "libVBILLOG2": "logement acheté",
2411
+ "nbperstelet": 1,
2412
+ "AGEMILLESIME": [51, 51, 18, 18],
2413
+ "LIB_GDPARENT": [
2414
+ "Votre grand-père, votre beau-grand-père",
2415
+ "Votre grand-mère, votre belle-grand-mère",
2416
+ "Votre grand-mère, votre belle-grand-mère",
2417
+ "Votre grand-père, votre beau-grand-père"
2418
+ ],
2419
+ "LIB_PTENFANT": [
2420
+ "Votre petit-fils, votre beau-petit-fils",
2421
+ "Votre petite-fille, votre belle-petite-fille",
2422
+ "Votre petite-fille, votre belle-petite-fille",
2423
+ "Votre petit-fils, votre beau-petit-fils"
2424
+ ],
2425
+ "filtre_dest2": "0",
2426
+ "libACTDIPAUT": [
2427
+ "Votre situation",
2428
+ "Situation de Magali",
2429
+ "Situation de Lauriane",
2430
+ "Situation de Mathis"
2431
+ ],
2432
+ "nbpersparent": 0,
2433
+ "persplus18TR": ["0", "0", "0", "0"],
2434
+ "persplus25TR": ["0", "0", "0", "0"],
2435
+ "ANNEENQmoins1": 2020,
2436
+ "ANNEENQmoins4": 2017,
2437
+ "ANNEENQmoins8": 2013,
2438
+ "nb_filtre_HEB": "0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2439
+ "persplus15AGE": ["1", "1", "1", "1"],
2440
+ "persplus18AGE": ["1", "1", "1", "1"],
2441
+ "persplus25AGE": ["1", "1", "0", "0"],
2442
+ "ANNEENQmoins12": 2009,
2443
+ "libINTROPRENOM": "En commençant par vous, indiquez les prénoms des habitants du logement.",
2444
+ "libINTROPRENOM2": "(Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer).",
2445
+ "test_libMOISENQ": "pas août",
2446
+ "filtre_HebEnfant": [
2447
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2448
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2449
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2450
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0"
2451
+ ],
2452
+ "filtre_autrepers": "1",
2453
+ "FILTER_RESULT_DAG": null,
2454
+ "FILTER_RESULT_DST": null,
2455
+ "FILTER_RESULT_DTA": null,
2456
+ "FILTER_RESULT_DTL": null,
2457
+ "FILTER_RESULT_HPA": false,
2458
+ "FILTER_RESULT_HPH": true,
2459
+ "FILTER_RESULT_HPP": false,
2460
+ "FILTER_RESULT_HSP": false,
2461
+ "FILTER_RESULT_HST": true,
2462
+ "FILTER_RESULT_HUA": true,
2463
+ "FILTER_RESULT_HUP": true,
2464
+ "FILTER_RESULT_HUT": true,
2465
+ "FILTER_RESULT_IAS": null,
2466
+ "FILTER_RESULT_IEL": null,
2467
+ "FILTER_RESULT_IMI": true,
2468
+ "FILTER_RESULT_KBA": true,
2469
+ "FILTER_RESULT_KBD": true,
2470
+ "FILTER_RESULT_KCA": true,
2471
+ "FILTER_RESULT_KGA": true,
2472
+ "FILTER_RESULT_KJA": true,
2473
+ "FILTER_RESULT_KJC": false,
2474
+ "FILTER_RESULT_KSB": false,
2475
+ "FILTER_RESULT_KSE": null,
2476
+ "FILTER_RESULT_KSV": false,
2477
+ "FILTER_RESULT_KVE": true,
2478
+ "FILTER_RESULT_ODF": true,
2479
+ "FILTER_RESULT_ODL": true,
2480
+ "FILTER_RESULT_OIH": true,
2481
+ "FILTER_RESULT_OLA": true,
2482
+ "FILTER_RESULT_OQA": true,
2483
+ "FILTER_RESULT_VIN": true,
2484
+ "FILTER_RESULT_VLR": false,
2485
+ "FILTER_RESULT_VND": false,
2486
+ "FILTER_RESULT_VOP": true,
2487
+ "FILTER_RESULT_VPI": null,
2488
+ "FILTER_RESULT_VSY": null,
2489
+ "FUTURANNIVERSAIRE": [false, false, false, false],
2490
+ "FILTER_RESULT_CADR": true,
2491
+ "FILTER_RESULT_DALO": null,
2492
+ "FILTER_RESULT_DDAT": null,
2493
+ "FILTER_RESULT_DDEM": null,
2494
+ "FILTER_RESULT_DORM": [false, false, false, false],
2495
+ "FILTER_RESULT_DSTL": false,
2496
+ "FILTER_RESULT_DSTP": false,
2497
+ "FILTER_RESULT_HAUT": true,
2498
+ "FILTER_RESULT_HCHA": null,
2499
+ "FILTER_RESULT_HPI1": false,
2500
+ "FILTER_RESULT_HPI2": false,
2501
+ "FILTER_RESULT_HSI1": false,
2502
+ "FILTER_RESULT_HSI2": false,
2503
+ "FILTER_RESULT_ICOI": true,
2504
+ "FILTER_RESULT_KAO1": true,
2505
+ "FILTER_RESULT_KCU1": true,
2506
+ "FILTER_RESULT_KCU2": false,
2507
+ "FILTER_RESULT_KGA1": true,
2508
+ "FILTER_RESULT_KGRA": true,
2509
+ "FILTER_RESULT_KSJC": false,
2510
+ "FILTER_RESULT_KSMI": null,
2511
+ "FILTER_RESULT_KSOA": null,
2512
+ "FILTER_RESULT_KSV1": false,
2513
+ "FILTER_RESULT_KWC1": true,
2514
+ "FILTER_RESULT_LIEN": [false, true, true, true],
2515
+ "FILTER_RESULT_MAA3": true,
2516
+ "FILTER_RESULT_OIHB": false,
2517
+ "FILTER_RESULT_OIHC": false,
2518
+ "FILTER_RESULT_OIHD": false,
2519
+ "FILTER_RESULT_OIHE": false,
2520
+ "FILTER_RESULT_OIHF": false,
2521
+ "FILTER_RESULT_OLAD": true,
2522
+ "FILTER_RESULT_OQAD": true,
2523
+ "FILTER_RESULT_SDL1": [true],
2524
+ "FILTER_RESULT_SDL2": [false],
2525
+ "FILTER_RESULT_SDL4": [false],
2526
+ "FILTER_RESULT_SDN1": [null],
2527
+ "FILTER_RESULT_SDT1": [false],
2528
+ "FILTER_RESULT_SDT2": [null],
2529
+ "FILTER_RESULT_SEXE": [true, true, true, true],
2530
+ "FILTER_RESULT_UWEB": true,
2531
+ "FILTER_RESULT_VAID": null,
2532
+ "FILTER_RESULT_VDD1": false,
2533
+ "FILTER_RESULT_VDSY": false,
2534
+ "FILTER_RESULT_VFFH": null,
2535
+ "FILTER_RESULT_VFLA": false,
2536
+ "FILTER_RESULT_VLA1": true,
2537
+ "FILTER_RESULT_VLRD": false,
2538
+ "FILTER_RESULT_VPID": true,
2539
+ "FILTER_RESULT_VPRA": false,
2540
+ "FILTER_RESULT_VSO1": null,
2541
+ "FILTER_RESULT_VTL1": null,
2542
+ "FILTER_RESULT_CHGNC": true,
2543
+ "FILTER_RESULT_DAGEO": false,
2544
+ "FILTER_RESULT_DAGRL": false,
2545
+ "FILTER_RESULT_EAMIA": [false],
2546
+ "FILTER_RESULT_EAMIH": [false],
2547
+ "FILTER_RESULT_EAMIK": [false],
2548
+ "FILTER_RESULT_EAMIL": [false],
2549
+ "FILTER_RESULT_EPAS1": [false],
2550
+ "FILTER_RESULT_EPASB": [false],
2551
+ "FILTER_RESULT_EPASC": [false],
2552
+ "FILTER_RESULT_EPROJ": [false],
2553
+ "FILTER_RESULT_ERET1": [false],
2554
+ "FILTER_RESULT_GARDE": [false, false, false, false],
2555
+ "FILTER_RESULT_HPEUP": true,
2556
+ "FILTER_RESULT_HTLC1": true,
2557
+ "FILTER_RESULT_IAATC": true,
2558
+ "FILTER_RESULT_KDLK1": null,
2559
+ "FILTER_RESULT_KDLK2": null,
2560
+ "FILTER_RESULT_KGRAA": true,
2561
+ "FILTER_RESULT_KPISC": true,
2562
+ "FILTER_RESULT_KSJPC": false,
2563
+ "FILTER_RESULT_KSJPI": null,
2564
+ "FILTER_RESULT_KVELO": false,
2565
+ "FILTER_RESULT_KWCID": false,
2566
+ "FILTER_RESULT_LIMT1": true,
2567
+ "FILTER_RESULT_LIMT2": [false],
2568
+ "FILTER_RESULT_LNAIS": [true, true, true, true],
2569
+ "FILTER_RESULT_LOGCO": [false, false, false, false],
2570
+ "FILTER_RESULT_MAA2A": true,
2571
+ "FILTER_RESULT_MAA2M": false,
2572
+ "FILTER_RESULT_MAA3A": false,
2573
+ "FILTER_RESULT_MAA3M": false,
2574
+ "FILTER_RESULT_MCHR1": true,
2575
+ "FILTER_RESULT_MCHR2": [false],
2576
+ "FILTER_RESULT_NBHAB": true,
2577
+ "FILTER_RESULT_OLAR1": true,
2578
+ "FILTER_RESULT_OLAR2": true,
2579
+ "FILTER_RESULT_OLAR3": true,
2580
+ "FILTER_RESULT_SDTAD": [false],
2581
+ "FILTER_RESULT_SITUA": [true, true, true, true],
2582
+ "FILTER_RESULT_STOC1": true,
2583
+ "FILTER_RESULT_STOC2": false,
2584
+ "FILTER_RESULT_STOCP": false,
2585
+ "FILTER_RESULT_TELET": [true, true, false, false],
2586
+ "FILTER_RESULT_TRAGE": [false, false, false, false],
2587
+ "FILTER_RESULT_UNLOG": [true, true, true, true],
2588
+ "FILTER_RESULT_VLAB1": false,
2589
+ "FILTER_RESULT_VMODM": true,
2590
+ "FILTER_RESULT_VSURF": null,
2591
+ "FILTER_RESULT_VTLD1": true,
2592
+ "nb_filtre_HebEnfant": "0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2593
+ "FILTER_RESULT_COUPLE": [true, true, true, true],
2594
+ "FILTER_RESULT_DAGEO1": false,
2595
+ "FILTER_RESULT_DAGEO2": false,
2596
+ "FILTER_RESULT_DAGEO3": false,
2597
+ "FILTER_RESULT_DEPART": false,
2598
+ "FILTER_RESULT_DURLOG": [false, false, false, false],
2599
+ "FILTER_RESULT_EAMID1": [false],
2600
+ "FILTER_RESULT_ECOVID": [false],
2601
+ "FILTER_RESULT_EPROJB": [false],
2602
+ "FILTER_RESULT_EPROJC": [false],
2603
+ "FILTER_RESULT_EPROJD": [false],
2604
+ "FILTER_RESULT_GRDIPA": [true, true, true, true],
2605
+ "FILTER_RESULT_GRDIPB": [false, false, false, false],
2606
+ "FILTER_RESULT_GRDIPC": [true, false, false, false],
2607
+ "FILTER_RESULT_IAATCD": false,
2608
+ "FILTER_RESULT_KSJPIT": null,
2609
+ "FILTER_RESULT_LOGAUT": [false, false, false, false],
2610
+ "FILTER_RESULT_LOGENQ": [false, false, false, false],
2611
+ "FILTER_RESULT_MAA2AC": false,
2612
+ "FILTER_RESULT_MAA2MC": false,
2613
+ "FILTER_RESULT_ODFRA3": false,
2614
+ "FILTER_RESULT_SANTE1": true,
2615
+ "FILTER_RESULT_SANTE2": [false],
2616
+ "FILTER_RESULT_STOCA3": [false, false, false, false],
2617
+ "FILTER_RESULT_STOCA4": [false, false, false, false],
2618
+ "FILTER_RESULT_STOCB1": [false, false, false, false],
2619
+ "FILTER_RESULT_TELMOB": true,
2620
+ "FILTER_RESULT_VACHAL": true,
2621
+ "FILTER_RESULT_VCRCOM": false,
2622
+ "FILTER_RESULT_VLOYER": null,
2623
+ "FILTER_RESULT_VMODP1": true,
2624
+ "FILTER_RESULT_VMODP2": true,
2625
+ "FILTER_RESULT_VRAIS1": null,
2626
+ "FILTER_RESULT_VRAIS2": null,
2627
+ "FILTER_RESULT_VRAIS3": null,
2628
+ "FILTER_RESULT_VRAIS4": null,
2629
+ "FILTER_RESULT_VSURFD": true,
2630
+ "FILTER_RESULT_VVENDL": true,
2631
+ "FILTER_RESULT_CIVCOLL": false,
2632
+ "FILTER_RESULT_DALOBIS": false,
2633
+ "FILTER_RESULT_DEPNAIS": [true, true, true, true],
2634
+ "FILTER_RESULT_DSTLOC2": false,
2635
+ "FILTER_RESULT_ECOVID2": [false],
2636
+ "FILTER_RESULT_ERETOUR": [false],
2637
+ "FILTER_RESULT_HULHUI1": false,
2638
+ "FILTER_RESULT_HULHUI2": false,
2639
+ "FILTER_RESULT_INDCOLL": false,
2640
+ "FILTER_RESULT_MARRIVC": true,
2641
+ "FILTER_RESULT_NATIO1N": [true, true, true, true],
2642
+ "FILTER_RESULT_NATIO2N": [null, null, null, null],
2643
+ "FILTER_RESULT_NOMCOLL": false,
2644
+ "FILTER_RESULT_RESAUTO": false,
2645
+ "FILTER_RESULT_STOCA12": [true, true, true, true],
2646
+ "FILTER_RESULT_TELFIXE": true,
2647
+ "FILTER_RESULT_TRAVAIL": [false, false, true, true],
2648
+ "FILTER_RESULT_VANCIEN": null,
2649
+ "FILTER_RESULT_VBILLOG": null,
2650
+ "FILTER_RESULT_ADR_COLL": true,
2651
+ "FILTER_RESULT_CIVCOLL2": false,
2652
+ "FILTER_RESULT_DATENAIS": [true, true, true, true],
2653
+ "FILTER_RESULT_G_PRENOM": [true, true, true, true],
2654
+ "FILTER_RESULT_INDNVOCC": false,
2655
+ "FILTER_RESULT_MAA2AT_Q": true,
2656
+ "FILTER_RESULT_NOMCOLL2": false,
2657
+ "FILTER_RESULT_PAYSNAIS": [false, false, false, false],
2658
+ "FILTER_RESULT_SDL_SIT1": [null],
2659
+ "FILTER_RESULT_SDL_SIT2": [null],
2660
+ "FILTER_RESULT_TELNVOCC": false,
2661
+ "FILTER_RESULT_TEMPS1_1": true,
2662
+ "FILTER_RESULT_TYPLOGCO": [false, false, false, false],
2663
+ "FILTER_RESULT_testSTOC": true,
2664
+ "FILTER_RESULT_FOYPAGEES": false,
2665
+ "FILTER_RESULT_LNAISMERE": true,
2666
+ "FILTER_RESULT_LNAISPERE": true,
2667
+ "FILTER_RESULT_MAA2ATC_Q": false,
2668
+ "FILTER_RESULT_MAILNVOCC": false,
2669
+ "FILTER_RESULT_NOMNVOCC1": false,
2670
+ "FILTER_RESULT_NOMNVOCC2": false,
2671
+ "FILTER_RESULT_NOTELCOLL": true,
2672
+ "FILTER_RESULT_SDT2_SIT2": [null],
2673
+ "FILTER_RESULT_SITUMATRI": [true, true, true, true],
2674
+ "FILTER_RESULT_NATIONMERE": true,
2675
+ "FILTER_RESULT_NATIONPERE": true,
2676
+ "FILTER_RESULT_NUMTH_COLL": true,
2677
+ "FILTER_RESULT_PRENOMCOLL": false,
2678
+ "FILTER_RESULT_SDTAD_SIT2": [null],
2679
+ "FILTER_RESULT_CADRTH_COLL": true,
2680
+ "FILTER_RESULT_LIBCOM_COLL": true,
2681
+ "FILTER_RESULT_PRENOMCOLL2": false,
2682
+ "FILTER_RESULT_PAYSNAISMERE": false,
2683
+ "FILTER_RESULT_PAYSNAISPERE": false,
2684
+ "FILTER_RESULT_PRENOMNVOCC1": false,
2685
+ "FILTER_RESULT_PRENOMNVOCC2": false,
2686
+ "FILTER_RESULT_COMMUNEPASSEE": false,
2687
+ "FILTER_RESULT_CODEPOST1_COLL": true,
2688
+ "FILTER_RESULT_testfiltreHEB1": [false],
2689
+ "FILTER_RESULT_testfiltreHEB2": [true, true, true, true]
2690
+ }
2691
+ }