From 83b136e2bf97d71a4c92e92f389efc07ee10a929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 3 Apr 2024 16:38:59 +0200 Subject: [PATCH 01/13] Create enum to represent lunatic components --- .../core/metadata/ComponentLunatic.java | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/ComponentLunatic.java diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/ComponentLunatic.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/ComponentLunatic.java new file mode 100644 index 00000000..f4d6f3ac --- /dev/null +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/ComponentLunatic.java @@ -0,0 +1,41 @@ +package fr.insee.kraftwerk.core.metadata; + +import lombok.Getter; +import lombok.extern.log4j.Log4j2; + +import java.util.Arrays; + +@Log4j2 +@Getter +public enum ComponentLunatic { + + DATE_PICKER("Datepicker", VariableType.DATE), + CHECKBOX_BOOLEAN("CheckboxBoolean", VariableType.BOOLEAN), + INPUT_NUMBER("InputNumber", null), + INPUT("Input", VariableType.STRING), + TEXT_AREA("Textarea", VariableType.STRING), + RADIO("Radio", VariableType.STRING), + CHECKBOX_ONE("CheckboxOne", VariableType.STRING), + DROPDOWN("Dropdown", VariableType.STRING), + CHECKBOX_GROUP("CheckboxGroup", VariableType.BOOLEAN), + SUGGESTER("Suggester", VariableType.STRING), + PAIRWISE_LINKS("PairwiseLinks", null), + TABLE("Table", null); + + private String jsonName; + // Represents the type of the variable expected with this component type + // If null, the type is not unique + private VariableType type; + + ComponentLunatic(String jsonName, VariableType type) { + this.jsonName=jsonName; + this.type = type; + } + + public static ComponentLunatic fromJsonName(String jsonName) { + return Arrays.stream(ComponentLunatic.values()) + .filter(component -> component.getJsonName().equals(jsonName)) + .findFirst() + .orElse(null); + } +} From 4c2568725d72f25714faf2d5eb61b50d9f36fdb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 3 Apr 2024 16:43:33 +0200 Subject: [PATCH 02/13] Improve Lunatic reader --- .../kraftwerk/api/process/MainProcessing.java | 3 +- .../fr/insee/kraftwerk/core/Constants.java | 1 + .../core/metadata/LunaticReader.java | 254 ++++++++++++++---- .../core/metadata/MetadataUtils.java | 14 + 4 files changed, 223 insertions(+), 49 deletions(-) diff --git a/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java b/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java index 732e4aa2..67367534 100644 --- a/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java +++ b/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java @@ -7,6 +7,7 @@ import fr.insee.kraftwerk.core.inputs.UserInputsFile; import fr.insee.kraftwerk.core.metadata.MetadataModel; import fr.insee.kraftwerk.core.metadata.MetadataUtils; +import fr.insee.kraftwerk.core.metadata.UcqVariable; import fr.insee.kraftwerk.core.sequence.*; import fr.insee.kraftwerk.core.utils.TextFileWriter; import fr.insee.kraftwerk.core.utils.log.KraftwerkExecutionLog; @@ -100,7 +101,7 @@ public void init() throws KraftwerkException { userInputsFile = controlInputSequence.getUserInputs(inDirectory); if (withDDI) metadataModels = MetadataUtils.getMetadata(userInputsFile.getModeInputsMap()); if (!withDDI) metadataModels = MetadataUtils.getMetadataFromLunatic(userInputsFile.getModeInputsMap()); - + if (fileByFile) userInputsFileList = getUserInputsFile(userInputsFile); } diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/Constants.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/Constants.java index e685d1bc..aebdda17 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/Constants.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/Constants.java @@ -51,6 +51,7 @@ private Constants() {} // ----- Fixed parameters public static final String ROOT_GROUP_NAME = "RACINE"; public static final String ROOT_IDENTIFIER_NAME = "IdUE"; + public static final String LOOP_NAME_PREFIX = "BOUCLE"; public static final String MULTIMODE_DATASET_NAME = "MULTIMODE"; public static final String REPORTING_DATA_GROUP_NAME = "REPORTINGDATA"; public static final String REPORTING_DATA_INTERVIEWER_ID_NULL_PLACEHOLDER = "NON_AFFECTE_"; diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index fea63dfc..48e82d56 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -8,10 +8,7 @@ import java.io.IOException; import java.nio.file.Path; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; +import java.util.*; import static fr.insee.kraftwerk.core.Constants.FILTER_RESULT_PREFIX; import static fr.insee.kraftwerk.core.Constants.MISSING_SUFFIX; @@ -22,6 +19,12 @@ public class LunaticReader { private static final String BINDING_DEPENDENCIES = "bindingDependencies"; private static final String VARIABLES = "variables"; private static final String EXCEPTION_MESSAGE = "Unable to read Lunatic questionnaire file: "; + private static final String RESPONSE = "response"; + private static final String COMPONENTS = "components"; + private static final String COMPONENT_TYPE = "componentType"; + private static final String VALUE = "value"; + private static final String LABEL = "label"; + private static final String MISSING_RESPONSE = "missingResponse"; private LunaticReader() { throw new IllegalStateException("Utility class"); } @@ -45,7 +48,7 @@ public static CalculatedVariables getCalculatedFromLunatic(Path lunaticFile) { JsonNode variablesNode = rootNode.get(VARIABLES); variablesNode.forEach(variableNode -> { if (variableNode.get("variableType").asText().equals("CALCULATED")) { - String formula = isLunaticV2 ? variableNode.get("expression").get("value").asText() + String formula = isLunaticV2 ? variableNode.get("expression").get(VALUE).asText() : variableNode.get("expression").asText(); CalculatedVariable calculatedVariable = new CalculatedVariable(variableNode.get("name").asText(), formula); @@ -125,24 +128,23 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { List variables = new ArrayList<>(); JsonNode variablesNode = rootNode.get(VARIABLES); variablesNode.forEach(newVar -> variables.add(newVar.get("name").asText())); - JsonNode componentsNode = rootNode.get("components"); // Root group is created in VariablesMap constructor MetadataModel metadataModel = new MetadataModel(); - if (componentsNode.isArray()) { - int i = 1; - for (JsonNode component : componentsNode) { - if (component.get("componentType").asText().equals("Loop")) { - // No imbricated loops so the parent is the root group - Group group = getNewGroup(metadataModel, i); - i++; - iterateOnBindingsDependencies(variables, metadataModel.getVariables(), component, group); - iterateOnComponents(rootNode, variables, metadataModel, group); - } - } - } + Group rootGroup = metadataModel.getRootGroup(); + iterateOnComponents(rootNode, variables, metadataModel, rootGroup); + + //Case of FILTER_RESULT + List filterResultsVariables = variables.stream().filter(variable -> variable.startsWith(FILTER_RESULT_PREFIX)).toList(); + filterResultsVariables.forEach(filterVar -> { - // We get the root group - Group rootGroup = metadataModel.getGroup(metadataModel.getGroupNames().getFirst()); + }); + + // We iterate on root components to identify variables belonging to root group + JsonNode rootComponents = rootNode.get(COMPONENTS); + for (JsonNode comp : rootComponents) { + addResponsesAndMissing(comp, rootGroup, variables, metadataModel); + } + // We add the remaining (not identified in any loops nor root) variables to the root group variables.forEach( varName -> metadataModel.getVariables().putVariable(new Variable(varName, rootGroup, VariableType.STRING))); return metadataModel; @@ -152,48 +154,204 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { } } - private static Group getNewGroup(MetadataModel metadataModel, int i) { - Group group = new Group(String.format("BOUCLE%d", i), Constants.ROOT_GROUP_NAME); - metadataModel.putGroup(group); - return group; + /** + * This method iterates on an array of components to extract the variables present in loops and get their group. + * @param rootNode + * @param variables + * @param metadataModel + * @param parentGroup + */ + private static void iterateOnComponents(JsonNode rootNode, List variables, MetadataModel metadataModel, Group parentGroup) { + JsonNode componentsNode = rootNode.get(COMPONENTS); + if (componentsNode.isArray()) { + for (JsonNode component : componentsNode) { + if (component.get(COMPONENT_TYPE).asText().equals("Loop")) { + if (component.has("lines")) { + processPrimaryLoop(variables, metadataModel, parentGroup, component); + } + if (component.has("iterations")) { + Group group = processDependingLoop(variables, metadataModel, parentGroup, component); + iterateOnComponents(component,variables, metadataModel,group); + } + } + } + } } - private static Group getNewGroup(MetadataModel metadataModel, String newName) { - Group group = new Group(newName, Constants.ROOT_GROUP_NAME); - metadataModel.putGroup(group); + /** + * This method processes the primary loop and creates a group with the name of the first response + * @param variables + * @param metadataModel + * @param parentGroup + * @param component + */ + private static void processPrimaryLoop(List variables, MetadataModel metadataModel, Group parentGroup, JsonNode component) { + JsonNode primaryComponents = component.get(COMPONENTS); + //We create a group only with the name of the first response + //Then we add all the variables found in response to the newly created group + String groupName = getFirstResponseName(primaryComponents); + log.info("Creation of group :" + groupName); + Group group = getNewGroup(metadataModel, groupName, parentGroup); + for (JsonNode primaryComponent : primaryComponents) { + addResponsesAndMissing(primaryComponent, group, variables, metadataModel); + } + } + + /** + * This method processes the loop depending on variables and creates a group with the name of loop dependencies + * @param variables + * @param metadataModel + * @param parentGroup + * @param component + * @return + */ + private static Group processDependingLoop(List variables, MetadataModel metadataModel, Group parentGroup, JsonNode component) { + JsonNode loopDependencies = component.get("loopDependencies"); + StringBuilder groupNameBuilder = new StringBuilder(loopDependencies.get(0).asText()); + for (int i = 1; i < loopDependencies.size(); i++) { + groupNameBuilder.append("_").append(loopDependencies.get(i).asText()); + } + String groupName = groupNameBuilder.toString(); + log.info("Creation of group :" + groupName); + Group group = getNewGroup(metadataModel, groupName, parentGroup); + iterateOnComponentsToFindResponses(component, variables, metadataModel, group); return group; } - private static void iterateOnComponents(JsonNode rootNode, List variables, MetadataModel metadataModel, - Group group) { - JsonNode loopComponentsNode = rootNode.get("components"); - if (loopComponentsNode.isArray()) { - for (JsonNode componentInLoop : loopComponentsNode) { - if (componentInLoop.get("componentType").asText().equals("Loop")) { - Group subgroup = getNewGroup(metadataModel, group.getName().concat(componentInLoop.asText())); - iterateOnBindingsDependencies(variables, metadataModel.getVariables(), componentInLoop, subgroup); - iterateOnComponents(componentInLoop, variables, metadataModel, subgroup); - } else { - iterateOnBindingsDependencies(variables, metadataModel.getVariables(), componentInLoop, group); - } + private static String getFirstResponseName(JsonNode components){ + for(JsonNode component : components){ + if (component.has(RESPONSE)){ + return component.get(RESPONSE).get("name").asText(); } } + return null; } + /** + * Adds variables to the metadata model (it infers type of variables from the component type) + * Compatible with Lunatic v3+ + * + * @param primaryComponent + * @param group + * @param variables + * @param metadataModel + */ + private static void addResponsesAndMissing(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { + //We read the name of the collected variables in response(s) + //And we deduce the variable type by looking at the component that encapsulate the variable + ComponentLunatic componentType = ComponentLunatic.fromJsonName(primaryComponent.get(COMPONENT_TYPE).asText()); + String variableName=""; + switch(componentType){ + case ComponentLunatic.DATE_PICKER, ComponentLunatic.CHECKBOX_BOOLEAN, ComponentLunatic.INPUT, ComponentLunatic.TEXT_AREA, ComponentLunatic.SUGGESTER: + variableName = getVariableName(primaryComponent); + metadataModel.getVariables().putVariable(new Variable(variableName, group, componentType.getType())); + variables.remove(variableName); + break; + case ComponentLunatic.INPUT_NUMBER: + variableName = getVariableName(primaryComponent); + if (primaryComponent.get("decimals").asInt()==0){ + metadataModel.getVariables().putVariable(new Variable(variableName, group, VariableType.INTEGER)); + variables.remove(variableName); + break; + } + metadataModel.getVariables().putVariable(new Variable(variableName, group, VariableType.NUMBER)); + variables.remove(variableName); + break; + case ComponentLunatic.DROPDOWN: + variableName = getVariableName(primaryComponent); + UcqVariable ucqVar = new UcqVariable(variableName, group, VariableType.STRING); + JsonNode modalities = primaryComponent.get("options"); + for (JsonNode modality : modalities){ + ucqVar.addModality(modality.get(VALUE).asText(), modality.get(LABEL).asText()); + } + metadataModel.getVariables().putVariable(ucqVar); + variables.remove(variableName); + break; + case ComponentLunatic.RADIO, ComponentLunatic.CHECKBOX_ONE: + variableName = getVariableName(primaryComponent); + UcqVariable ucqVarOne = new UcqVariable(variableName, group, VariableType.STRING); + JsonNode modalitiesOne = primaryComponent.get("options"); + for (JsonNode modality : modalitiesOne){ + ucqVarOne.addModality(modality.get(VALUE).asText(), modality.get(LABEL).get(VALUE).asText()); + } + metadataModel.getVariables().putVariable(ucqVarOne); + variables.remove(variableName); + break; + case ComponentLunatic.CHECKBOX_GROUP: + JsonNode responses = primaryComponent.get("responses"); + for (JsonNode response : responses){ + variableName = getVariableName(response); + McqVariable mcqVariable = new McqVariable(variableName, group, VariableType.BOOLEAN); + mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); + mcqVariable.setInQuestionGrid(true); + //We retrieve question name from missing attribute + String questionNameWithMissing = primaryComponent.get(MISSING_RESPONSE).get("name").asText(); + String questionName = ""; + if (questionNameWithMissing.endsWith("_MISSING")) { + questionName = questionNameWithMissing.substring(0, questionNameWithMissing.length() - "_MISSING".length()); + } + mcqVariable.setQuestionItemName(questionName); + metadataModel.getVariables().putVariable(mcqVariable); + variables.remove(variableName); + } + break; + case ComponentLunatic.PAIRWISE_LINKS: + // In we case of a pairwiseLinks component we have to iterate on the components to find the responses + // It is a nested component but we treat differently than the loops because it does not create a new level of information + iterateOnComponentsToFindResponses(primaryComponent, variables, metadataModel, group); + break; + case ComponentLunatic.TABLE: + iterateOnTableBody(primaryComponent, group, variables, metadataModel); + break; + case null: + break; + } + //We also had the missing variable if it exists (only one missing variable even if multiple responses) + addMissingVariable(primaryComponent, group, variables, metadataModel, variableName); + } - private static void iterateOnBindingsDependencies(List variables, VariablesMap variablesMap, - JsonNode component, Group group) { - if (component.has(BINDING_DEPENDENCIES)) { - JsonNode loopVariables = component.get(BINDING_DEPENDENCIES); - loopVariables.forEach(variable -> { - if (variables.contains(variable.asText())) { - variablesMap.putVariable(new Variable(variable.asText(), group, VariableType.STRING)); - variables.remove(variable.asText()); + private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { + // In we case of a table component we have to iterate on the body components to find the responses + // The body is a nested array of arrays + JsonNode body = primaryComponent.get("body"); + for(JsonNode arr : body){ + if (arr.isArray()){ + for (JsonNode cell : arr){ + if (cell.has(COMPONENT_TYPE)) { + addResponsesAndMissing(cell, group, variables, metadataModel); + } } - }); + } } } + private static void addMissingVariable(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, String variableName) { + if (primaryComponent.has(MISSING_RESPONSE)){ + String missingVariable = primaryComponent.get(MISSING_RESPONSE).get("name").asText(); + metadataModel.getVariables().putVariable(new Variable(missingVariable, group, VariableType.STRING)); + variables.remove(variableName); + } + } + + private static String getVariableName(JsonNode component) { + return component.get(RESPONSE).get("name").asText(); + } + + private static void iterateOnComponentsToFindResponses(JsonNode node, List variables, MetadataModel metadataModel, Group group) { + JsonNode components = node.get(COMPONENTS); + if (components.isArray()){ + for (JsonNode component : components) { + addResponsesAndMissing(component, group, variables, metadataModel); + } + } + } + + private static Group getNewGroup(MetadataModel metadataModel, String newName, Group parentGroup) { + Group group = new Group(String.format("%s_%s",Constants.LOOP_NAME_PREFIX,newName), parentGroup.getName()); + metadataModel.putGroup(group); + return group; + } + /** * Read the lunatic file and returns a String containing the questionnaire model * id diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java index 2662b25e..4b579b59 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java @@ -83,6 +83,20 @@ public static Map getMetadataFromLunatic(Map metadataModels ) { MetadataModel metadataModel = LunaticReader.getMetadataFromLunatic(modeInputs.getLunaticFile()); + // We add the variables for pairwise links + if (metadataModel.getVariables().getVariable(Constants.LIENS) != null) { + // We identify the group containing the individuals + // The solution is not pretty (hoping that the group name contains "PRENOM") + // It is meant to be temporary until we have a better way to identify the group containing the individuals + String groupContainingIndividuals = metadataModel.getGroupNames().stream() + .filter(g -> g.contains("PRENOM")) + .findFirst() + .orElse(metadataModel.getGroupNames().getFirst()); + for (int k=1;k Date: Tue, 9 Apr 2024 14:41:45 +0200 Subject: [PATCH 03/13] Changing the way to retrieve the questionName in checkboxGroup --- .../core/metadata/LunaticReader.java | 44 +++++++++++++++---- 1 file changed, 35 insertions(+), 9 deletions(-) diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index 48e82d56..07ab61be 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -279,17 +279,16 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou break; case ComponentLunatic.CHECKBOX_GROUP: JsonNode responses = primaryComponent.get("responses"); + List responsesName= new ArrayList<>(); + for (JsonNode response : responses){ + responsesName.add(getVariableName(response)); + } + String questionName = findLongestCommonPrefix(responsesName); for (JsonNode response : responses){ variableName = getVariableName(response); McqVariable mcqVariable = new McqVariable(variableName, group, VariableType.BOOLEAN); mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); mcqVariable.setInQuestionGrid(true); - //We retrieve question name from missing attribute - String questionNameWithMissing = primaryComponent.get(MISSING_RESPONSE).get("name").asText(); - String questionName = ""; - if (questionNameWithMissing.endsWith("_MISSING")) { - questionName = questionNameWithMissing.substring(0, questionNameWithMissing.length() - "_MISSING".length()); - } mcqVariable.setQuestionItemName(questionName); metadataModel.getVariables().putVariable(mcqVariable); variables.remove(variableName); @@ -307,7 +306,7 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou break; } //We also had the missing variable if it exists (only one missing variable even if multiple responses) - addMissingVariable(primaryComponent, group, variables, metadataModel, variableName); + addMissingVariable(primaryComponent, group, variables, metadataModel); } private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { @@ -325,11 +324,11 @@ private static void iterateOnTableBody(JsonNode primaryComponent, Group group, L } } - private static void addMissingVariable(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, String variableName) { + private static void addMissingVariable(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { if (primaryComponent.has(MISSING_RESPONSE)){ String missingVariable = primaryComponent.get(MISSING_RESPONSE).get("name").asText(); metadataModel.getVariables().putVariable(new Variable(missingVariable, group, VariableType.STRING)); - variables.remove(variableName); + variables.remove(missingVariable); } } @@ -370,4 +369,31 @@ public static String getQuestionnaireModelId(Path lunaticFile) { } } + public static String findLongestCommonPrefix(List strs) { + int minLength = strs.getFirst().length(); + for(String str : strs){ + if (str.length() Date: Wed, 10 Apr 2024 17:21:52 +0200 Subject: [PATCH 04/13] Add lunatic model version in metadata and read lunatic spec accordingly --- .../core/metadata/LunaticReader.java | 49 +++++++++++++++++-- .../core/metadata/MetadataModel.java | 5 ++ .../core/metadata/MetadataUtils.java | 2 + .../kraftwerk/core/metadata/SpecType.java | 6 +++ .../kraftwerk/core/utils/JsonFileReader.java | 20 -------- 5 files changed, 57 insertions(+), 25 deletions(-) create mode 100644 kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/SpecType.java diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index 07ab61be..bedf780e 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -4,6 +4,8 @@ import fr.insee.kraftwerk.core.Constants; import fr.insee.kraftwerk.core.metadata.CalculatedVariables.CalculatedVariable; import fr.insee.kraftwerk.core.utils.JsonFileReader; +import lombok.Getter; +import lombok.Setter; import lombok.extern.log4j.Log4j2; import java.io.IOException; @@ -25,6 +27,7 @@ public class LunaticReader { private static final String VALUE = "value"; private static final String LABEL = "label"; private static final String MISSING_RESPONSE = "missingResponse"; + private LunaticReader() { throw new IllegalStateException("Utility class"); } @@ -39,9 +42,8 @@ private LunaticReader() { public static CalculatedVariables getCalculatedFromLunatic(Path lunaticFile) { try { JsonNode rootNode = JsonFileReader.read(lunaticFile); - - String lunaticModelVersion = rootNode.get("lunaticModelVersion").toString(); - boolean isLunaticV2 = JsonFileReader.compareVersions(lunaticModelVersion.replace("\"", ""), "2.3.0") > 0; + String lunaticModelVersion = rootNode.get("lunaticModelVersion").asText(); + boolean isLunaticV2 = compareVersions(lunaticModelVersion, "2.3.0") > 0; CalculatedVariables calculatedVariables = new CalculatedVariables(); @@ -114,6 +116,17 @@ public static List getFilterResultFromLunatic(Path lunaticFile) { } } + public static String getLunaticModelVersion(Path lunaticFile){ + try { + JsonNode rootNode = JsonFileReader.read(lunaticFile); + return rootNode.get("lunaticModelVersion").toString(); + + } catch (IOException e) { + log.error(EXCEPTION_MESSAGE + lunaticFile); + return ""; + } + } + /** * This method extracts return the variables of a questionnaire without reading * a DDI file. It should be used only when the DDI is not available. @@ -130,6 +143,7 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { variablesNode.forEach(newVar -> variables.add(newVar.get("name").asText())); // Root group is created in VariablesMap constructor MetadataModel metadataModel = new MetadataModel(); + metadataModel.putSpecVersions(SpecType.LUNATIC,rootNode.get("lunaticModelVersion").asText()); Group rootGroup = metadataModel.getRootGroup(); iterateOnComponents(rootNode, variables, metadataModel, rootGroup); @@ -241,6 +255,7 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou //And we deduce the variable type by looking at the component that encapsulate the variable ComponentLunatic componentType = ComponentLunatic.fromJsonName(primaryComponent.get(COMPONENT_TYPE).asText()); String variableName=""; + boolean isLunaticV2 = compareVersions(metadataModel.getSpecVersions().get(SpecType.LUNATIC), "2.3.0") > 0; switch(componentType){ case ComponentLunatic.DATE_PICKER, ComponentLunatic.CHECKBOX_BOOLEAN, ComponentLunatic.INPUT, ComponentLunatic.TEXT_AREA, ComponentLunatic.SUGGESTER: variableName = getVariableName(primaryComponent); @@ -272,7 +287,11 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou UcqVariable ucqVarOne = new UcqVariable(variableName, group, VariableType.STRING); JsonNode modalitiesOne = primaryComponent.get("options"); for (JsonNode modality : modalitiesOne){ - ucqVarOne.addModality(modality.get(VALUE).asText(), modality.get(LABEL).get(VALUE).asText()); + if (isLunaticV2) { + ucqVarOne.addModality(modality.get(VALUE).asText(), modality.get(LABEL).get(VALUE).asText()); + continue; + } + ucqVarOne.addModality(modality.get(VALUE).asText(), modality.get(LABEL).asText()); } metadataModel.getVariables().putVariable(ucqVarOne); variables.remove(variableName); @@ -287,7 +306,8 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou for (JsonNode response : responses){ variableName = getVariableName(response); McqVariable mcqVariable = new McqVariable(variableName, group, VariableType.BOOLEAN); - mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); + if (isLunaticV2) mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); + if (!isLunaticV2) mcqVariable.setText(response.get(LABEL).asText()); mcqVariable.setInQuestionGrid(true); mcqVariable.setQuestionItemName(questionName); metadataModel.getVariables().putVariable(mcqVariable); @@ -396,4 +416,23 @@ public static String findLongestCommonPrefix(List strs) { return result; } + public static int compareVersions(String version1, String version2) { + int comparisonResult = 0; + + String[] version1Splits = version1.split("\\."); + String[] version2Splits = version2.split("\\."); + int maxLengthOfVersionSplits = Math.max(version1Splits.length, version2Splits.length); + + for (int i = 0; i < maxLengthOfVersionSplits; i++){ + Integer v1 = i < version1Splits.length ? Integer.parseInt(version1Splits[i]) : 0; + Integer v2 = i < version2Splits.length ? Integer.parseInt(version2Splits[i]) : 0; + int compare = v1.compareTo(v2); + if (compare != 0) { + comparisonResult = compare; + break; + } + } + return comparisonResult; + } + } diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataModel.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataModel.java index a8faa2ea..30934e96 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataModel.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataModel.java @@ -21,6 +21,8 @@ public class MetadataModel { private LinkedHashMap groups = new LinkedHashMap<>(); private List sequences = new ArrayList<>(); + + private HashMap specVersions = new HashMap<>(); /** The root group is created when creating a MetadataModel instance. */ @@ -82,6 +84,9 @@ public boolean hasGroup(String groupName) { return groups.containsKey(groupName); } + public void putSpecVersions(SpecType specType, String lunaticModelVersion) { + specVersions.put(specType, lunaticModelVersion); + } /** Return the fully qualified name of a variable, that is * - the name of the variable if it is in the root group. diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java index 4b579b59..9def414a 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/MetadataUtils.java @@ -32,6 +32,8 @@ private static void putToMetadataModels(String dataMode, ModeInputs modeInputs, } // Step 2 : we add the variables that are only present in the Lunatic file if (modeInputs.getLunaticFile() != null) { + // We read and store lunaticModelVersion + metadataModel.putSpecVersions(SpecType.LUNATIC,LunaticReader.getLunaticModelVersion(modeInputs.getLunaticFile())); // First we add the collected _MISSING variables List missingVars = LunaticReader.getMissingVariablesFromLunatic(modeInputs.getLunaticFile()); for (String missingVar : missingVars) { diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/SpecType.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/SpecType.java new file mode 100644 index 00000000..8bbfca97 --- /dev/null +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/SpecType.java @@ -0,0 +1,6 @@ +package fr.insee.kraftwerk.core.metadata; + +public enum SpecType { + + DDI,LUNATIC; +} diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/utils/JsonFileReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/utils/JsonFileReader.java index 0f24b466..684994a6 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/utils/JsonFileReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/utils/JsonFileReader.java @@ -24,24 +24,4 @@ public static JsonNode read(Path filePath) throws IOException { return mapper.readTree(filePath.toFile()); } - public static int compareVersions(String version1, String version2) { - int comparisonResult = 0; - - String[] version1Splits = version1.split("\\."); - String[] version2Splits = version2.split("\\."); - int maxLengthOfVersionSplits = Math.max(version1Splits.length, version2Splits.length); - - for (int i = 0; i < maxLengthOfVersionSplits; i++){ - Integer v1 = i < version1Splits.length ? Integer.parseInt(version1Splits[i]) : 0; - Integer v2 = i < version2Splits.length ? Integer.parseInt(version2Splits[i]) : 0; - int compare = v1.compareTo(v2); - if (compare != 0) { - comparisonResult = compare; - break; - } - } - return comparisonResult; - } - - } From 876427cce0a3de0cfbe5c1a2bcebe35b5a11c3c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 17 Apr 2024 14:51:48 +0200 Subject: [PATCH 05/13] Remove unused import --- .../main/java/fr/insee/kraftwerk/api/process/MainProcessing.java | 1 - 1 file changed, 1 deletion(-) diff --git a/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java b/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java index 67367534..a76f9807 100644 --- a/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java +++ b/kraftwerk-api/src/main/java/fr/insee/kraftwerk/api/process/MainProcessing.java @@ -7,7 +7,6 @@ import fr.insee.kraftwerk.core.inputs.UserInputsFile; import fr.insee.kraftwerk.core.metadata.MetadataModel; import fr.insee.kraftwerk.core.metadata.MetadataUtils; -import fr.insee.kraftwerk.core.metadata.UcqVariable; import fr.insee.kraftwerk.core.sequence.*; import fr.insee.kraftwerk.core.utils.TextFileWriter; import fr.insee.kraftwerk.core.utils.log.KraftwerkExecutionLog; From c5e7a5e46b7b2d974250892d1955c58b8a0baed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 17 Apr 2024 15:45:32 +0200 Subject: [PATCH 06/13] Initialize cucumber test for lunatic reader --- .../functional_tests/MainDefinitions.java | 52 +- .../do_we_get_metadata_correctly.feature | 31 + .../campaign.20240311153539.extract.xml | 13635 +++++ .../ddi-tic-2024-x04-tel.xml | 50275 ++++++++++++++++ .../in/SAMPLETEST-METADATA/kraftwerk.json | 26 + .../SAMPLETEST-METADATA/tic2024x04_tel.json | 12704 ++++ 6 files changed, 76713 insertions(+), 10 deletions(-) create mode 100644 kraftwerk-functional-tests/src/test/resources/features/do_we_get_metadata_correctly.feature create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/campaign.20240311153539.extract.xml create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/ddi-tic-2024-x04-tel.xml create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/kraftwerk.json create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/tic2024x04_tel.json diff --git a/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java b/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java index 76c20141..c86720ef 100644 --- a/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java +++ b/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java @@ -10,6 +10,7 @@ import fr.insee.kraftwerk.core.inputs.UserInputsFile; import fr.insee.kraftwerk.core.metadata.MetadataModel; import fr.insee.kraftwerk.core.metadata.MetadataUtils; +import fr.insee.kraftwerk.core.metadata.VariableType; import fr.insee.kraftwerk.core.outputs.OutputFiles; import fr.insee.kraftwerk.core.outputs.csv.CsvOutputFiles; import fr.insee.kraftwerk.core.sequence.*; @@ -18,6 +19,7 @@ import fr.insee.kraftwerk.core.vtl.VtlBindings; import fr.insee.kraftwerk.core.vtl.VtlExecute; import io.cucumber.java.Before; +import io.cucumber.java.en.And; import io.cucumber.java.en.Given; import io.cucumber.java.en.Then; import io.cucumber.java.en.When; @@ -44,7 +46,7 @@ public class MainDefinitions { static Path outDirectory = Paths.get(FUNCTIONAL_TESTS_OUTPUT_DIRECTORY); Path tempDirectory = Paths.get(FUNCTIONAL_TESTS_TEMP_DIRECTORY); String userInputFileName = Constants.USER_INPUT_FILE; - UserInputsFile userInputs; + UserInputsFile userInputsFile; String campaignName = ""; VtlBindings vtlBindings = new VtlBindings(); OutputFiles outputFiles; @@ -90,16 +92,32 @@ public void init_VTL_script(String vtlScriptName, String variableToCreate, Strin @When("Step 1 : We initialize the input files") public void initialize_input_files() throws KraftwerkException { System.out.println("InDirectory value : " + inDirectory); - userInputs = controlInputSequence.getUserInputs(inDirectory); + userInputsFile = controlInputSequence.getUserInputs(inDirectory); vtlBindings = new VtlBindings(); } @When("Step 1 : We initialize with input file {string}") public void initialize_with_specific_input(String inputFileName) throws KraftwerkException { - userInputs = new UserInputsFile(inDirectory.resolve(inputFileName), inDirectory); + userInputsFile = new UserInputsFile(inDirectory.resolve(inputFileName), inDirectory); vtlBindings = new VtlBindings(); } + @When("Step 1 : We initialize metadata model with lunatic specification only") + public void initialize_metadata_model_with_lunatic() throws KraftwerkException { + MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,false, "defaultDirectory"); + mp.init(); + userInputsFile=mp.getUserInputsFile(); + metadataModelMap=mp.getMetadataModels(); + } + + @When("Step 1 : We initialize metadata model with DDI specification only") + public void initialize_metadata_model_with_DDI() throws KraftwerkException { + MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,true, "defaultDirectory"); + mp.init(); + userInputsFile=mp.getUserInputsFile(); + metadataModelMap=mp.getMetadataModels(); + } + @When("Step 1 : We launch main service") public void launch_main() throws KraftwerkException { // We clean the output and the temp directory @@ -121,28 +139,28 @@ public void launch_main_filebyfile() throws KraftwerkException { @When("Step 2 : We get each unimodal dataset") public void unimodal_treatments() throws NullException { - metadataModelMap = MetadataUtils.getMetadata(userInputs.getModeInputsMap()); + metadataModelMap = MetadataUtils.getMetadata(userInputsFile.getModeInputsMap()); BuildBindingsSequence buildBindingsSequence = new BuildBindingsSequence(true); - for (String dataMode : userInputs.getModeInputsMap().keySet()) { + for (String dataMode : userInputsFile.getModeInputsMap().keySet()) { boolean withDDI = true; - buildBindingsSequence.buildVtlBindings(userInputs, dataMode, vtlBindings, metadataModelMap.get(dataMode), withDDI,null); + buildBindingsSequence.buildVtlBindings(userInputsFile, dataMode, vtlBindings, metadataModelMap.get(dataMode), withDDI,null); UnimodalSequence unimodal = new UnimodalSequence(); - unimodal.applyUnimodalSequence(userInputs, dataMode, vtlBindings, errors, metadataModelMap); + unimodal.applyUnimodalSequence(userInputsFile, dataMode, vtlBindings, errors, metadataModelMap); } } @When("Step 3 : We aggregate each unimodal dataset into a multimodal dataset") public void aggregate_datasets() { MultimodalSequence multimodalSequence = new MultimodalSequence(); - multimodalSequence.multimodalProcessing(userInputs, vtlBindings, errors, metadataModelMap); + multimodalSequence.multimodalProcessing(userInputsFile, vtlBindings, errors, metadataModelMap); } @When("Step 4 : We export the final version") public void export_results() throws KraftwerkException { WriterSequence writerSequence = new WriterSequence(); - writerSequence.writeOutputFiles(inDirectory, vtlBindings, userInputs.getModeInputsMap(), metadataModelMap, errors); + writerSequence.writeOutputFiles(inDirectory, vtlBindings, userInputsFile.getModeInputsMap(), metadataModelMap, errors); writeErrorsFile(inDirectory, errors); - outputFiles = new CsvOutputFiles(outDirectory, vtlBindings, userInputs.getModes()); + outputFiles = new CsvOutputFiles(outDirectory, vtlBindings, userInputsFile.getModes()); } @Then("Step 5 : We check if we have {int} lines") @@ -292,4 +310,18 @@ public void clean_vtl(String vtlScriptName) throws IOException { Files.deleteIfExists(bkpPath); } + + @Then("We should have a metadata model with {int} variables") + public void check_variables_count(int nbVariablesExpected) throws IOException, CsvValidationException { + String mode = userInputsFile.getModes().getFirst(); + int nbVariables = metadataModelMap.get(mode).getVariables().getVariables().size(); + assertThat(nbVariables).isEqualTo(nbVariablesExpected); + } + + @And("We should have {int} of type STRING") + public void check_string_variables_count(int nbStringVariablesExpected) throws IOException, CsvValidationException { + String mode = userInputsFile.getModes().getFirst(); + int nbStringVariables = metadataModelMap.get(mode).getVariables().getVariables().values().stream().filter(v -> v.getType()== VariableType.STRING).toArray().length; + assertThat(nbStringVariables).isEqualTo(nbStringVariablesExpected); + } } \ No newline at end of file diff --git a/kraftwerk-functional-tests/src/test/resources/features/do_we_get_metadata_correctly.feature b/kraftwerk-functional-tests/src/test/resources/features/do_we_get_metadata_correctly.feature new file mode 100644 index 00000000..1279059a --- /dev/null +++ b/kraftwerk-functional-tests/src/test/resources/features/do_we_get_metadata_correctly.feature @@ -0,0 +1,31 @@ +Feature: Do we retrieve correctly all metadata from specifications ? + + Scenario Outline: Does the metadata model is correct with Lunatic? + Given Step 0 : We have some survey in directory "" + When Step 1 : We initialize metadata model with lunatic specification only + Then We should have a metadata model with variables + And We should have of type STRING + + Examples: + # Parameters : + # - Directory : Directory of test campaigns + # - NumberOfVariables : Expected number of variables identified in Lunatic Json File + # - NumberOfStringVariables : Expected number of variables of String Type + + |Directory |NumberOfVariables | NumberOfStringVariables | + |SAMPLETEST-METADATA |370 | 174 | + + Scenario Outline: Does the metadata model is correct with DDI? + Given Step 0 : We have some survey in directory "" + When Step 1 : We initialize metadata model with DDI specification only + Then We should have a metadata model with variables + And We should have of type STRING + + Examples: + # Parameters : + # - Directory : Directory of test campaigns + # - NumberOfVariables : Expected number of variables identified in Lunatic Json File + # - NumberOfStringVariables : Expected number of variables of String Type + + |Directory |NumberOfVariables | NumberOfStringVariables | + |SAMPLETEST-METADATA |370 | 163 | \ No newline at end of file diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/campaign.20240311153539.extract.xml b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/campaign.20240311153539.extract.xml new file mode 100644 index 00000000..41d5764e --- /dev/null +++ b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/campaign.20240311153539.extract.xml @@ -0,0 +1,13635 @@ + + + TIC2024X04 + + + 1708326180000 + 1709323200000 + + + + + TICA40001 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 1 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210987 + fiscal + true + + + + + + + NVA + 1709545445163 + + + VIC + 1708441347069 + + + PRC + 1708441353719 + + + INS + 1708452844689 + + + NVM + 1708350488328 + + + ANV + 1708350531157 + + + VIN + 1708350531430 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40002 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 2 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210987 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + FIN + 1708682289917 + + + VIC + 1708441347069 + + + PRC + 1708507467806 + + + INS + 1708507485563 + + + WFT + 1708507771078 + + + AOC + 1708507779843 + + + APS + 1708507779844 + + + WFT + 1708507779845 + + + APS + 1708507783962 + + + WFT + 1708507783963 + + + WFS + 1708507788835 + + + TBR + 1708507791342 + + + NVA + 1709545445163 + + + NVM + 1708350488358 + + + ANV + 1708350531169 + + + VIN + 1708350531431 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708507782576 + 1 + + + + INA + TEL + 1708507771700 + + + + + TICA40003 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 3 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210987 + fiscal + true + + + + + + + PRC + 1709034938434 + + + INS + 1709034948893 + + + WFT + 1709035187798 + + + AOC + 1709035197934 + + + APS + 1709035197935 + + + WFT + 1709035197936 + + + APS + 1709035202069 + + + WFT + 1709035202070 + + + WFS + 1709035204635 + + + TBR + 1709035208286 + + + VIC + 1708441347069 + + + NVA + 1709545445162 + + + NVM + 1708350488403 + + + ANV + 1708350531170 + + + VIN + 1708350531431 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1709035201012 + 1 + + + + INA + TEL + 1709035188730 + + + + + TICA40004 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 4 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0383210987 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445161 + + + VIC + 1708441347070 + + + NVM + 1708350488433 + + + ANV + 1708350531172 + + + VIN + 1708350531432 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40005 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 5 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210987 + fiscal + true + + + + + + + NVA + 1709545445160 + + + VIC + 1708441347070 + + + NVM + 1708350488461 + + + ANV + 1708350531173 + + + VIN + 1708350531432 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40006 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 6 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210987 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445159 + + + VIC + 1708441347070 + + + NVM + 1708350488491 + + + ANV + 1708350531175 + + + VIN + 1708350531432 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40007 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 7 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210987 + fiscal + true + + + + + + + NVA + 1709545445158 + + + VIC + 1708441347070 + + + NVM + 1708350488516 + + + ANV + 1708350531176 + + + VIN + 1708350531433 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40008 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 8 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210987 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445157 + + + VIC + 1708441347070 + + + NVM + 1708350488545 + + + ANV + 1708350531178 + + + VIN + 1708350531433 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40009 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 9 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0383210987 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445157 + + + VIC + 1708441347070 + + + NVM + 1708350488567 + + + ANV + 1708350531179 + + + VIN + 1708350531434 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40010 + SQPOCK + OU-TEST1 + true + + Mme Berthe MORISOT + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 10 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + Miss + Berthe + MORISOT + maxime.wulveryck@insee.fr + false + true + 01/01/2001 + + + 0383210987 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445156 + + + VIC + 1708441347070 + + + NVM + 1708350488589 + + + ANV + 1708350531180 + + + VIN + 1708350531434 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40011 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 11 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + + + + + VIC + 1708441347071 + + + NVA + 1709545445155 + + + NVM + 1708350488608 + + + ANV + 1708350531184 + + + VIN + 1708350531434 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40012 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 12 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445154 + + + VIC + 1708441347071 + + + NVM + 1708350488627 + + + ANV + 1708350531186 + + + VIN + 1708350531435 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40013 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 13 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + + + + + NVA + 1709545445153 + + + VIC + 1708441347071 + + + NVM + 1708350488648 + + + ANV + 1708350531187 + + + VIN + 1708350531435 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40014 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 14 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 707090102 + interviewer + false + + + 0383918530 + fiscal + true + + + 622954631 + directory + false + + + + + + + NVA + 1709545445152 + + + VIC + 1708441347071 + + + NVM + 1708350488668 + + + ANV + 1708350531188 + + + VIN + 1708350531435 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40015 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 15 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445151 + + + VIC + 1708441347071 + + + NVM + 1708350488687 + + + ANV + 1708350531191 + + + VIN + 1708350531436 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40016 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 16 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + + + NVA + 1709545445150 + + + VIC + 1708441347071 + + + NVM + 1708350488717 + + + ANV + 1708350531192 + + + VIN + 1708350531436 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40017 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 17 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + + + NVA + 1709545445150 + + + VIC + 1708441347071 + + + NVM + 1708350488742 + + + ANV + 1708350531193 + + + VIN + 1708350531436 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40018 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 18 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + + + NVA + 1709545445149 + + + VIC + 1708441347071 + + + NVM + 1708350488769 + + + ANV + 1708350531194 + + + VIN + 1708350531437 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40019 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 19 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + + + NVA + 1709545445148 + + + VIC + 1708441347071 + + + NVM + 1708350488797 + + + ANV + 1708350531194 + + + VIN + 1708350531437 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40020 + SQPOCK + OU-TEST1 + true + + Mme Morgane Glotain + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 20 + 41 + 1 + 0 + 0 + + 0 + + + + Miss + Morgane + Glotain + morgane.glotain@insee.fr + true + true + 01/01/2000 + + + 0383918530 + fiscal + true + + + + + + + VIC + 1708441347071 + + + NVA + 1709545445147 + + + NVM + 1708350488825 + + + ANV + 1708350531195 + + + VIN + 1708350531437 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40021 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + + 15 rue du Général Hulot + + 54042 Nancy + + + + + false + false + + + 0 + 0 + 0 + 1 + 21 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0673294012 + directory + false + + + 0383210988 + fiscal + true + + + + + + + VIC + 1708509908830 + + + PRC + 1708509927860 + + + AOC + 1708510030283 + + + APS + 1708510030284 + + + INS + 1708510824599 + + + INS + 1708683204899 + + + WFT + 1708683552090 + + + WFS + 1708683560710 + + + TBR + 1708683571614 + + + FIN + 1708683655751 + + + NVA + 1709545445146 + + + NVM + 1708350488860 + + + ANV + 1708350531197 + + + VIN + 1708350531437 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + INA + 1708510041547 + 1 + + + + APT + TEL + 1708596300000 + + + + + TICA40022 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 22 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0673294012 + directory + false + + + 0383210988 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708509908830 + + + PRC + 1708683154873 + + + NVA + 1709545445145 + + + NVM + 1708350488880 + + + ANV + 1708350531198 + + + VIN + 1708350531438 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40023 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + + 15 rue du Général Hulot + + 54042 Nancy + + + + + false + false + + + 0 + 0 + 0 + 1 + 23 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210988 + fiscal + true + + + 0673294012 + directory + false + + + + + + + VIC + 1708509908830 + + + PRC + 1708683160200 + + + AOC + 1708683180866 + + + APS + 1708683180867 + + + NVA + 1709545445144 + + + NVM + 1708350488904 + + + ANV + 1708350531199 + + + VIN + 1708350531438 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + INA + 1708683184372 + 1 + + + + INA + TEL + 1708769520000 + + + + + TICA40024 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 24 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0383210988 + fiscal + true + + + 0673294012 + directory + false + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708509908830 + + + NVA + 1709545445143 + + + NVM + 1708350488928 + + + ANV + 1708350531200 + + + VIN + 1708350531438 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40025 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 25 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0673294012 + directory + false + + + 0708010203 + interviewer + false + + + 0383210988 + fiscal + true + + + + + + + VIC + 1708509908830 + + + NVA + 1709545445142 + + + NVM + 1708350488948 + + + ANV + 1708350531201 + + + VIN + 1708350531439 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40026 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 26 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0383210988 + fiscal + true + + + 0708010203 + interviewer + false + + + 0673294012 + directory + false + + + + + + + VIC + 1708509908830 + + + NVA + 1709545445141 + + + NVM + 1708350488968 + + + ANV + 1708350531203 + + + VIN + 1708350531439 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40027 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 27 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0673294012 + directory + false + + + 0708010203 + interviewer + false + + + 0383210988 + fiscal + true + + + + + + + VIC + 1708509908830 + + + NVA + 1709545445141 + + + NVM + 1708350488990 + + + ANV + 1708350531204 + + + VIN + 1708350531440 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40028 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 28 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0383210988 + fiscal + true + + + 0673294012 + directory + false + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708509908830 + + + NVA + 1709545445140 + + + NVM + 1708350489010 + + + ANV + 1708350531205 + + + VIN + 1708350531440 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40029 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 29 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0673294012 + directory + false + + + 0708010203 + interviewer + false + + + 0383210988 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445139 + + + NVM + 1708350489029 + + + ANV + 1708350531206 + + + VIN + 1708350531440 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40030 + MJIZRN + OU-TEST1 + true + + Mme Nadia BONET + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 30 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + Miss + Nadia + BONET + morgane.glotain@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0673294012 + directory + false + + + 0383210988 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445138 + + + NVM + 1708350489048 + + + ANV + 1708350531207 + + + VIN + 1708350531440 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40031 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 31 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445137 + + + NVM + 1708350489075 + + + ANV + 1708350531209 + + + VIN + 1708350531441 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40032 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 32 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 622954631 + directory + false + + + 0383918720 + fiscal + true + + + 707090102 + interviewer + false + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445136 + + + NVM + 1708350489093 + + + ANV + 1708350531211 + + + VIN + 1708350531441 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40033 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 33 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 707090102 + interviewer + false + + + 0383918720 + fiscal + true + + + 622954631 + directory + false + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445135 + + + NVM + 1708350489111 + + + ANV + 1708350531213 + + + VIN + 1708350531441 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40034 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 34 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 707090102 + interviewer + false + + + 0383918720 + fiscal + true + + + 622954631 + directory + false + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445134 + + + NVM + 1708350489142 + + + ANV + 1708350531213 + + + VIN + 1708350531442 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40035 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 35 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445134 + + + NVM + 1708350489160 + + + ANV + 1708350531215 + + + VIN + 1708350531442 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40036 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 36 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445133 + + + NVM + 1708350489177 + + + ANV + 1708350531216 + + + VIN + 1708350531442 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40037 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 37 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445132 + + + NVM + 1708350489202 + + + ANV + 1708350531220 + + + VIN + 1708350531443 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40038 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 38 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908831 + + + NVA + 1709545445131 + + + NVM + 1708350489220 + + + ANV + 1708350531221 + + + VIN + 1708350531443 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40039 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 39 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908833 + + + NVA + 1709545445130 + + + NVM + 1708350489236 + + + ANV + 1708350531222 + + + VIN + 1708350531443 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40040 + MJIZRN + OU-TEST1 + true + + M. Maxime Wulveryck + CS 54229 + 15 rue du Général Hulot + + 54042 Nancy + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 40 + 41 + 1 + 0 + 0 + + 0 + + + + Mister + Maxime + Wulveryck + maxime.wulveryck@insee.fr + true + true + 01/01/1980 + + + 0383918720 + fiscal + true + + + + + + + VIC + 1708509908833 + + + NVA + 1709545445129 + + + NVM + 1708350489251 + + + ANV + 1708350531222 + + + VIN + 1708350531444 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40041 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 41 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445128 + + + NVM + 1708350489272 + + + ANV + 1708350531226 + + + VIN + 1708350531444 + + + + + + + TICA40042 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 42 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445127 + + + NVM + 1708350489291 + + + ANV + 1708350531227 + + + VIN + 1708350531445 + + + + + + + TICA40043 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 43 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445126 + + + NVM + 1708350489312 + + + ANV + 1708350531228 + + + VIN + 1708350531445 + + + + + + + TICA40044 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 44 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445125 + + + NVM + 1708350489338 + + + ANV + 1708350531229 + + + VIN + 1708350531446 + + + + + + + TICA40045 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 45 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445124 + + + NVM + 1708350489358 + + + ANV + 1708350531231 + + + VIN + 1708350531446 + + + + + + + TICA40046 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 46 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445124 + + + NVM + 1708350489378 + + + ANV + 1708350531233 + + + VIN + 1708350531446 + + + + + + + TICA40047 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 47 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445123 + + + NVM + 1708350489419 + + + ANV + 1708350531236 + + + VIN + 1708350531447 + + + + + + + TICA40048 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 48 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445122 + + + NVM + 1708350489439 + + + ANV + 1708350531238 + + + VIN + 1708350531447 + + + + + + + TICA40049 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 49 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445121 + + + NVM + 1708350489459 + + + ANV + 1708350531239 + + + VIN + 1708350531447 + + + + + + + TICA40050 + F1RIJ0 + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 50 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + Miss + Berthe + MORISOT + valentin.guilloton@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445120 + + + NVM + 1708350489478 + + + ANV + 1708350531240 + + + VIN + 1708350531448 + + + + + + + TICA40051 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 51 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445119 + + + NVM + 1708350489494 + + + ANV + 1708350531242 + + + VIN + 1708350531448 + + + + + + + TICA40052 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 52 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445118 + + + NVM + 1708350489511 + + + ANV + 1708350531244 + + + VIN + 1708350531448 + + + + + + + TICA40053 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 53 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445118 + + + NVM + 1708350489529 + + + ANV + 1708350531250 + + + VIN + 1708350531449 + + + + + + + TICA40054 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 54 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445117 + + + NVM + 1708350489546 + + + ANV + 1708350531251 + + + VIN + 1708350531449 + + + + + + + TICA40055 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 55 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445116 + + + NVM + 1708350489563 + + + ANV + 1708350531254 + + + VIN + 1708350531450 + + + + + + + TICA40056 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 56 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + + + NVA + 1709545445115 + + + NVM + 1708350489578 + + + ANV + 1708350531255 + + + VIN + 1708350531450 + + + + + + + TICA40057 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 57 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + + + NVA + 1709545445114 + + + NVM + 1708350489593 + + + ANV + 1708350531256 + + + VIN + 1708350531450 + + + + + + + TICA40058 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 58 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + + + NVA + 1709545445113 + + + NVM + 1708350489607 + + + ANV + 1708350531258 + + + VIN + 1708350531451 + + + + + + + TICA40059 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 59 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + + + NVA + 1709545445112 + + + NVM + 1708350489621 + + + ANV + 1708350531259 + + + VIN + 1708350531451 + + + + + + + TICA40060 + F1RIJ0 + OU-TEST1 + true + + Mme Léa Mauro + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 60 + 11 + 1 + 0 + 0 + + 0 + + + + Miss + Léa + Mauro + lea.mauro@insee.fr + true + true + 01/06/1990 + + + 0187696383 + fiscal + true + + + + + + + NVA + 1709545445111 + + + NVM + 1708350489637 + + + ANV + 1708350531260 + + + VIN + 1708350531451 + + + + + + + TICA40061 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 61 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + FIN + 1708682294990 + + + NVA + 1709545445110 + + + NVM + 1708350489656 + + + ANV + 1708350531260 + + + VIN + 1708350531452 + + + VIC + 1708419751689 + + + PRC + 1708419759201 + + + AOC + 1708419770321 + + + APS + 1708419770322 + + + INS + 1708419786933 + + + WFT + 1708420498210 + + + WFS + 1708420503620 + + + TBR + 1708420911840 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708419772719 + 1 + + + + INA + TEL + 1708419750630 + + + + + TICA40062 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 62 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + FIN + 1708682295001 + + + NVA + 1709545445110 + + + NVM + 1708350489675 + + + ANV + 1708350531261 + + + VIN + 1708350531452 + + + VIC + 1708419751690 + + + PRC + 1708420509875 + + + AOC + 1708420527547 + + + APS + 1708420527548 + + + INS + 1708420541612 + + + WFT + 1708420904238 + + + WFS + 1708420909944 + + + TBR + 1708420911848 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + INA + 1708420529859 + 1 + + + + INA + TEL + 1708420499113 + + + + + TICA40063 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 63 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + PRC + 1708675472570 + + + INS + 1708675505600 + + + AOC + 1708954954800 + + + APS + 1708954954801 + + + INS + 1708954954802 + + + APS + 1708954958698 + + + INS + 1708954958699 + + + INS + 1708954968867 + + + WFT + 1708955129074 + + + WFS + 1708955308935 + + + TBR + 1708955314617 + + + NVA + 1709545445109 + + + NVM + 1708350489694 + + + ANV + 1708350531262 + + + VIN + 1708350531452 + + + VIC + 1708419751690 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708954957494 + 1 + + + + INA + TEL + 1708954940188 + + + + + TICA40064 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 64 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + PRC + 1708955137412 + + + AOC + 1708955144423 + + + APS + 1708955144424 + + + INS + 1708955171832 + + + WFT + 1708955296472 + + + WFS + 1708955299992 + + + TBR + 1708955314619 + + + NVA + 1709545445108 + + + NVM + 1708350489714 + + + ANV + 1708350531265 + + + VIN + 1708350531453 + + + VIC + 1708419751690 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708955146654 + 1 + + + + INA + TEL + 1708955129672 + + + + + TICA40065 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 65 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445107 + + + NVM + 1708350489735 + + + ANV + 1708350531265 + + + VIN + 1708350531453 + + + VIC + 1708419751690 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40066 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 66 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445106 + + + NVM + 1708350489755 + + + ANV + 1708350531266 + + + VIN + 1708350531453 + + + VIC + 1708419751691 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40067 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 67 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + NVA + 1709545445105 + + + NVM + 1708350489775 + + + ANV + 1708350531267 + + + VIN + 1708350531454 + + + VIC + 1708419751691 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40068 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 68 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445104 + + + NVM + 1708350489796 + + + ANV + 1708350531268 + + + VIN + 1708350531454 + + + VIC + 1708419751692 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40069 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 69 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445103 + + + NVM + 1708350489816 + + + ANV + 1708350531268 + + + VIN + 1708350531455 + + + VIC + 1708419751693 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40070 + OLNBZU + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 70 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + Miss + Nadia + BONET + lea.mauro@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445103 + + + NVM + 1708350489835 + + + ANV + 1708350531269 + + + VIN + 1708350531455 + + + VIC + 1708419751693 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40071 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 71 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445102 + + + NVM + 1708350489851 + + + ANV + 1708350531270 + + + VIN + 1708350531455 + + + VIC + 1708419751693 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40072 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 72 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445101 + + + NVM + 1708350489868 + + + ANV + 1708350531271 + + + VIN + 1708350531455 + + + VIC + 1708419751693 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40073 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 73 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + + + + + NVA + 1709545445100 + + + NVM + 1708350489884 + + + ANV + 1708350531271 + + + VIN + 1708350531456 + + + VIC + 1708419751694 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40074 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 74 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445099 + + + NVM + 1708350489900 + + + ANV + 1708350531272 + + + VIN + 1708350531456 + + + VIC + 1708419751694 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40075 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 75 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445098 + + + NVM + 1708350489916 + + + ANV + 1708350531273 + + + VIN + 1708350531456 + + + VIC + 1708419751694 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40076 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 76 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445097 + + + NVM + 1708350489931 + + + ANV + 1708350531273 + + + VIN + 1708350531457 + + + VIC + 1708419751695 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40077 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 77 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445096 + + + NVM + 1708350489945 + + + ANV + 1708350531274 + + + VIN + 1708350531457 + + + VIC + 1708419751695 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40078 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 78 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445095 + + + NVM + 1708350489958 + + + ANV + 1708350531275 + + + VIN + 1708350531457 + + + VIC + 1708419751695 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40079 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 79 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445094 + + + NVM + 1708350489972 + + + ANV + 1708350531275 + + + VIN + 1708350531458 + + + VIC + 1708419751695 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40080 + OLNBZU + OU-TEST1 + true + + M. Valentin Guilloton + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 80 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Valentin + Guilloton + valentin.guilloton@insee.fr + true + true + 26/05/1993 + + + 0187696388 + fiscal + true + + + + + + + NVA + 1709545445093 + + + NVM + 1708350489986 + + + ANV + 1708350531276 + + + VIN + 1708350531458 + + + VIC + 1708419751695 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40081 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + + 116 avenue Verdier + + 92541 Montrouge + + + + + false + false + + + 0 + 0 + 0 + 1 + 81 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + NVA + 1709545445092 + + + VIC + 1708417615144 + + + PRC + 1708417651996 + + + NVM + 1708350490005 + + + ANV + 1708350531277 + + + VIN + 1708350531458 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40082 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 82 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445091 + + + VIC + 1708417615145 + + + NVM + 1708350490024 + + + ANV + 1708350531277 + + + VIN + 1708350531459 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40083 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 83 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445090 + + + VIC + 1708417615145 + + + NVM + 1708350490042 + + + ANV + 1708350531278 + + + VIN + 1708350531459 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40084 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + + 116 avenue Verdier + + 92541 Montrouge + + + + + false + false + + + 0 + 0 + 0 + 1 + 84 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + NVA + 1709545445089 + + + VIC + 1708417615145 + + + PRC + 1708419876506 + + + NVM + 1708350490061 + + + ANV + 1708350531279 + + + VIN + 1708350531460 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40085 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + + 116 avenue Verdier + + 92541 Montrouge + + + + + false + false + + + 0 + 0 + 0 + 1 + 85 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + FIN + 1708682295005 + + + NVA + 1709545445088 + + + VIC + 1708417615145 + + + NVM + 1708350490081 + + + PRC + 1708419145524 + + + AOC + 1708419166669 + + + APS + 1708419166670 + + + INS + 1708419177586 + + + WFT + 1708419642776 + + + APS + 1708419655987 + + + WFT + 1708419655988 + + + WFS + 1708419660209 + + + TBR + 1708419668625 + + + ANV + 1708350531280 + + + VIN + 1708350531460 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708419650814 + 1 + + + + INA + TEL + 1708419016945 + + + + + TICA40086 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 86 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445087 + + + VIC + 1708417615145 + + + NVM + 1708350490098 + + + ANV + 1708350531281 + + + VIN + 1708350531460 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40087 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 87 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445086 + + + VIC + 1708417615145 + + + NVM + 1708350490118 + + + ANV + 1708350531282 + + + VIN + 1708350531461 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40088 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 88 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445085 + + + VIC + 1708417615145 + + + NVM + 1708350490137 + + + ANV + 1708350531282 + + + VIN + 1708350531461 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40089 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 89 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445084 + + + VIC + 1708417615145 + + + NVM + 1708350490157 + + + ANV + 1708350531283 + + + VIN + 1708350531461 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40090 + AULZHA + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + + 116 avenue Verdier + + 92541 Montrouge + + + + + false + false + + + 0 + 0 + 0 + 1 + 90 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + FIN + 1708682294942 + + + NVA + 1709545445083 + + + VIC + 1708417615145 + + + PRC + 1708418266427 + + + AOC + 1708418289984 + + + APS + 1708418289985 + + + INS + 1708418304871 + + + WFT + 1708418760898 + + + APS + 1708418974276 + + + WFT + 1708418974277 + + + WFS + 1708418979706 + + + TBR + 1708419005366 + + + NVM + 1708350490176 + + + ANV + 1708350531284 + + + VIN + 1708350531461 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + INA + 1708418971485 + 1 + + + + INA + TEL + 1708417614351 + + + + + TICA40091 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 91 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445082 + + + VIC + 1708417615145 + + + NVM + 1708350490191 + + + ANV + 1708350531285 + + + VIN + 1708350531462 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40092 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 92 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445082 + + + VIC + 1708417615145 + + + NVM + 1708350490207 + + + ANV + 1708350531286 + + + VIN + 1708350531462 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40093 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 93 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 622954631 + directory + false + + + 0187696390 + fiscal + true + + + 707090102 + interviewer + false + + + + + + + FIN + 1708682295003 + + + NVA + 1709545445081 + + + VIC + 1708417615145 + + + NVM + 1708350490223 + + + ANV + 1708350531286 + + + VIN + 1708350531462 + + + PRC + 1708419925482 + + + AOC + 1708419937585 + + + APS + 1708419937586 + + + INS + 1708419947711 + + + WFT + 1708420386157 + + + APS + 1708420399993 + + + WFT + 1708420399994 + + + WFS + 1708420402551 + + + TBR + 1708420408328 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708420398660 + 1 + + + + INA + TEL + 1708419898096 + + + + + TICA40094 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 94 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445080 + + + VIC + 1708417615145 + + + NVM + 1708350490241 + + + ANV + 1708350531287 + + + VIN + 1708350531463 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40095 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 95 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 707090102 + interviewer + false + + + 0187696390 + fiscal + true + + + 622954631 + directory + false + + + + + + + NVA + 1709545445079 + + + VIC + 1708417615145 + + + NVM + 1708350490256 + + + ANV + 1708350531288 + + + VIN + 1708350531463 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40096 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 96 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + + + NVA + 1709545445078 + + + VIC + 1708417615146 + + + NVM + 1708350490270 + + + ANV + 1708350531289 + + + VIN + 1708350531463 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40097 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 97 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + + + NVA + 1709545445077 + + + VIC + 1708417615146 + + + NVM + 1708350490284 + + + ANV + 1708350531290 + + + VIN + 1708350531464 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40098 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 98 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + + + NVA + 1709545445076 + + + VIC + 1708417615146 + + + NVM + 1708350490298 + + + ANV + 1708350531290 + + + VIN + 1708350531464 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40099 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 99 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + + + NVA + 1709545445075 + + + VIC + 1708417615146 + + + NVM + 1708350490312 + + + ANV + 1708350531291 + + + VIN + 1708350531464 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40100 + AULZHA + OU-TEST1 + true + + M. Charles Battesti + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 100 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + + + NVA + 1709545445074 + + + VIC + 1708417615146 + + + NVM + 1708350490326 + + + ANV + 1708350531292 + + + VIN + 1708350531464 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40101 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 101 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Charles + Battesti + charles.battesti@insee.fr + true + true + 09/11/1989 + + + 0187696390 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + VIC + 1708415490494 + + + NVA + 1709545445073 + + + NVM + 1708350490344 + + + ANV + 1708350531293 + + + VIN + 1708350531465 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40102 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 102 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + PRC + 1708594703436 + + + AOC + 1708594737871 + + + APS + 1708594737872 + + + INS + 1708594762170 + + + WFT + 1708595579123 + + + WFS + 1708595583407 + + + TBR + 1708595585754 + + + FIN + 1708682294962 + + + VIC + 1708415490494 + + + NVA + 1709545445072 + + + NVM + 1708350490361 + + + ANV + 1708350531293 + + + VIN + 1708350531465 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + INA + 1708594744134 + 1 + + + + INA + TEL + 1708593674956 + + + + + TICA40103 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 103 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708415490494 + + + NVA + 1709545445071 + + + NVM + 1708350490380 + + + ANV + 1708350531294 + + + VIN + 1708350531465 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40104 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 104 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + VIC + 1708415490494 + + + NVA + 1709545445071 + + + NVM + 1708350490423 + + + ANV + 1708350531295 + + + VIN + 1708350531466 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40105 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 105 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445070 + + + VIC + 1708415490494 + + + NVM + 1708350490441 + + + ANV + 1708350531295 + + + VIN + 1708350531466 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40106 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 106 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + + + + + VIC + 1708415490495 + + + NVA + 1709545445068 + + + NVM + 1708350490459 + + + ANV + 1708350531296 + + + VIN + 1708350531466 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40107 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 107 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708415490495 + + + NVA + 1709545445068 + + + NVM + 1708350490483 + + + ANV + 1708350531297 + + + VIN + 1708350531466 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40108 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 108 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445067 + + + VIC + 1708415490495 + + + NVM + 1708350490502 + + + ANV + 1708350531297 + + + VIN + 1708350531467 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40109 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 109 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + VIC + 1708415490495 + + + NVA + 1709545445066 + + + NVM + 1708350490521 + + + ANV + 1708350531298 + + + VIN + 1708350531467 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40110 + NDNP9O + OU-TEST1 + true + + Mme Berthe MORISOT + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 110 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + Miss + Berthe + MORISOT + laurence.huyghe@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + VIC + 1708415490495 + + + NVA + 1709545445065 + + + NVM + 1708350490539 + + + ANV + 1708350531299 + + + VIN + 1708350531467 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40111 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 111 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + VIC + 1708415490495 + + + NVA + 1709545445064 + + + NVM + 1708350490555 + + + ANV + 1708350531300 + + + VIN + 1708350531468 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40112 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 112 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + 0187696387 + fiscal + true + + + + + + + NVA + 1709545445063 + + + VIC + 1708415490496 + + + NVM + 1708350490571 + + + ANV + 1708350531300 + + + VIN + 1708350531468 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40113 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 113 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 622954631 + directory + false + + + 0187696387 + fiscal + true + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445062 + + + VIC + 1708415490496 + + + NVM + 1708350490586 + + + ANV + 1708350531301 + + + VIN + 1708350531468 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40114 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 114 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 707090102 + interviewer + false + + + 622954631 + directory + false + + + 0187696387 + fiscal + true + + + + + + + NVA + 1709545445061 + + + VIC + 1708415490496 + + + NVM + 1708350490602 + + + ANV + 1708350531302 + + + VIN + 1708350531469 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40115 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 115 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + 0187696387 + fiscal + true + + + + + + + VIC + 1708415490496 + + + NVA + 1709545445060 + + + NVM + 1708350490617 + + + ANV + 1708350531302 + + + VIN + 1708350531469 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40116 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 116 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + + + VIC + 1708415490496 + + + NVA + 1709545445059 + + + NVM + 1708350490632 + + + ANV + 1708350531303 + + + VIN + 1708350531469 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40117 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 117 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + + + VIC + 1708415490496 + + + NVA + 1709545445058 + + + NVM + 1708350490646 + + + ANV + 1708350531304 + + + VIN + 1708350531470 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40118 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 118 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + + + NVA + 1709545445057 + + + VIC + 1708415490496 + + + NVM + 1708350490661 + + + ANV + 1708350531305 + + + VIN + 1708350531470 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40119 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 119 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + + + VIC + 1708415490497 + + + NVA + 1709545445056 + + + NVM + 1708350490674 + + + ANV + 1708350531305 + + + VIN + 1708350531470 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40120 + NDNP9O + OU-TEST1 + true + + M. Philippe Martin + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 120 + 11 + 1 + 0 + 0 + + 0 + + + + Mister + Philippe + Martin + philippe.martin@insee.fr + true + true + 09/11/1989 + + + 0187696387 + fiscal + true + + + + + + + NVA + 1709545445055 + + + VIC + 1708415490497 + + + NVM + 1708350490690 + + + ANV + 1708350531306 + + + VIN + 1708350531471 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40121 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 121 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + FIN + 1708682071845 + + + NVA + 1709545445054 + + + NVM + 1708350490708 + + + ANV + 1708350531307 + + + VIN + 1708350531471 + + + VIC + 1708350601378 + + + PRC + 1708357446997 + + + INS + 1708357456932 + + + WFT + 1708358110230 + + + AOC + 1708358136988 + + + APS + 1708358136989 + + + WFT + 1708358136990 + + + APS + 1708358148232 + + + WFT + 1708358148233 + + + WFS + 1708358149967 + + + TBR + 1708358151447 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + INA + 1708358146923 + 1 + + + + INA + TEL + 1708358100000 + + + + + TICA40122 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 122 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445053 + + + NVM + 1708350490725 + + + ANV + 1708350531307 + + + VIN + 1708350531471 + + + VIC + 1708350601378 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40123 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 123 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445052 + + + NVM + 1708350490743 + + + ANV + 1708350531308 + + + VIN + 1708350531472 + + + VIC + 1708350601379 + + + + + INTERVIEWER + + + + MANAGEMENT + + + + + + + TICA40124 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 124 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + + + + + NVA + 1709545445051 + + + NVM + 1708350490762 + + + ANV + 1708350531309 + + + VIN + 1708350531472 + + + VIC + 1708350601379 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40125 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 125 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0708010203 + interviewer + false + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + + + + + NVA + 1709545445050 + + + NVM + 1708350490780 + + + ANV + 1708350531310 + + + VIN + 1708350531472 + + + VIC + 1708350601379 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40126 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 126 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0383210989 + fiscal + true + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445049 + + + NVM + 1708350490798 + + + ANV + 1708350531310 + + + VIN + 1708350531472 + + + VIC + 1708350601379 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40127 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 127 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0383210989 + fiscal + true + + + 0708010203 + interviewer + false + + + + + + + NVA + 1709545445048 + + + NVM + 1708350490816 + + + ANV + 1708350531311 + + + VIN + 1708350531473 + + + VIC + 1708350601379 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40128 + BA1NVT + OU-TEST1 + true + + Mme Nadia BONET + CS 70058 + 116 avenue Verdier + + 92541 Montrouge + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 128 + 31 + 1 + 0 + 0 + + 0 + + + + Miss + Laurence + Huyghe + laurence.huyghe@insee.fr + true + true + 26/05/1993 + + + 0320628683 + fiscal + true + + + + + Miss + Nadia + BONET + charles.battesti@insee.fr + false + true + 01/01/2001 + + + 0602020301 + directory + false + + + 0708010203 + interviewer + false + + + 0383210989 + fiscal + true + + + + + + + NVA + 1709545445047 + + + NVM + 1708350490834 + + + ANV + 1708350531312 + + + VIN + 1708350531473 + + + VIC + 1708350601379 + + + + + MANAGEMENT + + + + INTERVIEWER + + + + + + + TICA40129 + AV2RJX + OU-TEST1 + true + + M. Arnaud Lhomme + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 135 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Arnaud + Lhomme + arnaud.lhomme@insee.fr + true + true + 26/05/1993 + + + 0320628775 + fiscal + true + + + 622954631 + directory + false + + + 707090102 + interviewer + false + + + + + + + NVA + 1709545445046 + + + NVM + 1708350490850 + + + ANV + 1708350531313 + + + VIN + 1708350531473 + + + + + + + TICA40130 + AV2RJX + OU-TEST1 + true + + M. Arnaud Lhomme + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 136 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Arnaud + Lhomme + arnaud.lhomme@insee.fr + true + true + 26/05/1993 + + + 0320628775 + fiscal + true + + + + + + + NVA + 1709545445045 + + + NVM + 1708350490863 + + + ANV + 1708350531313 + + + VIN + 1708350531474 + + + + + + + TICA40131 + NL031K + OU-TEST1 + true + + M. Julien Moreau + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 137 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Julien + Moreau + julien.moreau@insee.fr + true + true + 26/05/1993 + + + 0320628615 + fiscal + true + + + + + + + NVA + 1709545445044 + + + NVM + 1708350490876 + + + ANV + 1708350531314 + + + VIN + 1708350531474 + + + + + + + TICA40132 + NL031K + OU-TEST1 + true + + M. Julien Moreau + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 138 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Julien + Moreau + julien.moreau@insee.fr + true + true + 26/05/1993 + + + 0320628615 + fiscal + true + + + + + + + NVA + 1709545445043 + + + NVM + 1708350490890 + + + ANV + 1708350531315 + + + VIN + 1708350531474 + + + + + + + TICA40133 + MBENPX + OU-TEST1 + true + + M. Alexandre Bogner + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 139 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Alexandre + Bogner + alexandre.bogner@insee.fr + true + true + 26/05/1993 + + + 0383918716 + fiscal + true + + + + + + + NVA + 1709545445041 + + + NVM + 1708350490903 + + + ANV + 1708350531316 + + + VIN + 1708350531475 + + + + + + + TICA40134 + MBENPX + OU-TEST1 + true + + M. Alexandre Bogner + + 130 avenue du Président Kennedy + + 59304 Lille + FRANCE + + + + + false + false + + + 0 + 0 + 0 + 1 + 140 + 31 + 1 + 0 + 0 + + 0 + + + + Mister + Alexandre + Bogner + alexandre.bogner@insee.fr + true + true + 26/05/1993 + + + 0383918716 + fiscal + true + + + + + + + NVA + 1709545445039 + + + NVM + 1708350490917 + + + ANV + 1708350531316 + + + VIN + 1708350531475 + + + + + + + diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/ddi-tic-2024-x04-tel.xml b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/ddi-tic-2024-x04-tel.xml new file mode 100644 index 00000000..71226b2d --- /dev/null +++ b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/ddi-tic-2024-x04-tel.xml @@ -0,0 +1,50275 @@ + + + fr.insee + INSEE-lseh1s0t + 1 + + + Enquête sur les technologies de l'information et de la communication 2024 - Téléphone V2 + + + + fr.insee + RessourcePackage-lseh1s0t + 1 + + fr.insee + InterviewerInstructionScheme-lseh1s0t + 1 + + A définir + + + fr.insee + lox6eqd5 + 1 + + help + + + Interview.Telephone.CATI + + + + Si la personne vous dit que c'était son ancienne adresse, répondez "oui" et réalisez l'enquête + + + + + fr.insee + lox6jlyn + 1 + + help + + + Interview.Telephone.CATI + + + + Formule de politesse en cas d'arrêt + + + + + fr.insee + loyjqfj1 + 1 + + help + + + Interview.Telephone.CATI + + + + "L’enquête s’adresse à une personne de votre ménage qui va être sélectionnée aléatoirement. Pour cela, nous avons besoin de faire la liste des personnes qui vivent habituellement dans votre logement." + + + + + fr.insee + loyjdepa + 1 + + help + + + Interview.Telephone.CATI + + + + "Inclure les étudiants qui ne rentrent que le week-end" + + + + + fr.insee + loyll3wy + 1 + + help + + + Interview.Telephone.CATI + + + + "La date de naissance de cette personne est : " || cast(¤loyl4wyc-QOP-loylmb1v¤, string) ) + + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + + + + fr.insee + loyliate + 1 + + help + + + Interview.Telephone.CATI + + + + "Le Kish est la personne de 15 ans ou plus (au 1er janvier 2023) dont l’anniversaire arrivera en premier à partir du 1er juin. C’est la personne à interroger pour le reste de l’enquête." + + + + + fr.insee + loyll4bn + 1 + + help + + + Interview.Telephone.CATI + + + + "Nous allons à présent interroger " || cast(¤loyjwgx0-QOP-loyll4w6¤, string) || " sur sa disponibilité." + + + + fr.insee + loyjwgx0-QOP-loyll4w6 + 1 + OutParameter + + + + + + fr.insee + kwksiobo + 1 + + help + + + Interview.Telephone.CATI + + + + Débutons ce questionnaire par un aperçu de votre situation personnelle. + + + + + fr.insee + l5qr6oee + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Indiquez le niveau de diplôme au moment où vous l'avez obtenu, pas son niveau actuel + + + + + fr.insee + kwm50q4n + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Pays de résidence habituelle de votre mère au moment de l'accouchement, selon les frontières nationales actuelles (et non selon les frontières en place au moment de la naissance) + + + + + fr.insee + kbw9za31 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez les premières lettres du département et sélectionnez la ligne correspondant au département recherché. + + + + + fr.insee + kbwaxysc + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez les premières lettres du pays et sélectionnez la ligne correspondant au pays recherché + + + + + fr.insee + kbwataew + 1 + + instruction + + + + Plusieurs réponses possibles : par exemple, la première réponse et la troisième. + + + + + fr.insee + kbwafrus-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Apatride » est incompatible avec les autres réponses + + + + + fr.insee + kbwafrus-CI-1-II-1 + 1 + + warning + + + + Les réponses "Français(e) de naissance" et "Français(e) par naturalisation" sont incompatibles. Veuillez décocher la réponse inexacte. + + + + + fr.insee + kjldkcju + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Saisissez les premières lettres de la nationalité et sélectionnez la ligne correspondant à la nationalité recherchée + + + + + fr.insee + kc0gvsub + 1 + + instruction + + + Interview.Telephone.CATI + + + + Abordons les questions sur l’équipement de votre foyer en Internet, quel que soit l'appareil utilisé (ordinateur fixe ou portable, tablette, téléphone mobile ou smartphone, appareils intelligents, etc.). + + + + + fr.insee + kc0h5ajs + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Y compris depuis un ordinateur portable, une tablette ou un téléphone portable. + + + + + fr.insee + kuzo2jh2 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnbwdk40 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0hkapg + 1 + + instruction + + + Interview.Telephone.CATI + + + + Nous allons aborder maintenant l'usage que vous faites d'Internet. + + + + + fr.insee + lqff0i4m + 1 + + help + + + Interview.Telephone.CATI + + + + Nous nous intéressons à votre utilisation d'Internet dans tout type de lieu (à votre domicile, au travail ou autre) et sur tout type de support (ordinateurs, tablettes, smartphones, liseuses, objets connectés ), même pour un usage très occasionnel. + + + + + fr.insee + kc0htor3 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Quel que soit le lieu ou le type d’accès. + + + + + fr.insee + kzmlyy7k + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + Ne pas prendre en compte votre connexion pour répondre à cette enquête. + + + + + fr.insee + kc0h7448-CI-0-II-0 + 1 + + warning + + + + Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse. + + + + + fr.insee + kc0hqlhc + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Quel que soit le lieu ou le type d’accès. + + + + + fr.insee + kc0haj1j-CI-0-II-0 + 1 + + warning + + + + Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse. + + + + + fr.insee + kc0hwdd6 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Quel que soit le lieu d’utilisation + + + + + fr.insee + kc0i0z56 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0hyu5k-CI-0-II-0 + 1 + + warning + + + + Votre réponse "Vous n’avez effectué aucune de ces activités" est incompatible avec les autres. + + + + + fr.insee + ks4tjwkv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + ks4tje5l-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Vous n’avez pratiqué aucune activité de formation sur Internet » est incompatible avec les autres réponses. + + + + + fr.insee + lnd4o8bt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnd57dqk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnd5kw2d-CI-0-II-0 + 1 + + warning + + + +  La réponse « Vous n’avez réalisé aucune de ces activités de formation » n’est pas compatible avec les autres items.  + + + + + fr.insee + lnd5s0oi + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Pour un usage personnel ou professionnel + + + + + fr.insee + lnd5rq6s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Par exemple, un compte sur un réseau social ou sur une application pour acheter des titres de transport, du streaming, des jeux... + + + + + fr.insee + lnd66q3n + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Par exemple des difficultés à trouver la procédure pour fermer le compte, y passer un temps beaucoup trop long, des problèmes techniques, des conditions de clôtures inadmissibles, l’impossibilité de fermer le compte... + + + + + fr.insee + kc0ie0xd + 1 + + instruction + + + Interview.Telephone.CATI + + + + Poursuivons avec votre utilisation des services administratifs sur Internet, pour vous-même ou pour une autre personne, hors usage professionnel. Ces questions vous concernent même si vous n’avez pas utilisé Internet au cours de l’année. + + + + + fr.insee + kc0ik811 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Exclure les e-mails. + + + + + fr.insee + kc0i9s2a + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0i0jec-CI-0-II-0 + 1 + + warning + + + + La réponse « Vous n’avez effectué aucune de ces actions » n’est pas compatible avec les autres items. + + + + + fr.insee + kwmchqix + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Exclure les messages automatiques de notification qu’un document est disponible. + + + + + fr.insee + ks5vrixr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + ks5vdqs4-CI-0-II-0 + 1 + + warning + + + + La réponse « Vous n’avez effectué aucune de ces actions » n’est pas compatible avec les autres items. + + + + + fr.insee + ks5vxjm4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + ks5vnmgt-CI-0-II-0 + 1 + + warning + + + + La réponse « Vous n’avez pas eu besoin de demander de document ni de faire de réclamation » n’est pas compatible avec les autres items.  + + + + + fr.insee + lnd7d8le + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnd7ni7e-CI-0-II-0 + 1 + + warning + + + + La réponse « Je n’ai pas rencontré de problème » n’est pas compatible avec les autres items. + + + + + fr.insee + kc0is7qk + 1 + + instruction + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0i7d8t-CI-0-II-0 + 1 + + warning + + + + La réponse « Non » n’est pas compatible avec les autres items. + + + + + fr.insee + l5qshzbr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Un refus de l’administration à l’issue d’une démarche ne compte pas comme un renoncement à cette démarche. + + + + + fr.insee + ld03fbmn + 1 + + instruction + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0is12p-CI-0-II-0 + 1 + + warning + + + + La réponse « Non » n’est pas compatible avec les autres items. + + + + + fr.insee + kc0ixcd2 + 1 + + instruction + + + Interview.Telephone.CATI + + + + Abordons les questions concernant vos achats ou commandes sur Internet à titre privé, c'est-à-dire pour votre usage ou celui d'une tierce personne mais hors usage professionnel. + + + + + fr.insee + kc0ivga8 + 1 + + instruction + + + + Inclure les articles de seconde main. + + + + + fr.insee + kc0ipy1a + 1 + + instruction + + + + &#xd;Plusieurs réponses possibles + + + + + fr.insee + lnd7ygqw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnd86l8j-CI-0-II-0 + 1 + + warning + + + +  Votre réponse « Aucun de ces abonnements » est incompatible avec les autres réponses + + + + + fr.insee + lnd8amkr-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Aucun de ces produits ou services » est incompatible avec les autres réponses. + + + + + fr.insee + lnd8i3e6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnd8oyto-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Vous n’avez personnellement payé aucun de ces services » est incompatible avec les autres réponses  + + + + + fr.insee + kc0jlwsz + 1 + + instruction + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0juxed-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Aucune de ces activités financières » est incompatible avec les autres réponses + + + + + fr.insee + lnd96e99 + 1 + + help + + + Interview.Telephone.CATI + + + + Les questions suivantes concernent l’utilisation, à des fins privées, d’appareils connectés à Internet ou connectés entre eux (commande à distance de l’appareil, réglage des paramètres, instructions pour les tâches à effectuer, réception de données de l’appareil, etc.) + + + + + fr.insee + lndc2hq5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lndbnxta-CI-0-II-0 + 1 + + warning + + + + Votre réponse - « Aucun de ces appareils » - est incompatible avec les autres réponses + + + + + fr.insee + lndcerzw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lndc97me-CI-0-II-0 + 1 + + warning + + + + Votre réponse - « Je ne savais pas que cela existait » - est incompatible avec les autres réponses + + + + + fr.insee + lndcxyg7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lndcj9fz-CI-0-II-0 + 1 + + warning + + + + Votre réponse – « Aucun de ces appareils » – est incompatible avec les autres réponses + + + + + fr.insee + lndcjizc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lndcjg90-CI-0-II-0 + 1 + + warning + + + + Votre réponse – « Aucun de ces appareils  » – est incompatible avec les autres réponses  + + + + + fr.insee + lndd4xzn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lndcrv7o-CI-0-II-0 + 1 + + warning + + + + Votre réponse - « Vous n’avez rencontré aucun problème » - est incompatible avec les autres réponses  + + + + + fr.insee + lnuc0utf + 1 + + help + + + Interview.Telephone.CATI + + + + Les questions suivantes concernent vos pratiques environnementales. + + + + + fr.insee + lnucbucm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Répondez en vous référant à l'appareil personnel le plus récent que vous ayez remplacé ou cessé d'utiliser. + + + + + fr.insee + lnucpebx + 1 + + help + + + + Ne pas considérer les appareils fournis par un employeur. + + + + + fr.insee + lnucet0l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Répondez en vous référant à l’appareil personnel le plus récent que vous ayez remplacé ou cessé d’utiliser. + + + + + fr.insee + lnucsrrh + 1 + + help + + + + Ne pas considérer les appareils fournis par un employeur + + + + + fr.insee + lnucu041 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Répondez en vous référant à l’appareil personnel le plus récent que vous ayez remplacé ou cessé d’utiliser. + + + + + fr.insee + lnucrdj3 + 1 + + help + + + + Ne pas considérer les appareils fournis par un employeur. + + + + + fr.insee + lnud68e6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnudc90x-CI-0-II-0 + 1 + + warning + + + + Votre réponse - « Vous n’avez pris en compte aucune des caractéristiques mentionnées » - est incompatible avec les autres réponses + + + + + fr.insee + lnudc90x-CI-1-II-1 + 1 + + warning + + + + Votre réponse - « Vous n’avez jamais acheté aucun de ces appareils » - est incompatible avec les autres réponses + + + + + fr.insee + kc0mf1y0 + 1 + + instruction + + + Interview.Telephone.CATI + + + + Poursuivons par des questions concernant votre équipement numérique (téléphone fixe, téléphone portable, ordinateur, box). + + + + + fr.insee + lnueb49y + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnue7e91-CI-0-II-0 + 1 + + warning + + + + Votre réponse «Aucun de ces appareils » est incompatible avec les autres réponses + + + + + fr.insee + kc0n7j03 + 1 + + instruction + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0mzowl-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Aucun de ces appareils » est incompatible avec les autres réponses. + + + + + fr.insee + lnuf1mzn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnuf6krf-CI-0-II-0 + 1 + + warning + + + + Votre réponse - « Vous n’aviez pas de smartphone précédemment mais vous souhaitiez en avoir un » - est incompatible avec les autres réponses + + + + + fr.insee + lqb21ofu + 1 + + help + + + Interview.Telephone.CATI + + + + Nous nous intéressons à présent au temps que vous passez devant les écrans pour un usage personnel, quel que soit le type de support (ordinateur, smartphone, tablette, télévision, console de jeu...). + + + + + fr.insee + lqb1zl9l + 1 + + help + + + Interview.Telephone.CATI + + + + Pour les personnes en emploi ou en cursus scolaire + + + + + fr.insee + lqb2fm9f + 1 + + help + + + Interview.Telephone.CATI + + + + Hors usage professionnel ou scolaire + + + + + fr.insee + ks4u5ja1 + 1 + + instruction + + + Interview.Telephone.CATI + + + + Nous allons à présent nous intéresser à votre recours à la téléconsultation. La téléconsultation est une consultation d’un patient réalisée à distance par un médecin (généraliste ou de toute autre spécialité médicale). + + + + + fr.insee + lnufnpc1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + lnufsvxy-CI-0-II-0 + 1 + + warning + + + + Votre réponse « Non, vous n’avez pas téléconsulté mais vous avez consulté un médecin à son cabinet, à l’hôpital ou à domicile » est incompatible avec les autres réponses. + + + + + fr.insee + lnufsvxy-CI-1-II-1 + 1 + + warning + + + + Votre réponse « Non, vous n’avez consulté aucun médecin au cours des douze derniers mois » est incompatible avec les autres réponses.  + + + + + fr.insee + lnufzf6c + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Plusieurs réponses possibles + + + + + fr.insee + kc0mziaq + 1 + + instruction + + + Interview.Telephone.CATI + + + + Terminons par quelques questions plus générales sur votre situation professionnelle. + + + + + fr.insee + kc0my1wg + 1 + + instruction + + + + Une seule réponse possible + + + + + fr.insee + lpv0erti + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Inclure : petit boulot, apprentissage, contrats en alternance, stage rémunéré, personne en congé maternité, en congé maladie ou en chômage partiel, personne travaillant sans être rémunéré(e) avec un membre de sa famille, élu(e) + + + + + fr.insee + lpuzyjqp + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Exclure : bénévolat + + + + + fr.insee + lpv01jrh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Une seule réponse possible + + + + + fr.insee + lpv08qp9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Une seule réponse possible + + + + + fr.insee + lowskfmg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Saisissez le libellé de votre profession et sélectionnez-le dans la liste. + + + + + + fr.insee + lowsq3ex + 1 + + help + + + + Si vous ne le trouvez pas, n'hésitez pas à reformuler votre recheche : +- En saisissant un terme "signifiant" en priorité et non pas un terme "flou" (comme ouvrier, chef de projet, responsable, technicien, agent, employé, etc.) +- Exemples : "vendeurs de chaussures" saisir "chaussure" ; "responsable de chantier" saisir "chantier" +- En saisissant une profession équivalente + + + + + fr.insee + lowsi1iw + 1 + + help + + + + Si vous ne le trouvez toujours pas, cliquez sur "Je n'ai pas trouvé dans la liste". + + + + + fr.insee + kc0nojf1 + 1 + + instruction + + + + Une seule réponse possible + + + + + fr.insee + lox1t2sd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + SelfAdministeredQuestionnaire.Paper + + + Interview.Telephone.CATI + + + + Soyez précis. Par exemple : réparation automobile, vente de vêtements de détail, service en informatique + + + + + fr.insee + lox1xqqr + 1 + + help + + + + Avertissement : L'activité recherchée est celle de l'établissement et non celle que vous occupez. Par exemple, si vous êtes comptable dans une usine sidérurgique, l'activité à déclarer est : "Sidérurgie" et non "Comptabilité". + + + + + fr.insee + kc0p4jga-CI-0-II-0 + 1 + + warning + + + + Vous n'avez pas répondu à cette question. Si c'est un oubli, veuillez compléter votre réponse. + + + + + fr.insee + kc0r6wgt + 1 + + instruction + + + + Il s’agit du revenu net (de cotisations sociales et de C.S.G.) avant impôts (y compris avant impôt sur le revenu prélevé à la source). Prenez en compte tous les types de revenus perçus durant le mois par le ménage : salaires, pensions de retraite, minima sociaux, allocations chômage, prestations familiales, revenus du patrimoine, etc. + + + + + + fr.insee + lb0t20ui + 1 + + instruction + + + + Si les revenus sont fluctuants d'un mois sur l'autre, faites une moyenne.  + + + + + fr.insee + kc0qz959-CI-0-II-0 + 1 + + warning + + + + Confirmez-vous ce montant supérieur à 9 999€ par mois + + + + + fr.insee + lqwjqw2l + 1 + + help + + + Interview.Telephone.CATI + + + + Il s'agit du revenu net (de cotisations sociales et de C.S.G.) avant impôts (y compris impôts sur le revenu prélevé à la source). Prenez en compte tous les types de revenus perçus durant le mois par le ménage : salaires, pensions de retraite, minima sociaux, allocations chômage, prestations familiales, revenus du patrimoine, etc. + + + + + fr.insee + lqwjlcwx + 1 + + help + + + + Si les revenus sont fluctuants d'un mois sur l'autre, faites une moyenne. + + + + + fr.insee + lqwjbav6-CI-0-II-0 + 1 + + warning + + + + Confirmez-vous ce revenu supérieur à 9 999 € par mois. + + + + + + fr.insee + ControlConstructScheme-lseh1s0t + 1 + + fr.insee + Sequence-lseh1s0t + 1 + + Enquête sur les technologies de l'information et de la communication 2024 - Téléphone V2 + + template + + fr.insee + lox6750f + 1 + Sequence + + + fr.insee + lq2kljft + 1 + IfThenElse + + + + fr.insee + lox6750f + 1 + + TYPLOG + + + Type de logement + + module + + fr.insee + lox6eoqy-QC + 1 + QuestionConstruct + + + fr.insee + lp6ygoxg + 1 + IfThenElse + + + + fr.insee + loyjaeen + 1 + + NBHABLOG + + + Liste des habitants du logement + + + fr.insee + loyjqfj1 + 1 + Instruction + + module + + fr.insee + lptucl00-QC + 1 + QuestionConstruct + + + fr.insee + loyjheaw-QC + 1 + QuestionConstruct + + + fr.insee + lp11qpea + 1 + Loop + + + fr.insee + lp11s4qn + 1 + Loop + + + fr.insee + lp11erqo + 1 + Loop + + + + fr.insee + loyk884v + 1 + + TIRAGEKISH + + + Tirage de la personne répondante (Kish) + + submodule + + fr.insee + loyjwgx0-QC + 1 + QuestionConstruct + + + + fr.insee + loyl8mc7 + 1 + + SEXEAGE + + + Sexe et âge + + submodule + + fr.insee + loyl5bbb-QC + 1 + QuestionConstruct + + + fr.insee + loyl4wyc-QC + 1 + QuestionConstruct + + + + fr.insee + loyl3jdz + 1 + + SLECTION_MA + + + Sélection manuelle du Kish + + submodule + + fr.insee + loylambf-QC + 1 + QuestionConstruct + + + fr.insee + lp6z7682 + 1 + IfThenElse + + + + fr.insee + loyluetj + 1 + + QUESTIONS_KISH + + + Questions Kish + + + fr.insee + loyliate + 1 + Instruction + + module + + fr.insee + lp11a9aj + 1 + Loop + + + fr.insee + loyll7qx + 1 + Sequence + + + + fr.insee + loylvt9g + 1 + + CONTACT_KISH + + + "Le Kish sélectionné est " || cast(¤loyjwgx0-QOP-loyll4w6¤, string) + + + fr.insee + loyll4bn + 1 + Instruction + + submodule + + + fr.insee + loyll7qx + 1 + + DISPOKISH + + + Disponibilité du Kish + + submodule + + fr.insee + loylqm0o-QC + 1 + QuestionConstruct + + + + fr.insee + ks4qe7yy + 1 + + MODULEO + + + Caractéristiques socio-démographiques + + + fr.insee + kwksiobo + 1 + Instruction + + module + + fr.insee + kbw8yqwv-QC + 1 + QuestionConstruct + + + fr.insee + lnwzi3mu + 1 + IfThenElse + + + fr.insee + kbw9jgd2-QC + 1 + QuestionConstruct + + + fr.insee + kbw9i35f-QC + 1 + QuestionConstruct + + + fr.insee + lnwzd56a + 1 + IfThenElse + + + fr.insee + kbw9rrbt-QC + 1 + QuestionConstruct + + + fr.insee + lnvgw98z + 1 + IfThenElse + + + fr.insee + lnvhcpae + 1 + IfThenElse + + + fr.insee + kbwafrus-QC + 1 + QuestionConstruct + + + fr.insee + kbwafrus-CI-0 + 1 + ComputationItem + + + fr.insee + kbwafrus-CI-1 + 1 + ComputationItem + + + fr.insee + lnvhjdrf + 1 + IfThenElse + + + + fr.insee + kc0h2x4z + 1 + + MODULEA + + + L’équipement de votre foyer en Internet + + + fr.insee + kc0gvsub + 1 + Instruction + + module + + fr.insee + kc0gq6qv-QC + 1 + QuestionConstruct + + + fr.insee + lnvk9lsp + 1 + IfThenElse + + + + fr.insee + kc0h9y1j + 1 + + MODULEB + + + Votre usage d’Internet + + + fr.insee + kc0hkapg + 1 + Instruction + + + fr.insee + lqff0i4m + 1 + Instruction + + module + + fr.insee + kc0h7448-QC + 1 + QuestionConstruct + + + fr.insee + kc0h7448-CI-0 + 1 + ComputationItem + + + fr.insee + lnd6angs + 1 + IfThenElse + + + + fr.insee + kc0i2t9p + 1 + + MODULEC + + + Votre utilisation des services administratifs + + + fr.insee + kc0ie0xd + 1 + Instruction + + module + + fr.insee + lnvkki1n + 1 + IfThenElse + + + fr.insee + kc0i7d8t-QC + 1 + QuestionConstruct + + + fr.insee + kc0i7d8t-CI-0 + 1 + ComputationItem + + + fr.insee + kc0is12p-QC + 1 + QuestionConstruct + + + fr.insee + kc0is12p-CI-0 + 1 + ComputationItem + + + fr.insee + lnvl48n5 + 1 + IfThenElse + + + + fr.insee + kc0ir8tk + 1 + + MODULED + + + Vos habitudes de consommation sur Internet + + + fr.insee + kc0ixcd2 + 1 + Instruction + + module + + fr.insee + kc0iuqho-QC + 1 + QuestionConstruct + + + fr.insee + lnvrv8cp + 1 + IfThenElse + + + fr.insee + kc0juxed-QC + 1 + QuestionConstruct + + + fr.insee + kc0juxed-CI-0 + 1 + ComputationItem + + + + fr.insee + lnd9bbn9 + 1 + + MODULEE + + + Les objets connectés + + + fr.insee + lnd96e99 + 1 + Instruction + + module + + fr.insee + lndbnxta-QC + 1 + QuestionConstruct + + + fr.insee + lndbnxta-CI-0 + 1 + ComputationItem + + + fr.insee + lnvtjcxc + 1 + IfThenElse + + + fr.insee + lndcj9fz-QC + 1 + QuestionConstruct + + + fr.insee + lndcj9fz-CI-0 + 1 + ComputationItem + + + fr.insee + lndcjg90-QC + 1 + QuestionConstruct + + + fr.insee + lndcjg90-CI-0 + 1 + ComputationItem + + + fr.insee + lnvu06vi + 1 + IfThenElse + + + + fr.insee + lnubyqsk + 1 + + MODULEF + + + Les technologies et l'environnement + + + fr.insee + lnuc0utf + 1 + Instruction + + module + + fr.insee + lnucc4yw-QC + 1 + QuestionConstruct + + + fr.insee + lnuctqyc-QC + 1 + QuestionConstruct + + + fr.insee + lnucrg4j-QC + 1 + QuestionConstruct + + + fr.insee + lnudc90x-QC + 1 + QuestionConstruct + + + fr.insee + lnudc90x-CI-0 + 1 + ComputationItem + + + fr.insee + lnudc90x-CI-1 + 1 + ComputationItem + + + + fr.insee + kc0mpozo + 1 + + MODULEX + + + Votre équipement numérique + + + fr.insee + kc0mf1y0 + 1 + Instruction + + module + + fr.insee + lnue69t2-QC + 1 + QuestionConstruct + + + fr.insee + lnue7e91-QC + 1 + QuestionConstruct + + + fr.insee + lnue7e91-CI-0 + 1 + ComputationItem + + + fr.insee + kc0mzowl-QC + 1 + QuestionConstruct + + + fr.insee + kc0mzowl-CI-0 + 1 + ComputationItem + + + fr.insee + lnvuy9e4 + 1 + IfThenElse + + + + fr.insee + lqb26uki + 1 + + MODULEY + + + Exposition aux écrans + + + fr.insee + lqb21ofu + 1 + Instruction + + module + + fr.insee + lqb27fdb-QC + 1 + QuestionConstruct + + + fr.insee + lqb2cik4-QC + 1 + QuestionConstruct + + + fr.insee + lqb23j8a-QC + 1 + QuestionConstruct + + + + fr.insee + ks4tv406 + 1 + + MODULEZ + + + Les téléconsultations médicales + + + fr.insee + ks4u5ja1 + 1 + Instruction + + module + + fr.insee + lqb2a9ht-QC + 1 + QuestionConstruct + + + fr.insee + lnufsvxy-QC + 1 + QuestionConstruct + + + fr.insee + lnufsvxy-CI-0 + 1 + ComputationItem + + + fr.insee + lnufsvxy-CI-1 + 1 + ComputationItem + + + fr.insee + lnvwycql + 1 + IfThenElse + + + fr.insee + lnvwuyar + 1 + IfThenElse + + + + fr.insee + kc0n110n + 1 + + MODULEG + + + Votre situation professionnelle + + + fr.insee + kc0mziaq + 1 + Instruction + + module + + fr.insee + kc0n6snm-QC + 1 + QuestionConstruct + + + fr.insee + lpv29jcy + 1 + IfThenElse + + + fr.insee + lpv2afqh + 1 + IfThenElse + + + fr.insee + ks4txhy9-QC + 1 + QuestionConstruct + + + fr.insee + kc0qz959-QC + 1 + QuestionConstruct + + + fr.insee + kc0qz959-CI-0 + 1 + ComputationItem + + + fr.insee + lqwjp776 + 1 + IfThenElse + + + + fr.insee + lp11qpea + 1 + + BOUCLE_KISH + + + Nouvelle personne du ménage + + + + vtl + + fr.insee + lp11qpea-MIN-IP-1 + 1 + + NBHABT + + + + + fr.insee + loyjheaw-QOP-loylr0ax + 1 + OutParameter + + + fr.insee + lp11qpea-MIN-IP-1 + 1 + InParameter + + + cast(lp11qpea-MIN-IP-1, integer) + + + + + vtl + + fr.insee + lp11qpea-IP-1 + 1 + + NBHABT + + + + + fr.insee + loyjheaw-QOP-loylr0ax + 1 + OutParameter + + + fr.insee + lp11qpea-IP-1 + 1 + InParameter + + + cast(lp11qpea-IP-1, integer) + + + + + vtl + 1 + + + + fr.insee + lp11qpea-SEQ + 1 + Sequence + + + + fr.insee + lp11qpea-SEQ + 1 + + fr.insee + loyk884v + 1 + Sequence + + + + fr.insee + lp11s4qn + 1 + + sexeetage + + + fr.insee + lp11s4qn-SEQ + 1 + Sequence + + + + fr.insee + lp11s4qn-SEQ + 1 + + fr.insee + loyl8mc7 + 1 + Sequence + + + + fr.insee + lp11erqo + 1 + + BOUCLE_MULTIPLES_KISH + + + fr.insee + lp11erqo-SEQ + 1 + Sequence + + + + fr.insee + lp11erqo-SEQ + 1 + + fr.insee + loyl3jdz + 1 + Sequence + + + + fr.insee + lp11a9aj + 1 + + BOUCLE_QUESTION_KISH + + + fr.insee + lp11a9aj-ITE + 1 + IfThenElse + + + + fr.insee + lp11a9aj-ITE + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lp11a9aj-ITE-IP-1 + 1 + + NB_POTENTIAL_KISH + + + + fr.insee + lp11a9aj-ITE-IP-2 + 1 + + KISH_INDICATOR + + + + fr.insee + lp11a9aj-ITE-IP-3 + 1 + + IS_KISH + + + + + fr.insee + lp1a8gdv-GOP + 1 + OutParameter + + + fr.insee + lp11a9aj-ITE-IP-1 + 1 + InParameter + + + + + fr.insee + lp1ao7mu-GOP + 1 + OutParameter + + + fr.insee + lp11a9aj-ITE-IP-2 + 1 + InParameter + + + + + fr.insee + loylmcrg-QOP-loylwjqt + 1 + OutParameter + + + fr.insee + lp11a9aj-ITE-IP-3 + 1 + InParameter + + + not(nvl(lp11a9aj-ITE-IP-3, "99") = "2" or (cast(lp11a9aj-ITE-IP-1,integer) = 1 and cast(lp11a9aj-ITE-IP-2,integer) = 0)) + + + + fr.insee + lp11a9aj-ITE-THEN + 1 + Sequence + + + + fr.insee + lp11a9aj-ITE-THEN + 1 + + + + + fr.insee + loylvt9g + 1 + Sequence + + + + fr.insee + lp6ygoxg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lp6ygoxg-IP-1 + 1 + + RESIDENCE + + + + + fr.insee + lox6eoqy-QOP-lox6bm1z + 1 + OutParameter + + + fr.insee + lp6ygoxg-IP-1 + 1 + InParameter + + + nvl(lp6ygoxg-IP-1, " ")="2" + + + + fr.insee + lp6ygoxg-THEN + 1 + Sequence + + + + fr.insee + lp6ygoxg-THEN + 1 + + + + + fr.insee + lox62xmp-QC + 1 + QuestionConstruct + + + + fr.insee + lq2kljft + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lq2kljft-IP-1 + 1 + + RESIDENCE + + + + + fr.insee + lox6eoqy-QOP-lox6bm1z + 1 + OutParameter + + + fr.insee + lq2kljft-IP-1 + 1 + InParameter + + + (nvl(lq2kljft-IP-1, "9") = "1" or nvl(lq2kljft-IP-1, "9")="9") + + + + fr.insee + lq2kljft-THEN + 1 + Sequence + + + + fr.insee + lq2kljft-THEN + 1 + + + + + fr.insee + loyjaeen + 1 + Sequence + + + fr.insee + loyluetj + 1 + Sequence + + + fr.insee + lq2kjgv1 + 1 + IfThenElse + + + + fr.insee + lp6z7682 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lp6z7682-IP-1 + 1 + + NB_POTENTIAL_KISH + + + + + fr.insee + lp1a8gdv-GOP + 1 + OutParameter + + + fr.insee + lp6z7682-IP-1 + 1 + InParameter + + + lp6z7682-IP-1 >1 + + + + fr.insee + lp6z7682-THEN + 1 + Sequence + + + + fr.insee + lp6z7682-THEN + 1 + + + + + fr.insee + loylmcrg-QC + 1 + QuestionConstruct + + + + fr.insee + lq2kjgv1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lq2kjgv1-IP-1 + 1 + + PRESAKO + + + + + fr.insee + loylqm0o-QOP-loym3okn + 1 + OutParameter + + + fr.insee + lq2kjgv1-IP-1 + 1 + InParameter + + + lq2kjgv1-IP-1 = "1" + + + + fr.insee + lq2kjgv1-THEN + 1 + Sequence + + + + fr.insee + lq2kjgv1-THEN + 1 + + + + + fr.insee + ks4qe7yy + 1 + Sequence + + + fr.insee + kc0h2x4z + 1 + Sequence + + + fr.insee + kc0h9y1j + 1 + Sequence + + + fr.insee + kc0i2t9p + 1 + Sequence + + + fr.insee + lnvlhbf5 + 1 + IfThenElse + + + fr.insee + lnvs6o77 + 1 + IfThenElse + + + fr.insee + kc0mpozo + 1 + Sequence + + + fr.insee + lqb26uki + 1 + Sequence + + + fr.insee + ks4tv406 + 1 + Sequence + + + fr.insee + kc0n110n + 1 + Sequence + + + + fr.insee + lnwzi3mu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnwzi3mu-IP-1 + 1 + + DIPLOME + + + + + fr.insee + kbw8yqwv-QOP-kbw94lhc + 1 + OutParameter + + + fr.insee + lnwzi3mu-IP-1 + 1 + InParameter + + + lnwzi3mu-IP-1 = "1" or lnwzi3mu-IP-1 = "2" or lnwzi3mu-IP-1 = "3" + + + + fr.insee + lnwzi3mu-THEN + 1 + Sequence + + + + fr.insee + lnwzi3mu-THEN + 1 + + + + + fr.insee + kbw97gaf-QC + 1 + QuestionConstruct + + + + fr.insee + lnwzd56a + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnwzd56a-IP-1 + 1 + + ETAMATRI + + + + + fr.insee + kbw9i35f-QOP-kbw9k7kk + 1 + OutParameter + + + fr.insee + lnwzd56a-IP-1 + 1 + InParameter + + + lnwzd56a-IP-1 = "1" or lnwzd56a-IP-1 = "3" or lnwzd56a-IP-1 = "4" + + + + fr.insee + lnwzd56a-THEN + 1 + Sequence + + + + fr.insee + lnwzd56a-THEN + 1 + + + + + fr.insee + kbw9gttr-QC + 1 + QuestionConstruct + + + + fr.insee + lnvgw98z + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvgw98z-IP-1 + 1 + + LNAIS + + + + + fr.insee + kbw9rrbt-QOP-kbw9i9ec + 1 + OutParameter + + + fr.insee + lnvgw98z-IP-1 + 1 + InParameter + + + lnvgw98z-IP-1="1" + + + + fr.insee + lnvgw98z-THEN + 1 + Sequence + + + + fr.insee + lnvgw98z-THEN + 1 + + + + + fr.insee + kbw9r169-QC + 1 + QuestionConstruct + + + + fr.insee + lnvhcpae + 1 + + A définir + + + Filtre pays naissance + + hideable + + + vtl + + fr.insee + lnvhcpae-IP-1 + 1 + + LNAIS + + + + + fr.insee + kbw9rrbt-QOP-kbw9i9ec + 1 + OutParameter + + + fr.insee + lnvhcpae-IP-1 + 1 + InParameter + + + lnvhcpae-IP-1 = "2" + + + + fr.insee + lnvhcpae-THEN + 1 + Sequence + + + + fr.insee + lnvhcpae-THEN + 1 + + + + + fr.insee + kbwanueu-QC + 1 + QuestionConstruct + + + + fr.insee + lnvhjdrf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvhjdrf-IP-1 + 1 + + NATIO1N3 + + + + + fr.insee + kbwafrus-QOP-kwmb49mu + 1 + OutParameter + + + fr.insee + lnvhjdrf-IP-1 + 1 + InParameter + + + nvl(lnvhjdrf-IP-1, false) + + + + fr.insee + lnvhjdrf-THEN + 1 + Sequence + + + + fr.insee + lnvhjdrf-THEN + 1 + + + + + fr.insee + kbwanqdo-QC + 1 + QuestionConstruct + + + + fr.insee + lnvk9lsp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvk9lsp-IP-1 + 1 + + NET + + + + + fr.insee + kc0gq6qv-QOP-kc0h0gps + 1 + OutParameter + + + fr.insee + lnvk9lsp-IP-1 + 1 + InParameter + + + lnvk9lsp-IP-1 = "1" + + + + fr.insee + lnvk9lsp-THEN + 1 + Sequence + + + + fr.insee + lnvk9lsp-THEN + 1 + + + + + fr.insee + kuznl5ba-QC + 1 + QuestionConstruct + + + fr.insee + lnbwr49p + 1 + IfThenElse + + + + fr.insee + lnbwr49p + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnbwr49p-IP-1 + 1 + + F_DEBITX1 + + + + fr.insee + lnbwr49p-IP-2 + 1 + + F_DEBITX2 + + + + fr.insee + lnbwr49p-IP-3 + 1 + + F_DEBITX4 + + + + + fr.insee + kuznl5ba-QOP-lnby5sw0 + 1 + OutParameter + + + fr.insee + lnbwr49p-IP-1 + 1 + InParameter + + + + + fr.insee + kuznl5ba-QOP-lnbyaj6d + 1 + OutParameter + + + fr.insee + lnbwr49p-IP-2 + 1 + InParameter + + + + + fr.insee + kuznl5ba-QOP-lnbxxb1a + 1 + OutParameter + + + fr.insee + lnbwr49p-IP-3 + 1 + InParameter + + + (nvl(lnbwr49p-IP-1, false) = false) and ((nvl(lnbwr49p-IP-2,false) = true) or nvl(lnbwr49p-IP-3, false) = true)) + + + + fr.insee + lnbwr49p-THEN + 1 + Sequence + + + + fr.insee + lnbwr49p-THEN + 1 + + + + + fr.insee + lnbwa2sl-QC + 1 + QuestionConstruct + + + + fr.insee + lnd6angs + 1 + + A définir + + + Utilisation moins de 3 mois + + hideable + + + vtl + + fr.insee + lnd6angs-IP-1 + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + lnd6angs-IP-1 + 1 + InParameter + + + nvl(lnd6angs-IP-1 ," ") = "1" + + + + fr.insee + lnd6angs-THEN + 1 + Sequence + + + + fr.insee + lnd6angs-THEN + 1 + + + + + fr.insee + kc0haj1j-QC + 1 + QuestionConstruct + + + fr.insee + kc0haj1j-CI-0 + 1 + ComputationItem + + + fr.insee + kc0hyu5k-QC + 1 + QuestionConstruct + + + fr.insee + kc0hyu5k-CI-0 + 1 + ComputationItem + + + fr.insee + ks4tje5l-QC + 1 + QuestionConstruct + + + fr.insee + ks4tje5l-CI-0 + 1 + ComputationItem + + + fr.insee + lnd676qx + 1 + IfThenElse + + + fr.insee + lnd5kw2d-QC + 1 + QuestionConstruct + + + fr.insee + lnd5kw2d-CI-0 + 1 + ComputationItem + + + fr.insee + lnd64z9l-QC + 1 + QuestionConstruct + + + fr.insee + lnd5pnag-QC + 1 + QuestionConstruct + + + fr.insee + lnvkgd3l + 1 + IfThenElse + + + + fr.insee + lnd676qx + 1 + + A définir + + + Filtre apprentissage + + hideable + + + vtl + + fr.insee + lnd676qx-IP-1 + 1 + + EDUPROX1 + + + + fr.insee + lnd676qx-IP-2 + 1 + + EDUPROX2 + + + + fr.insee + lnd676qx-IP-3 + 1 + + EDUPROX3 + + + + + fr.insee + ks4tje5l-QOP-l5qsbjcn + 1 + OutParameter + + + fr.insee + lnd676qx-IP-1 + 1 + InParameter + + + + + fr.insee + ks4tje5l-QOP-l5qss6oe + 1 + OutParameter + + + fr.insee + lnd676qx-IP-2 + 1 + InParameter + + + + + fr.insee + ks4tje5l-QOP-l5qsqkz5 + 1 + OutParameter + + + fr.insee + lnd676qx-IP-3 + 1 + InParameter + + + (nvl(lnd676qx-IP-1 , false) = true) or (nvl(lnd676qx-IP-2 , false) = true) or (nvl(lnd676qx-IP-3 , false) = true) + + + + fr.insee + lnd676qx-THEN + 1 + Sequence + + + + fr.insee + lnd676qx-THEN + 1 + + + + + fr.insee + lnd4rdph-QC + 1 + QuestionConstruct + + + + fr.insee + lnvkgd3l + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvkgd3l-IP-1 + 1 + + REGIST + + + + + fr.insee + lnd5pnag-QOP-lnd5uri7 + 1 + OutParameter + + + fr.insee + lnvkgd3l-IP-1 + 1 + InParameter + + + lnvkgd3l-IP-1 ="1" + + + + fr.insee + lnvkgd3l-THEN + 1 + Sequence + + + + fr.insee + lnvkgd3l-THEN + 1 + + + + + fr.insee + lnd5x3l5-QC + 1 + QuestionConstruct + + + fr.insee + lnd6bohh + 1 + IfThenElse + + + + fr.insee + lnd6bohh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnd6bohh-IP-1 + 1 + + SUPREGIST + + + + + fr.insee + lnd5x3l5-QOP-lnd8gx94 + 1 + OutParameter + + + fr.insee + lnd6bohh-IP-1 + 1 + InParameter + + + nvl(lnd6bohh-IP-1 , " ")="1") + + + + fr.insee + lnd6bohh-THEN + 1 + Sequence + + + + fr.insee + lnd6bohh-THEN + 1 + + + + + fr.insee + lnd66axd-QC + 1 + QuestionConstruct + + + + fr.insee + lnvkki1n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvkki1n-IP-1 + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + lnvkki1n-IP-1 + 1 + InParameter + + + (lnvkki1n-IP-1 = "1" or lnvkki1n-IP-1 ="2") + + + + fr.insee + lnvkki1n-THEN + 1 + Sequence + + + + fr.insee + lnvkki1n-THEN + 1 + + + + + fr.insee + kc0i0jec-QC + 1 + QuestionConstruct + + + fr.insee + kc0i0jec-CI-0 + 1 + ComputationItem + + + fr.insee + ks5vgahz-QC + 1 + QuestionConstruct + + + fr.insee + ks5vqq6b-QC + 1 + QuestionConstruct + + + fr.insee + ks5vhf4w-QC + 1 + QuestionConstruct + + + fr.insee + ks5vgp57-QC + 1 + QuestionConstruct + + + fr.insee + ks5vdqs4-QC + 1 + QuestionConstruct + + + fr.insee + ks5vdqs4-CI-0 + 1 + ComputationItem + + + fr.insee + lnvl55ab + 1 + IfThenElse + + + fr.insee + lnvl0f2y + 1 + IfThenElse + + + + fr.insee + lnvl55ab + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvl55ab-IP-1 + 1 + + RAIADMX4 + + + + + fr.insee + ks5vdqs4-QOP-l5qsc84x + 1 + OutParameter + + + fr.insee + lnvl55ab-IP-1 + 1 + InParameter + + + nvl(lnvl55ab-IP-1, false) = true + + + + fr.insee + lnvl55ab-THEN + 1 + Sequence + + + + fr.insee + lnvl55ab-THEN + 1 + + + + + fr.insee + ks5vnmgt-QC + 1 + QuestionConstruct + + + fr.insee + ks5vnmgt-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvl0f2y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvl0f2y-IP-1 + 1 + + ADMX1 + + + + fr.insee + lnvl0f2y-IP-2 + 1 + + ADMX2 + + + + fr.insee + lnvl0f2y-IP-3 + 1 + + ADMX3 + + + + fr.insee + lnvl0f2y-IP-4 + 1 + + IMPADM + + + + fr.insee + lnvl0f2y-IP-5 + 1 + + RDVADM + + + + fr.insee + lnvl0f2y-IP-6 + 1 + + MESADM + + + + fr.insee + lnvl0f2y-IP-7 + 1 + + DECLADM + + + + fr.insee + lnvl0f2y-IP-8 + 1 + + RAIADMX1 + + + + fr.insee + lnvl0f2y-IP-9 + 1 + + RAIADMX2 + + + + fr.insee + lnvl0f2y-IP-10 + 1 + + RAIADMX3 + + + + + fr.insee + kc0i0jec-QOP-kwmazv3k + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-1 + 1 + InParameter + + + + + fr.insee + kc0i0jec-QOP-kwmb4o86 + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-2 + 1 + InParameter + + + + + fr.insee + kc0i0jec-QOP-kwmb6i3d + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-3 + 1 + InParameter + + + + + fr.insee + ks5vgahz-QOP-ks5vi3ij + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-4 + 1 + InParameter + + + + + fr.insee + ks5vqq6b-QOP-ks5vefod + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-5 + 1 + InParameter + + + + + fr.insee + ks5vhf4w-QOP-ks5vmp70 + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-6 + 1 + InParameter + + + + + fr.insee + ks5vgp57-QOP-ks5vtqus + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-7 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qsic6y + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-8 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qs9n5l + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-9 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qsrxdz + 1 + OutParameter + + + fr.insee + lnvl0f2y-IP-10 + 1 + InParameter + + + (nvl(lnvl0f2y-IP-1, false) or nvl(lnvl0f2y-IP-2, false) or nvl(lnvl0f2y-IP-3, false) or nvl(lnvl0f2y-IP-4, " ") = "1" or nvl(lnvl0f2y-IP-5, " ")="1" or nvl(lnvl0f2y-IP-6, " ") = "1" or nvl(lnvl0f2y-IP-7 , " ") ="1" or nvl(lnvl0f2y-IP-8, false) or nvl(lnvl0f2y-IP-9, false) or nvl(lnvl0f2y-IP-10, false) ) + + + + fr.insee + lnvl0f2y-THEN + 1 + Sequence + + + + fr.insee + lnvl0f2y-THEN + 1 + + + + + fr.insee + lnd7ni7e-QC + 1 + QuestionConstruct + + + fr.insee + lnd7ni7e-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvl48n5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvl48n5-IP-1 + 1 + + F_RENADMX1 + + + + fr.insee + lnvl48n5-IP-2 + 1 + + F_RENADMX2 + + + + fr.insee + lnvl48n5-IP-3 + 1 + + F_RENADMX3 + + + + fr.insee + lnvl48n5-IP-4 + 1 + + F_RENADMX4 + + + + fr.insee + lnvl48n5-IP-5 + 1 + + F_RENADMX5 + + + + fr.insee + lnvl48n5-IP-6 + 1 + + F_RENADMX6 + + + + fr.insee + lnvl48n5-IP-7 + 1 + + F_RENADMX7 + + + + fr.insee + lnvl48n5-IP-8 + 1 + + F_RENADMX8 + + + + + fr.insee + kc0is12p-QOP-l5qsr5vo + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-1 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsgsly + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-2 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsm2gh + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-3 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsyby7 + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-4 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsshvt + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-5 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsrllz + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-6 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsuktj + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-7 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qshfk9 + 1 + OutParameter + + + fr.insee + lnvl48n5-IP-8 + 1 + InParameter + + + (nvl(lnvl48n5-IP-1, false) or nvl(lnvl48n5-IP-2, false) or nvl(lnvl48n5-IP-3, false) or nvl(lnvl48n5-IP-4, false) or nvl(lnvl48n5-IP-5, false) or nvl(lnvl48n5-IP-6, false) or nvl(lnvl48n5-IP-7, false) or nvl(lnvl48n5-IP-8, false)) + + + + fr.insee + lnvl48n5-THEN + 1 + Sequence + + + + fr.insee + lnvl48n5-THEN + 1 + + + + + fr.insee + kc0iso1a-QC + 1 + QuestionConstruct + + + + fr.insee + lnvlhbf5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvlhbf5-IP-1 + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + lnvlhbf5-IP-1 + 1 + InParameter + + + (lnvlhbf5-IP-1 = "1" or lnvlhbf5-IP-1 ="2") + + + + fr.insee + lnvlhbf5-THEN + 1 + Sequence + + + + fr.insee + lnvlhbf5-THEN + 1 + + + + + fr.insee + kc0ir8tk + 1 + Sequence + + + + fr.insee + lnvrv8cp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvrv8cp-IP-1 + 1 + + DATECOM + + + + + fr.insee + kc0iuqho-QOP-kc0j4swy + 1 + OutParameter + + + fr.insee + lnvrv8cp-IP-1 + 1 + InParameter + + + lnvrv8cp-IP-1 = "1" + + + + fr.insee + lnvrv8cp-THEN + 1 + Sequence + + + + fr.insee + lnvrv8cp-THEN + 1 + + + + + fr.insee + kc0ijn79-QC + 1 + QuestionConstruct + + + fr.insee + lnd86l8j-QC + 1 + QuestionConstruct + + + fr.insee + lnd86l8j-CI-0 + 1 + ComputationItem + + + fr.insee + lnd8amkr-QC + 1 + QuestionConstruct + + + fr.insee + lnd8amkr-CI-0 + 1 + ComputationItem + + + fr.insee + lnd8oyto-QC + 1 + QuestionConstruct + + + fr.insee + lnd8oyto-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvs6o77 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvs6o77-IP-1 + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + lnvs6o77-IP-1 + 1 + InParameter + + + lnvs6o77-IP-1 = "1" + + + + fr.insee + lnvs6o77-THEN + 1 + Sequence + + + + fr.insee + lnvs6o77-THEN + 1 + + + + + fr.insee + lnd9bbn9 + 1 + Sequence + + + fr.insee + lnubyqsk + 1 + Sequence + + + + fr.insee + lnvtjcxc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvtjcxc-IP-1 + 1 + + HOMEIOTX1 + + + + fr.insee + lnvtjcxc-IP-2 + 1 + + HOMEIOTX2 + + + + fr.insee + lnvtjcxc-IP-3 + 1 + + HOMEIOTX3 + + + + fr.insee + lnvtjcxc-IP-4 + 1 + + HOMEIOTX4 + + + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + OutParameter + + + fr.insee + lnvtjcxc-IP-1 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + OutParameter + + + fr.insee + lnvtjcxc-IP-2 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + OutParameter + + + fr.insee + lnvtjcxc-IP-3 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + OutParameter + + + fr.insee + lnvtjcxc-IP-4 + 1 + InParameter + + + (nvl(lnvtjcxc-IP-1, false) = false) and (nvl(lnvtjcxc-IP-2, false) = false) and (nvl(lnvtjcxc-IP-3, false) = false) and (nvl(lnvtjcxc-IP-4, false) = false) + + + + fr.insee + lnvtjcxc-THEN + 1 + Sequence + + + + fr.insee + lnvtjcxc-THEN + 1 + + + + + fr.insee + lndc97me-QC + 1 + QuestionConstruct + + + fr.insee + lndc97me-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvu06vi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvu06vi-IP-1 + 1 + + HOMEIOTX1 + + + + fr.insee + lnvu06vi-IP-2 + 1 + + HOMEIOTX2 + + + + fr.insee + lnvu06vi-IP-3 + 1 + + HOMEIOTX3 + + + + fr.insee + lnvu06vi-IP-4 + 1 + + HOMEIOTX4 + + + + fr.insee + lnvu06vi-IP-5 + 1 + + TVIOTX1 + + + + fr.insee + lnvu06vi-IP-6 + 1 + + TVIOTX2 + + + + fr.insee + lnvu06vi-IP-7 + 1 + + TVIOTX3 + + + + fr.insee + lnvu06vi-IP-8 + 1 + + AUTIOTX1 + + + + fr.insee + lnvu06vi-IP-9 + 1 + + AUTIOTX2 + + + + fr.insee + lnvu06vi-IP-10 + 1 + + AUTIOTX3 + + + + fr.insee + lnvu06vi-IP-11 + 1 + + AUTIOTX4 + + + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-1 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-2 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-3 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-4 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndd0hai + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-5 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndd6bpp + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-6 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndd0jk8 + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-7 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndco0sy + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-8 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndd6aqv + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-9 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndcuhub + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-10 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndcy1ey + 1 + OutParameter + + + fr.insee + lnvu06vi-IP-11 + 1 + InParameter + + + (nvl(lnvu06vi-IP-1, false) or nvl(lnvu06vi-IP-2, false) or nvl(lnvu06vi-IP-3, false) or nvl(lnvu06vi-IP-4, false) or nvl(lnvu06vi-IP-5, false) or nvl(lnvu06vi-IP-6, false) or nvl(lnvu06vi-IP-7, false) or nvl(lnvu06vi-IP-8, false) or nvl(lnvu06vi-IP-9, false) or nvl(lnvu06vi-IP-10, false) or nvl(lnvu06vi-IP-11, false)) + + + + fr.insee + lnvu06vi-THEN + 1 + Sequence + + + + fr.insee + lnvu06vi-THEN + 1 + + + + + fr.insee + lndcrv7o-QC + 1 + QuestionConstruct + + + fr.insee + lndcrv7o-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvuy9e4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvuy9e4-IP-1 + 1 + + F_SMARTPHONEX1 + + + + + fr.insee + kc0mzowl-QOP-l5s01nq2 + 1 + OutParameter + + + fr.insee + lnvuy9e4-IP-1 + 1 + InParameter + + + lnvuy9e4-IP-1 = true + + + + fr.insee + lnvuy9e4-THEN + 1 + Sequence + + + + fr.insee + lnvuy9e4-THEN + 1 + + + + + fr.insee + lnuef2pw-QC + 1 + QuestionConstruct + + + fr.insee + lnuf1qgc-QC + 1 + QuestionConstruct + + + fr.insee + lnuf6krf-QC + 1 + QuestionConstruct + + + fr.insee + lnuf6krf-CI-0 + 1 + ComputationItem + + + + fr.insee + lnvwycql + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvwycql-IP-1 + 1 + + F_TELECONX1 + + + + fr.insee + lnvwycql-IP-2 + 1 + + F_TELECONX2 + + + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + OutParameter + + + fr.insee + lnvwycql-IP-1 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + OutParameter + + + fr.insee + lnvwycql-IP-2 + 1 + InParameter + + + nvl(lnvwycql-IP-1, false) or nvl(lnvwycql-IP-2, false) + + + + fr.insee + lnvwycql-THEN + 1 + Sequence + + + + fr.insee + lnvwycql-THEN + 1 + + + + + fr.insee + lnufz3ld-QC + 1 + QuestionConstruct + + + + fr.insee + lnvwuyar + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lnvwuyar-IP-1 + 1 + + F_TELECONX3 + + + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + OutParameter + + + fr.insee + lnvwuyar-IP-1 + 1 + InParameter + + + nvl(lnvwuyar-IP-1, false) + + + + fr.insee + lnvwuyar-THEN + 1 + Sequence + + + + fr.insee + lnvwuyar-THEN + 1 + + + + + fr.insee + lnufz5dt-QC + 1 + QuestionConstruct + + + + fr.insee + lpv29jcy + 1 + + A définir + + + Si vous avez déclaré être en emploi, passez directement à la question G4 + + hideable + + + vtl + + fr.insee + lpv29jcy-IP-1 + 1 + + SITUAEU + + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + lpv29jcy-IP-1 + 1 + InParameter + + + nvl(lpv29jcy-IP-1 , " ") = "2" or nvl(lpv29jcy-IP-1 , " ") = "3" or nvl(lpv29jcy-IP-1 , " ") = "4" or nvl(lpv29jcy-IP-1 , " ") = "5" or nvl(lpv29jcy-IP-1 , " ") = "6" or nvl(lpv29jcy-IP-1 , " ") = "7" + + + + fr.insee + lpv29jcy-THEN + 1 + Sequence + + + + fr.insee + lpv29jcy-THEN + 1 + + + + + fr.insee + lpv06337-QC + 1 + QuestionConstruct + + + fr.insee + lpv2kgt2 + 1 + IfThenElse + + + + fr.insee + lpv2kgt2 + 1 + + A définir + + + Si vous avez déclaré avoir cependant un emploi, passez à la question G4 + + hideable + + + vtl + + fr.insee + lpv2kgt2-IP-1 + 1 + + TRAVAIL + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + lpv2kgt2-IP-1 + 1 + InParameter + + + lpv2kgt2-IP-1 = "2" or nvl(lpv2kgt2-IP-1, " ") = " " + + + + fr.insee + lpv2kgt2-THEN + 1 + Sequence + + + + fr.insee + lpv2kgt2-THEN + 1 + + + + + fr.insee + lpv0e9d4-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2afqh + 1 + + A définir + + + Si vous n'avez jamais travaillé même pour un petit boulot il y a longtemps, passez à la question G15 + + hideable + + + vtl + + fr.insee + lpv2afqh-IP-1 + 1 + + SITUAEU + + + + fr.insee + lpv2afqh-IP-2 + 1 + + TRAVAIL + + + + fr.insee + lpv2afqh-IP-3 + 1 + + ACTIVANTE + + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + lpv2afqh-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + lpv2afqh-IP-2 + 1 + InParameter + + + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + OutParameter + + + fr.insee + lpv2afqh-IP-3 + 1 + InParameter + + + (nvl(lpv2afqh-IP-1, " ") = "1" or nvl(lpv2afqh-IP-2, " ") = "1" or nvl(lpv2afqh-IP-3, " ") = "1") + + + + fr.insee + lpv2afqh-THEN + 1 + Sequence + + + + fr.insee + lpv2afqh-THEN + 1 + + + + + fr.insee + lowso3oc-QC + 1 + QuestionConstruct + + + fr.insee + lpv2ccog + 1 + IfThenElse + + + fr.insee + lpv2x5z3 + 1 + IfThenElse + + + fr.insee + kc0nbhww-QC + 1 + QuestionConstruct + + + fr.insee + lpv2s2nw + 1 + IfThenElse + + + fr.insee + lpv2wuqm + 1 + IfThenElse + + + fr.insee + lpv2y98b + 1 + IfThenElse + + + fr.insee + kc0p4jga-QC + 1 + QuestionConstruct + + + fr.insee + kc0p4jga-CI-0 + 1 + ComputationItem + + + fr.insee + lpv2ronl + 1 + IfThenElse + + + fr.insee + lpv30awh + 1 + IfThenElse + + + fr.insee + kc0o6lj8-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2ccog + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lpv2ccog-IP-1 + 1 + + PROFESSIONLISTE + + + + + fr.insee + lowso3oc-QOP-lq2k2co5 + 1 + OutParameter + + + fr.insee + lpv2ccog-IP-1 + 1 + InParameter + + + nvl(lpv2ccog-IP-1, "9999") = "9999" + + + + fr.insee + lpv2ccog-THEN + 1 + Sequence + + + + fr.insee + lpv2ccog-THEN + 1 + + + + + fr.insee + lox14baw-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2x5z3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lpv2x5z3-IP-1 + 1 + + PROFESSIONCLAIR_FLOUS + + + + + fr.insee + lq2kgikz-GOP + 1 + OutParameter + + + fr.insee + lpv2x5z3-IP-1 + 1 + InParameter + + + lpv2x5z3-IP-1 + + + + fr.insee + lpv2x5z3-THEN + 1 + Sequence + + + + fr.insee + lpv2x5z3-THEN + 1 + + + + + fr.insee + lox1j0b5-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2s2nw + 1 + + A définir + + + Si vous n'êtes ni salarié(e) de la fonction publique ni salarié(e) d'une entreprise, passez à la question G11 + + hideable + + + vtl + + fr.insee + lpv2s2nw-IP-1 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + lpv2s2nw-IP-1 + 1 + InParameter + + + nvl(lpv2s2nw-IP-1, " ") = "2" or nvl(lpv2s2nw-IP-1, " ") ="3" + + + + fr.insee + lpv2s2nw-THEN + 1 + Sequence + + + + fr.insee + lpv2s2nw-THEN + 1 + + + + + fr.insee + kc0nuukd-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2wuqm + 1 + + A définir + + + Si vous êtes salarié(e) d'une entreprise, passez à la question G10 + + hideable + + + vtl + + fr.insee + lpv2wuqm-IP-1 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + lpv2wuqm-IP-1 + 1 + InParameter + + + nvl(lpv2wuqm-IP-1, " ") = "2" + + + + fr.insee + lpv2wuqm-THEN + 1 + Sequence + + + + fr.insee + lpv2wuqm-THEN + 1 + + + + + fr.insee + lox2pfjr-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2y98b + 1 + + A définir + + + Si vous êtes salarié de la fonction publique, passez à la question G11 + + hideable + + + vtl + + fr.insee + lpv2y98b-IP-1 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + lpv2y98b-IP-1 + 1 + InParameter + + + nvl(lpv2y98b-IP-1, " ") = "3" + + + + fr.insee + lpv2y98b-THEN + 1 + Sequence + + + + fr.insee + lpv2y98b-THEN + 1 + + + + + fr.insee + lowseoqt-QC + 1 + QuestionConstruct + + + + fr.insee + lpv2ronl + 1 + + A définir + + + Si vous n'êtes pas à votre compte (gérant(e) de société ou chef(fe) d'entreprise salarié(e)), passez directement à la question G13 + + hideable + + + vtl + + fr.insee + lpv2ronl-IP-1 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + lpv2ronl-IP-1 + 1 + InParameter + + + nvl(lpv2ronl-IP-1, " ") = "1" + + + + fr.insee + lpv2ronl-THEN + 1 + Sequence + + + + fr.insee + lpv2ronl-THEN + 1 + + + + + fr.insee + kc0qftls-QC + 1 + QuestionConstruct + + + + fr.insee + lpv30awh + 1 + + A définir + + + Si vous n'êtes pas à votre compte (gérant(e) de société ou chef(fe) d'entreprise salarié(e)) ou travaillez sans être rémunéré avec un membre de votre famille, passez directement à la question G14 + + hideable + + + vtl + + fr.insee + lpv30awh-IP-1 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + lpv30awh-IP-1 + 1 + InParameter + + + nvl(lpv30awh-IP-1, " ") = "2" or nvl(lpv30awh-IP-1, " ") = "3" or nvl(lpv30awh-IP-1, " ") = "4" + + + + fr.insee + lpv30awh-THEN + 1 + Sequence + + + + fr.insee + lpv30awh-THEN + 1 + + + + + fr.insee + kc0o78n2-QC + 1 + QuestionConstruct + + + + fr.insee + lqwjp776 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lqwjp776-IP-1 + 1 + + REVENU + + + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + OutParameter + + + fr.insee + lqwjp776-IP-1 + 1 + InParameter + + + isnull(lqwjp776-IP-1) = true + + + + fr.insee + lqwjp776-THEN + 1 + Sequence + + + + fr.insee + lqwjp776-THEN + 1 + + + + + fr.insee + lqwjbav6-QC + 1 + QuestionConstruct + + + fr.insee + lqwjbav6-CI-0 + 1 + ComputationItem + + + + fr.insee + lox6eoqy-QC + 1 + + RESIDENCE + + + fr.insee + lox6eoqy + 1 + QuestionItem + + + + fr.insee + lox62xmp-QC + 1 + + POLITES + + + fr.insee + lox62xmp + 1 + QuestionItem + + + + fr.insee + lptucl00-QC + 1 + + DEBUT + + + fr.insee + lptucl00 + 1 + QuestionItem + + + + fr.insee + loyjheaw-QC + 1 + + NBHABT + + + fr.insee + loyjheaw + 1 + QuestionItem + + + + fr.insee + loyjwgx0-QC + 1 + + PRENOM_TEL + + + fr.insee + loyjwgx0 + 1 + QuestionItem + + + + fr.insee + loyl5bbb-QC + 1 + + SEXE_TEL + + + fr.insee + loyl5bbb + 1 + QuestionItem + + + + fr.insee + loyl4wyc-QC + 1 + + DATENAIS_TEL + + + fr.insee + loyl4wyc + 1 + QuestionItem + + + + fr.insee + loylambf-QC + 1 + + PASSER + + + fr.insee + loylambf + 1 + QuestionItem + + + + fr.insee + loylmcrg-QC + 1 + + IS_KISH + + + fr.insee + loylmcrg + 1 + QuestionItem + + + + fr.insee + loylqm0o-QC + 1 + + PRESAKO + + + fr.insee + loylqm0o + 1 + QuestionItem + + + + fr.insee + kbw8yqwv-QC + 1 + + DIPLOME + + + fr.insee + kbw8yqwv + 1 + QuestionItem + + + + fr.insee + kbw97gaf-QC + 1 + + ETUDE + + + fr.insee + kbw97gaf + 1 + QuestionItem + + + + fr.insee + kbw9jgd2-QC + 1 + + COUPLE + + + fr.insee + kbw9jgd2 + 1 + QuestionItem + + + + fr.insee + kbw9i35f-QC + 1 + + ETAMATRI + + + fr.insee + kbw9i35f + 1 + QuestionItem + + + + fr.insee + kbw9gttr-QC + 1 + + PACS + + + fr.insee + kbw9gttr + 1 + QuestionItem + + + + fr.insee + kbw9rrbt-QC + 1 + + LNAIS + + + fr.insee + kbw9rrbt + 1 + QuestionItem + + + + fr.insee + kbw9r169-QC + 1 + + DEPNAIS + + + fr.insee + kbw9r169 + 1 + QuestionItem + + + + fr.insee + kbwanueu-QC + 1 + + PAYSNAIS + + + fr.insee + kbwanueu + 1 + QuestionItem + + + + fr.insee + kbwafrus-QC + 1 + + NATIO1N + + + fr.insee + kbwafrus + 1 + QuestionGrid + + + + fr.insee + kbwanqdo-QC + 1 + + NATIO2N + + + fr.insee + kbwanqdo + 1 + QuestionItem + + + + fr.insee + kc0gq6qv-QC + 1 + + NET + + + fr.insee + kc0gq6qv + 1 + QuestionItem + + + + fr.insee + kuznl5ba-QC + 1 + + F_DEBITX + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + fr.insee + lnbwa2sl-QC + 1 + + F_HDEBX + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + fr.insee + kc0h7448-QC + 1 + + NUSEWEB + + + fr.insee + kc0h7448 + 1 + QuestionItem + + + + fr.insee + kc0haj1j-QC + 1 + + USEWEB + + + fr.insee + kc0haj1j + 1 + QuestionItem + + + + fr.insee + kc0hyu5k-QC + 1 + + PRATINTXX + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + fr.insee + ks4tje5l-QC + 1 + + EDUPROX + + + fr.insee + ks4tje5l + 1 + QuestionGrid + + + + fr.insee + lnd4rdph-QC + 1 + + OBJEDUX + + + fr.insee + lnd4rdph + 1 + QuestionGrid + + + + fr.insee + lnd5kw2d-QC + 1 + + F_IMPROVEX + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + fr.insee + lnd64z9l-QC + 1 + + F_SKILLS + + + fr.insee + lnd64z9l + 1 + QuestionItem + + + + fr.insee + lnd5pnag-QC + 1 + + REGIST + + + fr.insee + lnd5pnag + 1 + QuestionItem + + + + fr.insee + lnd5x3l5-QC + 1 + + SUPREGIST + + + fr.insee + lnd5x3l5 + 1 + QuestionItem + + + + fr.insee + lnd66axd-QC + 1 + + PBREGIST + + + fr.insee + lnd66axd + 1 + QuestionItem + + + + fr.insee + kc0i0jec-QC + 1 + + ADMX + + + fr.insee + kc0i0jec + 1 + QuestionGrid + + + + fr.insee + ks5vgahz-QC + 1 + + IMPADM + + + fr.insee + ks5vgahz + 1 + QuestionItem + + + + fr.insee + ks5vqq6b-QC + 1 + + RDVADM + + + fr.insee + ks5vqq6b + 1 + QuestionItem + + + + fr.insee + ks5vhf4w-QC + 1 + + MESADM + + + fr.insee + ks5vhf4w + 1 + QuestionItem + + + + fr.insee + ks5vgp57-QC + 1 + + DECLADM + + + fr.insee + ks5vgp57 + 1 + QuestionItem + + + + fr.insee + ks5vdqs4-QC + 1 + + RAIADMX + + + fr.insee + ks5vdqs4 + 1 + QuestionGrid + + + + fr.insee + ks5vnmgt-QC + 1 + + DEMADMX + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + fr.insee + lnd7ni7e-QC + 1 + + PROADMX + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + fr.insee + kc0i7d8t-QC + 1 + + F_AIDADMX + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + fr.insee + kc0is12p-QC + 1 + + F_RENADMX + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + fr.insee + kc0iso1a-QC + 1 + + F_AUTADM + + + fr.insee + kc0iso1a + 1 + QuestionItem + + + + fr.insee + kc0iuqho-QC + 1 + + DATECOM + + + fr.insee + kc0iuqho + 1 + QuestionItem + + + + fr.insee + kc0ijn79-QC + 1 + + ACHATXX + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + fr.insee + lnd86l8j-QC + 1 + + ABACHAX + + + fr.insee + lnd86l8j + 1 + QuestionGrid + + + + fr.insee + lnd8amkr-QC + 1 + + SERACHAX + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + fr.insee + lnd8oyto-QC + 1 + + PAYACHAX + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + fr.insee + kc0juxed-QC + 1 + + FINANCEX + + + fr.insee + kc0juxed + 1 + QuestionGrid + + + + fr.insee + lndbnxta-QC + 1 + + HOMEIOTX + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + fr.insee + lndc97me-QC + 1 + + RAISIOTX + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + fr.insee + lndcj9fz-QC + 1 + + TVIOTX + + + fr.insee + lndcj9fz + 1 + QuestionGrid + + + + fr.insee + lndcjg90-QC + 1 + + AUTIOTX + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + fr.insee + lndcrv7o-QC + 1 + + PBIOTX + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + fr.insee + lnucc4yw-QC + 1 + + GREENA + + + fr.insee + lnucc4yw + 1 + QuestionItem + + + + fr.insee + lnuctqyc-QC + 1 + + GREENB + + + fr.insee + lnuctqyc + 1 + QuestionItem + + + + fr.insee + lnucrg4j-QC + 1 + + GREENC + + + fr.insee + lnucrg4j + 1 + QuestionItem + + + + fr.insee + lnudc90x-QC + 1 + + CARGREENX + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + fr.insee + lnue69t2-QC + 1 + + F_FIXE + + + fr.insee + lnue69t2 + 1 + QuestionItem + + + + fr.insee + lnue7e91-QC + 1 + + F_ORDIX + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + fr.insee + kc0mzowl-QC + 1 + + F_SMARTPHONEX + + + fr.insee + kc0mzowl + 1 + QuestionGrid + + + + fr.insee + lnuef2pw-QC + 1 + + F_DURSMART + + + fr.insee + lnuef2pw + 1 + QuestionItem + + + + fr.insee + lnuf1qgc-QC + 1 + + F_ETASMART + + + fr.insee + lnuf1qgc + 1 + QuestionItem + + + + fr.insee + lnuf6krf-QC + 1 + + F_RAISMARTX + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + fr.insee + lqb27fdb-QC + 1 + + F_FRESEC + + + fr.insee + lqb27fdb + 1 + QuestionItem + + + + fr.insee + lqb2cik4-QC + 1 + + F_FREWEC + + + fr.insee + lqb2cik4 + 1 + QuestionItem + + + + fr.insee + lqb23j8a-QC + 1 + + F_SATISVIE + + + fr.insee + lqb23j8a + 1 + QuestionItem + + + + fr.insee + lqb2a9ht-QC + 1 + + F_SATISSANTE + + + fr.insee + lqb2a9ht + 1 + QuestionItem + + + + fr.insee + lnufsvxy-QC + 1 + + F_TELECONX + + + fr.insee + lnufsvxy + 1 + QuestionGrid + + + + fr.insee + lnufz3ld-QC + 1 + + F_TELEOUIXX + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + fr.insee + lnufz5dt-QC + 1 + + F_TELENONX + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + fr.insee + kc0n6snm-QC + 1 + + SITUAEU + + + fr.insee + kc0n6snm + 1 + QuestionItem + + + + fr.insee + lpv06337-QC + 1 + + TRAVAIL + + + fr.insee + lpv06337 + 1 + QuestionItem + + + + fr.insee + lpv0e9d4-QC + 1 + + ACTIVANTE + + + fr.insee + lpv0e9d4 + 1 + QuestionItem + + + + fr.insee + lowso3oc-QC + 1 + + PROFESSIONLISTE + + + fr.insee + lowso3oc + 1 + QuestionItem + + + + fr.insee + lox14baw-QC + 1 + + PROFESSIONCLAIR + + + fr.insee + lox14baw + 1 + QuestionItem + + + + fr.insee + lox1j0b5-QC + 1 + + PROFESSIONCLAIRP + + + fr.insee + lox1j0b5 + 1 + QuestionItem + + + + fr.insee + kc0nbhww-QC + 1 + + STCPUB + + + fr.insee + kc0nbhww + 1 + QuestionItem + + + + fr.insee + kc0nuukd-QC + 1 + + ENCADR + + + fr.insee + kc0nuukd + 1 + QuestionItem + + + + fr.insee + lox2pfjr-QC + 1 + + POSITION_PUBLIC + + + fr.insee + lox2pfjr + 1 + QuestionItem + + + + fr.insee + lowseoqt-QC + 1 + + POSITION_PRIVE + + + fr.insee + lowseoqt + 1 + QuestionItem + + + + fr.insee + kc0p4jga-QC + 1 + + ACTILIB + + + fr.insee + kc0p4jga + 1 + QuestionItem + + + + fr.insee + kc0qftls-QC + 1 + + NBSAL + + + fr.insee + kc0qftls + 1 + QuestionItem + + + + fr.insee + kc0o78n2-QC + 1 + + CONTRAT + + + fr.insee + kc0o78n2 + 1 + QuestionItem + + + + fr.insee + kc0o6lj8-QC + 1 + + DUREE_EMP + + + fr.insee + kc0o6lj8 + 1 + QuestionItem + + + + fr.insee + ks4txhy9-QC + 1 + + SANTE + + + fr.insee + ks4txhy9 + 1 + QuestionItem + + + + fr.insee + kc0qz959-QC + 1 + + REVENU + + + fr.insee + kc0qz959 + 1 + QuestionItem + + + + fr.insee + lqwjbav6-QC + 1 + + TRANCHREVENU + + + fr.insee + lqwjbav6 + 1 + QuestionItem + + + + fr.insee + kbwafrus-CI-0 + 1 + + Modalité 4 incompatible avec les autres items + + + Modalité 4 incompatible avec les autres items + + + fr.insee + kbwafrus-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kbwafrus-CI-0-IP-1 + 1 + + NATIO1N1 + + + + fr.insee + kbwafrus-CI-0-IP-2 + 1 + + NATIO1N2 + + + + fr.insee + kbwafrus-CI-0-IP-3 + 1 + + NATIO1N3 + + + + fr.insee + kbwafrus-CI-0-IP-4 + 1 + + NATIO1N4 + + + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + OutParameter + + + fr.insee + kbwafrus-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + OutParameter + + + fr.insee + kbwafrus-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kbwafrus-QOP-kwmb49mu + 1 + OutParameter + + + fr.insee + kbwafrus-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kbwafrus-QOP-kwmay4fv + 1 + OutParameter + + + fr.insee + kbwafrus-CI-0-IP-4 + 1 + InParameter + + + nvl(kbwafrus-CI-0-IP-4, false) and (nvl(kbwafrus-CI-0-IP-1, false) or nvl(kbwafrus-CI-0-IP-2, false) or nvl(kbwafrus-CI-0-IP-3, false)) + + + + + fr.insee + kbwafrus-CI-1 + 1 + + Modalité 1 et 2 incompatibles + + + Modalité 1 et 2 incompatibles + + + fr.insee + kbwafrus-CI-1-II-1 + 1 + Instruction + + warning + + + vtl + + fr.insee + kbwafrus-CI-1-IP-1 + 1 + + NATIO1N1 + + + + fr.insee + kbwafrus-CI-1-IP-2 + 1 + + NATIO1N2 + + + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + OutParameter + + + fr.insee + kbwafrus-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + OutParameter + + + fr.insee + kbwafrus-CI-1-IP-2 + 1 + InParameter + + + nvl(kbwafrus-CI-1-IP-1, false) and nvl(kbwafrus-CI-1-IP-2, false) + + + + + fr.insee + kc0h7448-CI-0 + 1 + + Question obligatoire + + + Question obligatoire + + + fr.insee + kc0h7448-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kc0h7448-CI-0-IP-1 + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + kc0h7448-CI-0-IP-1 + 1 + InParameter + + + isnull(kc0h7448-CI-0-IP-1) + + + + + fr.insee + kc0haj1j-CI-0 + 1 + + Non-réponse + + + Non-réponse + + + fr.insee + kc0haj1j-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kc0haj1j-CI-0-IP-1 + 1 + + USEWEB + + + + + fr.insee + kc0haj1j-QOP-kc0he2xy + 1 + OutParameter + + + fr.insee + kc0haj1j-CI-0-IP-1 + 1 + InParameter + + + isnull(kc0haj1j-CI-0-IP-1) + + + + + fr.insee + kc0hyu5k-CI-0 + 1 + + Aucune activité + + + Aucune activité + + + fr.insee + kc0hyu5k-CI-0-II-0 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kc0hyu5k-CI-0-IP-1 + 1 + + PRATINTXX1 + + + + fr.insee + kc0hyu5k-CI-0-IP-2 + 1 + + PRATINTXX2 + + + + fr.insee + kc0hyu5k-CI-0-IP-3 + 1 + + PRATINTXX3 + + + + fr.insee + kc0hyu5k-CI-0-IP-4 + 1 + + PRATINTXX4 + + + + fr.insee + kc0hyu5k-CI-0-IP-5 + 1 + + PRATINTXX5 + + + + fr.insee + kc0hyu5k-CI-0-IP-6 + 1 + + PRATINTXX6 + + + + fr.insee + kc0hyu5k-CI-0-IP-7 + 1 + + PRATINTXX7 + + + + fr.insee + kc0hyu5k-CI-0-IP-8 + 1 + + PRATINTXX8 + + + + fr.insee + kc0hyu5k-CI-0-IP-9 + 1 + + PRATINTXX9 + + + + fr.insee + kc0hyu5k-CI-0-IP-10 + 1 + + PRATINTXX10 + + + + fr.insee + kc0hyu5k-CI-0-IP-11 + 1 + + PRATINTXX11 + + + + fr.insee + kc0hyu5k-CI-0-IP-12 + 1 + + PRATINTXX12 + + + + fr.insee + kc0hyu5k-CI-0-IP-13 + 1 + + PRATINTXX13 + + + + fr.insee + kc0hyu5k-CI-0-IP-14 + 1 + + PRATINTXX14 + + + + fr.insee + kc0hyu5k-CI-0-IP-15 + 1 + + PRATINTXX15 + + + + fr.insee + kc0hyu5k-CI-0-IP-16 + 1 + + PRATINTXX16 + + + + fr.insee + kc0hyu5k-CI-0-IP-17 + 1 + + PRATINTXX17 + + + + fr.insee + kc0hyu5k-CI-0-IP-18 + 1 + + PRATINTXX18 + + + + fr.insee + kc0hyu5k-CI-0-IP-19 + 1 + + PRATINTXX19 + + + + fr.insee + kc0hyu5k-CI-0-IP-20 + 1 + + PRATINTXX20 + + + + fr.insee + kc0hyu5k-CI-0-IP-21 + 1 + + PRATINTXX21 + + + + + fr.insee + kc0hyu5k-QOP-lq5fp0us + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fh949 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fp32f + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5f7bzd + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fnqsz + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5f7h9u + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5f5pp2 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fg0y2 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-8 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5flzel + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-9 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fnbv7 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-10 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5foc8i + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-11 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fbf7d + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-12 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5f6m3o + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-13 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5facrr + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-14 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5f6bn0 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-15 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fc14s + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-16 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5finzp + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-17 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fb4c6 + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-18 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fob3f + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-19 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5feqnb + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-20 + 1 + InParameter + + + + + fr.insee + kc0hyu5k-QOP-lq5fn7vv + 1 + OutParameter + + + fr.insee + kc0hyu5k-CI-0-IP-21 + 1 + InParameter + + + (nvl(kc0hyu5k-CI-0-IP-21, false) and (nvl(kc0hyu5k-CI-0-IP-1, false) or nvl(kc0hyu5k-CI-0-IP-2, false) or nvl(kc0hyu5k-CI-0-IP-3, false) or nvl(kc0hyu5k-CI-0-IP-4, false) or nvl(kc0hyu5k-CI-0-IP-5, false) or nvl(kc0hyu5k-CI-0-IP-6, false) or nvl(kc0hyu5k-CI-0-IP-7, false) or nvl(kc0hyu5k-CI-0-IP-8, false) or nvl(kc0hyu5k-CI-0-IP-9, false) or nvl(kc0hyu5k-CI-0-IP-10, false) or nvl(kc0hyu5k-CI-0-IP-11, false) or nvl(kc0hyu5k-CI-0-IP-12, false) or nvl(kc0hyu5k-CI-0-IP-13, false) or nvl(kc0hyu5k-CI-0-IP-14, false) or nvl(kc0hyu5k-CI-0-IP-15, false) or nvl(kc0hyu5k-CI-0-IP-16, false) or nvl(kc0hyu5k-CI-0-IP-17, false) or nvl(kc0hyu5k-CI-0-IP-18, false) or nvl(kc0hyu5k-CI-0-IP-19, false) or nvl(kc0hyu5k-CI-0-IP-20, false))) + + + + + fr.insee + ks4tje5l-CI-0 + 1 + + Dernière modalité incompatible + + + Dernière modalité incompatible + + + fr.insee + ks4tje5l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ks4tje5l-CI-0-IP-1 + 1 + + EDUPROX1 + + + + fr.insee + ks4tje5l-CI-0-IP-2 + 1 + + EDUPROX2 + + + + fr.insee + ks4tje5l-CI-0-IP-3 + 1 + + EDUPROX3 + + + + fr.insee + ks4tje5l-CI-0-IP-4 + 1 + + EDUPROX4 + + + + + fr.insee + ks4tje5l-QOP-l5qsbjcn + 1 + OutParameter + + + fr.insee + ks4tje5l-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + ks4tje5l-QOP-l5qss6oe + 1 + OutParameter + + + fr.insee + ks4tje5l-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + ks4tje5l-QOP-l5qsqkz5 + 1 + OutParameter + + + fr.insee + ks4tje5l-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + ks4tje5l-QOP-l5qsepmx + 1 + OutParameter + + + fr.insee + ks4tje5l-CI-0-IP-4 + 1 + InParameter + + + nvl(ks4tje5l-CI-0-IP-4, false) and (nvl(ks4tje5l-CI-0-IP-1, false) or nvl(ks4tje5l-CI-0-IP-2, false) or nvl(ks4tje5l-CI-0-IP-3, false) ) + + + + + fr.insee + lnd5kw2d-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lnd5kw2d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnd5kw2d-CI-0-IP-1 + 1 + + F_IMPROVEX1 + + + + fr.insee + lnd5kw2d-CI-0-IP-2 + 1 + + F_IMPROVEX2 + + + + fr.insee + lnd5kw2d-CI-0-IP-3 + 1 + + F_IMPROVEX3 + + + + fr.insee + lnd5kw2d-CI-0-IP-4 + 1 + + F_IMPROVEX4 + + + + fr.insee + lnd5kw2d-CI-0-IP-5 + 1 + + F_IMPROVEX5 + + + + fr.insee + lnd5kw2d-CI-0-IP-6 + 1 + + F_IMPROVEX6 + + + + + fr.insee + lnd5kw2d-QOP-lnd61gz7 + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnd5kw2d-QOP-lnd5ttaw + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnd5kw2d-QOP-lnd5uk3h + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnd5kw2d-QOP-lnd6bqz6 + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnd5kw2d-QOP-lnd5si8z + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lnd5kw2d-QOP-lnd5vhu7 + 1 + OutParameter + + + fr.insee + lnd5kw2d-CI-0-IP-6 + 1 + InParameter + + + (nvl(lnd5kw2d-CI-0-IP-6, false)=true and (nvl(lnd5kw2d-CI-0-IP-1, false) = true or nvl(lnd5kw2d-CI-0-IP-2, false)=true or nvl(lnd5kw2d-CI-0-IP-3, false)=true or nvl(lnd5kw2d-CI-0-IP-4, false)=true or nvl(lnd5kw2d-CI-0-IP-5, false)=true)) + + + + + fr.insee + kc0i0jec-CI-0 + 1 + + Modalité 4 incompatible avec les autres items  + + + Modalité 4 incompatible avec les autres items  + + + fr.insee + kc0i0jec-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0i0jec-CI-0-IP-1 + 1 + + ADMX1 + + + + fr.insee + kc0i0jec-CI-0-IP-2 + 1 + + ADMX2 + + + + fr.insee + kc0i0jec-CI-0-IP-3 + 1 + + ADMX3 + + + + fr.insee + kc0i0jec-CI-0-IP-4 + 1 + + ADMX4 + + + + + fr.insee + kc0i0jec-QOP-kwmazv3k + 1 + OutParameter + + + fr.insee + kc0i0jec-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0i0jec-QOP-kwmb4o86 + 1 + OutParameter + + + fr.insee + kc0i0jec-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0i0jec-QOP-kwmb6i3d + 1 + OutParameter + + + fr.insee + kc0i0jec-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kc0i0jec-QOP-kwmaw31m + 1 + OutParameter + + + fr.insee + kc0i0jec-CI-0-IP-4 + 1 + InParameter + + + nvl(kc0i0jec-CI-0-IP-4, false) and ( nvl(kc0i0jec-CI-0-IP-1, false) or nvl(kc0i0jec-CI-0-IP-2, false) or nvl(kc0i0jec-CI-0-IP-3, false) ) + + + + + fr.insee + ks5vdqs4-CI-0 + 1 + + Modalité 4 incompatible avec les autres items + + + Modalité 4 incompatible avec les autres items + + + fr.insee + ks5vdqs4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ks5vdqs4-CI-0-IP-1 + 1 + + RAIADMX1 + + + + fr.insee + ks5vdqs4-CI-0-IP-2 + 1 + + RAIADMX2 + + + + fr.insee + ks5vdqs4-CI-0-IP-3 + 1 + + RAIADMX3 + + + + fr.insee + ks5vdqs4-CI-0-IP-4 + 1 + + RAIADMX4 + + + + + fr.insee + ks5vdqs4-QOP-l5qsic6y + 1 + OutParameter + + + fr.insee + ks5vdqs4-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qs9n5l + 1 + OutParameter + + + fr.insee + ks5vdqs4-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qsrxdz + 1 + OutParameter + + + fr.insee + ks5vdqs4-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + ks5vdqs4-QOP-l5qsc84x + 1 + OutParameter + + + fr.insee + ks5vdqs4-CI-0-IP-4 + 1 + InParameter + + + nvl(ks5vdqs4-CI-0-IP-4, false) and ( nvl(ks5vdqs4-CI-0-IP-1, false) or nvl(ks5vdqs4-CI-0-IP-2, false) or nvl(ks5vdqs4-CI-0-IP-3, false) ) + + + + + fr.insee + ks5vnmgt-CI-0 + 1 + + Modalité 1 incompatible avec les autres items + + + Modalité 1 incompatible avec les autres items + + + fr.insee + ks5vnmgt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ks5vnmgt-CI-0-IP-1 + 1 + + DEMADMX1 + + + + fr.insee + ks5vnmgt-CI-0-IP-2 + 1 + + DEMADMX2 + + + + fr.insee + ks5vnmgt-CI-0-IP-3 + 1 + + DEMADMX3 + + + + fr.insee + ks5vnmgt-CI-0-IP-4 + 1 + + DEMADMX4 + + + + fr.insee + ks5vnmgt-CI-0-IP-5 + 1 + + DEMADMX5 + + + + + fr.insee + ks5vnmgt-QOP-kwmcigfw + 1 + OutParameter + + + fr.insee + ks5vnmgt-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + ks5vnmgt-QOP-kwmckybs + 1 + OutParameter + + + fr.insee + ks5vnmgt-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + ks5vnmgt-QOP-kwmckiz6 + 1 + OutParameter + + + fr.insee + ks5vnmgt-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + ks5vnmgt-QOP-kwmcylnt + 1 + OutParameter + + + fr.insee + ks5vnmgt-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + ks5vnmgt-QOP-kwmcs5mx + 1 + OutParameter + + + fr.insee + ks5vnmgt-CI-0-IP-5 + 1 + InParameter + + + nvl(ks5vnmgt-CI-0-IP-1, false) and ( nvl(ks5vnmgt-CI-0-IP-2, false) or nvl(ks5vnmgt-CI-0-IP-3, false) or nvl(ks5vnmgt-CI-0-IP-4, false) or nvl(ks5vnmgt-CI-0-IP-5, false) ) + + + + + fr.insee + lnd7ni7e-CI-0 + 1 + + Modalité 6 incompatible avec les autres items + + + Modalité 6 incompatible avec les autres items + + + fr.insee + lnd7ni7e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnd7ni7e-CI-0-IP-1 + 1 + + PROADMX1 + + + + fr.insee + lnd7ni7e-CI-0-IP-2 + 1 + + PROADMX2 + + + + fr.insee + lnd7ni7e-CI-0-IP-3 + 1 + + PROADMX3 + + + + fr.insee + lnd7ni7e-CI-0-IP-4 + 1 + + PROADMX4 + + + + fr.insee + lnd7ni7e-CI-0-IP-5 + 1 + + PROADMX5 + + + + fr.insee + lnd7ni7e-CI-0-IP-6 + 1 + + PROADMX6 + + + + + fr.insee + lnd7ni7e-QOP-lnd8lf32 + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnd7ni7e-QOP-lnd8pvwm + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnd7ni7e-QOP-lnd8f6hi + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnd7ni7e-QOP-lnd8lp83 + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnd7ni7e-QOP-lnd8czjz + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lnd7ni7e-QOP-lnd8cx7p + 1 + OutParameter + + + fr.insee + lnd7ni7e-CI-0-IP-6 + 1 + InParameter + + + nvl(lnd7ni7e-CI-0-IP-6, false) and (nvl(lnd7ni7e-CI-0-IP-1, false) or nvl(lnd7ni7e-CI-0-IP-2, false) or nvl(lnd7ni7e-CI-0-IP-3, false) or nvl(lnd7ni7e-CI-0-IP-4, false) or nvl(lnd7ni7e-CI-0-IP-5, false) ) + + + + + fr.insee + kc0i7d8t-CI-0 + 1 + + Modalité 5 incompatible avec les autres items  + + + Modalité 5 incompatible avec les autres items  + + + fr.insee + kc0i7d8t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0i7d8t-CI-0-IP-1 + 1 + + F_AIDADMX1 + + + + fr.insee + kc0i7d8t-CI-0-IP-2 + 1 + + F_AIDADMX2 + + + + fr.insee + kc0i7d8t-CI-0-IP-3 + 1 + + F_AIDADMX3 + + + + fr.insee + kc0i7d8t-CI-0-IP-4 + 1 + + F_AIDADMX4 + + + + fr.insee + kc0i7d8t-CI-0-IP-5 + 1 + + F_AIDADMX5 + + + + + fr.insee + kc0i7d8t-QOP-lda11p1n + 1 + OutParameter + + + fr.insee + kc0i7d8t-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0i7d8t-QOP-lda197nn + 1 + OutParameter + + + fr.insee + kc0i7d8t-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0i7d8t-QOP-lda16296 + 1 + OutParameter + + + fr.insee + kc0i7d8t-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kc0i7d8t-QOP-lda0yh9x + 1 + OutParameter + + + fr.insee + kc0i7d8t-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kc0i7d8t-QOP-lda10j63 + 1 + OutParameter + + + fr.insee + kc0i7d8t-CI-0-IP-5 + 1 + InParameter + + + nvl(kc0i7d8t-CI-0-IP-5, false) and (nvl(kc0i7d8t-CI-0-IP-1, false) or nvl(kc0i7d8t-CI-0-IP-2, false) or nvl(kc0i7d8t-CI-0-IP-3, false) or nvl(kc0i7d8t-CI-0-IP-4, false) ) + + + + + fr.insee + kc0is12p-CI-0 + 1 + + Modalité 9 incompatible avec les autres items  + + + Modalité 9 incompatible avec les autres items  + + + fr.insee + kc0is12p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0is12p-CI-0-IP-1 + 1 + + F_RENADMX1 + + + + fr.insee + kc0is12p-CI-0-IP-2 + 1 + + F_RENADMX2 + + + + fr.insee + kc0is12p-CI-0-IP-3 + 1 + + F_RENADMX3 + + + + fr.insee + kc0is12p-CI-0-IP-4 + 1 + + F_RENADMX4 + + + + fr.insee + kc0is12p-CI-0-IP-5 + 1 + + F_RENADMX5 + + + + fr.insee + kc0is12p-CI-0-IP-6 + 1 + + F_RENADMX6 + + + + fr.insee + kc0is12p-CI-0-IP-7 + 1 + + F_RENADMX7 + + + + fr.insee + kc0is12p-CI-0-IP-8 + 1 + + F_RENADMX8 + + + + fr.insee + kc0is12p-CI-0-IP-9 + 1 + + F_RENADMX9 + + + + + fr.insee + kc0is12p-QOP-l5qsr5vo + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsgsly + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsm2gh + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsyby7 + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsshvt + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsrllz + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsuktj + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qshfk9 + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-8 + 1 + InParameter + + + + + fr.insee + kc0is12p-QOP-l5qsvqkb + 1 + OutParameter + + + fr.insee + kc0is12p-CI-0-IP-9 + 1 + InParameter + + + nvl(kc0is12p-CI-0-IP-9, false) and ( nvl(kc0is12p-CI-0-IP-1, false) or nvl(kc0is12p-CI-0-IP-2, false) or nvl(kc0is12p-CI-0-IP-3, false) or nvl(kc0is12p-CI-0-IP-4, false) or nvl(kc0is12p-CI-0-IP-5, false) or nvl(kc0is12p-CI-0-IP-6, false) or nvl(kc0is12p-CI-0-IP-7, false) or nvl(kc0is12p-CI-0-IP-8, false) ) + + + + + fr.insee + lnd86l8j-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lnd86l8j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnd86l8j-CI-0-IP-1 + 1 + + ABACHAX1 + + + + fr.insee + lnd86l8j-CI-0-IP-2 + 1 + + ABACHAX2 + + + + fr.insee + lnd86l8j-CI-0-IP-3 + 1 + + ABACHAX3 + + + + + fr.insee + lnd86l8j-QOP-lnd8hj37 + 1 + OutParameter + + + fr.insee + lnd86l8j-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnd86l8j-QOP-lnd8fqxa + 1 + OutParameter + + + fr.insee + lnd86l8j-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnd86l8j-QOP-lnd89wkt + 1 + OutParameter + + + fr.insee + lnd86l8j-CI-0-IP-3 + 1 + InParameter + + + nvl(lnd86l8j-CI-0-IP-3, false) and (nvl(lnd86l8j-CI-0-IP-1, false) or nvl(lnd86l8j-CI-0-IP-2, false)) + + + + + fr.insee + lnd8amkr-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lnd8amkr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnd8amkr-CI-0-IP-1 + 1 + + SERACHAX7 + + + + + fr.insee + lnd8amkr-QOP-lnd8culf + 1 + OutParameter + + + fr.insee + lnd8amkr-CI-0-IP-1 + 1 + InParameter + + + nvl(lnd8amkr-CI-0-IP-1, false) and (nvl($SERVACHAX1$, false) or nvl($SERVACHAX2$, false) or nvl($SERVACHAX3$, false) or nvl($SERVACHAX4$, false) or nvl($SERVACHAX5$, false) or nvl($SERVACHAX6$, false)) + + + + + fr.insee + lnd8oyto-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lnd8oyto-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnd8oyto-CI-0-IP-1 + 1 + + PAYACHAX1 + + + + fr.insee + lnd8oyto-CI-0-IP-2 + 1 + + PAYACHAX2 + + + + fr.insee + lnd8oyto-CI-0-IP-3 + 1 + + PAYACHAX3 + + + + fr.insee + lnd8oyto-CI-0-IP-4 + 1 + + PAYACHAX4 + + + + fr.insee + lnd8oyto-CI-0-IP-5 + 1 + + PAYACHAX5 + + + + fr.insee + lnd8oyto-CI-0-IP-6 + 1 + + PAYACHAX6 + + + + fr.insee + lnd8oyto-CI-0-IP-7 + 1 + + PAYACHAX7 + + + + + fr.insee + lnd8oyto-QOP-lq5fejj8 + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5fmgn8 + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5fo1h3 + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5febyh + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5f7shc + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5fcx77 + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + lnd8oyto-QOP-lq5f6twe + 1 + OutParameter + + + fr.insee + lnd8oyto-CI-0-IP-7 + 1 + InParameter + + + nvl(lnd8oyto-CI-0-IP-7, false) and (nvl(lnd8oyto-CI-0-IP-1, false) or nvl(lnd8oyto-CI-0-IP-2, false) or nvl(lnd8oyto-CI-0-IP-3, false) or nvl(lnd8oyto-CI-0-IP-4, false) or nvl(lnd8oyto-CI-0-IP-5, false) or nvl(lnd8oyto-CI-0-IP-6, false)) + + + + + fr.insee + kc0juxed-CI-0 + 1 + + Modalité 4 incompatible avec les autres items + + + Modalité 4 incompatible avec les autres items + + + fr.insee + kc0juxed-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0juxed-CI-0-IP-1 + 1 + + FINANCEX1 + + + + fr.insee + kc0juxed-CI-0-IP-2 + 1 + + FINANCEX2 + + + + fr.insee + kc0juxed-CI-0-IP-3 + 1 + + FINANCEX3 + + + + fr.insee + kc0juxed-CI-0-IP-4 + 1 + + FINANCEX4 + + + + + fr.insee + kc0juxed-QOP-kwupchpe + 1 + OutParameter + + + fr.insee + kc0juxed-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0juxed-QOP-kwupd9tf + 1 + OutParameter + + + fr.insee + kc0juxed-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0juxed-QOP-kwupqb7v + 1 + OutParameter + + + fr.insee + kc0juxed-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + kc0juxed-QOP-kwupdwz9 + 1 + OutParameter + + + fr.insee + kc0juxed-CI-0-IP-4 + 1 + InParameter + + + nvl(kc0juxed-CI-0-IP-4,false) and ( nvl(kc0juxed-CI-0-IP-1,false) or nvl(kc0juxed-CI-0-IP-2,false) or nvl(kc0juxed-CI-0-IP-3,false) ) + + + + + fr.insee + lndbnxta-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lndbnxta-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lndbnxta-CI-0-IP-1 + 1 + + HOMEIOTX1 + + + + fr.insee + lndbnxta-CI-0-IP-2 + 1 + + HOMEIOTX2 + + + + fr.insee + lndbnxta-CI-0-IP-3 + 1 + + HOMEIOTX3 + + + + fr.insee + lndbnxta-CI-0-IP-4 + 1 + + HOMEIOTX4 + + + + fr.insee + lndbnxta-CI-0-IP-5 + 1 + + HOMEIOTX5 + + + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + OutParameter + + + fr.insee + lndbnxta-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + OutParameter + + + fr.insee + lndbnxta-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + OutParameter + + + fr.insee + lndbnxta-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + OutParameter + + + fr.insee + lndbnxta-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lndbnxta-QOP-lndd58y0 + 1 + OutParameter + + + fr.insee + lndbnxta-CI-0-IP-5 + 1 + InParameter + + + nvl(lndbnxta-CI-0-IP-5, false) and (nvl(lndbnxta-CI-0-IP-1, false) or nvl(lndbnxta-CI-0-IP-2, false) or nvl(lndbnxta-CI-0-IP-3, false) or nvl(lndbnxta-CI-0-IP-4, false)) + + + + + fr.insee + lndc97me-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lndc97me-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lndc97me-CI-0-IP-1 + 1 + + RAISIOTX1 + + + + fr.insee + lndc97me-CI-0-IP-2 + 1 + + RAISIOTX2 + + + + fr.insee + lndc97me-CI-0-IP-3 + 1 + + RAISIOTX3 + + + + fr.insee + lndc97me-CI-0-IP-4 + 1 + + RAISIOTX4 + + + + fr.insee + lndc97me-CI-0-IP-5 + 1 + + RAISIOTX5 + + + + fr.insee + lndc97me-CI-0-IP-6 + 1 + + RAISIOTX6 + + + + fr.insee + lndc97me-CI-0-IP-7 + 1 + + RAISIOTX7 + + + + fr.insee + lndc97me-CI-0-IP-8 + 1 + + RAISIOTX8 + + + + fr.insee + lndc97me-CI-0-IP-9 + 1 + + RAISIOTX9 + + + + + fr.insee + lndc97me-QOP-lndd2a0j + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndcpqmn + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndd17il + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndcwqv9 + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndcvahp + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndctsyq + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndcv02f + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndcz1pb + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-8 + 1 + InParameter + + + + + fr.insee + lndc97me-QOP-lndd3fbj + 1 + OutParameter + + + fr.insee + lndc97me-CI-0-IP-9 + 1 + InParameter + + + nvl(lndc97me-CI-0-IP-1, false) and (nvl(lndc97me-CI-0-IP-2,false) or nvl(lndc97me-CI-0-IP-3,false) or nvl(lndc97me-CI-0-IP-4,false) or nvl(lndc97me-CI-0-IP-5,false) or nvl(lndc97me-CI-0-IP-6,false) or nvl(lndc97me-CI-0-IP-7,false) or nvl(lndc97me-CI-0-IP-8,false) or nvl(lndc97me-CI-0-IP-9,false)) + + + + + fr.insee + lndcj9fz-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lndcj9fz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lndcj9fz-CI-0-IP-1 + 1 + + TVIOTX1 + + + + fr.insee + lndcj9fz-CI-0-IP-2 + 1 + + TVIOTX2 + + + + fr.insee + lndcj9fz-CI-0-IP-3 + 1 + + TVIOTX3 + + + + fr.insee + lndcj9fz-CI-0-IP-4 + 1 + + TVIOTX4 + + + + + fr.insee + lndcj9fz-QOP-lndd0hai + 1 + OutParameter + + + fr.insee + lndcj9fz-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndd6bpp + 1 + OutParameter + + + fr.insee + lndcj9fz-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndd0jk8 + 1 + OutParameter + + + fr.insee + lndcj9fz-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lndcj9fz-QOP-lndcspt5 + 1 + OutParameter + + + fr.insee + lndcj9fz-CI-0-IP-4 + 1 + InParameter + + + nvl(lndcj9fz-CI-0-IP-4, false) and (nvl(lndcj9fz-CI-0-IP-1, false) or nvl(lndcj9fz-CI-0-IP-2, false) or nvl(lndcj9fz-CI-0-IP-3, false)) + + + + + fr.insee + lndcjg90-CI-0 + 1 + + Modalité 5 incompatible + + + Modalité 5 incompatible + + + fr.insee + lndcjg90-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lndcjg90-CI-0-IP-1 + 1 + + AUTIOTX1 + + + + fr.insee + lndcjg90-CI-0-IP-2 + 1 + + AUTIOTX2 + + + + fr.insee + lndcjg90-CI-0-IP-3 + 1 + + AUTIOTX3 + + + + fr.insee + lndcjg90-CI-0-IP-4 + 1 + + AUTIOTX4 + + + + fr.insee + lndcjg90-CI-0-IP-5 + 1 + + AUTIOTX5 + + + + + fr.insee + lndcjg90-QOP-lndco0sy + 1 + OutParameter + + + fr.insee + lndcjg90-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndd6aqv + 1 + OutParameter + + + fr.insee + lndcjg90-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndcuhub + 1 + OutParameter + + + fr.insee + lndcjg90-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndcy1ey + 1 + OutParameter + + + fr.insee + lndcjg90-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lndcjg90-QOP-lndcqc5j + 1 + OutParameter + + + fr.insee + lndcjg90-CI-0-IP-5 + 1 + InParameter + + + nvl(lndcjg90-CI-0-IP-5, false) and (nvl(lndcjg90-CI-0-IP-1, false) or nvl(lndcjg90-CI-0-IP-2, false) or nvl(lndcjg90-CI-0-IP-3, false) or nvl(lndcjg90-CI-0-IP-4, false) ) + + + + + fr.insee + lndcrv7o-CI-0 + 1 + + Modalité incompatible + + + Modalité incompatible + + + fr.insee + lndcrv7o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lndcrv7o-CI-0-IP-1 + 1 + + PBIOTX1 + + + + fr.insee + lndcrv7o-CI-0-IP-2 + 1 + + PBIOTX2 + + + + fr.insee + lndcrv7o-CI-0-IP-3 + 1 + + PBIOTX3 + + + + fr.insee + lndcrv7o-CI-0-IP-4 + 1 + + PBIOTX4 + + + + fr.insee + lndcrv7o-CI-0-IP-5 + 1 + + PBIOTX5 + + + + + fr.insee + lndcrv7o-QOP-lndd38cy + 1 + OutParameter + + + fr.insee + lndcrv7o-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lndcrv7o-QOP-lndd37cd + 1 + OutParameter + + + fr.insee + lndcrv7o-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lndcrv7o-QOP-lndctdru + 1 + OutParameter + + + fr.insee + lndcrv7o-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lndcrv7o-QOP-lndct3sr + 1 + OutParameter + + + fr.insee + lndcrv7o-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lndcrv7o-QOP-lndd5noi + 1 + OutParameter + + + fr.insee + lndcrv7o-CI-0-IP-5 + 1 + InParameter + + + nvl(lndcrv7o-CI-0-IP-5, false) and (nvl(lndcrv7o-CI-0-IP-1,false) or nvl(lndcrv7o-CI-0-IP-2,false) or nvl(lndcrv7o-CI-0-IP-3,false) or nvl(lndcrv7o-CI-0-IP-4,false)) + + + + + fr.insee + lnudc90x-CI-0 + 1 + + Incompatibilité 1 + + + Incompatibilité 1 + + + fr.insee + lnudc90x-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnudc90x-CI-0-IP-1 + 1 + + CARGREENX1 + + + + fr.insee + lnudc90x-CI-0-IP-2 + 1 + + CARGREENX2 + + + + fr.insee + lnudc90x-CI-0-IP-3 + 1 + + CARGREENX3 + + + + fr.insee + lnudc90x-CI-0-IP-4 + 1 + + CARGREENX4 + + + + fr.insee + lnudc90x-CI-0-IP-5 + 1 + + CARGREENX5 + + + + fr.insee + lnudc90x-CI-0-IP-6 + 1 + + CARGREENX6 + + + + fr.insee + lnudc90x-CI-0-IP-7 + 1 + + CARGREENX7 + + + + fr.insee + lnudc90x-CI-0-IP-8 + 1 + + CARGREENX8 + + + + + fr.insee + lnudc90x-QOP-lnufkxpk + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufek2c + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufgjc8 + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufiitm + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufa5j3 + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufdnfo + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnuflw4f + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-7 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufbcrx + 1 + OutParameter + + + fr.insee + lnudc90x-CI-0-IP-8 + 1 + InParameter + + + nvl(lnudc90x-CI-0-IP-8, false) and (nvl(lnudc90x-CI-0-IP-1, false) or nvl(lnudc90x-CI-0-IP-2, false) or nvl(lnudc90x-CI-0-IP-3, false) or nvl(lnudc90x-CI-0-IP-4, false) or nvl(lnudc90x-CI-0-IP-5, false) or nvl(lnudc90x-CI-0-IP-6, false) or nvl(lnudc90x-CI-0-IP-7, false)) + + + + + fr.insee + lnudc90x-CI-1 + 1 + + Incompatibilté 2 + + + Incompatibilté 2 + + + fr.insee + lnudc90x-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnudc90x-CI-1-IP-1 + 1 + + CARGREENX1 + + + + fr.insee + lnudc90x-CI-1-IP-2 + 1 + + CARGREENX2 + + + + fr.insee + lnudc90x-CI-1-IP-3 + 1 + + CARGREENX3 + + + + fr.insee + lnudc90x-CI-1-IP-4 + 1 + + CARGREENX4 + + + + fr.insee + lnudc90x-CI-1-IP-5 + 1 + + CARGREENX5 + + + + fr.insee + lnudc90x-CI-1-IP-6 + 1 + + CARGREENX6 + + + + fr.insee + lnudc90x-CI-1-IP-7 + 1 + + CARGREENX7 + + + + fr.insee + lnudc90x-CI-1-IP-8 + 1 + + CARGREENX8 + + + + fr.insee + lnudc90x-CI-1-IP-9 + 1 + + CARGREENX9 + + + + + fr.insee + lnudc90x-QOP-lnufkxpk + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufek2c + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufgjc8 + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufiitm + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-4 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufa5j3 + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-5 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufdnfo + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-6 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnuflw4f + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-7 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnufbcrx + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-8 + 1 + InParameter + + + + + fr.insee + lnudc90x-QOP-lnuf3b2e + 1 + OutParameter + + + fr.insee + lnudc90x-CI-1-IP-9 + 1 + InParameter + + + nvl(lnudc90x-CI-1-IP-9, false) and (nvl(lnudc90x-CI-1-IP-1, false) or nvl(lnudc90x-CI-1-IP-2, false) or nvl(lnudc90x-CI-1-IP-3, false) or nvl(lnudc90x-CI-1-IP-4, false) or nvl(lnudc90x-CI-1-IP-5, false) or nvl(lnudc90x-CI-1-IP-6, false) or nvl(lnudc90x-CI-1-IP-7, false) or nvl(lnudc90x-CI-1-IP-8, false)) + + + + + fr.insee + lnue7e91-CI-0 + 1 + + Modalité 5 incompatible + + + Modalité 5 incompatible + + + fr.insee + lnue7e91-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnue7e91-CI-0-IP-1 + 1 + + F_ORDIX1 + + + + fr.insee + lnue7e91-CI-0-IP-2 + 1 + + F_ORDIX2 + + + + fr.insee + lnue7e91-CI-0-IP-3 + 1 + + F_ORDIX3 + + + + fr.insee + lnue7e91-CI-0-IP-4 + 1 + + F_ORDIX4 + + + + fr.insee + lnue7e91-CI-0-IP-5 + 1 + + F_ORDIX5 + + + + + fr.insee + lnue7e91-QOP-lnuf6vvh + 1 + OutParameter + + + fr.insee + lnue7e91-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnue7e91-QOP-lnufbk1s + 1 + OutParameter + + + fr.insee + lnue7e91-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnue7e91-QOP-lnufbc34 + 1 + OutParameter + + + fr.insee + lnue7e91-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnue7e91-QOP-lnuf7khz + 1 + OutParameter + + + fr.insee + lnue7e91-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnue7e91-QOP-lnuf8g9e + 1 + OutParameter + + + fr.insee + lnue7e91-CI-0-IP-5 + 1 + InParameter + + + nvl(lnue7e91-CI-0-IP-5, false) and (nvl(lnue7e91-CI-0-IP-1, false) or nvl(lnue7e91-CI-0-IP-2, false) or nvl(lnue7e91-CI-0-IP-3, false) or nvl(lnue7e91-CI-0-IP-4, false)) + + + + + fr.insee + kc0mzowl-CI-0 + 1 + + Modalité 3 incompatible avec les autres items + + + Modalité 3 incompatible avec les autres items + + + fr.insee + kc0mzowl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0mzowl-CI-0-IP-1 + 1 + + F_SMARTPHONEX1 + + + + fr.insee + kc0mzowl-CI-0-IP-2 + 1 + + F_SMARTPHONEX2 + + + + fr.insee + kc0mzowl-CI-0-IP-3 + 1 + + F_SMARTPHONEX3 + + + + + fr.insee + kc0mzowl-QOP-l5s01nq2 + 1 + OutParameter + + + fr.insee + kc0mzowl-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kc0mzowl-QOP-l5s0d01s + 1 + OutParameter + + + fr.insee + kc0mzowl-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kc0mzowl-QOP-l5s03ili + 1 + OutParameter + + + fr.insee + kc0mzowl-CI-0-IP-3 + 1 + InParameter + + + nvl(kc0mzowl-CI-0-IP-3,false) and ( nvl(kc0mzowl-CI-0-IP-1,false) or nvl(kc0mzowl-CI-0-IP-2,false) ) + + + + + fr.insee + lnuf6krf-CI-0 + 1 + + Modalité 6 incompatible + + + Modalité 6 incompatible + + + fr.insee + lnuf6krf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnuf6krf-CI-0-IP-1 + 1 + + F_RAISMARTX1 + + + + fr.insee + lnuf6krf-CI-0-IP-2 + 1 + + F_RAISMARTX2 + + + + fr.insee + lnuf6krf-CI-0-IP-3 + 1 + + F_RAISMARTX3 + + + + fr.insee + lnuf6krf-CI-0-IP-4 + 1 + + F_RAISMARTX4 + + + + fr.insee + lnuf6krf-CI-0-IP-5 + 1 + + F_RAISMARTX5 + + + + fr.insee + lnuf6krf-CI-0-IP-6 + 1 + + F_RAISMARTX6 + + + + fr.insee + lnuf6krf-CI-0-IP-7 + 1 + + F_RAISMARTX7 + + + + + fr.insee + lnuf6krf-QOP-lnufk54m + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufdzue + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufkq86 + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufk19a + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufee61 + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufes85 + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + lnuf6krf-QOP-lnufcpin + 1 + OutParameter + + + fr.insee + lnuf6krf-CI-0-IP-7 + 1 + InParameter + + + nvl(lnuf6krf-CI-0-IP-6, false) and (nvl(lnuf6krf-CI-0-IP-1, false) or nvl(lnuf6krf-CI-0-IP-2, false) or nvl(lnuf6krf-CI-0-IP-3, false) or nvl(lnuf6krf-CI-0-IP-4, false) or nvl(lnuf6krf-CI-0-IP-5, false) or nvl(lnuf6krf-CI-0-IP-7, false) ) + + + + + fr.insee + lnufsvxy-CI-0 + 1 + + Modalités 3 incompatible avec les autres + + + Modalités 3 incompatible avec les autres + + + fr.insee + lnufsvxy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnufsvxy-CI-0-IP-1 + 1 + + F_TELECONX1 + + + + fr.insee + lnufsvxy-CI-0-IP-2 + 1 + + F_TELECONX2 + + + + fr.insee + lnufsvxy-CI-0-IP-3 + 1 + + F_TELECONX3 + + + + fr.insee + lnufsvxy-CI-0-IP-4 + 1 + + F_TELECONX4 + + + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug12ge + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-0-IP-4 + 1 + InParameter + + + nvl(lnufsvxy-CI-0-IP-3, false) and (nvl(lnufsvxy-CI-0-IP-1, false) or nvl(lnufsvxy-CI-0-IP-2, false) or nvl(lnufsvxy-CI-0-IP-4, false)) + + + + + fr.insee + lnufsvxy-CI-1 + 1 + + Modalité 4 incompatible avec les autres + + + Modalité 4 incompatible avec les autres + + + fr.insee + lnufsvxy-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lnufsvxy-CI-1-IP-1 + 1 + + F_TELECONX1 + + + + fr.insee + lnufsvxy-CI-1-IP-2 + 1 + + F_TELECONX2 + + + + fr.insee + lnufsvxy-CI-1-IP-3 + 1 + + F_TELECONX3 + + + + fr.insee + lnufsvxy-CI-1-IP-4 + 1 + + F_TELECONX4 + + + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + lnufsvxy-QOP-lnug12ge + 1 + OutParameter + + + fr.insee + lnufsvxy-CI-1-IP-4 + 1 + InParameter + + + nvl(lnufsvxy-CI-1-IP-4, false) and (nvl(lnufsvxy-CI-1-IP-1, false) or nvl(lnufsvxy-CI-1-IP-2, false) or nvl(lnufsvxy-CI-1-IP-3, false)) + + + + + fr.insee + kc0p4jga-CI-0 + 1 + + Non-réponse + + + Non-réponse + + + fr.insee + kc0p4jga-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0p4jga-CI-0-IP-1 + 1 + + ACTILIB + + + + + fr.insee + kc0p4jga-QOP-lq2kd409 + 1 + OutParameter + + + fr.insee + kc0p4jga-CI-0-IP-1 + 1 + InParameter + + + isnull(kc0p4jga-CI-0-IP-1) + + + + + fr.insee + kc0qz959-CI-0 + 1 + + Revenu supérieure à 9 999 € + + + Revenu supérieure à 9 999 € + + + fr.insee + kc0qz959-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kc0qz959-CI-0-IP-1 + 1 + + REVENU + + + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + OutParameter + + + fr.insee + kc0qz959-CI-0-IP-1 + 1 + InParameter + + + kc0qz959-CI-0-IP-1 > 9999 + + + + + fr.insee + lqwjbav6-CI-0 + 1 + + Revenu important + + + Revenu important + + + fr.insee + lqwjbav6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lqwjbav6-CI-0-IP-1 + 1 + + REVENU + + + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + OutParameter + + + fr.insee + lqwjbav6-CI-0-IP-1 + 1 + InParameter + + + lqwjbav6-CI-0-IP-1 > 9999 + + + + + + fr.insee + QuestionScheme-lseh1s0t + 1 + + A définir + + + fr.insee + lox6eoqy + 1 + + RESIDENCE + + + fr.insee + lox6eoqy-QOP-lox6bm1z + 1 + + RESIDENCE + + + + + fr.insee + lox6eoqy-RDOP-lox6bm1z + 1 + OutParameter + + + fr.insee + lox6eoqy-QOP-lox6bm1z + 1 + OutParameter + + + + + Bonjour, je suis PRENOM NOM, enquêteur de l’Insee. Vous avez reçu un courrier de l’Insee annonçant une enquête sur l’usage de l’informatique et d’Internet. Le logement situé à l’adresse ADRESSE DE LA LISTE DE GESTION correspond-il à la résidence où vous vivez la plus grande partie de l’année ? + + + + radio-button + + fr.insee + lox6814k + 1 + CodeList + + + fr.insee + lox6eoqy-RDOP-lox6bm1z + 1 + + + fr.insee + lox6814k + 1 + CodeList + + + + + + + fr.insee + lox6eqd5 + 1 + Instruction + + + + fr.insee + lox62xmp + 1 + + POLITES + + + fr.insee + lox62xmp-QOP-lox6dn7d + 1 + + POLITES + + + + + fr.insee + lox62xmp-RDOP-lox6dn7d + 1 + OutParameter + + + fr.insee + lox62xmp-QOP-lox6dn7d + 1 + OutParameter + + + + + Votre réponse me conduit à arrêter là cet entretien. En effet, l’Insee réalise l’enquête uniquement auprès des ménages dont le numéro d’appel correspond à une résidence principale. Je tiens néanmoins à vous remercier d’avoir accepté de répondre à cette question. + + + + radio-button + + fr.insee + lox67843 + 1 + CodeList + + + fr.insee + lox62xmp-RDOP-lox6dn7d + 1 + + + fr.insee + lox67843 + 1 + CodeList + + + + + + + fr.insee + lox6jlyn + 1 + Instruction + + + + fr.insee + lptucl00 + 1 + + DEBUT + + + fr.insee + lptucl00-QOP-lptuokz8 + 1 + + DEBUT + + + + + fr.insee + lptucl00-RDOP-lptuokz8 + 1 + OutParameter + + + fr.insee + lptucl00-QOP-lptuokz8 + 1 + OutParameter + + + + + L'enquête s'adresse à une personne de votre ménage qui va être sélectionnée aléatoirement. Pour cela, nous avons besoin de faire la liste des personnes qui vivent habituellement dans votre logement. + + + + radio-button + + fr.insee + lptubo1v + 1 + CodeList + + + fr.insee + lptucl00-RDOP-lptuokz8 + 1 + + + fr.insee + lptubo1v + 1 + CodeList + + + + + + + + fr.insee + loyjheaw + 1 + + NBHABT + + + fr.insee + loyjheaw-QOP-loylr0ax + 1 + + NBHABT + + + + + fr.insee + loyjheaw-RDOP-loylr0ax + 1 + OutParameter + + + fr.insee + loyjheaw-QOP-loylr0ax + 1 + OutParameter + + + + + "Combien de personnes vivent habituellement dans votre logement ? " + + + + + 0 + 20 + + Decimal + + fr.insee + loyjheaw-RDOP-loylr0ax + 1 + + + + fr.insee + loyjdepa + 1 + Instruction + + + + fr.insee + loyjwgx0 + 1 + + PRENOM_TEL + + + fr.insee + loyjwgx0-QOP-loyll4w6 + 1 + + PRENOM_TEL + + + + + fr.insee + loyjwgx0-RDOP-loyll4w6 + 1 + OutParameter + + + fr.insee + loyjwgx0-QOP-loyll4w6 + 1 + OutParameter + + + + + Quel est le prénom de la personne ? + + + + + fr.insee + loyjwgx0-RDOP-loyll4w6 + 1 + + + + + + fr.insee + loyl5bbb + 1 + + SEXE_TEL + + + fr.insee + loyl5bbb-QOP-loylv0km + 1 + + SEXE_TEL + + + + + fr.insee + loyl5bbb-RDOP-loylv0km + 1 + OutParameter + + + fr.insee + loyl5bbb-QOP-loylv0km + 1 + OutParameter + + + + + "Quel est le sexe de " || nvl(¤loyjwgx0-QOP-loyll4w6¤, "cette personne") || " ?" + + + + radio-button + + fr.insee + loykwrxi + 1 + CodeList + + + fr.insee + loyl5bbb-RDOP-loylv0km + 1 + + + fr.insee + loykwrxi + 1 + CodeList + + + + + + + + fr.insee + loyl4wyc + 1 + + DATENAIS_TEL + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + + DATENAIS_TEL + + + + + fr.insee + loyl4wyc-RDOP-loylmb1v + 1 + OutParameter + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + + + "Quelle est la date de naissance de " || nvl(¤loyjwgx0-QOP-loyll4w6¤, "cette personne") || " ?" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2024-07-01 + + + fr.insee + loyl4wyc-RDOP-loylmb1v + 1 + + + + + fr.insee + loylambf + 1 + + PASSER + + + fr.insee + loylambf-QOP-loylmlhn + 1 + + PASSER + + + + + fr.insee + loylambf-RDOP-loylmlhn + 1 + OutParameter + + + fr.insee + loylambf-QOP-loylmlhn + 1 + OutParameter + + + + + "" || if cast (¤lp1a8gdv-GOP¤, integer) > 1 then "Sélection manuelle du Kish (car plusieurs personnes du foyer sont nées le même jour)" else "Le Kish est connu, vous pouvez passer cette étape" + + + + radio-button + + fr.insee + loylh7zv + 1 + CodeList + + + fr.insee + loylambf-RDOP-loylmlhn + 1 + + + fr.insee + loylh7zv + 1 + CodeList + + + + + + + + fr.insee + loylmcrg + 1 + + IS_KISH + + + fr.insee + loylmcrg-QOP-loylwjqt + 1 + + IS_KISH + + + + + fr.insee + loylmcrg-RDOP-loylwjqt + 1 + OutParameter + + + fr.insee + loylmcrg-QOP-loylwjqt + 1 + OutParameter + + + + + "" || ¤loyjwgx0-QOP-loyll4w6¤ || " est-il le kish ?" + + + + radio-button + + fr.insee + loyls2wd + 1 + CodeList + + + fr.insee + loylmcrg-RDOP-loylwjqt + 1 + + + fr.insee + loyls2wd + 1 + CodeList + + + + + + + fr.insee + loyll3wy + 1 + Instruction + + + + fr.insee + loylqm0o + 1 + + PRESAKO + + + fr.insee + loylqm0o-QOP-loym3okn + 1 + + PRESAKO + + + + + fr.insee + loylqm0o-RDOP-loym3okn + 1 + OutParameter + + + fr.insee + loylqm0o-QOP-loym3okn + 1 + OutParameter + + + + + "La personne sélectionnée est-elle disponible pour répondre au questionnaire ?" + + + + checkbox + + fr.insee + loylid8o + 1 + CodeList + + + fr.insee + loylqm0o-RDOP-loym3okn + 1 + + + fr.insee + loylid8o + 1 + CodeList + + + + + + + + fr.insee + kbw8yqwv + 1 + + DIPLOME + + + fr.insee + kbw8yqwv-QOP-kbw94lhc + 1 + + DIPLOME + + + + + fr.insee + kbw8yqwv-RDOP-kbw94lhc + 1 + OutParameter + + + fr.insee + kbw8yqwv-QOP-kbw94lhc + 1 + OutParameter + + + + + Quel est le diplôme le plus élevé que vous ayez obtenu ? + + + + radio-button + + fr.insee + kbw8w2j7 + 1 + CodeList + + + fr.insee + kbw8yqwv-RDOP-kbw94lhc + 1 + + + fr.insee + kbw8w2j7 + 1 + CodeList + + + + + + + fr.insee + l5qr6oee + 1 + Instruction + + + + fr.insee + kbw97gaf + 1 + + ETUDE + + + fr.insee + kbw97gaf-QOP-kbw9l1s9 + 1 + + ETUDE + + + + + fr.insee + kbw97gaf-RDOP-kbw9l1s9 + 1 + OutParameter + + + fr.insee + kbw97gaf-QOP-kbw9l1s9 + 1 + OutParameter + + + + + Quel est votre niveau d’étude ? + + + + radio-button + + fr.insee + kbw9j1g0 + 1 + CodeList + + + fr.insee + kbw97gaf-RDOP-kbw9l1s9 + 1 + + + fr.insee + kbw9j1g0 + 1 + CodeList + + + + + + + + fr.insee + kbw9jgd2 + 1 + + COUPLE + + + fr.insee + kbw9jgd2-QOP-kbw9hp4z + 1 + + COUPLE + + + + + fr.insee + kbw9jgd2-RDOP-kbw9hp4z + 1 + OutParameter + + + fr.insee + kbw9jgd2-QOP-kbw9hp4z + 1 + OutParameter + + + + + Êtes-vous actuellement en couple ? + + + + radio-button + + fr.insee + kbw9fu8f + 1 + CodeList + + + fr.insee + kbw9jgd2-RDOP-kbw9hp4z + 1 + + + fr.insee + kbw9fu8f + 1 + CodeList + + + + + + + + fr.insee + kbw9i35f + 1 + + ETAMATRI + + + fr.insee + kbw9i35f-QOP-kbw9k7kk + 1 + + ETAMATRI + + + + + fr.insee + kbw9i35f-RDOP-kbw9k7kk + 1 + OutParameter + + + fr.insee + kbw9i35f-QOP-kbw9k7kk + 1 + OutParameter + + + + + Quel est votre statut matrimonial ? + + + + radio-button + + fr.insee + kbw9oep5 + 1 + CodeList + + + fr.insee + kbw9i35f-RDOP-kbw9k7kk + 1 + + + fr.insee + kbw9oep5 + 1 + CodeList + + + + + + + + fr.insee + kbw9gttr + 1 + + PACS + + + fr.insee + kbw9gttr-QOP-kbw9omdm + 1 + + PACS + + + + + fr.insee + kbw9gttr-RDOP-kbw9omdm + 1 + OutParameter + + + fr.insee + kbw9gttr-QOP-kbw9omdm + 1 + OutParameter + + + + + Êtes-vous pacsé(e) ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + kbw9gttr-RDOP-kbw9omdm + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + kbw9rrbt + 1 + + LNAIS + + + fr.insee + kbw9rrbt-QOP-kbw9i9ec + 1 + + LNAIS + + + + + fr.insee + kbw9rrbt-RDOP-kbw9i9ec + 1 + OutParameter + + + fr.insee + kbw9rrbt-QOP-kbw9i9ec + 1 + OutParameter + + + + + Où êtes-vous né(e) ? + + + + radio-button + + fr.insee + kbw9mytb + 1 + CodeList + + + fr.insee + kbw9rrbt-RDOP-kbw9i9ec + 1 + + + fr.insee + kbw9mytb + 1 + CodeList + + + + + + + fr.insee + kwm50q4n + 1 + Instruction + + + + fr.insee + kbw9r169 + 1 + + DEPNAIS + + + fr.insee + kbw9r169-QOP-kbwa8xdj + 1 + + DEPNAIS + + + + + fr.insee + kbw9r169-RDOP-kbwa8xdj + 1 + OutParameter + + + fr.insee + kbw9r169-QOP-kbwa8xdj + 1 + OutParameter + + + + + Dans quel département ? + + + + drop-down-list + + fr.insee + kbw9u1cu + 1 + CodeList + + + fr.insee + kbw9r169-RDOP-kbwa8xdj + 1 + + + fr.insee + kbw9u1cu + 1 + CodeList + + + + + + + fr.insee + kbw9za31 + 1 + Instruction + + + + fr.insee + kbwanueu + 1 + + PAYSNAIS + + + fr.insee + kbwanueu-QOP-kbwaiq6l + 1 + + PAYSNAIS + + + + + fr.insee + kbwanueu-RDOP-kbwaiq6l + 1 + OutParameter + + + fr.insee + kbwanueu-QOP-kbwaiq6l + 1 + OutParameter + + + + + Dans quel pays ? + + + + drop-down-list + + fr.insee + kbwakjtt + 1 + CodeList + + + fr.insee + kbwanueu-RDOP-kbwaiq6l + 1 + + + fr.insee + kbwakjtt + 1 + CodeList + + + + + + + fr.insee + kbwaxysc + 1 + Instruction + + + + fr.insee + kbwanqdo + 1 + + NATIO2N + + + fr.insee + kbwanqdo-QOP-kbwavom8 + 1 + + NATIO2N + + + + + fr.insee + kbwanqdo-RDOP-kbwavom8 + 1 + OutParameter + + + fr.insee + kbwanqdo-QOP-kbwavom8 + 1 + OutParameter + + + + + "Quelle est votre " || ¤ky9xfqnt-GOP¤ || "nationalité ?" + + + + drop-down-list + + fr.insee + kbway7s0 + 1 + CodeList + + + fr.insee + kbwanqdo-RDOP-kbwavom8 + 1 + + + fr.insee + kbway7s0 + 1 + CodeList + + + + + + + fr.insee + kjldkcju + 1 + Instruction + + + + fr.insee + kc0gq6qv + 1 + + NET + + + fr.insee + kc0gq6qv-QOP-kc0h0gps + 1 + + NET + + + + + fr.insee + kc0gq6qv-RDOP-kc0h0gps + 1 + OutParameter + + + fr.insee + kc0gq6qv-QOP-kc0h0gps + 1 + OutParameter + + + + + Votre foyer a-t-il accès à Internet depuis son domicile ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + kc0gq6qv-RDOP-kc0h0gps + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + fr.insee + kc0h5ajs + 1 + Instruction + + + + fr.insee + kc0h7448 + 1 + + NUSEWEB + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + + NUSEWEB + + + + + fr.insee + kc0h7448-RDOP-kc0hndcc + 1 + OutParameter + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + + + Personnellement, quand avez-vous utilisé Internet pour la dernière fois ? + + + + radio-button + + fr.insee + kc0hgqph + 1 + CodeList + + + fr.insee + kc0h7448-RDOP-kc0hndcc + 1 + + + fr.insee + kc0hgqph + 1 + CodeList + + + + + + + fr.insee + kc0htor3 + 1 + Instruction + + + fr.insee + kzmlyy7k + 1 + Instruction + + + + fr.insee + kc0haj1j + 1 + + USEWEB + + + fr.insee + kc0haj1j-QOP-kc0he2xy + 1 + + USEWEB + + + + + fr.insee + kc0haj1j-RDOP-kc0he2xy + 1 + OutParameter + + + fr.insee + kc0haj1j-QOP-kc0he2xy + 1 + OutParameter + + + + + Au cours des trois derniers mois, en moyenne, à quelle fréquence avez-vous utilisé Internet ? + + + + radio-button + + fr.insee + kc0he7f0 + 1 + CodeList + + + fr.insee + kc0haj1j-RDOP-kc0he2xy + 1 + + + fr.insee + kc0he7f0 + 1 + CodeList + + + + + + + fr.insee + kc0hqlhc + 1 + Instruction + + + + fr.insee + lnd64z9l + 1 + + F_SKILLS + + + fr.insee + lnd64z9l-QOP-lnd5xtpf + 1 + + F_SKILLS + + + + + fr.insee + lnd64z9l-RDOP-lnd5xtpf + 1 + OutParameter + + + fr.insee + lnd64z9l-QOP-lnd5xtpf + 1 + OutParameter + + + + + Comment décririez-vous vos compétences relatives à l'usage des ordinateurs, logiciels ou applications ? + + + + radio-button + + fr.insee + lnd5ixy9 + 1 + CodeList + + + fr.insee + lnd64z9l-RDOP-lnd5xtpf + 1 + + + fr.insee + lnd5ixy9 + 1 + CodeList + + + + + + + fr.insee + lnd5s0oi + 1 + Instruction + + + + fr.insee + lnd5pnag + 1 + + REGIST + + + fr.insee + lnd5pnag-QOP-lnd5uri7 + 1 + + REGIST + + + + + fr.insee + lnd5pnag-RDOP-lnd5uri7 + 1 + OutParameter + + + fr.insee + lnd5pnag-QOP-lnd5uri7 + 1 + OutParameter + + + + + Avez-vous déjà créé un compte ou vous êtes-vous enregistré gratuitement sur une application ou sur le site d’un service en ligne ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + lnd5pnag-RDOP-lnd5uri7 + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + fr.insee + lnd5rq6s + 1 + Instruction + + + + fr.insee + lnd5x3l5 + 1 + + SUPREGIST + + + fr.insee + lnd5x3l5-QOP-lnd8gx94 + 1 + + SUPREGIST + + + + + fr.insee + lnd5x3l5-RDOP-lnd8gx94 + 1 + OutParameter + + + fr.insee + lnd5x3l5-QOP-lnd8gx94 + 1 + OutParameter + + + + + Avez-vous supprimé ou tenté de supprimer un compte gratuit créé sur une application ou un service en ligne ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + lnd5x3l5-RDOP-lnd8gx94 + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + lnd66axd + 1 + + PBREGIST + + + fr.insee + lnd66axd-QOP-lnd8fufu + 1 + + PBREGIST + + + + + fr.insee + lnd66axd-RDOP-lnd8fufu + 1 + OutParameter + + + fr.insee + lnd66axd-QOP-lnd8fufu + 1 + OutParameter + + + + + Au cours des trois derniers mois, avez-vous rencontré des problèmes lors de la suppression d’un compte gratuit sur une application ou un service en ligne ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + lnd66axd-RDOP-lnd8fufu + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + fr.insee + lnd66q3n + 1 + Instruction + + + + fr.insee + ks5vgahz + 1 + + IMPADM + + + fr.insee + ks5vgahz-QOP-ks5vi3ij + 1 + + IMPADM + + + + + fr.insee + ks5vgahz-RDOP-ks5vi3ij + 1 + OutParameter + + + fr.insee + ks5vgahz-QOP-ks5vi3ij + 1 + OutParameter + + + + + Au cours des douze derniers mois, hors usage professionnel, avez-vous téléchargé ou imprimé des formulaires officiels depuis le site Web ou l’application d’une administration ou d’un service public ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + ks5vgahz-RDOP-ks5vi3ij + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + ks5vqq6b + 1 + + RDVADM + + + fr.insee + ks5vqq6b-QOP-ks5vefod + 1 + + RDVADM + + + + + fr.insee + ks5vqq6b-RDOP-ks5vefod + 1 + OutParameter + + + fr.insee + ks5vqq6b-QOP-ks5vefod + 1 + OutParameter + + + + + Au cours des douze derniers mois, hors usage professionnel, avez-vous pris un rendez-vous ou effectué une réservation via un site Web ou une application auprès d’une administration ou d’un service public (réservation d’un livre dans une bibliothèque municipale, rendez-vous en mairie, en préfecture, à l’hôpital public, etc.) ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + ks5vqq6b-RDOP-ks5vefod + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + ks5vhf4w + 1 + + MESADM + + + fr.insee + ks5vhf4w-QOP-ks5vmp70 + 1 + + MESADM + + + + + fr.insee + ks5vhf4w-RDOP-ks5vmp70 + 1 + OutParameter + + + fr.insee + ks5vhf4w-QOP-ks5vmp70 + 1 + OutParameter + + + + + Au cours des douze derniers mois, hors usage professionnel, avez-vous reçu des messages ou documents officiels des autorités publiques via votre compte sur le site Web ou l’application d’une administration ou d’un service public (notification d’amendes ou de factures, lettres, convocation au tribunal, documents judiciaires, etc.) ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + ks5vhf4w-RDOP-ks5vmp70 + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + fr.insee + kwmchqix + 1 + Instruction + + + + fr.insee + ks5vgp57 + 1 + + DECLADM + + + fr.insee + ks5vgp57-QOP-ks5vtqus + 1 + + DECLADM + + + + + fr.insee + ks5vgp57-RDOP-ks5vtqus + 1 + OutParameter + + + fr.insee + ks5vgp57-QOP-ks5vtqus + 1 + OutParameter + + + + + Au cours des douze derniers mois, avez-vous rempli, corrigé, complété ou validé votre déclaration d'impôts via un site Web ou une application ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + ks5vgp57-RDOP-ks5vtqus + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + kc0iso1a + 1 + + F_AUTADM + + + fr.insee + kc0iso1a-QOP-kc0in9hs + 1 + + F_AUTADM + + + + + fr.insee + kc0iso1a-RDOP-kc0in9hs + 1 + OutParameter + + + fr.insee + kc0iso1a-QOP-kc0in9hs + 1 + OutParameter + + + + + Avez-vous pu effectuer ces démarches d’une autre façon (sur place, par téléphone, etc.) ? + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + kc0iso1a-RDOP-kc0in9hs + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + kc0iuqho + 1 + + DATECOM + + + fr.insee + kc0iuqho-QOP-kc0j4swy + 1 + + DATECOM + + + + + fr.insee + kc0iuqho-RDOP-kc0j4swy + 1 + OutParameter + + + fr.insee + kc0iuqho-QOP-kc0j4swy + 1 + OutParameter + + + + + Personnellement, quand avez-vous pour la dernière fois acheté ou commandé des produits ou des services sur Internet pour un usage privé (c'est-à-dire hors usage professionnel) ? + + + + radio-button + + fr.insee + kc0j0auj + 1 + CodeList + + + fr.insee + kc0iuqho-RDOP-kc0j4swy + 1 + + + fr.insee + kc0j0auj + 1 + CodeList + + + + + + + + fr.insee + lnucc4yw + 1 + + GREENA + + + fr.insee + lnucc4yw-QOP-lrhonzx9 + 1 + + GREENA + + + + + fr.insee + lnucc4yw-RDOP-lrhonzx9 + 1 + OutParameter + + + fr.insee + lnucc4yw-QOP-lrhonzx9 + 1 + OutParameter + + + + + Qu'avez-vous fait de votre dernier téléphone portable ou smartphone lorsque vous l'avez remplacé ou qu'il est devenu inutile ? + + + + radio-button + + fr.insee + lrholu47 + 1 + CodeList + + + fr.insee + lnucc4yw-RDOP-lrhonzx9 + 1 + + + fr.insee + lrholu47 + 1 + CodeList + + + + + + + fr.insee + lnucbucm + 1 + Instruction + + + fr.insee + lnucpebx + 1 + Instruction + + + + fr.insee + lnuctqyc + 1 + + GREENB + + + fr.insee + lnuctqyc-QOP-lnuf36ga + 1 + + GREENB + + + + + fr.insee + lnuctqyc-RDOP-lnuf36ga + 1 + OutParameter + + + fr.insee + lnuctqyc-QOP-lnuf36ga + 1 + OutParameter + + + + + Qu'avez-vous fait de votre dernier ordinateur portable ou tablette lorsque vous l'avez remplacé ou qu'il est devenu inutile ? + + + + radio-button + + fr.insee + lnucbojk + 1 + CodeList + + + fr.insee + lnuctqyc-RDOP-lnuf36ga + 1 + + + fr.insee + lnucbojk + 1 + CodeList + + + + + + + fr.insee + lnucet0l + 1 + Instruction + + + fr.insee + lnucsrrh + 1 + Instruction + + + + fr.insee + lnucrg4j + 1 + + GREENC + + + fr.insee + lnucrg4j-QOP-lnufm4ao + 1 + + GREENC + + + + + fr.insee + lnucrg4j-RDOP-lnufm4ao + 1 + OutParameter + + + fr.insee + lnucrg4j-QOP-lnufm4ao + 1 + OutParameter + + + + + Qu'avez-vous fait de votre dernier ordinateur fixe lorsque vous l'avez remplacé ou qu'il est devenu inutile ? + + + + radio-button + + fr.insee + lnucnu3i + 1 + CodeList + + + fr.insee + lnucrg4j-RDOP-lnufm4ao + 1 + + + fr.insee + lnucnu3i + 1 + CodeList + + + + + + + fr.insee + lnucu041 + 1 + Instruction + + + fr.insee + lnucrdj3 + 1 + Instruction + + + + fr.insee + lnue69t2 + 1 + + F_FIXE + + + fr.insee + lnue69t2-QOP-lnuf883a + 1 + + F_FIXE + + + + + fr.insee + lnue69t2-RDOP-lnuf883a + 1 + OutParameter + + + fr.insee + lnue69t2-QOP-lnuf883a + 1 + OutParameter + + + + + De quel type d'équipement en téléphone fixe disposez-vous à domicile ? + + + + radio-button + + fr.insee + lnue216n + 1 + CodeList + + + fr.insee + lnue69t2-RDOP-lnuf883a + 1 + + + fr.insee + lnue216n + 1 + CodeList + + + + + + + + fr.insee + lnuef2pw + 1 + + F_DURSMART + + + fr.insee + lnuef2pw-QOP-lnufeh7y + 1 + + F_DURSMART + + + + + fr.insee + lnuef2pw-RDOP-lnufeh7y + 1 + OutParameter + + + fr.insee + lnuef2pw-QOP-lnufeh7y + 1 + OutParameter + + + + + Depuis combien de temps possédez-vous votre smartphone actuel ? + + + + radio-button + + fr.insee + lnuef84j + 1 + CodeList + + + fr.insee + lnuef2pw-RDOP-lnufeh7y + 1 + + + fr.insee + lnuef84j + 1 + CodeList + + + + + + + + fr.insee + lnuf1qgc + 1 + + F_ETASMART + + + fr.insee + lnuf1qgc-QOP-lnuf4otk + 1 + + F_ETASMART + + + + + fr.insee + lnuf1qgc-RDOP-lnuf4otk + 1 + OutParameter + + + fr.insee + lnuf1qgc-QOP-lnuf4otk + 1 + OutParameter + + + + + Quand vous vous êtes procuré votre smartphone actuel, quelle sorte d'appareil était-ce ? + + + + radio-button + + fr.insee + lnue9cua + 1 + CodeList + + + fr.insee + lnuf1qgc-RDOP-lnuf4otk + 1 + + + fr.insee + lnue9cua + 1 + CodeList + + + + + + + + fr.insee + lqb27fdb + 1 + + F_FRESEC + + + fr.insee + lqb27fdb-QOP-lqb2ie40 + 1 + + F_FRESEC + + + + + fr.insee + lqb27fdb-RDOP-lqb2ie40 + 1 + OutParameter + + + fr.insee + lqb27fdb-QOP-lqb2ie40 + 1 + OutParameter + + + + + Au cours des trois derniers mois, pour un usage personnel, combien de temps en moyenne avez-vous passé devant un écran par jour travaillé (jour d’école, jour de semaine...) ? + + + + radio-button + + fr.insee + lqb2fmkm + 1 + CodeList + + + fr.insee + lqb27fdb-RDOP-lqb2ie40 + 1 + + + fr.insee + lqb2fmkm + 1 + CodeList + + + + + + + fr.insee + lqb1zl9l + 1 + Instruction + + + + fr.insee + lqb2cik4 + 1 + + F_FREWEC + + + fr.insee + lqb2cik4-QOP-lqb25uep + 1 + + F_FREWEC + + + + + fr.insee + lqb2cik4-RDOP-lqb25uep + 1 + OutParameter + + + fr.insee + lqb2cik4-QOP-lqb25uep + 1 + OutParameter + + + + + Au cours des trois derniers mois, pour un usage personnel, combien de temps en moyenne avez-vous passé devant un écran par jour non-travaillé (week-end, congés...) ? + + + + radio-button + + fr.insee + lqb2hzst + 1 + CodeList + + + fr.insee + lqb2cik4-RDOP-lqb25uep + 1 + + + fr.insee + lqb2hzst + 1 + CodeList + + + + + + + fr.insee + lqb2fm9f + 1 + Instruction + + + + fr.insee + lqb23j8a + 1 + + F_SATISVIE + + + fr.insee + lqb23j8a-QOP-lqb2hoha + 1 + + F_SATISVIE + + + + + fr.insee + lqb23j8a-RDOP-lqb2hoha + 1 + OutParameter + + + fr.insee + lqb23j8a-QOP-lqb2hoha + 1 + OutParameter + + + + + Sur une échelle allant de 0 (pas du tout satisfait(e)) à 10 (entièrement satisfait(e)), indiquez votre satisfaction concernant la vie que vous menez actuellement. + + + + + 0 + 10 + + Decimal + + fr.insee + lqb23j8a-RDOP-lqb2hoha + 1 + + + + + fr.insee + lqb2a9ht + 1 + + F_SATISSANTE + + + fr.insee + lqb2a9ht-QOP-lqb28pgy + 1 + + F_SATISSANTE + + + + + fr.insee + lqb2a9ht-RDOP-lqb28pgy + 1 + OutParameter + + + fr.insee + lqb2a9ht-QOP-lqb28pgy + 1 + OutParameter + + + + + Sur une échelle allant de 0 (pas du tout satisfait(e)) à 10 (entièrement satisfait(e)), indiquez votre satisfaction concernant votre santé. + + + + + 0 + 10 + + Decimal + + fr.insee + lqb2a9ht-RDOP-lqb28pgy + 1 + + + + + fr.insee + kc0n6snm + 1 + + SITUAEU + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + + SITUAEU + + + + + fr.insee + kc0n6snm-RDOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + + + Quelle est actuellement votre situation principale vis-à-vis du travail ? + + + + radio-button + + fr.insee + kc0n7y7a + 1 + CodeList + + + fr.insee + kc0n6snm-RDOP-lq2k9ca8 + 1 + + + fr.insee + kc0n7y7a + 1 + CodeList + + + + + + + fr.insee + kc0my1wg + 1 + Instruction + + + + fr.insee + lpv06337 + 1 + + TRAVAIL + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + + TRAVAIL + + + + + fr.insee + lpv06337-RDOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + + + Avez-vous cependant un emploi ? + + + + radio-button + + fr.insee + lpv0f7wm + 1 + CodeList + + + fr.insee + lpv06337-RDOP-lq2ke4ei + 1 + + + fr.insee + lpv0f7wm + 1 + CodeList + + + + + + + fr.insee + lpv0erti + 1 + Instruction + + + fr.insee + lpuzyjqp + 1 + Instruction + + + fr.insee + lpv01jrh + 1 + Instruction + + + + fr.insee + lpv0e9d4 + 1 + + ACTIVANTE + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + + ACTIVANTE + + + + + fr.insee + lpv0e9d4-RDOP-lq2k10pu + 1 + OutParameter + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + OutParameter + + + + + Avez-vous déjà travaillé par le passé, même pour un petit boulot, même s'il y a longtemps ? + + + + radio-button + + fr.insee + lpv0f7wm + 1 + CodeList + + + fr.insee + lpv0e9d4-RDOP-lq2k10pu + 1 + + + fr.insee + lpv0f7wm + 1 + CodeList + + + + + + + fr.insee + lpv08qp9 + 1 + Instruction + + + + fr.insee + lowso3oc + 1 + + PROFESSIONLISTE + + + fr.insee + lowso3oc-QOP-lq2k2co5 + 1 + + PROFESSIONLISTE + + + + + fr.insee + lowso3oc-RDOP-lq2k2co5 + 1 + OutParameter + + + fr.insee + lowso3oc-QOP-lq2k2co5 + 1 + OutParameter + + + + + "Quelle " || ¤kc0nt601-GOP¤ || " votre profession principale ?" + + + + + fr.insee + lowso3oc-RDOP-lq2k2co5 + 1 + + + + + fr.insee + lowskfmg + 1 + Instruction + + + fr.insee + lowsq3ex + 1 + Instruction + + + fr.insee + lowsi1iw + 1 + Instruction + + + + fr.insee + lox14baw + 1 + + PROFESSIONCLAIR + + + fr.insee + lox14baw-QOP-lq2keyfy + 1 + + PROFESSIONCLAIR + + + + + fr.insee + lox14baw-RDOP-lq2keyfy + 1 + OutParameter + + + fr.insee + lox14baw-QOP-lq2keyfy + 1 + OutParameter + + + + + Votre profession n'est pas dans la liste. Pouvez-vous l'indiquer, le plus exactement possible ? + + + + + fr.insee + lox14baw-RDOP-lq2keyfy + 1 + + + + + + fr.insee + lox1j0b5 + 1 + + PROFESSIONCLAIRP + + + fr.insee + lox1j0b5-QOP-lq2k2dlg + 1 + + PROFESSIONCLAIRP + + + + + fr.insee + lox1j0b5-RDOP-lq2k2dlg + 1 + OutParameter + + + fr.insee + lox1j0b5-QOP-lq2k2dlg + 1 + OutParameter + + + + + Pouvez-vous décrire en quelques mots en quoi consiste votre travail ? + + + + + fr.insee + lox1j0b5-RDOP-lq2k2dlg + 1 + + + + + + fr.insee + kc0nbhww + 1 + + STCPUB + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + + STCPUB + + + + + fr.insee + kc0nbhww-RDOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + + + "Dans votre " || ¤kc0ntxu9-GOP¤ || " ?" + + + + radio-button + + fr.insee + kc0nedap + 1 + CodeList + + + fr.insee + kc0nbhww-RDOP-lq2jxff5 + 1 + + + fr.insee + kc0nedap + 1 + CodeList + + + + + + + fr.insee + kc0nojf1 + 1 + Instruction + + + + fr.insee + kc0nuukd + 1 + + ENCADR + + + fr.insee + kc0nuukd-QOP-lq2k9i89 + 1 + + ENCADR + + + + + fr.insee + kc0nuukd-RDOP-lq2k9i89 + 1 + OutParameter + + + fr.insee + kc0nuukd-QOP-lq2k9i89 + 1 + OutParameter + + + + + "Votre tâche principale " || ¤kc0nt601-GOP¤ || "-elle de superviser le travail d’autres salariés (hors apprentis et stagiaires) ?" + + + + radio-button + + fr.insee + kbw9cik3 + 1 + CodeList + + + fr.insee + kc0nuukd-RDOP-lq2k9i89 + 1 + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + + + fr.insee + lox2pfjr + 1 + + POSITION_PUBLIC + + + fr.insee + lox2pfjr-QOP-lq2kfqxl + 1 + + POSITION_PUBLIC + + + + + fr.insee + lox2pfjr-RDOP-lq2kfqxl + 1 + OutParameter + + + fr.insee + lox2pfjr-QOP-lq2kfqxl + 1 + OutParameter + + + + + ¤kc0o7r0w-GOP¤ || "-vous ?" + + + + radio-button + + fr.insee + lox2f78d + 1 + CodeList + + + fr.insee + lox2pfjr-RDOP-lq2kfqxl + 1 + + + fr.insee + lox2f78d + 1 + CodeList + + + + + + + + fr.insee + lowseoqt + 1 + + POSITION_PRIVE + + + fr.insee + lowseoqt-QOP-lq2k4gc1 + 1 + + POSITION_PRIVE + + + + + fr.insee + lowseoqt-RDOP-lq2k4gc1 + 1 + OutParameter + + + fr.insee + lowseoqt-QOP-lq2k4gc1 + 1 + OutParameter + + + + + ¤kc0o7r0w-GOP¤ || "-vous ?" + + + + radio-button + + fr.insee + lows9fg9 + 1 + CodeList + + + fr.insee + lowseoqt-RDOP-lq2k4gc1 + 1 + + + fr.insee + lows9fg9 + 1 + CodeList + + + + + + + + fr.insee + kc0p4jga + 1 + + ACTILIB + + + fr.insee + kc0p4jga-QOP-lq2kd409 + 1 + + ACTILIB + + + + + fr.insee + kc0p4jga-RDOP-lq2kd409 + 1 + OutParameter + + + fr.insee + kc0p4jga-QOP-lq2kd409 + 1 + OutParameter + + + + + "Quelle " || ¤kc0p4gs7-GOP¤ || " ?" + + + + + fr.insee + kc0p4jga-RDOP-lq2kd409 + 1 + + + + + fr.insee + lox1t2sd + 1 + Instruction + + + fr.insee + lox1xqqr + 1 + Instruction + + + + fr.insee + kc0qftls + 1 + + NBSAL + + + fr.insee + kc0qftls-QOP-lq2k0m1d + 1 + + NBSAL + + + + + fr.insee + kc0qftls-RDOP-lq2k0m1d + 1 + OutParameter + + + fr.insee + kc0qftls-QOP-lq2k0m1d + 1 + OutParameter + + + + + "En vous comptant, combien de personnes " || ¤kc0qj6l6-GOP¤ ||" dans l'établissement ?" + + + + radio-button + + fr.insee + kc0qcptw + 1 + CodeList + + + fr.insee + kc0qftls-RDOP-lq2k0m1d + 1 + + + fr.insee + kc0qcptw + 1 + CodeList + + + + + + + + fr.insee + kc0o78n2 + 1 + + CONTRAT + + + fr.insee + kc0o78n2-QOP-lq2jvic1 + 1 + + CONTRAT + + + + + fr.insee + kc0o78n2-RDOP-lq2jvic1 + 1 + OutParameter + + + fr.insee + kc0o78n2-QOP-lq2jvic1 + 1 + OutParameter + + + + + "Quel " || ¤kc0nt601-GOP¤ || " votre type d’emploi ?" + + + + radio-button + + fr.insee + kc0ntlza + 1 + CodeList + + + fr.insee + kc0o78n2-RDOP-lq2jvic1 + 1 + + + fr.insee + kc0ntlza + 1 + CodeList + + + + + + + + fr.insee + kc0o6lj8 + 1 + + DUREE_EMP + + + fr.insee + kc0o6lj8-QOP-lq2k9jxl + 1 + + DUREE_EMP + + + + + fr.insee + kc0o6lj8-RDOP-lq2k9jxl + 1 + OutParameter + + + fr.insee + kc0o6lj8-QOP-lq2k9jxl + 1 + OutParameter + + + + + ¤kc0oacnr-GOP¤ || "-vous ?" + + + + radio-button + + fr.insee + kc0oigqa + 1 + CodeList + + + fr.insee + kc0o6lj8-RDOP-lq2k9jxl + 1 + + + fr.insee + kc0oigqa + 1 + CodeList + + + + + + + + fr.insee + ks4txhy9 + 1 + + SANTE + + + fr.insee + ks4txhy9-QOP-lq2k2urn + 1 + + SANTE + + + + + fr.insee + ks4txhy9-RDOP-lq2k2urn + 1 + OutParameter + + + fr.insee + ks4txhy9-QOP-lq2k2urn + 1 + OutParameter + + + + + Êtes-vous limité(e) depuis au moins six mois, à cause d’un problème de santé, dans les activités que les gens font habituellement ? + + + + radio-button + + fr.insee + ks4ttfz8 + 1 + CodeList + + + fr.insee + ks4txhy9-RDOP-lq2k2urn + 1 + + + fr.insee + ks4ttfz8 + 1 + CodeList + + + + + + + + fr.insee + kc0qz959 + 1 + + REVENU + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + + REVENU + + + + + fr.insee + kc0qz959-RDOP-lqwjnvq1 + 1 + OutParameter + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + OutParameter + + + + + Une dernière question, quel est le revenu mensuel de votre ménage en euros ? + + + + + 0 + 99999 + + Decimal + + fr.insee + kc0qz959-RDOP-lqwjnvq1 + 1 + + + + fr.insee + kc0r6wgt + 1 + Instruction + + + fr.insee + lb0t20ui + 1 + Instruction + + + + fr.insee + lqwjbav6 + 1 + + TRANCHREVENU + + + fr.insee + lqwjbav6-QOP-lqwjn845 + 1 + + TRANCHREVENU + + + + + fr.insee + lqwjbav6-RDOP-lqwjn845 + 1 + OutParameter + + + fr.insee + lqwjbav6-QOP-lqwjn845 + 1 + OutParameter + + + + + Pouvez-vous, néanmoins, le situer dans une des tranches suivantes ? + + + + radio-button + + fr.insee + kc0qmn36 + 1 + CodeList + + + fr.insee + lqwjbav6-RDOP-lqwjn845 + 1 + + + fr.insee + kc0qmn36 + 1 + CodeList + + + + + + + fr.insee + lqwjqw2l + 1 + Instruction + + + fr.insee + lqwjlcwx + 1 + Instruction + + + + fr.insee + kbwafrus + 1 + + NATIO1N + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + + NATIO1N1 + + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + + NATIO1N2 + + + + fr.insee + kbwafrus-QOP-kwmb49mu + 1 + + NATIO1N3 + + + + fr.insee + kbwafrus-QOP-kwmay4fv + 1 + + NATIO1N4 + + + + + fr.insee + kbwafrus-RDOP-kwmb8u5k + 1 + OutParameter + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + OutParameter + + + + + fr.insee + kbwafrus-RDOP-kwmatb1k + 1 + OutParameter + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + OutParameter + + + + + fr.insee + kbwafrus-RDOP-kwmb49mu + 1 + OutParameter + + + fr.insee + kbwafrus-QOP-kwmb49mu + 1 + OutParameter + + + + + fr.insee + kbwafrus-RDOP-kwmay4fv + 1 + OutParameter + + + fr.insee + kbwafrus-QOP-kwmay4fv + 1 + OutParameter + + + + + Quelle est votre nationalité ? + + + + + + fr.insee + kbwalpah + 1 + CodeList + + + + + + + + fr.insee + kbwafrus-RDOP-kwmb8u5k + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kbwafrus-RDOP-kwmatb1k + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kbwafrus-RDOP-kwmb49mu + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kbwafrus-RDOP-kwmay4fv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kbwataew + 1 + Instruction + + + + fr.insee + kuznl5ba + 1 + + F_DEBITX + + + fr.insee + kuznl5ba-QOP-lnby5sw0 + 1 + + F_DEBITX1 + + + + fr.insee + kuznl5ba-QOP-lnbyaj6d + 1 + + F_DEBITX2 + + + + fr.insee + kuznl5ba-QOP-lnbxw9v4 + 1 + + F_DEBITX3 + + + + fr.insee + kuznl5ba-QOP-lnbxxb1a + 1 + + F_DEBITX4 + + + + fr.insee + kuznl5ba-QOP-lnby7qgh + 1 + + F_DEBITX5 + + + + + fr.insee + kuznl5ba-RDOP-lnby5sw0 + 1 + OutParameter + + + fr.insee + kuznl5ba-QOP-lnby5sw0 + 1 + OutParameter + + + + + fr.insee + kuznl5ba-RDOP-lnbyaj6d + 1 + OutParameter + + + fr.insee + kuznl5ba-QOP-lnbyaj6d + 1 + OutParameter + + + + + fr.insee + kuznl5ba-RDOP-lnbxw9v4 + 1 + OutParameter + + + fr.insee + kuznl5ba-QOP-lnbxw9v4 + 1 + OutParameter + + + + + fr.insee + kuznl5ba-RDOP-lnbxxb1a + 1 + OutParameter + + + fr.insee + kuznl5ba-QOP-lnbxxb1a + 1 + OutParameter + + + + + fr.insee + kuznl5ba-RDOP-lnby7qgh + 1 + OutParameter + + + fr.insee + kuznl5ba-QOP-lnby7qgh + 1 + OutParameter + + + + + Votre connexion à Internet à domicile est-elle ? + + + + + + fr.insee + kuznwwbx + 1 + CodeList + + + + + + + + fr.insee + kuznl5ba-RDOP-lnby5sw0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kuznl5ba-RDOP-lnbyaj6d + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kuznl5ba-RDOP-lnbxw9v4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kuznl5ba-RDOP-lnbxxb1a + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kuznl5ba-RDOP-lnby7qgh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kuzo2jh2 + 1 + Instruction + + + + fr.insee + lnbwa2sl + 1 + + F_HDEBX + + + fr.insee + lnbwa2sl-QOP-lnby1c4f + 1 + + F_HDEB1 + + + + fr.insee + lnbwa2sl-QOP-lnby44if + 1 + + F_HDEB2 + + + + fr.insee + lnbwa2sl-QOP-lnbyaj1x + 1 + + F_HDEB3 + + + + fr.insee + lnbwa2sl-QOP-lnbybgrm + 1 + + F_HDEB4 + + + + fr.insee + lnbwa2sl-QOP-lnby6790 + 1 + + F_HDEB5 + + + + fr.insee + lnbwa2sl-QOP-lnby4672 + 1 + + F_HDEB6 + + + + + fr.insee + lnbwa2sl-RDOP-lnby1c4f + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnby1c4f + 1 + OutParameter + + + + + fr.insee + lnbwa2sl-RDOP-lnby44if + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnby44if + 1 + OutParameter + + + + + fr.insee + lnbwa2sl-RDOP-lnbyaj1x + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnbyaj1x + 1 + OutParameter + + + + + fr.insee + lnbwa2sl-RDOP-lnbybgrm + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnbybgrm + 1 + OutParameter + + + + + fr.insee + lnbwa2sl-RDOP-lnby6790 + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnby6790 + 1 + OutParameter + + + + + fr.insee + lnbwa2sl-RDOP-lnby4672 + 1 + OutParameter + + + fr.insee + lnbwa2sl-QOP-lnby4672 + 1 + OutParameter + + + + + Pourquoi ne disposez-vous pas d'une connexion à très haut débit fixe à Internet à votre domicile ? + + + + + + fr.insee + lnbw2d2c + 1 + CodeList + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnby1c4f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnby44if + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnbyaj1x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnbybgrm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnby6790 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnbwa2sl-RDOP-lnby4672 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnbwdk40 + 1 + Instruction + + + + fr.insee + kc0hyu5k + 1 + + PRATINTXX + + + fr.insee + kc0hyu5k-QOP-lq5fp0us + 1 + + PRATINTXX1 + + + + fr.insee + kc0hyu5k-QOP-lq5fh949 + 1 + + PRATINTXX2 + + + + fr.insee + kc0hyu5k-QOP-lq5fp32f + 1 + + PRATINTXX3 + + + + fr.insee + kc0hyu5k-QOP-lq5f7bzd + 1 + + PRATINTXX4 + + + + fr.insee + kc0hyu5k-QOP-lq5fnqsz + 1 + + PRATINTXX5 + + + + fr.insee + kc0hyu5k-QOP-lq5f7h9u + 1 + + PRATINTXX6 + + + + fr.insee + kc0hyu5k-QOP-lq5f5pp2 + 1 + + PRATINTXX7 + + + + fr.insee + kc0hyu5k-QOP-lq5fg0y2 + 1 + + PRATINTXX8 + + + + fr.insee + kc0hyu5k-QOP-lq5flzel + 1 + + PRATINTXX9 + + + + fr.insee + kc0hyu5k-QOP-lq5fnbv7 + 1 + + PRATINTXX10 + + + + fr.insee + kc0hyu5k-QOP-lq5foc8i + 1 + + PRATINTXX11 + + + + fr.insee + kc0hyu5k-QOP-lq5fbf7d + 1 + + PRATINTXX12 + + + + fr.insee + kc0hyu5k-QOP-lq5f6m3o + 1 + + PRATINTXX13 + + + + fr.insee + kc0hyu5k-QOP-lq5facrr + 1 + + PRATINTXX14 + + + + fr.insee + kc0hyu5k-QOP-lq5f6bn0 + 1 + + PRATINTXX15 + + + + fr.insee + kc0hyu5k-QOP-lq5fc14s + 1 + + PRATINTXX16 + + + + fr.insee + kc0hyu5k-QOP-lq5finzp + 1 + + PRATINTXX17 + + + + fr.insee + kc0hyu5k-QOP-lq5fb4c6 + 1 + + PRATINTXX18 + + + + fr.insee + kc0hyu5k-QOP-lq5fob3f + 1 + + PRATINTXX19 + + + + fr.insee + kc0hyu5k-QOP-lq5feqnb + 1 + + PRATINTXX20 + + + + fr.insee + kc0hyu5k-QOP-lq5fn7vv + 1 + + PRATINTXX21 + + + + + fr.insee + kc0hyu5k-RDOP-lq5fp0us + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fp0us + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fh949 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fh949 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fp32f + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fp32f + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5f7bzd + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5f7bzd + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fnqsz + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fnqsz + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5f7h9u + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5f7h9u + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5f5pp2 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5f5pp2 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fg0y2 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fg0y2 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5flzel + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5flzel + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fnbv7 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fnbv7 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5foc8i + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5foc8i + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fbf7d + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fbf7d + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5f6m3o + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5f6m3o + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5facrr + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5facrr + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5f6bn0 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5f6bn0 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fc14s + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fc14s + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5finzp + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5finzp + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fb4c6 + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fb4c6 + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fob3f + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fob3f + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5feqnb + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5feqnb + 1 + OutParameter + + + + + fr.insee + kc0hyu5k-RDOP-lq5fn7vv + 1 + OutParameter + + + fr.insee + kc0hyu5k-QOP-lq5fn7vv + 1 + OutParameter + + + + + Au cours des trois derniers mois, hors usage professionnel, avez-vous utilisé Internet (y compris via des applications) pour les activités suivantes ? + + + + + + fr.insee + kc0hwcna + 1 + CodeList + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fp0us + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fh949 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fp32f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5f7bzd + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fnqsz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5f7h9u + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5f5pp2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fg0y2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5flzel + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fnbv7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5foc8i + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fbf7d + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5f6m3o + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5facrr + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5f6bn0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fc14s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5finzp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fb4c6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fob3f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5feqnb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0hyu5k-RDOP-lq5fn7vv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0hwdd6 + 1 + Instruction + + + fr.insee + kc0i0z56 + 1 + Instruction + + + + fr.insee + ks4tje5l + 1 + + EDUPROX + + + fr.insee + ks4tje5l-QOP-l5qsbjcn + 1 + + EDUPROX1 + + + + fr.insee + ks4tje5l-QOP-l5qss6oe + 1 + + EDUPROX2 + + + + fr.insee + ks4tje5l-QOP-l5qsqkz5 + 1 + + EDUPROX3 + + + + fr.insee + ks4tje5l-QOP-l5qsepmx + 1 + + EDUPROX4 + + + + + fr.insee + ks4tje5l-RDOP-l5qsbjcn + 1 + OutParameter + + + fr.insee + ks4tje5l-QOP-l5qsbjcn + 1 + OutParameter + + + + + fr.insee + ks4tje5l-RDOP-l5qss6oe + 1 + OutParameter + + + fr.insee + ks4tje5l-QOP-l5qss6oe + 1 + OutParameter + + + + + fr.insee + ks4tje5l-RDOP-l5qsqkz5 + 1 + OutParameter + + + fr.insee + ks4tje5l-QOP-l5qsqkz5 + 1 + OutParameter + + + + + fr.insee + ks4tje5l-RDOP-l5qsepmx + 1 + OutParameter + + + fr.insee + ks4tje5l-QOP-l5qsepmx + 1 + OutParameter + + + + + Concernant l’apprentissage par Internet (que ce soit pour un usage privé ou professionnel), au cours des trois derniers mois, avez-vous déjà personnellement effectué l’une des activités suivantes ? + + + + + + fr.insee + ks4ti31a + 1 + CodeList + + + + + + + + fr.insee + ks4tje5l-RDOP-l5qsbjcn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks4tje5l-RDOP-l5qss6oe + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks4tje5l-RDOP-l5qsqkz5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks4tje5l-RDOP-l5qsepmx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + ks4tjwkv + 1 + Instruction + + + + fr.insee + lnd4rdph + 1 + + OBJEDUX + + + fr.insee + lnd4rdph-QOP-lnd680q9 + 1 + + OBJEDUX1 + + + + fr.insee + lnd4rdph-QOP-lnd5y670 + 1 + + OBJEDUX2 + + + + fr.insee + lnd4rdph-QOP-lnd6139f + 1 + + OBJEDUX3 + + + + + fr.insee + lnd4rdph-RDOP-lnd680q9 + 1 + OutParameter + + + fr.insee + lnd4rdph-QOP-lnd680q9 + 1 + OutParameter + + + + + fr.insee + lnd4rdph-RDOP-lnd5y670 + 1 + OutParameter + + + fr.insee + lnd4rdph-QOP-lnd5y670 + 1 + OutParameter + + + + + fr.insee + lnd4rdph-RDOP-lnd6139f + 1 + OutParameter + + + fr.insee + lnd4rdph-QOP-lnd6139f + 1 + OutParameter + + + + + Dans quel but avez-vous entrepris ces activités d'apprentissage au cours des 3 derniers mois ? + + + + + + fr.insee + lnd4szkp + 1 + CodeList + + + + + + + + fr.insee + lnd4rdph-RDOP-lnd680q9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd4rdph-RDOP-lnd5y670 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd4rdph-RDOP-lnd6139f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnd4o8bt + 1 + Instruction + + + + fr.insee + lnd5kw2d + 1 + + F_IMPROVEX + + + fr.insee + lnd5kw2d-QOP-lnd61gz7 + 1 + + F_IMPROVEX1 + + + + fr.insee + lnd5kw2d-QOP-lnd5ttaw + 1 + + F_IMPROVEX2 + + + + fr.insee + lnd5kw2d-QOP-lnd5uk3h + 1 + + F_IMPROVEX3 + + + + fr.insee + lnd5kw2d-QOP-lnd6bqz6 + 1 + + F_IMPROVEX4 + + + + fr.insee + lnd5kw2d-QOP-lnd5si8z + 1 + + F_IMPROVEX5 + + + + fr.insee + lnd5kw2d-QOP-lnd5vhu7 + 1 + + F_IMPROVEX6 + + + + + fr.insee + lnd5kw2d-RDOP-lnd61gz7 + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd61gz7 + 1 + OutParameter + + + + + fr.insee + lnd5kw2d-RDOP-lnd5ttaw + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd5ttaw + 1 + OutParameter + + + + + fr.insee + lnd5kw2d-RDOP-lnd5uk3h + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd5uk3h + 1 + OutParameter + + + + + fr.insee + lnd5kw2d-RDOP-lnd6bqz6 + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd6bqz6 + 1 + OutParameter + + + + + fr.insee + lnd5kw2d-RDOP-lnd5si8z + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd5si8z + 1 + OutParameter + + + + + fr.insee + lnd5kw2d-RDOP-lnd5vhu7 + 1 + OutParameter + + + fr.insee + lnd5kw2d-QOP-lnd5vhu7 + 1 + OutParameter + + + + + Au cours des douze derniers mois, vous êtes vous formé(e) afin d’améliorer vos compétences dans l’usage des ordinateurs, de logiciels ou d’applications ? + + + + + + fr.insee + lnd5atf0 + 1 + CodeList + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd61gz7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd5ttaw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd5uk3h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd6bqz6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd5si8z + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd5kw2d-RDOP-lnd5vhu7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnd57dqk + 1 + Instruction + + + + fr.insee + kc0i0jec + 1 + + ADMX + + + fr.insee + kc0i0jec-QOP-kwmazv3k + 1 + + ADMX1 + + + + fr.insee + kc0i0jec-QOP-kwmb4o86 + 1 + + ADMX2 + + + + fr.insee + kc0i0jec-QOP-kwmb6i3d + 1 + + ADMX3 + + + + fr.insee + kc0i0jec-QOP-kwmaw31m + 1 + + ADMX4 + + + + + fr.insee + kc0i0jec-RDOP-kwmazv3k + 1 + OutParameter + + + fr.insee + kc0i0jec-QOP-kwmazv3k + 1 + OutParameter + + + + + fr.insee + kc0i0jec-RDOP-kwmb4o86 + 1 + OutParameter + + + fr.insee + kc0i0jec-QOP-kwmb4o86 + 1 + OutParameter + + + + + fr.insee + kc0i0jec-RDOP-kwmb6i3d + 1 + OutParameter + + + fr.insee + kc0i0jec-QOP-kwmb6i3d + 1 + OutParameter + + + + + fr.insee + kc0i0jec-RDOP-kwmaw31m + 1 + OutParameter + + + fr.insee + kc0i0jec-QOP-kwmaw31m + 1 + OutParameter + + + + + Au cours des douze derniers mois, hors usage professionnel, avez-vous utilisé le site Web ou l’application d’une administration ou d’un service public pour l’une des raisons suivantes ? + + + + + + fr.insee + kc0i2zi7 + 1 + CodeList + + + + + + + + fr.insee + kc0i0jec-RDOP-kwmazv3k + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i0jec-RDOP-kwmb4o86 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i0jec-RDOP-kwmb6i3d + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i0jec-RDOP-kwmaw31m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0ik811 + 1 + Instruction + + + fr.insee + kc0i9s2a + 1 + Instruction + + + + fr.insee + ks5vdqs4 + 1 + + RAIADMX + + + fr.insee + ks5vdqs4-QOP-l5qsic6y + 1 + + RAIADMX1 + + + + fr.insee + ks5vdqs4-QOP-l5qs9n5l + 1 + + RAIADMX2 + + + + fr.insee + ks5vdqs4-QOP-l5qsrxdz + 1 + + RAIADMX3 + + + + fr.insee + ks5vdqs4-QOP-l5qsc84x + 1 + + RAIADMX4 + + + + + fr.insee + ks5vdqs4-RDOP-l5qsic6y + 1 + OutParameter + + + fr.insee + ks5vdqs4-QOP-l5qsic6y + 1 + OutParameter + + + + + fr.insee + ks5vdqs4-RDOP-l5qs9n5l + 1 + OutParameter + + + fr.insee + ks5vdqs4-QOP-l5qs9n5l + 1 + OutParameter + + + + + fr.insee + ks5vdqs4-RDOP-l5qsrxdz + 1 + OutParameter + + + fr.insee + ks5vdqs4-QOP-l5qsrxdz + 1 + OutParameter + + + + + fr.insee + ks5vdqs4-RDOP-l5qsc84x + 1 + OutParameter + + + fr.insee + ks5vdqs4-QOP-l5qsc84x + 1 + OutParameter + + + + + Au cours des douze derniers mois, hors usage professionnel, avez-vous effectué l’une des actions suivantes via le site Web ou l’application d’une administration ou d’un service public ? + + + + + + fr.insee + ks5vh364 + 1 + CodeList + + + + + + + + fr.insee + ks5vdqs4-RDOP-l5qsic6y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vdqs4-RDOP-l5qs9n5l + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vdqs4-RDOP-l5qsrxdz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vdqs4-RDOP-l5qsc84x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + ks5vrixr + 1 + Instruction + + + + fr.insee + ks5vnmgt + 1 + + DEMADMX + + + fr.insee + ks5vnmgt-QOP-kwmcigfw + 1 + + DEMADMX1 + + + + fr.insee + ks5vnmgt-QOP-kwmckybs + 1 + + DEMADMX2 + + + + fr.insee + ks5vnmgt-QOP-kwmckiz6 + 1 + + DEMADMX3 + + + + fr.insee + ks5vnmgt-QOP-kwmcylnt + 1 + + DEMADMX4 + + + + fr.insee + ks5vnmgt-QOP-kwmcs5mx + 1 + + DEMADMX5 + + + + + fr.insee + ks5vnmgt-RDOP-kwmcigfw + 1 + OutParameter + + + fr.insee + ks5vnmgt-QOP-kwmcigfw + 1 + OutParameter + + + + + fr.insee + ks5vnmgt-RDOP-kwmckybs + 1 + OutParameter + + + fr.insee + ks5vnmgt-QOP-kwmckybs + 1 + OutParameter + + + + + fr.insee + ks5vnmgt-RDOP-kwmckiz6 + 1 + OutParameter + + + fr.insee + ks5vnmgt-QOP-kwmckiz6 + 1 + OutParameter + + + + + fr.insee + ks5vnmgt-RDOP-kwmcylnt + 1 + OutParameter + + + fr.insee + ks5vnmgt-QOP-kwmcylnt + 1 + OutParameter + + + + + fr.insee + ks5vnmgt-RDOP-kwmcs5mx + 1 + OutParameter + + + fr.insee + ks5vnmgt-QOP-kwmcs5mx + 1 + OutParameter + + + + + Pour quelle(s) raison(s) n’avez-vous pas demandé de documents officiels ni fait de demande à une administration ou un service public par Internet au cours des douze derniers mois ? + + + + + + fr.insee + ks5vvjjr + 1 + CodeList + + + + + + + + fr.insee + ks5vnmgt-RDOP-kwmcigfw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vnmgt-RDOP-kwmckybs + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vnmgt-RDOP-kwmckiz6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vnmgt-RDOP-kwmcylnt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + ks5vnmgt-RDOP-kwmcs5mx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + ks5vxjm4 + 1 + Instruction + + + + fr.insee + lnd7ni7e + 1 + + PROADMX + + + fr.insee + lnd7ni7e-QOP-lnd8lf32 + 1 + + PROADMX1 + + + + fr.insee + lnd7ni7e-QOP-lnd8pvwm + 1 + + PROADMX2 + + + + fr.insee + lnd7ni7e-QOP-lnd8f6hi + 1 + + PROADMX3 + + + + fr.insee + lnd7ni7e-QOP-lnd8lp83 + 1 + + PROADMX4 + + + + fr.insee + lnd7ni7e-QOP-lnd8czjz + 1 + + PROADMX5 + + + + fr.insee + lnd7ni7e-QOP-lnd8cx7p + 1 + + PROADMX6 + + + + + fr.insee + lnd7ni7e-RDOP-lnd8lf32 + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8lf32 + 1 + OutParameter + + + + + fr.insee + lnd7ni7e-RDOP-lnd8pvwm + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8pvwm + 1 + OutParameter + + + + + fr.insee + lnd7ni7e-RDOP-lnd8f6hi + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8f6hi + 1 + OutParameter + + + + + fr.insee + lnd7ni7e-RDOP-lnd8lp83 + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8lp83 + 1 + OutParameter + + + + + fr.insee + lnd7ni7e-RDOP-lnd8czjz + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8czjz + 1 + OutParameter + + + + + fr.insee + lnd7ni7e-RDOP-lnd8cx7p + 1 + OutParameter + + + fr.insee + lnd7ni7e-QOP-lnd8cx7p + 1 + OutParameter + + + + + Au cours des douze derniers mois, avez-vous rencontré l’un des problèmes suivants lors de l’utilisation du site Web ou de l’application d’une administration ou d’un service public ? + + + + + + fr.insee + lnd7mpuh + 1 + CodeList + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8lf32 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8pvwm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8f6hi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8lp83 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8czjz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd7ni7e-RDOP-lnd8cx7p + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnd7d8le + 1 + Instruction + + + + fr.insee + kc0i7d8t + 1 + + F_AIDADMX + + + fr.insee + kc0i7d8t-QOP-lda11p1n + 1 + + F_AIDADMX1 + + + + fr.insee + kc0i7d8t-QOP-lda197nn + 1 + + F_AIDADMX2 + + + + fr.insee + kc0i7d8t-QOP-lda16296 + 1 + + F_AIDADMX3 + + + + fr.insee + kc0i7d8t-QOP-lda0yh9x + 1 + + F_AIDADMX4 + + + + fr.insee + kc0i7d8t-QOP-lda10j63 + 1 + + F_AIDADMX5 + + + + + fr.insee + kc0i7d8t-RDOP-lda11p1n + 1 + OutParameter + + + fr.insee + kc0i7d8t-QOP-lda11p1n + 1 + OutParameter + + + + + fr.insee + kc0i7d8t-RDOP-lda197nn + 1 + OutParameter + + + fr.insee + kc0i7d8t-QOP-lda197nn + 1 + OutParameter + + + + + fr.insee + kc0i7d8t-RDOP-lda16296 + 1 + OutParameter + + + fr.insee + kc0i7d8t-QOP-lda16296 + 1 + OutParameter + + + + + fr.insee + kc0i7d8t-RDOP-lda0yh9x + 1 + OutParameter + + + fr.insee + kc0i7d8t-QOP-lda0yh9x + 1 + OutParameter + + + + + fr.insee + kc0i7d8t-RDOP-lda10j63 + 1 + OutParameter + + + fr.insee + kc0i7d8t-QOP-lda10j63 + 1 + OutParameter + + + + + Au cours des douze derniers mois, avez-vous demandé de l’aide pour effectuer une démarche administrative sur Internet (par exemple pour prendre un RDV, obtenir une information, faire une demande de droit, toucher une allocation ou une prestation sociale, accéder à un compte personnel, etc. ) ? + + + + + + fr.insee + kc0ihwo1 + 1 + CodeList + + + + + + + + fr.insee + kc0i7d8t-RDOP-lda11p1n + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i7d8t-RDOP-lda197nn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i7d8t-RDOP-lda16296 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i7d8t-RDOP-lda0yh9x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0i7d8t-RDOP-lda10j63 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0is7qk + 1 + Instruction + + + + fr.insee + kc0is12p + 1 + + F_RENADMX + + + fr.insee + kc0is12p-QOP-l5qsr5vo + 1 + + F_RENADMX1 + + + + fr.insee + kc0is12p-QOP-l5qsgsly + 1 + + F_RENADMX2 + + + + fr.insee + kc0is12p-QOP-l5qsm2gh + 1 + + F_RENADMX3 + + + + fr.insee + kc0is12p-QOP-l5qsyby7 + 1 + + F_RENADMX4 + + + + fr.insee + kc0is12p-QOP-l5qsshvt + 1 + + F_RENADMX5 + + + + fr.insee + kc0is12p-QOP-l5qsrllz + 1 + + F_RENADMX6 + + + + fr.insee + kc0is12p-QOP-l5qsuktj + 1 + + F_RENADMX7 + + + + fr.insee + kc0is12p-QOP-l5qshfk9 + 1 + + F_RENADMX8 + + + + fr.insee + kc0is12p-QOP-l5qsvqkb + 1 + + F_RENADMX9 + + + + + fr.insee + kc0is12p-RDOP-l5qsr5vo + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsr5vo + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsgsly + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsgsly + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsm2gh + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsm2gh + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsyby7 + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsyby7 + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsshvt + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsshvt + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsrllz + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsrllz + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsuktj + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsuktj + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qshfk9 + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qshfk9 + 1 + OutParameter + + + + + fr.insee + kc0is12p-RDOP-l5qsvqkb + 1 + OutParameter + + + fr.insee + kc0is12p-QOP-l5qsvqkb + 1 + OutParameter + + + + + Au cours des douze derniers mois, avez-vous renoncé à faire des démarches administratives sur Internet ? + + + + + + fr.insee + kc0irri6 + 1 + CodeList + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsr5vo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsgsly + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsm2gh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsyby7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsshvt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsrllz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsuktj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qshfk9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0is12p-RDOP-l5qsvqkb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l5qshzbr + 1 + Instruction + + + fr.insee + ld03fbmn + 1 + Instruction + + + + fr.insee + kc0ijn79 + 1 + + ACHATXX + + + fr.insee + kc0ijn79-QOP-lnd8qelb + 1 + + ACHATXX1 + + + + fr.insee + kc0ijn79-QOP-lnd8qkwb + 1 + + ACHATXX2 + + + + fr.insee + kc0ijn79-QOP-lnd8uqlf + 1 + + ACHATXX3 + + + + fr.insee + kc0ijn79-QOP-lnd8jdby + 1 + + ACHATXX4 + + + + fr.insee + kc0ijn79-QOP-lnd8du45 + 1 + + ACHATXX5 + + + + fr.insee + kc0ijn79-QOP-lnd8kw25 + 1 + + ACHATXX6 + + + + fr.insee + kc0ijn79-QOP-lnd8huar + 1 + + ACHATXX7 + + + + fr.insee + kc0ijn79-QOP-lnd8r9hm + 1 + + ACHATXX8 + + + + fr.insee + kc0ijn79-QOP-lnd8azun + 1 + + ACHATXX9 + + + + fr.insee + kc0ijn79-QOP-lnd8uq4q + 1 + + ACHATXX10 + + + + fr.insee + kc0ijn79-QOP-lnd8hgjh + 1 + + ACHATXX11 + + + + fr.insee + kc0ijn79-QOP-lnd8a4pd + 1 + + ACHATXX12 + + + + fr.insee + kc0ijn79-QOP-lnd8nwzt + 1 + + ACHATXX13 + + + + fr.insee + kc0ijn79-QOP-lnd8jubz + 1 + + ACHATXX14 + + + + fr.insee + kc0ijn79-QOP-lnd8qx6d + 1 + + ACHATXX15 + + + + + fr.insee + kc0ijn79-RDOP-lnd8qelb + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8qelb + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8qkwb + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8qkwb + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8uqlf + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8uqlf + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8jdby + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8jdby + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8du45 + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8du45 + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8kw25 + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8kw25 + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8huar + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8huar + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8r9hm + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8r9hm + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8azun + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8azun + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8uq4q + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8uq4q + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8hgjh + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8hgjh + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8a4pd + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8a4pd + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8nwzt + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8nwzt + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8jubz + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8jubz + 1 + OutParameter + + + + + fr.insee + kc0ijn79-RDOP-lnd8qx6d + 1 + OutParameter + + + fr.insee + kc0ijn79-QOP-lnd8qx6d + 1 + OutParameter + + + + + Au cours des trois derniers mois, hors usage professionnel, avez-vous personnellement acheté ou commandé sur Internet ou via une application les biens ou services suivants ? + + + + + + fr.insee + kc0isivg + 1 + CodeList + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8qelb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8qkwb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8uqlf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8jdby + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8du45 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8kw25 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8huar + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8r9hm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8azun + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8uq4q + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8hgjh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8a4pd + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8nwzt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8jubz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0ijn79-RDOP-lnd8qx6d + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0ivga8 + 1 + Instruction + + + fr.insee + kc0ipy1a + 1 + Instruction + + + + fr.insee + lnd86l8j + 1 + + ABACHAX + + + fr.insee + lnd86l8j-QOP-lnd8hj37 + 1 + + ABACHAX1 + + + + fr.insee + lnd86l8j-QOP-lnd8fqxa + 1 + + ABACHAX2 + + + + fr.insee + lnd86l8j-QOP-lnd89wkt + 1 + + ABACHAX3 + + + + + fr.insee + lnd86l8j-RDOP-lnd8hj37 + 1 + OutParameter + + + fr.insee + lnd86l8j-QOP-lnd8hj37 + 1 + OutParameter + + + + + fr.insee + lnd86l8j-RDOP-lnd8fqxa + 1 + OutParameter + + + fr.insee + lnd86l8j-QOP-lnd8fqxa + 1 + OutParameter + + + + + fr.insee + lnd86l8j-RDOP-lnd89wkt + 1 + OutParameter + + + fr.insee + lnd86l8j-QOP-lnd89wkt + 1 + OutParameter + + + + + Au cours des trois derniers mois, hors usage professionnel, avez-vous souscrit à un des abonnements suivants sur Internet ou via une application ? + + + + + + fr.insee + lnd813te + 1 + CodeList + + + + + + + + fr.insee + lnd86l8j-RDOP-lnd8hj37 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd86l8j-RDOP-lnd8fqxa + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd86l8j-RDOP-lnd89wkt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnd7ygqw + 1 + Instruction + + + + fr.insee + lnd8amkr + 1 + + SERACHAX + + + fr.insee + lnd8amkr-QOP-lnd8axa7 + 1 + + SERACHAX1 + + + + fr.insee + lnd8amkr-QOP-lnd8s5fg + 1 + + SERACHAX2 + + + + fr.insee + lnd8amkr-QOP-lnd8durp + 1 + + SERACHAX3 + + + + fr.insee + lnd8amkr-QOP-lnd8o5fs + 1 + + SERACHAX4 + + + + fr.insee + lnd8amkr-QOP-lnd8aop4 + 1 + + SERACHAX5 + + + + fr.insee + lnd8amkr-QOP-lnd8kbvo + 1 + + SERACHAX6 + + + + fr.insee + lnd8amkr-QOP-lnd8culf + 1 + + SERACHAX7 + + + + + fr.insee + lnd8amkr-RDOP-lnd8axa7 + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8axa7 + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8s5fg + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8s5fg + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8durp + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8durp + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8o5fs + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8o5fs + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8aop4 + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8aop4 + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8kbvo + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8kbvo + 1 + OutParameter + + + + + fr.insee + lnd8amkr-RDOP-lnd8culf + 1 + OutParameter + + + fr.insee + lnd8amkr-QOP-lnd8culf + 1 + OutParameter + + + + + Au cours des trois derniers mois, hors usage professionnel, avez-vous acheté sur un site Internet ou via une application un des produits ou services suivants ? + + + + + + fr.insee + lnd87up6 + 1 + CodeList + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8axa7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8s5fg + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8durp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8o5fs + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8aop4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8kbvo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8amkr-RDOP-lnd8culf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto + 1 + + PAYACHAX + + + fr.insee + lnd8oyto-QOP-lq5fejj8 + 1 + + PAYACHAX1 + + + + fr.insee + lnd8oyto-QOP-lq5fmgn8 + 1 + + PAYACHAX2 + + + + fr.insee + lnd8oyto-QOP-lq5fo1h3 + 1 + + PAYACHAX3 + + + + fr.insee + lnd8oyto-QOP-lq5febyh + 1 + + PAYACHAX4 + + + + fr.insee + lnd8oyto-QOP-lq5f7shc + 1 + + PAYACHAX5 + + + + fr.insee + lnd8oyto-QOP-lq5fcx77 + 1 + + PAYACHAX6 + + + + fr.insee + lnd8oyto-QOP-lq5f6twe + 1 + + PAYACHAX7 + + + + + fr.insee + lnd8oyto-RDOP-lq5fejj8 + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5fejj8 + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5fmgn8 + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5fmgn8 + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5fo1h3 + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5fo1h3 + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5febyh + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5febyh + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5f7shc + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5f7shc + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5fcx77 + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5fcx77 + 1 + OutParameter + + + + + fr.insee + lnd8oyto-RDOP-lq5f6twe + 1 + OutParameter + + + fr.insee + lnd8oyto-QOP-lq5f6twe + 1 + OutParameter + + + + + Au cours des trois derniers mois, hors usage professionnel, avez-vous personnellement payé un abonnement à un des services suivants (que ce soit un abonnement en cours ou une nouvelle souscription) ? + + + + + + fr.insee + lnd82qav + 1 + CodeList + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5fejj8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5fmgn8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5fo1h3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5febyh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5f7shc + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5fcx77 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnd8oyto-RDOP-lq5f6twe + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnd8i3e6 + 1 + Instruction + + + + fr.insee + kc0juxed + 1 + + FINANCEX + + + fr.insee + kc0juxed-QOP-kwupchpe + 1 + + FINANCEX1 + + + + fr.insee + kc0juxed-QOP-kwupd9tf + 1 + + FINANCEX2 + + + + fr.insee + kc0juxed-QOP-kwupqb7v + 1 + + FINANCEX3 + + + + fr.insee + kc0juxed-QOP-kwupdwz9 + 1 + + FINANCEX4 + + + + + fr.insee + kc0juxed-RDOP-kwupchpe + 1 + OutParameter + + + fr.insee + kc0juxed-QOP-kwupchpe + 1 + OutParameter + + + + + fr.insee + kc0juxed-RDOP-kwupd9tf + 1 + OutParameter + + + fr.insee + kc0juxed-QOP-kwupd9tf + 1 + OutParameter + + + + + fr.insee + kc0juxed-RDOP-kwupqb7v + 1 + OutParameter + + + fr.insee + kc0juxed-QOP-kwupqb7v + 1 + OutParameter + + + + + fr.insee + kc0juxed-RDOP-kwupdwz9 + 1 + OutParameter + + + fr.insee + kc0juxed-QOP-kwupdwz9 + 1 + OutParameter + + + + + Au cours des trois derniers mois, dans un but privé, avez-vous effectué les activités financières suivantes sur un site Internet ou une application : + + + + + + fr.insee + kc0jlyo1 + 1 + CodeList + + + + + + + + fr.insee + kc0juxed-RDOP-kwupchpe + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0juxed-RDOP-kwupd9tf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0juxed-RDOP-kwupqb7v + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0juxed-RDOP-kwupdwz9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0jlwsz + 1 + Instruction + + + + fr.insee + lndbnxta + 1 + + HOMEIOTX + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + + HOMEIOTX1 + + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + + HOMEIOTX2 + + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + + HOMEIOTX3 + + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + + HOMEIOTX4 + + + + fr.insee + lndbnxta-QOP-lndd58y0 + 1 + + HOMEIOTX5 + + + + + fr.insee + lndbnxta-RDOP-lndcmxp7 + 1 + OutParameter + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + OutParameter + + + + + fr.insee + lndbnxta-RDOP-lndcspen + 1 + OutParameter + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + OutParameter + + + + + fr.insee + lndbnxta-RDOP-lndcokyy + 1 + OutParameter + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + OutParameter + + + + + fr.insee + lndbnxta-RDOP-lndcx88t + 1 + OutParameter + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + OutParameter + + + + + fr.insee + lndbnxta-RDOP-lndd58y0 + 1 + OutParameter + + + fr.insee + lndbnxta-QOP-lndd58y0 + 1 + OutParameter + + + + + Au cours des trois derniers mois, avez-vous déjà utilisé à des fins privées l’un des appareils connectés à Internet suivants ? + + + + + + fr.insee + lndboeeg + 1 + CodeList + + + + + + + + fr.insee + lndbnxta-RDOP-lndcmxp7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndbnxta-RDOP-lndcspen + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndbnxta-RDOP-lndcokyy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndbnxta-RDOP-lndcx88t + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndbnxta-RDOP-lndd58y0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lndc2hq5 + 1 + Instruction + + + + fr.insee + lndc97me + 1 + + RAISIOTX + + + fr.insee + lndc97me-QOP-lndd2a0j + 1 + + RAISIOTX1 + + + + fr.insee + lndc97me-QOP-lndcpqmn + 1 + + RAISIOTX2 + + + + fr.insee + lndc97me-QOP-lndd17il + 1 + + RAISIOTX3 + + + + fr.insee + lndc97me-QOP-lndcwqv9 + 1 + + RAISIOTX4 + + + + fr.insee + lndc97me-QOP-lndcvahp + 1 + + RAISIOTX5 + + + + fr.insee + lndc97me-QOP-lndctsyq + 1 + + RAISIOTX6 + + + + fr.insee + lndc97me-QOP-lndcv02f + 1 + + RAISIOTX7 + + + + fr.insee + lndc97me-QOP-lndcz1pb + 1 + + RAISIOTX8 + + + + fr.insee + lndc97me-QOP-lndd3fbj + 1 + + RAISIOTX9 + + + + + fr.insee + lndc97me-RDOP-lndd2a0j + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndd2a0j + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndcpqmn + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndcpqmn + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndd17il + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndd17il + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndcwqv9 + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndcwqv9 + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndcvahp + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndcvahp + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndctsyq + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndctsyq + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndcv02f + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndcv02f + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndcz1pb + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndcz1pb + 1 + OutParameter + + + + + fr.insee + lndc97me-RDOP-lndd3fbj + 1 + OutParameter + + + fr.insee + lndc97me-QOP-lndd3fbj + 1 + OutParameter + + + + + Pourquoi n’avez-vous pas utilisé les appareils connectés à Internet mentionnés précédemment, au cours des trois derniers mois ? + + + + + + fr.insee + lndbybkr + 1 + CodeList + + + + + + + + fr.insee + lndc97me-RDOP-lndd2a0j + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndcpqmn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndd17il + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndcwqv9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndcvahp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndctsyq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndcv02f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndcz1pb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndc97me-RDOP-lndd3fbj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lndcerzw + 1 + Instruction + + + + fr.insee + lndcj9fz + 1 + + TVIOTX + + + fr.insee + lndcj9fz-QOP-lndd0hai + 1 + + TVIOTX1 + + + + fr.insee + lndcj9fz-QOP-lndd6bpp + 1 + + TVIOTX2 + + + + fr.insee + lndcj9fz-QOP-lndd0jk8 + 1 + + TVIOTX3 + + + + fr.insee + lndcj9fz-QOP-lndcspt5 + 1 + + TVIOTX4 + + + + + fr.insee + lndcj9fz-RDOP-lndd0hai + 1 + OutParameter + + + fr.insee + lndcj9fz-QOP-lndd0hai + 1 + OutParameter + + + + + fr.insee + lndcj9fz-RDOP-lndd6bpp + 1 + OutParameter + + + fr.insee + lndcj9fz-QOP-lndd6bpp + 1 + OutParameter + + + + + fr.insee + lndcj9fz-RDOP-lndd0jk8 + 1 + OutParameter + + + fr.insee + lndcj9fz-QOP-lndd0jk8 + 1 + OutParameter + + + + + fr.insee + lndcj9fz-RDOP-lndcspt5 + 1 + OutParameter + + + fr.insee + lndcj9fz-QOP-lndcspt5 + 1 + OutParameter + + + + + Au cours des trois derniers mois, à votre domicile, avez-vous déjà utilisé Internet sur l’un des appareils suivants ? + + + + + + fr.insee + lndcb21u + 1 + CodeList + + + + + + + + fr.insee + lndcj9fz-RDOP-lndd0hai + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcj9fz-RDOP-lndd6bpp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcj9fz-RDOP-lndd0jk8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcj9fz-RDOP-lndcspt5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lndcxyg7 + 1 + Instruction + + + + fr.insee + lndcjg90 + 1 + + AUTIOTX + + + fr.insee + lndcjg90-QOP-lndco0sy + 1 + + AUTIOTX1 + + + + fr.insee + lndcjg90-QOP-lndd6aqv + 1 + + AUTIOTX2 + + + + fr.insee + lndcjg90-QOP-lndcuhub + 1 + + AUTIOTX3 + + + + fr.insee + lndcjg90-QOP-lndcy1ey + 1 + + AUTIOTX4 + + + + fr.insee + lndcjg90-QOP-lndcqc5j + 1 + + AUTIOTX5 + + + + + fr.insee + lndcjg90-RDOP-lndco0sy + 1 + OutParameter + + + fr.insee + lndcjg90-QOP-lndco0sy + 1 + OutParameter + + + + + fr.insee + lndcjg90-RDOP-lndd6aqv + 1 + OutParameter + + + fr.insee + lndcjg90-QOP-lndd6aqv + 1 + OutParameter + + + + + fr.insee + lndcjg90-RDOP-lndcuhub + 1 + OutParameter + + + fr.insee + lndcjg90-QOP-lndcuhub + 1 + OutParameter + + + + + fr.insee + lndcjg90-RDOP-lndcy1ey + 1 + OutParameter + + + fr.insee + lndcjg90-QOP-lndcy1ey + 1 + OutParameter + + + + + fr.insee + lndcjg90-RDOP-lndcqc5j + 1 + OutParameter + + + fr.insee + lndcjg90-QOP-lndcqc5j + 1 + OutParameter + + + + + Au cours des trois derniers mois, avez-vous utilisé l'un des dispositifs connectés à Internet suivants, pour un usage privé ? + + + + + + fr.insee + lndce7bj + 1 + CodeList + + + + + + + + fr.insee + lndcjg90-RDOP-lndco0sy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcjg90-RDOP-lndd6aqv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcjg90-RDOP-lndcuhub + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcjg90-RDOP-lndcy1ey + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcjg90-RDOP-lndcqc5j + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lndcjizc + 1 + Instruction + + + + fr.insee + lndcrv7o + 1 + + PBIOTX + + + fr.insee + lndcrv7o-QOP-lndd38cy + 1 + + PBIOTX1 + + + + fr.insee + lndcrv7o-QOP-lndd37cd + 1 + + PBIOTX2 + + + + fr.insee + lndcrv7o-QOP-lndctdru + 1 + + PBIOTX3 + + + + fr.insee + lndcrv7o-QOP-lndct3sr + 1 + + PBIOTX4 + + + + fr.insee + lndcrv7o-QOP-lndd5noi + 1 + + PBIOTX5 + + + + + fr.insee + lndcrv7o-RDOP-lndd38cy + 1 + OutParameter + + + fr.insee + lndcrv7o-QOP-lndd38cy + 1 + OutParameter + + + + + fr.insee + lndcrv7o-RDOP-lndd37cd + 1 + OutParameter + + + fr.insee + lndcrv7o-QOP-lndd37cd + 1 + OutParameter + + + + + fr.insee + lndcrv7o-RDOP-lndctdru + 1 + OutParameter + + + fr.insee + lndcrv7o-QOP-lndctdru + 1 + OutParameter + + + + + fr.insee + lndcrv7o-RDOP-lndct3sr + 1 + OutParameter + + + fr.insee + lndcrv7o-QOP-lndct3sr + 1 + OutParameter + + + + + fr.insee + lndcrv7o-RDOP-lndd5noi + 1 + OutParameter + + + fr.insee + lndcrv7o-QOP-lndd5noi + 1 + OutParameter + + + + + Au cours des trois derniers mois, avez-vous rencontré l’un des problèmes suivants en utilisant les appareils connectés mentionnés précédemment ? + + + + + + fr.insee + lndcser6 + 1 + CodeList + + + + + + + + fr.insee + lndcrv7o-RDOP-lndd38cy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcrv7o-RDOP-lndd37cd + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcrv7o-RDOP-lndctdru + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcrv7o-RDOP-lndct3sr + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lndcrv7o-RDOP-lndd5noi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lndd4xzn + 1 + Instruction + + + + fr.insee + lnudc90x + 1 + + CARGREENX + + + fr.insee + lnudc90x-QOP-lnufkxpk + 1 + + CARGREENX1 + + + + fr.insee + lnudc90x-QOP-lnufek2c + 1 + + CARGREENX2 + + + + fr.insee + lnudc90x-QOP-lnufgjc8 + 1 + + CARGREENX3 + + + + fr.insee + lnudc90x-QOP-lnufiitm + 1 + + CARGREENX4 + + + + fr.insee + lnudc90x-QOP-lnufa5j3 + 1 + + CARGREENX5 + + + + fr.insee + lnudc90x-QOP-lnufdnfo + 1 + + CARGREENX6 + + + + fr.insee + lnudc90x-QOP-lnuflw4f + 1 + + CARGREENX7 + + + + fr.insee + lnudc90x-QOP-lnufbcrx + 1 + + CARGREENX8 + + + + fr.insee + lnudc90x-QOP-lnuf3b2e + 1 + + CARGREENX9 + + + + + fr.insee + lnudc90x-RDOP-lnufkxpk + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufkxpk + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufek2c + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufek2c + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufgjc8 + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufgjc8 + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufiitm + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufiitm + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufa5j3 + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufa5j3 + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufdnfo + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufdnfo + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnuflw4f + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnuflw4f + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnufbcrx + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnufbcrx + 1 + OutParameter + + + + + fr.insee + lnudc90x-RDOP-lnuf3b2e + 1 + OutParameter + + + fr.insee + lnudc90x-QOP-lnuf3b2e + 1 + OutParameter + + + + + Lors de votre dernier achat de téléphone portable, smartphone, tablette ou ordinateur fixe ou portable, lesquelles des caractéristiques suivantes avez-vous considérées comme importantes ? + + + + + + fr.insee + lnudc60s + 1 + CodeList + + + + + + + + fr.insee + lnudc90x-RDOP-lnufkxpk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufek2c + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufgjc8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufiitm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufa5j3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufdnfo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnuflw4f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnufbcrx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnudc90x-RDOP-lnuf3b2e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnud68e6 + 1 + Instruction + + + + fr.insee + lnue7e91 + 1 + + F_ORDIX + + + fr.insee + lnue7e91-QOP-lnuf6vvh + 1 + + F_ORDIX1 + + + + fr.insee + lnue7e91-QOP-lnufbk1s + 1 + + F_ORDIX2 + + + + fr.insee + lnue7e91-QOP-lnufbc34 + 1 + + F_ORDIX3 + + + + fr.insee + lnue7e91-QOP-lnuf7khz + 1 + + F_ORDIX4 + + + + fr.insee + lnue7e91-QOP-lnuf8g9e + 1 + + F_ORDIX5 + + + + + fr.insee + lnue7e91-RDOP-lnuf6vvh + 1 + OutParameter + + + fr.insee + lnue7e91-QOP-lnuf6vvh + 1 + OutParameter + + + + + fr.insee + lnue7e91-RDOP-lnufbk1s + 1 + OutParameter + + + fr.insee + lnue7e91-QOP-lnufbk1s + 1 + OutParameter + + + + + fr.insee + lnue7e91-RDOP-lnufbc34 + 1 + OutParameter + + + fr.insee + lnue7e91-QOP-lnufbc34 + 1 + OutParameter + + + + + fr.insee + lnue7e91-RDOP-lnuf7khz + 1 + OutParameter + + + fr.insee + lnue7e91-QOP-lnuf7khz + 1 + OutParameter + + + + + fr.insee + lnue7e91-RDOP-lnuf8g9e + 1 + OutParameter + + + fr.insee + lnue7e91-QOP-lnuf8g9e + 1 + OutParameter + + + + + À votre domicile, pour votre usage privé, disposez-vous de l'un des appareils suivants ? + + + + + + fr.insee + lnuebhbp + 1 + CodeList + + + + + + + + fr.insee + lnue7e91-RDOP-lnuf6vvh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnue7e91-RDOP-lnufbk1s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnue7e91-RDOP-lnufbc34 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnue7e91-RDOP-lnuf7khz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnue7e91-RDOP-lnuf8g9e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnueb49y + 1 + Instruction + + + + fr.insee + kc0mzowl + 1 + + F_SMARTPHONEX + + + fr.insee + kc0mzowl-QOP-l5s01nq2 + 1 + + F_SMARTPHONEX1 + + + + fr.insee + kc0mzowl-QOP-l5s0d01s + 1 + + F_SMARTPHONEX2 + + + + fr.insee + kc0mzowl-QOP-l5s03ili + 1 + + F_SMARTPHONEX3 + + + + + fr.insee + kc0mzowl-RDOP-l5s01nq2 + 1 + OutParameter + + + fr.insee + kc0mzowl-QOP-l5s01nq2 + 1 + OutParameter + + + + + fr.insee + kc0mzowl-RDOP-l5s0d01s + 1 + OutParameter + + + fr.insee + kc0mzowl-QOP-l5s0d01s + 1 + OutParameter + + + + + fr.insee + kc0mzowl-RDOP-l5s03ili + 1 + OutParameter + + + fr.insee + kc0mzowl-QOP-l5s03ili + 1 + OutParameter + + + + + Pour votre usage privé, utilisez-vous l'un des équipements suivants ? + + + + + + fr.insee + kc0mv555 + 1 + CodeList + + + + + + + + fr.insee + kc0mzowl-RDOP-l5s01nq2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0mzowl-RDOP-l5s0d01s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kc0mzowl-RDOP-l5s03ili + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + kc0n7j03 + 1 + Instruction + + + + fr.insee + lnuf6krf + 1 + + F_RAISMARTX + + + fr.insee + lnuf6krf-QOP-lnufk54m + 1 + + F_RAISMARTX1 + + + + fr.insee + lnuf6krf-QOP-lnufdzue + 1 + + F_RAISMARTX2 + + + + fr.insee + lnuf6krf-QOP-lnufkq86 + 1 + + F_RAISMARTX3 + + + + fr.insee + lnuf6krf-QOP-lnufk19a + 1 + + F_RAISMARTX4 + + + + fr.insee + lnuf6krf-QOP-lnufee61 + 1 + + F_RAISMARTX5 + + + + fr.insee + lnuf6krf-QOP-lnufes85 + 1 + + F_RAISMARTX6 + + + + fr.insee + lnuf6krf-QOP-lnufcpin + 1 + + F_RAISMARTX7 + + + + + fr.insee + lnuf6krf-RDOP-lnufk54m + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufk54m + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufdzue + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufdzue + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufkq86 + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufkq86 + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufk19a + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufk19a + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufee61 + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufee61 + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufes85 + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufes85 + 1 + OutParameter + + + + + fr.insee + lnuf6krf-RDOP-lnufcpin + 1 + OutParameter + + + fr.insee + lnuf6krf-QOP-lnufcpin + 1 + OutParameter + + + + + Pour quelle(s) raison(s) vous êtes vous procuré votre smartphone actuel ? + + + + + + fr.insee + lnuenvlm + 1 + CodeList + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufk54m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufdzue + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufkq86 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufk19a + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufee61 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufes85 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnuf6krf-RDOP-lnufcpin + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnuf1mzn + 1 + Instruction + + + + fr.insee + lnufsvxy + 1 + + F_TELECONX + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + + F_TELECONX1 + + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + + F_TELECONX2 + + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + + F_TELECONX3 + + + + fr.insee + lnufsvxy-QOP-lnug12ge + 1 + + F_TELECONX4 + + + + + fr.insee + lnufsvxy-RDOP-lnugi3w6 + 1 + OutParameter + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + OutParameter + + + + + fr.insee + lnufsvxy-RDOP-lnug9f6b + 1 + OutParameter + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + OutParameter + + + + + fr.insee + lnufsvxy-RDOP-lnug6a77 + 1 + OutParameter + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + OutParameter + + + + + fr.insee + lnufsvxy-RDOP-lnug12ge + 1 + OutParameter + + + fr.insee + lnufsvxy-QOP-lnug12ge + 1 + OutParameter + + + + + Au cours des douze derniers mois, avez-vous eu recours à une téléconsultation avec un médecin (généraliste ou spécialiste), c’est-à-dire à une consultation à distance soit par téléphone, soit par l’intermédiaire d’une vidéo ? + + + + + + fr.insee + lnufhdix + 1 + CodeList + + + + + + + + fr.insee + lnufsvxy-RDOP-lnugi3w6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufsvxy-RDOP-lnug9f6b + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufsvxy-RDOP-lnug6a77 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufsvxy-RDOP-lnug12ge + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnufnpc1 + 1 + Instruction + + + + fr.insee + lnufz3ld + 1 + + F_TELEOUIXX + + + fr.insee + lnufz3ld-QOP-lnug0ia9 + 1 + + F_TELEOUIXX1 + + + + fr.insee + lnufz3ld-QOP-lnufy8q3 + 1 + + F_TELEOUIXX2 + + + + fr.insee + lnufz3ld-QOP-lnug07vj + 1 + + F_TELEOUIXX3 + + + + fr.insee + lnufz3ld-QOP-lnug55x8 + 1 + + F_TELEOUIXX4 + + + + fr.insee + lnufz3ld-QOP-lnugdcy0 + 1 + + F_TELEOUIXX5 + + + + fr.insee + lnufz3ld-QOP-lnug92qf + 1 + + F_TELEOUIXX6 + + + + fr.insee + lnufz3ld-QOP-lnugd9kx + 1 + + F_TELEOUIXX7 + + + + fr.insee + lnufz3ld-QOP-lnufysso + 1 + + F_TELEOUIXX8 + + + + fr.insee + lnufz3ld-QOP-lnufzppy + 1 + + F_TELEOUIXX9 + + + + fr.insee + lnufz3ld-QOP-lnug6iti + 1 + + F_TELEOUIXX10 + + + + + fr.insee + lnufz3ld-RDOP-lnug0ia9 + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnug0ia9 + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnufy8q3 + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnufy8q3 + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnug07vj + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnug07vj + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnug55x8 + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnug55x8 + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnugdcy0 + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnugdcy0 + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnug92qf + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnug92qf + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnugd9kx + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnugd9kx + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnufysso + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnufysso + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnufzppy + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnufzppy + 1 + OutParameter + + + + + fr.insee + lnufz3ld-RDOP-lnug6iti + 1 + OutParameter + + + fr.insee + lnufz3ld-QOP-lnug6iti + 1 + OutParameter + + + + + Pour quelles raisons avez-vous réalisé une téléconsultation plutôt qu’une consultation en présence physique du médecin au cours des trois derniers mois ? + + + + + + fr.insee + lnufyusq + 1 + CodeList + + + + + + + + fr.insee + lnufz3ld-RDOP-lnug0ia9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnufy8q3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnug07vj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnug55x8 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnugdcy0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnug92qf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnugd9kx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnufysso + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnufzppy + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz3ld-RDOP-lnug6iti + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lnufzf6c + 1 + Instruction + + + + fr.insee + lnufz5dt + 1 + + F_TELENONX + + + fr.insee + lnufz5dt-QOP-lnugaghj + 1 + + F_TELENONX1 + + + + fr.insee + lnufz5dt-QOP-lnug81ys + 1 + + F_TELENONX2 + + + + fr.insee + lnufz5dt-QOP-lnug4uyb + 1 + + F_TELENONX3 + + + + fr.insee + lnufz5dt-QOP-lnugbjch + 1 + + F_TELENONX4 + + + + fr.insee + lnufz5dt-QOP-lnufzsi2 + 1 + + F_TELENONX5 + + + + fr.insee + lnufz5dt-QOP-lnug6c61 + 1 + + F_TELENONX6 + + + + fr.insee + lnufz5dt-QOP-lnugdexh + 1 + + F_TELENONX7 + + + + + fr.insee + lnufz5dt-RDOP-lnugaghj + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnugaghj + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnug81ys + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnug81ys + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnug4uyb + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnug4uyb + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnugbjch + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnugbjch + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnufzsi2 + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnufzsi2 + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnug6c61 + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnug6c61 + 1 + OutParameter + + + + + fr.insee + lnufz5dt-RDOP-lnugdexh + 1 + OutParameter + + + fr.insee + lnufz5dt-QOP-lnugdexh + 1 + OutParameter + + + + + Pourquoi n'avez-vous pas recouru à la téléconsultation au cours de douze derniers mois ? + + + + + + fr.insee + lnufwvel + 1 + CodeList + + + + + + + + fr.insee + lnufz5dt-RDOP-lnugaghj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnug81ys + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnug4uyb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnugbjch + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnufzsi2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnug6c61 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lnufz5dt-RDOP-lnugdexh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + + fr.insee + CategoryScheme-lox6814k + 1 + + residence + + + fr.insee + CA-lox6814k-1 + 1 + + Oui + + + + fr.insee + CA-lox6814k-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-lox67843 + 1 + + ok + + + fr.insee + CA-lox67843-1 + 1 + + ok + + + + + fr.insee + CategoryScheme-lptubo1v + 1 + + ok + + + fr.insee + CA-lptubo1v-1 + 1 + + OK + + + + + fr.insee + CategoryScheme-loykwrxi + 1 + + femhom + + + fr.insee + CA-loykwrxi-1 + 1 + + Masculin + + + + fr.insee + CA-loykwrxi-2 + 1 + + Féminin + + + + + fr.insee + CategoryScheme-loylh7zv + 1 + + ok + + + fr.insee + CA-loylh7zv-1 + 1 + + OK + + + + + fr.insee + CategoryScheme-loyls2wd + 1 + + oui-non + + + fr.insee + CA-loyls2wd-1 + 1 + + Oui + + + + fr.insee + CA-loyls2wd-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-loylid8o + 1 + + reponsekish + + + fr.insee + CA-loylid8o-1 + 1 + + Oui + + + + fr.insee + CA-loylid8o-2 + 1 + + Non, la personne ne peut pas ou ne souhaite pas répondre tout de suite à l'enquête (prise de rendez-vous ultérieur) + + + + fr.insee + CA-loylid8o-3 + 1 + + Non, la personne refuse, est inapte ou est absente jusqu'au 14 mai ou tous les habitants du ménage sont nés après 2009 + + + + + fr.insee + CategoryScheme-kbw8w2j7 + 1 + + Niveau de diplome + + + fr.insee + CA-kbw8w2j7-1 + 1 + + Aucun diplôme + + + + fr.insee + CA-kbw8w2j7-2 + 1 + + Un CEP (certificat d’études primaires) ou diplôme étranger de même niveau + + + + fr.insee + CA-kbw8w2j7-3 + 1 + + BEPC, brevet élémentaire, brevet des collèges ou diplôme étranger de même niveau + + + + fr.insee + CA-kbw8w2j7-4 + 1 + + CAP, BEP ou diplôme de niveau équivalent + + + + fr.insee + CA-kbw8w2j7-5 + 1 + + Baccalauréat (général, technologique ou professionnel), brevet supérieur, brevet professionnel, de technicien ou d’enseignement ou diplôme équivalent + + + + fr.insee + CA-kbw8w2j7-6 + 1 + + Capacité en droit, DAEU, ESEU + + + + fr.insee + CA-kbw8w2j7-7 + 1 + + BTS, DUT, Deug, Deust, diplôme de la santé ou du social de niveau Bac+2 ou diplôme équivalent + + + + fr.insee + CA-kbw8w2j7-8 + 1 + + Licence, licence pro, maîtrise ou diplôme équivalent de niveau Bac+3 ou Bac+4 + + + + fr.insee + CA-kbw8w2j7-9 + 1 + + Master, DEA, DESS, diplôme de grande école de niveau Bac + 5, doctorat de santé + + + + fr.insee + CA-kbw8w2j7-10 + 1 + + Doctorat de recherche (hors santé) + + + + + fr.insee + CategoryScheme-kbw9j1g0 + 1 + + Niveau d'étude + + + fr.insee + CA-kbw9j1g0-1 + 1 + + Vous n'avez jamais fait d’études + + + + fr.insee + CA-kbw9j1g0-2 + 1 + + École primaire (y compris certificat d’études primaires) + + + + fr.insee + CA-kbw9j1g0-3 + 1 + + 6ème à 4ème (collège) + + + + fr.insee + CA-kbw9j1g0-4 + 1 + + 3ème (collège) + + + + fr.insee + CA-kbw9j1g0-5 + 1 + + Première, deuxième ou dernière année de CAP-BEP ou d’une formation équivalente + + + + fr.insee + CA-kbw9j1g0-6 + 1 + + Seconde, première ou terminale de lycée + + + + fr.insee + CA-kbw9j1g0-7 + 1 + + Vous avez fait des études mais ne savez pas jusqu’à quel niveau + + + + + fr.insee + CategoryScheme-kbw9fu8f + 1 + + couple + + + fr.insee + CA-kbw9fu8f-1 + 1 + + Oui, avec une personne qui vit dans le logement + + + + fr.insee + CA-kbw9fu8f-2 + 1 + + Oui, avec une personne qui ne vit pas dans le logement + + + + fr.insee + CA-kbw9fu8f-3 + 1 + + Non + + + + + fr.insee + CategoryScheme-kbw9oep5 + 1 + + Etat matrimonial + + + fr.insee + CA-kbw9oep5-1 + 1 + + Célibataire (jamais légalement marié(e)) + + + + fr.insee + CA-kbw9oep5-2 + 1 + + Marié(e) ou remarié(e), y compris séparé(e) mais non divorcé(e) + + + + fr.insee + CA-kbw9oep5-3 + 1 + + Veuf(ve) + + + + fr.insee + CA-kbw9oep5-4 + 1 + + Divorcé(e) + + + + + fr.insee + CategoryScheme-kbw9cik3 + 1 + + L_OUI_NON + + + fr.insee + CA-kbw9cik3-1 + 1 + + Oui + + + + fr.insee + CA-kbw9cik3-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kbw9mytb + 1 + + Naissance france ou non + + + fr.insee + CA-kbw9mytb-1 + 1 + + En France (métropole - DROM-COM) + + + + fr.insee + CA-kbw9mytb-2 + 1 + + À l’étranger + + + + + fr.insee + CategoryScheme-kbw9u1cu + 1 + + Départements + + + fr.insee + CA-kbw9u1cu-1 + 1 + + Ain + + + + fr.insee + CA-kbw9u1cu-2 + 1 + + Aisne + + + + fr.insee + CA-kbw9u1cu-3 + 1 + + Allier + + + + fr.insee + CA-kbw9u1cu-4 + 1 + + Alpes-de-Haute-Provence + + + + fr.insee + CA-kbw9u1cu-5 + 1 + + Hautes-Alpes + + + + fr.insee + CA-kbw9u1cu-6 + 1 + + Alpes-Maritimes + + + + fr.insee + CA-kbw9u1cu-7 + 1 + + Ardèche + + + + fr.insee + CA-kbw9u1cu-8 + 1 + + Ardennes + + + + fr.insee + CA-kbw9u1cu-9 + 1 + + Ariège + + + + fr.insee + CA-kbw9u1cu-10 + 1 + + Aube + + + + fr.insee + CA-kbw9u1cu-11 + 1 + + Aude + + + + fr.insee + CA-kbw9u1cu-12 + 1 + + Aveyron + + + + fr.insee + CA-kbw9u1cu-13 + 1 + + Bouches-du-Rhône + + + + fr.insee + CA-kbw9u1cu-14 + 1 + + Calvados + + + + fr.insee + CA-kbw9u1cu-15 + 1 + + Cantal + + + + fr.insee + CA-kbw9u1cu-16 + 1 + + Charente + + + + fr.insee + CA-kbw9u1cu-17 + 1 + + Charente-Maritime + + + + fr.insee + CA-kbw9u1cu-18 + 1 + + Cher + + + + fr.insee + CA-kbw9u1cu-19 + 1 + + Corrèze + + + + fr.insee + CA-kbw9u1cu-20 + 1 + + Corse-du-Sud + + + + fr.insee + CA-kbw9u1cu-21 + 1 + + Haute-Corse + + + + fr.insee + CA-kbw9u1cu-22 + 1 + + Côte-d'Or + + + + fr.insee + CA-kbw9u1cu-23 + 1 + + Côtes d'Armor + + + + fr.insee + CA-kbw9u1cu-24 + 1 + + Creuse + + + + fr.insee + CA-kbw9u1cu-25 + 1 + + Dordogne + + + + fr.insee + CA-kbw9u1cu-26 + 1 + + Doubs + + + + fr.insee + CA-kbw9u1cu-27 + 1 + + Drôme + + + + fr.insee + CA-kbw9u1cu-28 + 1 + + Eure + + + + fr.insee + CA-kbw9u1cu-29 + 1 + + Eure-et-Loir + + + + fr.insee + CA-kbw9u1cu-30 + 1 + + Finistère + + + + fr.insee + CA-kbw9u1cu-31 + 1 + + Gard + + + + fr.insee + CA-kbw9u1cu-32 + 1 + + Haute-Garonne + + + + fr.insee + CA-kbw9u1cu-33 + 1 + + Gers + + + + fr.insee + CA-kbw9u1cu-34 + 1 + + Gironde + + + + fr.insee + CA-kbw9u1cu-35 + 1 + + Hérault + + + + fr.insee + CA-kbw9u1cu-36 + 1 + + Ille-et-Vilaine + + + + fr.insee + CA-kbw9u1cu-37 + 1 + + Indre + + + + fr.insee + CA-kbw9u1cu-38 + 1 + + Indre-et-Loire + + + + fr.insee + CA-kbw9u1cu-39 + 1 + + Isère + + + + fr.insee + CA-kbw9u1cu-40 + 1 + + Jura + + + + fr.insee + CA-kbw9u1cu-41 + 1 + + Landes + + + + fr.insee + CA-kbw9u1cu-42 + 1 + + Loir-et-Cher + + + + fr.insee + CA-kbw9u1cu-43 + 1 + + Loire + + + + fr.insee + CA-kbw9u1cu-44 + 1 + + Haute-Loire + + + + fr.insee + CA-kbw9u1cu-45 + 1 + + Loire-Atlantique + + + + fr.insee + CA-kbw9u1cu-46 + 1 + + Loiret + + + + fr.insee + CA-kbw9u1cu-47 + 1 + + Lot + + + + fr.insee + CA-kbw9u1cu-48 + 1 + + Lot-et-Garonne + + + + fr.insee + CA-kbw9u1cu-49 + 1 + + Lozère + + + + fr.insee + CA-kbw9u1cu-50 + 1 + + Maine-et-Loire + + + + fr.insee + CA-kbw9u1cu-51 + 1 + + Manche + + + + fr.insee + CA-kbw9u1cu-52 + 1 + + Marne + + + + fr.insee + CA-kbw9u1cu-53 + 1 + + Haute-Marne + + + + fr.insee + CA-kbw9u1cu-54 + 1 + + Mayenne + + + + fr.insee + CA-kbw9u1cu-55 + 1 + + Meurthe-et-Moselle + + + + fr.insee + CA-kbw9u1cu-56 + 1 + + Meuse + + + + fr.insee + CA-kbw9u1cu-57 + 1 + + Morbihan + + + + fr.insee + CA-kbw9u1cu-58 + 1 + + Moselle + + + + fr.insee + CA-kbw9u1cu-59 + 1 + + Nièvre + + + + fr.insee + CA-kbw9u1cu-60 + 1 + + Nord + + + + fr.insee + CA-kbw9u1cu-61 + 1 + + Oise + + + + fr.insee + CA-kbw9u1cu-62 + 1 + + Orne + + + + fr.insee + CA-kbw9u1cu-63 + 1 + + Pas-de-Calais + + + + fr.insee + CA-kbw9u1cu-64 + 1 + + Puy-de-Dôme + + + + fr.insee + CA-kbw9u1cu-65 + 1 + + Pyrénées-Atlantiques + + + + fr.insee + CA-kbw9u1cu-66 + 1 + + Hautes-Pyrénées + + + + fr.insee + CA-kbw9u1cu-67 + 1 + + Pyrénées-Orientales + + + + fr.insee + CA-kbw9u1cu-68 + 1 + + Bas-Rhin + + + + fr.insee + CA-kbw9u1cu-69 + 1 + + Haut-Rhin + + + + fr.insee + CA-kbw9u1cu-70 + 1 + + Rhône + + + + fr.insee + CA-kbw9u1cu-71 + 1 + + Haute-Saône + + + + fr.insee + CA-kbw9u1cu-72 + 1 + + Saône-et-Loire + + + + fr.insee + CA-kbw9u1cu-73 + 1 + + Sarthe + + + + fr.insee + CA-kbw9u1cu-74 + 1 + + Savoie + + + + fr.insee + CA-kbw9u1cu-75 + 1 + + Haute-Savoie + + + + fr.insee + CA-kbw9u1cu-76 + 1 + + Paris + + + + fr.insee + CA-kbw9u1cu-77 + 1 + + Seine-Maritime + + + + fr.insee + CA-kbw9u1cu-78 + 1 + + Seine-et-Marne + + + + fr.insee + CA-kbw9u1cu-79 + 1 + + Yvelines + + + + fr.insee + CA-kbw9u1cu-80 + 1 + + Deux-Sèvres + + + + fr.insee + CA-kbw9u1cu-81 + 1 + + Somme + + + + fr.insee + CA-kbw9u1cu-82 + 1 + + Tarn + + + + fr.insee + CA-kbw9u1cu-83 + 1 + + Tarn-et-Garonne + + + + fr.insee + CA-kbw9u1cu-84 + 1 + + Var + + + + fr.insee + CA-kbw9u1cu-85 + 1 + + Vaucluse + + + + fr.insee + CA-kbw9u1cu-86 + 1 + + Vendée + + + + fr.insee + CA-kbw9u1cu-87 + 1 + + Vienne + + + + fr.insee + CA-kbw9u1cu-88 + 1 + + Haute-Vienne + + + + fr.insee + CA-kbw9u1cu-89 + 1 + + Vosges + + + + fr.insee + CA-kbw9u1cu-90 + 1 + + Yonne + + + + fr.insee + CA-kbw9u1cu-91 + 1 + + Territoire de Belfort + + + + fr.insee + CA-kbw9u1cu-92 + 1 + + Essonne + + + + fr.insee + CA-kbw9u1cu-93 + 1 + + Hauts-de-Seine + + + + fr.insee + CA-kbw9u1cu-94 + 1 + + Seine-St-Denis + + + + fr.insee + CA-kbw9u1cu-95 + 1 + + Val-de-Marne + + + + fr.insee + CA-kbw9u1cu-96 + 1 + + Val-D'Oise + + + + fr.insee + CA-kbw9u1cu-97 + 1 + + Guadeloupe + + + + fr.insee + CA-kbw9u1cu-98 + 1 + + Martinique + + + + fr.insee + CA-kbw9u1cu-99 + 1 + + Guyane + + + + fr.insee + CA-kbw9u1cu-100 + 1 + + La Réunion + + + + fr.insee + CA-kbw9u1cu-101 + 1 + + Mayotte + + + + + fr.insee + CategoryScheme-kbwakjtt + 1 + + Pays + + + fr.insee + CA-kbwakjtt-1 + 1 + + Espagne + + + + + fr.insee + CategoryScheme-kbwalpah + 1 + + Type de nationalités + + + fr.insee + CA-kbwalpah-1 + 1 + + + +Français(e) de naissance, y compris par réintégration + + + + fr.insee + CA-kbwalpah-2 + 1 + + + +Français(e) par naturalisation, mariage, déclaration ou option à votre majorité + + + + fr.insee + CA-kbwalpah-3 + 1 + + + +Étranger(ère) + + + + fr.insee + CA-kbwalpah-4 + 1 + + + +Apatride + + + + + fr.insee + CategoryScheme-kbway7s0 + 1 + + Nationalité + + + fr.insee + CA-kbway7s0-1 + 1 + + Espagnole + + + + + fr.insee + CategoryScheme-kuznwwbx + 1 + + debit + + + fr.insee + CA-kuznwwbx-1 + 1 + + Une connexion à très haut débit au réseau fixe (par la fibre, le câble, le WI-FI ou par satellite, au moins 30Mbit/s) + + + + fr.insee + CA-kuznwwbx-2 + 1 + + Une connexion à haut débit au réseau fixe (par l'ADSL, le câble, le WI-FI ou par satellite) + + + + fr.insee + CA-kuznwwbx-3 + 1 + + Une connexion à haut débit au réseau mobile (téléphone, tablette ou ordinateur portable) par la 3G, la 4G ou la 5G + + + + fr.insee + CA-kuznwwbx-4 + 1 + + Une connexion fixe à bas débit à l’aide d’un modem (réseau téléphonique classique) + + + + fr.insee + CA-kuznwwbx-5 + 1 + + Une connexion mobile à bas débit sur un téléphone portable (GSM, GPRS, EDGE) + + + + + fr.insee + CategoryScheme-lnbw2d2c + 1 + + Codes haut débit + + + fr.insee + CA-lnbw2d2c-1 + 1 + + Les membres de votre foyer y ont accès ailleurs + + + + fr.insee + CA-lnbw2d2c-2 + 1 + + L'installation ou l'abonnement au très haut débit coûte trop cher + + + + fr.insee + CA-lnbw2d2c-3 + 1 + + Le très haut débit n'est pas disponible à l'endroit où vous vivez + + + + fr.insee + CA-lnbw2d2c-4 + 1 + + L'installation n'est pas possible techniquement + + + + fr.insee + CA-lnbw2d2c-5 + 1 + + Vous n'en avez pas l'utilité, votre connexion actuelle vous suffit + + + + fr.insee + CA-lnbw2d2c-6 + 1 + + Pour une autre raison + + + + + fr.insee + CategoryScheme-kc0hgqph + 1 + + nuseweb + + + fr.insee + CA-kc0hgqph-1 + 1 + + + +Au cours des trois derniers mois + + + + fr.insee + CA-kc0hgqph-2 + 1 + + + +Entre trois mois et un an + + + + fr.insee + CA-kc0hgqph-3 + 1 + + + +Il y a plus d’un an + + + + fr.insee + CA-kc0hgqph-4 + 1 + + Vous n’avez jamais utilisé Internet + + + + + fr.insee + CategoryScheme-kc0he7f0 + 1 + + useweb + + + fr.insee + CA-kc0he7f0-1 + 1 + + Tous les jours, plusieurs fois par jour. + + + + fr.insee + CA-kc0he7f0-2 + 1 + + Tous les jours ou presque. + + + + fr.insee + CA-kc0he7f0-3 + 1 + + Au moins une fois par semaine (mais pas tous les jours). + + + + fr.insee + CA-kc0he7f0-4 + 1 + + Moins d’une fois par semaine. + + + + + fr.insee + CategoryScheme-kc0hwcna + 1 + + pratintxx + + + fr.insee + CA-kc0hwcna-1 + 1 + + Envoyer et recevoir des e-mails + + + + fr.insee + CA-kc0hwcna-2 + 1 + + Téléphoner (ou passer des appels vidéo) par Internet, par exemple via Skype, Messenger, WhatsApp, Facetime, Viber, Snapchat, Zoom ou Teams... + + + + fr.insee + CA-kc0hwcna-3 + 1 + + Créer un profil ou poster des messages sur les réseaux sociaux (Facebook, Twitter, Instagram, Snapchat, TikTok, etc.) + + + + fr.insee + CA-kc0hwcna-4 + 1 + + Utiliser une messagerie instantanée, c’est-à-dire échanger des messages, par exemple via Skype, Messenger, WhatsApp, Viber ou Snapchat + + + + fr.insee + CA-kc0hwcna-5 + 1 + + Rechercher des informations sur des produits et services (horaires de transport, catalogues en ligne, etc.) + + + + fr.insee + CA-kc0hwcna-6 + 1 + + Lire des journaux, des magazines ou consulter des sites d’actualité + + + + fr.insee + CA-kc0hwcna-7 + 1 + + Exprimer des opinions sur des questions civiques ou politiques via des sites web ou médias sociaux (Facebook, Twitter, Instagram, YouTube, etc.) + + + + fr.insee + CA-kc0hwcna-8 + 1 + + Participer à des consultations ou des votes en ligne sur des questions civiques ou politiques (plan d’urbanisation, signature d’une pétition, etc.) + + + + fr.insee + CA-kc0hwcna-9 + 1 + + Télécharger ou écouter de la musique (radio en ligne, musique en streaming, etc.) + + + + fr.insee + CA-kc0hwcna-10 + 1 + + Regarder la télévision sur Internet (en direct ou en replay) sur les sites des chaînes TV (TF1, France 3, MyCanal, W9, TMC, etc.) + + + + fr.insee + CA-kc0hwcna-11 + 1 + + Regarder des vidéos à la demande à partir de services commerciaux (Netflix, HBO MAX, Amazon Prime Vidéo, Apple TV+, Disney+, Showtime, Salto, etc) + + + + fr.insee + CA-kc0hwcna-12 + 1 + + Regarder des vidéos depuis des services de partage (Youtube, Instagram, TikTok, etc.) + + + + fr.insee + CA-kc0hwcna-13 + 1 + + Jouer ou télécharger des jeux + + + + fr.insee + CA-kc0hwcna-14 + 1 + + Écouter ou télécharger des podcasts + + + + fr.insee + CA-kc0hwcna-15 + 1 + + Rechercher des informations liées à la santé (ex : sur une maladie, des blessures, la nutrition ou l’amélioration de la santé) + + + + fr.insee + CA-kc0hwcna-16 + 1 + + Prendre un rendez-vous avec un praticien de santé (avec un médecin, à l’hôpital, dans un centre de santé, etc.) + + + + fr.insee + CA-kc0hwcna-17 + 1 + + Accéder à un dossier médical personnel en ligne + + + + fr.insee + CA-kc0hwcna-18 + 1 + + Utiliser d’autres services de santé plutôt que se rendre à l’hôpital ou consulter un médecin (obtenir une ordonnance ou une consultation en ligne, etc.) + + + + fr.insee + CA-kc0hwcna-19 + 1 + + Vendre des produits et services sur des sites en ligne ou applications (eBay, Leboncoin, Facebook Marketplace, Vinted, etc.) + + + + fr.insee + CA-kc0hwcna-20 + 1 + + Accéder à votre compte bancaire + + + + fr.insee + CA-kc0hwcna-21 + 1 + + Vous n’avez effectué aucune de ces activités + + + + + fr.insee + CategoryScheme-ks4ti31a + 1 + + EDUPROX + + + fr.insee + CA-ks4ti31a-1 + 1 + + Suivre des cours en ligne + + + + fr.insee + CA-ks4ti31a-2 + 1 + + Utiliser des supports de formation autres que des cours en ligne (supports audiovisuels, tutoriels en ligne par exemple sur Youtube, logiciels d’apprentissage en ligne, manuels électroniques, applications d’apprentissage etc.) + + + + fr.insee + CA-ks4ti31a-3 + 1 + + Échanger avec des enseignants ou des étudiants à l’aide d’outils audio ou vidéo en ligne (Zoom, MS Teams, Google Classroom, etc.) + + + + fr.insee + CA-ks4ti31a-4 + 1 + + Vous n’avez pratiqué aucune activité de formation sur Internet. + + + + + fr.insee + CategoryScheme-lnd4szkp + 1 + + OBJEDUX + + + fr.insee + CA-lnd4szkp-1 + 1 + + Dans un cadre scolaire (école, université, etc.) + + + + fr.insee + CA-lnd4szkp-2 + 1 + + Pour des raisons professionnelles ou liées au travail + + + + fr.insee + CA-lnd4szkp-3 + 1 + + Pour des raisons personnelles + + + + + fr.insee + CategoryScheme-lnd5atf0 + 1 + + F_IMPROVEX + + + fr.insee + CA-lnd5atf0-1 + 1 + + Vous avez suivi une formation gratuite en ligne ou étudié de manière autonome à l’aide d’un tutoriel gratuit + + + + fr.insee + CA-lnd5atf0-2 + 1 + + Vous vous êtes formé(e) avec l’aide de votre entourage (par exemple avec des collègues, des voisins, des proches…) + + + + fr.insee + CA-lnd5atf0-3 + 1 + + Vous avez suivi une formation gratuite dispensée par des programmes publics ou des associations + + + + fr.insee + CA-lnd5atf0-4 + 1 + + Vous avez suivi une formation payée par vos soins + + + + fr.insee + CA-lnd5atf0-5 + 1 + + Vous avez suivi une formation payée ou dispensée par votre employeur + + + + fr.insee + CA-lnd5atf0-6 + 1 + + Vous n’avez réalisé aucune de ces activités de formation + + + + + fr.insee + CategoryScheme-lnd5ixy9 + 1 + + F_SKILLS + + + fr.insee + CA-lnd5ixy9-1 + 1 + + Vous avez les compétences pour réaliser des tâches plus exigeantes que celles que vous réalisez actuellement + + + + fr.insee + CA-lnd5ixy9-2 + 1 + + Vos compétences correspondent bien aux tâches que vous devez ou souhaitez accomplir + + + + fr.insee + CA-lnd5ixy9-3 + 1 + + Vous avez quelques difficultés et auriez besoin d’une formation pour réaliser les tâches que vous devez ou souhaitez accomplir + + + + fr.insee + CA-lnd5ixy9-4 + 1 + + Vous vous sentez dépassé(e) par les évolutions dans ce domaine + + + + + fr.insee + CategoryScheme-kc0i2zi7 + 1 + + admx + + + fr.insee + CA-kc0i2zi7-1 + 1 + + Accéder à vos données personnelles conservées par les autorités ou les services publics (informations sur vos droits à pension, sur votre santé, etc.) + + + + fr.insee + CA-kc0i2zi7-2 + 1 + + Accéder à des informations dans des bases de données ou des registres publics (disponibilité de livres dans les bibliothèques, registres cadastraux, registres d’entreprises, etc.) + + + + fr.insee + CA-kc0i2zi7-3 + 1 + + Obtenir des informations administratives (services, avantages, droits, articles de loi, heures d’ouverture, etc.) + + + + fr.insee + CA-kc0i2zi7-4 + 1 + + Vous n’avez effectué aucune de ces actions. + + + + + fr.insee + CategoryScheme-ks5vh364 + 1 + + RAIADMX + + + fr.insee + CA-ks5vh364-1 + 1 + + Demander des documents officiels ou des certificats (diplôme, acte de naissance, de mariage ou de décès, certificat de divorce, attestation de domicile, extrait du casier judiciaire, etc.) + + + + fr.insee + CA-ks5vh364-2 + 1 + + Demander des prestations ou des droits (pension de retraite, chômage, allocations familiales, inscription à l’école ou l’université, etc.) + + + + fr.insee + CA-ks5vh364-3 + 1 + + Formuler d’autres demandes, réclamations ou plaintes (signaler un vol à la police, déposer plainte devant la Justice, demander une aide juridique, engager une procédure civile devant un tribunal, etc.) + + + + fr.insee + CA-ks5vh364-4 + 1 + + Vous n’avez effectué aucune de ces actions + + + + + fr.insee + CategoryScheme-ks5vvjjr + 1 + + DEMADMX + + + fr.insee + CA-ks5vvjjr-1 + 1 + + Vous n’avez pas eu besoin de demander de document ni de faire de réclamation + + + + fr.insee + CA-ks5vvjjr-2 + 1 + + Vous manquez de compétence ou de connaissance (vous ne saviez pas comment vous servir du site Web ou il était trop compliqué à utiliser) + + + + fr.insee + CA-ks5vvjjr-3 + 1 + + Vous avez des inquiétudes concernant la sécurité de vos données personnelles ou vous refusez de payer en ligne (crainte d’une fraude à la carte bancaire, etc.) + + + + fr.insee + CA-ks5vvjjr-4 + 1 + + Une autre personne l’a fait en votre nom (un conseiller, un parent, etc.) + + + + fr.insee + CA-ks5vvjjr-5 + 1 + + Pour une autre raison + + + + + fr.insee + CategoryScheme-lnd7mpuh + 1 + + PROADMX + + + fr.insee + CA-lnd7mpuh-1 + 1 + + Le site ou l’application était difficile à utiliser (interface peu compréhensible, formulation compliquée, procédure mal expliquée, etc.) + + + + fr.insee + CA-lnd7mpuh-2 + 1 + + Des problèmes techniques sont survenus lors de l’utilisation (chargement long, site Web en panne, etc.) + + + + fr.insee + CA-lnd7mpuh-3 + 1 + + Il était impossible de payer via le site Web ou l’application (manque d’accès aux moyens de paiement requis, etc.) + + + + fr.insee + CA-lnd7mpuh-4 + 1 + + Il était impossible d’accéder au service par un smartphone ou une tablette (versions d’appareil non compatibles, applications non disponibles, etc.) + + + + fr.insee + CA-lnd7mpuh-5 + 1 + + Un autre problème + + + + fr.insee + CA-lnd7mpuh-6 + 1 + + Je n’ai pas rencontré de problème + + + + + fr.insee + CategoryScheme-kc0ihwo1 + 1 + + aidadmx + + + fr.insee + CA-kc0ihwo1-1 + 1 + + + +Oui, auprès de ma famille, d’amis ou de voisins + + + + fr.insee + CA-kc0ihwo1-2 + 1 + + Oui, auprès d’un agent de l’administration (France Services, agents de mairie…) + + + + fr.insee + CA-kc0ihwo1-3 + 1 + + + +Oui, auprès d’un travailleur social ou d’une association + + + + fr.insee + CA-kc0ihwo1-4 + 1 + + + +Oui, auprès d’une autre personne + + + + fr.insee + CA-kc0ihwo1-5 + 1 + + + +Non + + + + + fr.insee + CategoryScheme-kc0irri6 + 1 + + renadmx + + + fr.insee + CA-kc0irri6-1 + 1 + + + +Oui, car le site Internet était en panne ou bloquait + + + + fr.insee + CA-kc0irri6-2 + 1 + + + +Oui, car je n’ai pas eu accès à un ordinateur ou à Internet + + + + fr.insee + CA-kc0irri6-3 + 1 + + Oui, car je n’ai pas pu demander ou obtenir de l’aide auprès de mon entourage + + + + fr.insee + CA-kc0irri6-4 + 1 + + + +Oui, car l’administration n’a pas répondu à mes questions + + + + fr.insee + CA-kc0irri6-5 + 1 + + + +Oui, je n’ai même pas essayé car je m’en sentais incapable + + + + fr.insee + CA-kc0irri6-6 + 1 + + + +Oui, car cela n’en valait pas la peine (inutile, gain attendu trop faible) + + + + fr.insee + CA-kc0irri6-7 + 1 + + Oui, car les démarches étaient trop complexes (trop de pièces justificatives, procédure longue) + + + + fr.insee + CA-kc0irri6-8 + 1 + + + +Oui, pour une autre raison + + + + fr.insee + CA-kc0irri6-9 + 1 + + + +Non + + + + + fr.insee + CategoryScheme-kc0j0auj + 1 + + datecom + + + fr.insee + CA-kc0j0auj-1 + 1 + + + +Au cours des trois derniers mois + + + + fr.insee + CA-kc0j0auj-2 + 1 + + + +Entre trois mois et un an + + + + fr.insee + CA-kc0j0auj-3 + 1 + + + +Il y a plus d’un an + + + + fr.insee + CA-kc0j0auj-4 + 1 + + Vous n’avez jamais acheté ou commandé sur Internet. + + + + + fr.insee + CategoryScheme-kc0isivg + 1 + + achatxx + + + fr.insee + CA-kc0isivg-1 + 1 + + + +Des vêtements (y compris vêtements de sport), chaussures ou accessoires (sacs, bijoux, etc.) + + + + fr.insee + CA-kc0isivg-2 + 1 + + Des articles de sport (hors vêtements) + + + + fr.insee + CA-kc0isivg-3 + 1 + + Des jouets ou des articles pour enfants (couches, biberons, poussettes, etc.) + + + + fr.insee + CA-kc0isivg-4 + 1 + + Des meubles, accessoires pour la maison (tapis, rideaux, etc.) ou des articles de jardinage (outils, plantes, etc.) + + + + fr.insee + CA-kc0isivg-5 + 1 + + De la musique (CD, vinyles, etc.), des films ou séries (DVD, Blu-Ray, etc.) + + + + fr.insee + CA-kc0isivg-6 + 1 + + Des livres, magazines ou journaux papier + + + + fr.insee + CA-kc0isivg-7 + 1 + + Des ordinateurs, tablettes, téléphones mobiles ou accessoires informatiques + + + + fr.insee + CA-kc0isivg-8 + 1 + + Des appareils électroniques (téléviseurs, chaînes stéréo, appareils photos, enceintes, assistants vocaux, etc.) ou des appareils électroménagers (machine à laver, etc.) + + + + fr.insee + CA-kc0isivg-9 + 1 + + Des médicaments ou des compléments alimentaires (hors renouvellement d’ordonnance en ligne) + + + + fr.insee + CA-kc0isivg-10 + 1 + + Des plats livrés à domicile (via Just Eat, Deliveroo, UberEats, etc.) + + + + fr.insee + CA-kc0isivg-11 + 1 + + Des produits alimentaires (y compris drive et kits-repas à cuisiner) + + + + fr.insee + CA-kc0isivg-12 + 1 + + Des cosmétiques, des articles de beauté ou de bien-être + + + + fr.insee + CA-kc0isivg-13 + 1 + + Des produits de nettoyage ou d’hygiène corporelle (brosses à dents, mouchoirs, produits de lessive, etc.) + + + + fr.insee + CA-kc0isivg-14 + 1 + + Des vélos, motos, voitures ou d’autres véhicules ou leurs pièces détachées + + + + fr.insee + CA-kc0isivg-15 + 1 + + D’autres articles + + + + + fr.insee + CategoryScheme-lnd813te + 1 + + ABACHAX + + + fr.insee + CA-lnd813te-1 + 1 + + Un abonnement à Internet ou de téléphonie mobile + + + + fr.insee + CA-lnd813te-2 + 1 + + Un abonnement en électricité, eau, chauffage ou services similaires + + + + fr.insee + CA-lnd813te-3 + 1 + + Aucun de ces abonnements + + + + + fr.insee + CategoryScheme-lnd87up6 + 1 + + SERACHAX + + + fr.insee + CA-lnd87up6-1 + 1 + + Un service de transport auprès d’une compagnie de bus, train, avion, taxi (SNCF, Uber, etc.) + + + + fr.insee + CA-lnd87up6-2 + 1 + + Une location de logement auprès d’une entreprise telle qu’un hôtel ou une agence de voyages + + + + fr.insee + CA-lnd87up6-3 + 1 + + Un billet pour une manifestation culturelle ou sportive (cinéma, concerts, matchs, foires, etc.) + + + + fr.insee + CA-lnd87up6-4 + 1 + + Un livre électronique ou un livre audio téléchargé (y compris les mises à jour) + + + + fr.insee + CA-lnd87up6-5 + 1 + + Un logiciel téléchargé (y compris les mises à jour) + + + + fr.insee + CA-lnd87up6-6 + 1 + + Un jeu en ligne ou téléchargé (y compris les mises à jour) + + + + fr.insee + CA-lnd87up6-7 + 1 + + Aucun de ces produits ou services + + + + + fr.insee + CategoryScheme-lnd82qav + 1 + + PAYACHAX + + + fr.insee + CA-lnd82qav-1 + 1 + + Un service de musique en streaming (Spotify, Deezer, etc.) + + + + fr.insee + CA-lnd82qav-2 + 1 + + Un service de films, sports ou séries en streaming (Netflix, HBO Max, Amazon prime, Disney+, MyCanal, Apple TV, Showtime, etc.) + + + + fr.insee + CA-lnd82qav-3 + 1 + + Un magazine, un site d’information ou un journal en ligne + + + + fr.insee + CA-lnd82qav-4 + 1 + + Un service de jeux vidéo à la demande (XBOX Game, GeForce Now, PlayStation Now, etc.) + + + + fr.insee + CA-lnd82qav-5 + 1 + + Une application payante liée à la santé ou à la forme physique + + + + fr.insee + CA-lnd82qav-6 + 1 + + Une autre application payante (apprentissage de langues, voyages, météo, etc.) + + + + fr.insee + CA-lnd82qav-7 + 1 + + Vous n’avez personnellement payé aucun de ces services + + + + + fr.insee + CategoryScheme-kc0jlyo1 + 1 + + financex + + + fr.insee + CA-kc0jlyo1-1 + 1 + + + +Souscrire à une assurance (y compris une assurance voyage lors de l’achat d’un billet d’avion). + + + + fr.insee + CA-kc0jlyo1-2 + 1 + + + +Contracter un prêt, une hypothèque ou un emprunt auprès d’une banque ou d’un établissement financier + + + + fr.insee + CA-kc0jlyo1-3 + 1 + + + +Acheter ou vendre des actions, obligations, parts de fonds de placement ou d’autres actifs financiers + + + + fr.insee + CA-kc0jlyo1-4 + 1 + + + +Aucune de ces activités financières + + + + + fr.insee + CategoryScheme-lndboeeg + 1 + + HOMEIOTX + + + fr.insee + CA-lndboeeg-1 + 1 + + Appareils pour la gestion de l’énergie de votre maison (thermostat, compteurs électriques, éclairages, plug-ins, etc.) + + + + fr.insee + CA-lndboeeg-2 + 1 + + Appareils de sécurité pour votre maison (système d’alarme, détecteur de fumée, caméras de sécurité, serrures de porte, etc.) + + + + fr.insee + CA-lndboeeg-3 + 1 + + Appareils électroménagers (aspirateurs robotisés, réfrigérateurs, fours, machines à café, etc.) + + + + fr.insee + CA-lndboeeg-4 + 1 + + Assistant virtuel sous forme d’enceinte intelligente ou d’application (Google Home, Amazon Echo ou Alexa, Google Assistant, Siri, Cortana, Bixby, etc.) + + + + fr.insee + CA-lndboeeg-5 + 1 + + Aucun de ces appareils + + + + + fr.insee + CategoryScheme-lndbybkr + 1 + + RAISIOTX + + + fr.insee + CA-lndbybkr-1 + 1 + + Vous ne saviez pas que cela existait + + + + fr.insee + CA-lndbybkr-2 + 1 + + Vous n'en aviez pas besoin + + + + fr.insee + CA-lndbybkr-3 + 1 + + Les coûts sont trops élevés + + + + fr.insee + CA-lndbybkr-4 + 1 + + Ils n'étaient pas compatibles avec d'autres dispositifs ou systèmes + + + + fr.insee + CA-lndbybkr-5 + 1 + + Vous manquez de compétences + + + + fr.insee + CA-lndbybkr-6 + 1 + + Vous êtes préoccupé(e) par la confidentialité et la protection de vos données personnelles + + + + fr.insee + CA-lndbybkr-7 + 1 + + Vous êtes préoccupé(e) par la sécurité (peur du piratage) + + + + fr.insee + CA-lndbybkr-8 + 1 + + Vous êtes préoccupé(e) par la santé (peur que cela entraîne un accident, une blessure, etc.) + + + + fr.insee + CA-lndbybkr-9 + 1 + + Pour une autre raison + + + + + fr.insee + CategoryScheme-lndcb21u + 1 + + TVIOTX + + + fr.insee + CA-lndcb21u-1 + 1 + + Une télévision + + + + fr.insee + CA-lndcb21u-2 + 1 + + Une console de jeu + + + + fr.insee + CA-lndcb21u-3 + 1 + + Un système audio domestique, des enceintes intelligentes + + + + fr.insee + CA-lndcb21u-4 + 1 + + Aucun de ces appareils + + + + + fr.insee + CategoryScheme-lndce7bj + 1 + + AUTIOTX + + + fr.insee + CA-lndce7bj-1 + 1 + + Un objet connecté porté au quotidien (montre intelligente, bracelet de fitness, lunettes ou casques connectés, traqueurs de sécurité, accessoires, vêtements ou chaussures connectés) + + + + fr.insee + CA-lndce7bj-2 + 1 + + Un dispositif pour la santé et les soins médicaux (pour contrôler la tension artérielle, le taux de sucre, le poids corporel avec une balance intelligente par exemple, etc.) + + + + fr.insee + CA-lndce7bj-3 + 1 + + Des jouets (pour les enfants ou pour les adultes), comme des robots, des drones ou des poupées connectés. + + + + fr.insee + CA-lndce7bj-4 + 1 + + Une voiture avec accès Internet sans fil intégré + + + + fr.insee + CA-lndce7bj-5 + 1 + + Aucun de ces appareils + + + + + fr.insee + CategoryScheme-lndcser6 + 1 + + PBIOTX + + + fr.insee + CA-lndcser6-1 + 1 + + Des problèmes de sécurité ou de confidentialité (appareil piraté, problèmes avec la protection des informations privées sur vous ou votre famille, etc.) + + + + fr.insee + CA-lndcser6-2 + 1 + + Des problèmes de santé (utilisation d’un appareil conduisant à un accident, une blessure ou une maladie, etc.) + + + + fr.insee + CA-lndcser6-3 + 1 + + Des difficultés à utiliser l’appareil (installation, configuration, connexion, jumelage de l’appareil, etc.) + + + + fr.insee + CA-lndcser6-4 + 1 + + D’autres problèmes (déconnexions, problèmes d’assistance, etc.) + + + + fr.insee + CA-lndcser6-5 + 1 + + Vous n’avez rencontré aucun problème + + + + + fr.insee + CategoryScheme-lrholu47 + 1 + + GREENA + + + fr.insee + CA-lrholu47-1 + 1 + + Vous le conservez à votre domicile mais il n'est plus utilisé. + + + + fr.insee + CA-lrholu47-2 + 1 + + Vous l'avez vendu ou donné à quelqu'un d'autre. + + + + fr.insee + CA-lrholu47-3 + 1 + + Vous l'avez jeté dans une poubelle de recyclage des déchets électroniques (ou laissé à un détaillant pour qu'il le jette). + + + + fr.insee + CA-lrholu47-4 + 1 + + Vous l'avez jeté mais pas dans une poubelle de recyclage. + + + + fr.insee + CA-lrholu47-5 + 1 + + Vous n'avez jamais acheté de téléphone portable ou smartphone ou vous l'utilisez toujours. + + + + fr.insee + CA-lrholu47-6 + 1 + + Autre. + + + + + fr.insee + CategoryScheme-lnucbojk + 1 + + GREENB + + + fr.insee + CA-lnucbojk-1 + 1 + + Vous le conservez à votre domicile mais il n'est plus utilisé. + + + + + fr.insee + CA-lnucbojk-2 + 1 + + Vous l'avez vendu à ou donné à quelqu'un d'autre. + + + + fr.insee + CA-lnucbojk-3 + 1 + + Vous l'avez jeté dans une poubelle de recyclage de déchets électroniques (ou laissé à un détaillant pour qu'il le jette) + + + + fr.insee + CA-lnucbojk-4 + 1 + + Vous l'avez jeté mais pas dans une poubelle de recyclage + + + + fr.insee + CA-lnucbojk-5 + 1 + + Vous n'avez jamais acheté d'ordinateur portable ou de tablette ou vous l'utilisez toujours. + + + + fr.insee + CA-lnucbojk-6 + 1 + + Autre + + + + + fr.insee + CategoryScheme-lnucnu3i + 1 + + GREENC + + + fr.insee + CA-lnucnu3i-1 + 1 + + Vous le conservez à votre domicile mais il n’est plus utilisé + + + + fr.insee + CA-lnucnu3i-2 + 1 + + Vous l’avez vendu ou donné à quelqu’un d’autre + + + + fr.insee + CA-lnucnu3i-3 + 1 + + Vous l’avez jeté dans une poubelle de recyclage des déchets électroniques (ou laissé à un détaillant pour qu’il le jette) + + + + fr.insee + CA-lnucnu3i-4 + 1 + + Vous l’avez jeté mais pas dans une poubelle de recyclage + + + + fr.insee + CA-lnucnu3i-5 + 1 + + Vous n’avez jamais acheté d’ordinateur fixe ou vous l’utilisez toujours + + + + fr.insee + CA-lnucnu3i-6 + 1 + + Autre + + + + + fr.insee + CategoryScheme-lnudc60s + 1 + + CARGREENX + + + fr.insee + CA-lnudc60s-1 + 1 + + Le prix + + + + fr.insee + CA-lnudc60s-2 + 1 + + La marque, le design ou la taille + + + + fr.insee + CA-lnudc60s-3 + 1 + + Les caractéristiques matérielles du produit (stockage, vitesse du processeur, caméra, carte graphique, etc) + + + + fr.insee + CA-lnudc60s-4 + 1 + + L’éco-conception de l'appareil (produit durable, évolutif et réparables qui nécessite moins de matériaux, emballage respectueux de l'environnement, etc.) + + + + fr.insee + CA-lnudc60s-5 + 1 + + La possibilité de prolonger la durée de vie de l'appareil en achetant une garantie supplémentaire + + + + fr.insee + CA-lnudc60s-6 + 1 + + L’efficacité énergétique de l’appareil + + + + fr.insee + CA-lnudc60s-7 + 1 + + Une garantie de reprise proposé par le fabricant ou le vendeur (le fabricant ou le vendeur reprend l'appareil obsolète sans frais ou offre des remises pour acheter un nouvel appareil) + + + + fr.insee + CA-lnudc60s-8 + 1 + + Vous n’avez pris en compte aucune des caractéristiques mentionnées + + + + fr.insee + CA-lnudc60s-9 + 1 + + Vous n'avez jamais acheté aucun de ces appareils + + + + + fr.insee + CategoryScheme-lnue216n + 1 + + F_FIXE + + + fr.insee + CA-lnue216n-1 + 1 + + Une box Internet comprenant une ligne fixe, avec un téléphone fixe branché dessus. + + + + fr.insee + CA-lnue216n-2 + 1 + + Une box Internet comprenant une ligne fixe mais sans téléphone fixe branché dessus. + + + + fr.insee + CA-lnue216n-3 + 1 + + Juste une ligne fixe avec un téléphone branché dessus + + + + fr.insee + CA-lnue216n-4 + 1 + + Vous n'avez pas de ligne de téléphone fixe + + + + + fr.insee + CategoryScheme-lnuebhbp + 1 + + F_ORDIX + + + fr.insee + CA-lnuebhbp-1 + 1 + + Un ordinateur fixe + + + + fr.insee + CA-lnuebhbp-2 + 1 + + Un ordinateur portable + + + + fr.insee + CA-lnuebhbp-3 + 1 + + Une tablette + + + + fr.insee + CA-lnuebhbp-4 + 1 + + Une liseuse + + + + fr.insee + CA-lnuebhbp-5 + 1 + + Aucun de ces appareils + + + + + fr.insee + CategoryScheme-kc0mv555 + 1 + + smartphonex + + + fr.insee + CA-kc0mv555-1 + 1 + + + +Un smartphone + + + + fr.insee + CA-kc0mv555-2 + 1 + + + +Un téléphone mobile hors smartphone + + + + fr.insee + CA-kc0mv555-3 + 1 + + + +Aucun de ces appareils + + + + + fr.insee + CategoryScheme-lnuef84j + 1 + + F_DURSMART + + + fr.insee + CA-lnuef84j-1 + 1 + + Depuis moins d'un an + + + + fr.insee + CA-lnuef84j-2 + 1 + + Depuis 1 à 2 ans + + + + fr.insee + CA-lnuef84j-3 + 1 + + Depuis 3 à 5 ans + + + + fr.insee + CA-lnuef84j-4 + 1 + + Depuis plus de 5 ans + + + + + fr.insee + CategoryScheme-lnue9cua + 1 + + F_ETASMART + + + fr.insee + CA-lnue9cua-1 + 1 + + Un smartphone neuf + + + + fr.insee + CA-lnue9cua-2 + 1 + + Un smartphone d'occasion + + + + fr.insee + CA-lnue9cua-3 + 1 + + Un smartphone reconditionné + + + + + fr.insee + CategoryScheme-lnuenvlm + 1 + + F_RAISMARTX + + + fr.insee + CA-lnuenvlm-1 + 1 + + Votre précédent smartphone était cassé ou défaillant (batterie défaillante, écran abîmé, etc.) + + + + fr.insee + CA-lnuenvlm-2 + 1 + + Votre précédent smartphone ne fonctionnait plus bien du fait de problèmes liés au système d’exploitation (lenteurs, applications qui ne fonctionnent plus, etc.) + + + + fr.insee + CA-lnuenvlm-3 + 1 + + Vous souhaitiez un modèle plus récent que le précédent + + + + fr.insee + CA-lnuenvlm-4 + 1 + + Vous souhaitiez monter en gamme de smartphone (avoir une meilleure capacité de stockage, une meilleure qualité de photo, etc.) + + + + fr.insee + CA-lnuenvlm-5 + 1 + + Vous avez remplacé votre ancien smartphone en raison d’une offre promotionnelle + + + + fr.insee + CA-lnuenvlm-6 + 1 + + Vous n’aviez pas de smartphone précédemment mais vous souhaitiez en avoir un + + + + fr.insee + CA-lnuenvlm-7 + 1 + + Autre + + + + + fr.insee + CategoryScheme-lqb2fmkm + 1 + + Ecran1 + + + fr.insee + CA-lqb2fmkm-1 + 1 + + Moins d'une heure + + + + fr.insee + CA-lqb2fmkm-2 + 1 + + Entre une et deux heures + + + + fr.insee + CA-lqb2fmkm-3 + 1 + + Entre deux et quatre heures + + + + fr.insee + CA-lqb2fmkm-4 + 1 + + Entre quatre et six heures + + + + fr.insee + CA-lqb2fmkm-5 + 1 + + Plus de six heures + + + + fr.insee + CA-lqb2fmkm-6 + 1 + + Non concerné(e) + + + + + fr.insee + CategoryScheme-lqb2hzst + 1 + + Ecran_2 + + + fr.insee + CA-lqb2hzst-1 + 1 + + Moins d'une heure + + + + fr.insee + CA-lqb2hzst-2 + 1 + + Entre une et deux heures + + + + fr.insee + CA-lqb2hzst-3 + 1 + + Entre deux et quatre heures + + + + fr.insee + CA-lqb2hzst-4 + 1 + + Entre quatre et six heures + + + + fr.insee + CA-lqb2hzst-5 + 1 + + Entre six et huit heures + + + + fr.insee + CA-lqb2hzst-6 + 1 + + Plus de huit heures + + + + + fr.insee + CategoryScheme-lnufhdix + 1 + + F_TELECONX + + + fr.insee + CA-lnufhdix-1 + 1 + + Oui, vous avez téléconsulté par vidéo + + + + fr.insee + CA-lnufhdix-2 + 1 + + Oui, vous avez téléconsulté par téléphone + + + + fr.insee + CA-lnufhdix-3 + 1 + + Non, vous n'avez pas téléconsulté mais vous avez consulté un médecin à son cabinet, à l'hôpital ou à domicile. + + + + fr.insee + CA-lnufhdix-4 + 1 + + Non, vous n'avez consulté aucun médecin au cours des douze derniers mois (que ce soit à distance, dans son cabinet, à l'hôpital ou à votre domicile) + + + + + fr.insee + CategoryScheme-lnufyusq + 1 + + F_TELEOUIXX + + + fr.insee + CA-lnufyusq-1 + 1 + + Il est compliqué pour vous de vous déplacer (handicap, pas de voiture ou pas de permis, enfants en bas âge, etc.) + + + + fr.insee + CA-lnufyusq-2 + 1 + + Vous étiez loin de votre domicile au moment où vous souhaitiez consulter (vacances, déplacement, formation…) + + + + fr.insee + CA-lnufyusq-3 + 1 + + Vous aviez besoin de consulter un médecin en urgence + + + + fr.insee + CA-lnufyusq-4 + 1 + + Le délai d’attente pour une consultation en cabinet est trop long + + + + fr.insee + CA-lnufyusq-5 + 1 + + Le médecin que vous souhaitiez consulter est loin de votre domicile + + + + fr.insee + CA-lnufyusq-6 + 1 + + La téléconsultation évite de transmettre ou d’être exposé.e à des maladies chez le médecin + + + + fr.insee + CA-lnufyusq-7 + 1 + + C’est plus confortable pour le respect de l’intimité + + + + fr.insee + CA-lnufyusq-8 + 1 + + Vous aviez juste besoin d’un renouvellement d’une ordonnance ou d’un certificat médical + + + + fr.insee + CA-lnufyusq-9 + 1 + + Vous aviez juste besoin de conseils médicaux + + + + fr.insee + CA-lnufyusq-10 + 1 + + Pour une autre raison + + + + + fr.insee + CategoryScheme-lnufwvel + 1 + + F_TELENONX + + + fr.insee + CA-lnufwvel-1 + 1 + + Votre médecin ne propose pas ce mode de consultation + + + + fr.insee + CA-lnufwvel-2 + 1 + + Vous préférez vous rendre sur place pour consulter un médecin plutôt que de le faire virtuellement (attachement à la relation patient-médecin, meilleure qualité de la consultation…) + + + + fr.insee + CA-lnufwvel-3 + 1 + + Vos symptômes nécessitaient une consultation en présence d’un médecin + + + + fr.insee + CA-lnufwvel-4 + 1 + + Vous n’êtes pas assez bien équipé pour réaliser une téléconsultation (matériel informatique inadapté, accès à Internet limité…) + + + + fr.insee + CA-lnufwvel-5 + 1 + + Vous n’êtes pas à l’aise avec les outils informatiques (Internet, sites Web sur lesquels sont réalisées les téléconsultations, applications) + + + + fr.insee + CA-lnufwvel-6 + 1 + + Vous craignez pour la sécurité de vos données et le respect du secret médical (plateforme peu sécurisée, fuite de données) + + + + fr.insee + CA-lnufwvel-7 + 1 + + Pour une autre raison + + + + + fr.insee + CategoryScheme-kc0n7y7a + 1 + + situa + + + fr.insee + CA-kc0n7y7a-1 + 1 + + En emploi + + + + fr.insee + CA-kc0n7y7a-2 + 1 + + Au chômage (inscrit(e) ou non à France Travail (anciennement Pôle Emploi)) + + + + fr.insee + CA-kc0n7y7a-3 + 1 + + Retraité(e) ou pré-retraité(e) + + + + fr.insee + CA-kc0n7y7a-4 + 1 + + En incapacité de travailler en raison d'un handicap ou d'un problème de santé + + + + fr.insee + CA-kc0n7y7a-5 + 1 + + En études + + + + fr.insee + CA-kc0n7y7a-6 + 1 + + Homme (femme) au foyer + + + + fr.insee + CA-kc0n7y7a-7 + 1 + + Dans une autre situation + + + + + fr.insee + CategoryScheme-lpv0f7wm + 1 + + oui_non_2 + + + fr.insee + CA-lpv0f7wm-1 + 1 + + Oui + + + + fr.insee + CA-lpv0f7wm-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kc0nedap + 1 + + statut + + + fr.insee + CA-kc0nedap-1 + 1 + + A votre compte (y compris gérant(e) de société ou chef(fe) d'entreprise salarié(e)) + + + + fr.insee + CA-kc0nedap-2 + 1 + + Salarié(e) de la fonction publique (État, territoriale, hospitalière) + + + + fr.insee + CA-kc0nedap-3 + 1 + + Salarié(e) d'une entreprise (y compris d'une association ou de la Sécurité sociale) + + + + fr.insee + CA-kc0nedap-4 + 1 + + Salarié(e) d'un particulier + + + + fr.insee + CA-kc0nedap-5 + 1 + + Vous travaillez, sans être rémunéré(e), avec un membre de votre famille + + + + + fr.insee + CategoryScheme-lox2f78d + 1 + + position_public + + + fr.insee + CA-lox2f78d-1 + 1 + + Manoeuvre ou ouvrier(ière) spécialisé(e) + + + + fr.insee + CA-lox2f78d-2 + 1 + + Ouvrier(ière) qualifié(e) + + + + fr.insee + CA-lox2f78d-3 + 1 + + Technicien(ne) + + + + fr.insee + CA-lox2f78d-4 + 1 + + Agent(e) de catégorie C de la fonction publique + + + + fr.insee + CA-lox2f78d-5 + 1 + + Agent(e) de catégorie B de la fonction publique + + + + fr.insee + CA-lox2f78d-6 + 1 + + Agent(e) de catégorie A de la fonction publique + + + + fr.insee + CA-lox2f78d-7 + 1 + + Dans une autre situation + + + + + fr.insee + CategoryScheme-lows9fg9 + 1 + + position_prive + + + fr.insee + CA-lows9fg9-1 + 1 + + Manoeuvre ou ouvrier(ière) spécialisé(e) + + + + fr.insee + CA-lows9fg9-2 + 1 + + Ouvrier(ière) qualifié(e), technicien(ne) d'atelier + + + + fr.insee + CA-lows9fg9-3 + 1 + + Employé(e) de bureau, de commerce, de services + + + + fr.insee + CA-lows9fg9-4 + 1 + + Agent(e) de maîtrise (y compris administrative ou commerciale) + + + + fr.insee + CA-lows9fg9-5 + 1 + + Technicien(ne) + + + + fr.insee + CA-lows9fg9-6 + 1 + + Ingénieur(e), cadre d'entreprise + + + + fr.insee + CA-lows9fg9-7 + 1 + + Dans une autre situation + + + + + fr.insee + CategoryScheme-kc0qcptw + 1 + + nombresal + + + fr.insee + CA-kc0qcptw-1 + 1 + + "Une seule personne, vous " || ¤kc0oacnr-GOP¤ || " seul(e)" + + + + fr.insee + CA-kc0qcptw-2 + 1 + + Entre 2 et 10 personnes + + + + fr.insee + CA-kc0qcptw-3 + 1 + + Entre 11 et 49 personnes + + + + fr.insee + CA-kc0qcptw-4 + 1 + + 50 personnes ou plus + + + + + fr.insee + CategoryScheme-kc0ntlza + 1 + + contrat + + + fr.insee + CA-kc0ntlza-1 + 1 + + + +Emploi sans limite de durée (CDI ou titulaire de la fonction publique) + + + + fr.insee + CA-kc0ntlza-2 + 1 + + + +Emploi à durée déterminée (CDD, intérim, saisonnier, apprentissage, contrat d'avenir, etc.) + + + + + fr.insee + CategoryScheme-kc0oigqa + 1 + + duree_emp + + + fr.insee + CA-kc0oigqa-1 + 1 + + + +À temps complet + + + + fr.insee + CA-kc0oigqa-2 + 1 + + + +À temps partiel ou incomplet (mi-temps, 90%, 80%, etc.) + + + + + fr.insee + CategoryScheme-ks4ttfz8 + 1 + + SANTE + + + fr.insee + CA-ks4ttfz8-1 + 1 + + Oui, fortement limité(e) + + + + fr.insee + CA-ks4ttfz8-2 + 1 + + Oui, limité(e) mais pas fortement + + + + fr.insee + CA-ks4ttfz8-3 + 1 + + Non, pas limité(e) du tout + + + + + fr.insee + CategoryScheme-kc0qmn36 + 1 + + tranche de revenus + + + fr.insee + CA-kc0qmn36-1 + 1 + + + +Moins de 800 € + + + + fr.insee + CA-kc0qmn36-2 + 1 + + + +De 800 à 999 € + + + + fr.insee + CA-kc0qmn36-3 + 1 + + + +De 1 000 à 1 199 € + + + + fr.insee + CA-kc0qmn36-4 + 1 + + + +De 1 200 à 1 499 € + + + + fr.insee + CA-kc0qmn36-5 + 1 + + + +De 1 500 à 1 999 € + + + + fr.insee + CA-kc0qmn36-6 + 1 + + + +De 2 000 à 2 499 € + + + + fr.insee + CA-kc0qmn36-7 + 1 + + + +De 2 500 à 2 999 € + + + + fr.insee + CA-kc0qmn36-8 + 1 + + + +De 3 000 à 3 999 € + + + + fr.insee + CA-kc0qmn36-9 + 1 + + + +De 4 000 à 5 999 € + + + + fr.insee + CA-kc0qmn36-10 + 1 + + 6 000 € ou plus + + + + + fr.insee + CategoryScheme-lseh1s0t + 1 + + A définir + + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + + + + + + + fr.insee + m2-CLS + 1 + + m2 + + + fr.insee + lox6814k + 1 + + residence + + Regular + + Ordinal + + + fr.insee + lox6814k-1 + 1 + + fr.insee + CA-lox6814k-1 + 1 + Category + + 1 + + + fr.insee + lox6814k-2 + 1 + + fr.insee + CA-lox6814k-2 + 1 + Category + + 2 + + + + fr.insee + lox67843 + 1 + + ok + + Regular + + Ordinal + + + fr.insee + lox67843-1 + 1 + + fr.insee + CA-lox67843-1 + 1 + Category + + 1 + + + + fr.insee + lptubo1v + 1 + + ok + + Regular + + Ordinal + + + fr.insee + lptubo1v-1 + 1 + + fr.insee + CA-lptubo1v-1 + 1 + Category + + 1 + + + + fr.insee + loykwrxi + 1 + + femhom + + Regular + + Ordinal + + + fr.insee + loykwrxi-1 + 1 + + fr.insee + CA-loykwrxi-1 + 1 + Category + + 1 + + + fr.insee + loykwrxi-2 + 1 + + fr.insee + CA-loykwrxi-2 + 1 + Category + + 2 + + + + fr.insee + loylh7zv + 1 + + ok + + Regular + + Ordinal + + + fr.insee + loylh7zv-1 + 1 + + fr.insee + CA-loylh7zv-1 + 1 + Category + + 1 + + + + fr.insee + loyls2wd + 1 + + oui-non + + Regular + + Ordinal + + + fr.insee + loyls2wd-1 + 1 + + fr.insee + CA-loyls2wd-1 + 1 + Category + + 1 + + + fr.insee + loyls2wd-2 + 1 + + fr.insee + CA-loyls2wd-2 + 1 + Category + + 2 + + + + fr.insee + loylid8o + 1 + + reponsekish + + Regular + + Ordinal + + + fr.insee + loylid8o-1 + 1 + + fr.insee + CA-loylid8o-1 + 1 + Category + + 1 + + + fr.insee + loylid8o-2 + 1 + + fr.insee + CA-loylid8o-2 + 1 + Category + + 2 + + + fr.insee + loylid8o-3 + 1 + + fr.insee + CA-loylid8o-3 + 1 + Category + + 3 + + + + fr.insee + kbw8w2j7 + 1 + + Niveau de diplome + + Regular + + Ordinal + + + fr.insee + kbw8w2j7-1 + 1 + + fr.insee + CA-kbw8w2j7-1 + 1 + Category + + 1 + + + fr.insee + kbw8w2j7-2 + 1 + + fr.insee + CA-kbw8w2j7-2 + 1 + Category + + 2 + + + fr.insee + kbw8w2j7-3 + 1 + + fr.insee + CA-kbw8w2j7-3 + 1 + Category + + 3 + + + fr.insee + kbw8w2j7-4 + 1 + + fr.insee + CA-kbw8w2j7-4 + 1 + Category + + 4 + + + fr.insee + kbw8w2j7-5 + 1 + + fr.insee + CA-kbw8w2j7-5 + 1 + Category + + 5 + + + fr.insee + kbw8w2j7-6 + 1 + + fr.insee + CA-kbw8w2j7-6 + 1 + Category + + 6 + + + fr.insee + kbw8w2j7-7 + 1 + + fr.insee + CA-kbw8w2j7-7 + 1 + Category + + 7 + + + fr.insee + kbw8w2j7-8 + 1 + + fr.insee + CA-kbw8w2j7-8 + 1 + Category + + 8 + + + fr.insee + kbw8w2j7-9 + 1 + + fr.insee + CA-kbw8w2j7-9 + 1 + Category + + 9 + + + fr.insee + kbw8w2j7-10 + 1 + + fr.insee + CA-kbw8w2j7-10 + 1 + Category + + 10 + + + + fr.insee + kbw9j1g0 + 1 + + Niveau d'étude + + Regular + + Ordinal + + + fr.insee + kbw9j1g0-1 + 1 + + fr.insee + CA-kbw9j1g0-1 + 1 + Category + + 1 + + + fr.insee + kbw9j1g0-2 + 1 + + fr.insee + CA-kbw9j1g0-2 + 1 + Category + + 2 + + + fr.insee + kbw9j1g0-3 + 1 + + fr.insee + CA-kbw9j1g0-3 + 1 + Category + + 3 + + + fr.insee + kbw9j1g0-4 + 1 + + fr.insee + CA-kbw9j1g0-4 + 1 + Category + + 4 + + + fr.insee + kbw9j1g0-5 + 1 + + fr.insee + CA-kbw9j1g0-5 + 1 + Category + + 5 + + + fr.insee + kbw9j1g0-6 + 1 + + fr.insee + CA-kbw9j1g0-6 + 1 + Category + + 6 + + + fr.insee + kbw9j1g0-7 + 1 + + fr.insee + CA-kbw9j1g0-7 + 1 + Category + + 7 + + + + fr.insee + kbw9fu8f + 1 + + couple + + Regular + + Ordinal + + + fr.insee + kbw9fu8f-1 + 1 + + fr.insee + CA-kbw9fu8f-1 + 1 + Category + + 1 + + + fr.insee + kbw9fu8f-2 + 1 + + fr.insee + CA-kbw9fu8f-2 + 1 + Category + + 2 + + + fr.insee + kbw9fu8f-3 + 1 + + fr.insee + CA-kbw9fu8f-3 + 1 + Category + + 3 + + + + fr.insee + kbw9oep5 + 1 + + Etat matrimonial + + Regular + + Ordinal + + + fr.insee + kbw9oep5-1 + 1 + + fr.insee + CA-kbw9oep5-1 + 1 + Category + + 1 + + + fr.insee + kbw9oep5-2 + 1 + + fr.insee + CA-kbw9oep5-2 + 1 + Category + + 2 + + + fr.insee + kbw9oep5-3 + 1 + + fr.insee + CA-kbw9oep5-3 + 1 + Category + + 3 + + + fr.insee + kbw9oep5-4 + 1 + + fr.insee + CA-kbw9oep5-4 + 1 + Category + + 4 + + + + fr.insee + kbw9cik3 + 1 + + L_OUI_NON + + Regular + + Ordinal + + + fr.insee + kbw9cik3-1 + 1 + + fr.insee + CA-kbw9cik3-1 + 1 + Category + + 1 + + + fr.insee + kbw9cik3-2 + 1 + + fr.insee + CA-kbw9cik3-2 + 1 + Category + + 2 + + + + fr.insee + kbw9mytb + 1 + + Naissance france ou non + + Regular + + Ordinal + + + fr.insee + kbw9mytb-1 + 1 + + fr.insee + CA-kbw9mytb-1 + 1 + Category + + 1 + + + fr.insee + kbw9mytb-2 + 1 + + fr.insee + CA-kbw9mytb-2 + 1 + Category + + 2 + + + + fr.insee + kbw9u1cu + 1 + + Départements + + Regular + + Ordinal + + + fr.insee + kbw9u1cu-1 + 1 + + fr.insee + CA-kbw9u1cu-1 + 1 + Category + + 1 + + + fr.insee + kbw9u1cu-2 + 1 + + fr.insee + CA-kbw9u1cu-2 + 1 + Category + + 2 + + + fr.insee + kbw9u1cu-3 + 1 + + fr.insee + CA-kbw9u1cu-3 + 1 + Category + + 3 + + + fr.insee + kbw9u1cu-4 + 1 + + fr.insee + CA-kbw9u1cu-4 + 1 + Category + + 4 + + + fr.insee + kbw9u1cu-5 + 1 + + fr.insee + CA-kbw9u1cu-5 + 1 + Category + + 5 + + + fr.insee + kbw9u1cu-6 + 1 + + fr.insee + CA-kbw9u1cu-6 + 1 + Category + + 6 + + + fr.insee + kbw9u1cu-7 + 1 + + fr.insee + CA-kbw9u1cu-7 + 1 + Category + + 7 + + + fr.insee + kbw9u1cu-8 + 1 + + fr.insee + CA-kbw9u1cu-8 + 1 + Category + + 8 + + + fr.insee + kbw9u1cu-9 + 1 + + fr.insee + CA-kbw9u1cu-9 + 1 + Category + + 9 + + + fr.insee + kbw9u1cu-10 + 1 + + fr.insee + CA-kbw9u1cu-10 + 1 + Category + + 10 + + + fr.insee + kbw9u1cu-11 + 1 + + fr.insee + CA-kbw9u1cu-11 + 1 + Category + + 11 + + + fr.insee + kbw9u1cu-12 + 1 + + fr.insee + CA-kbw9u1cu-12 + 1 + Category + + 12 + + + fr.insee + kbw9u1cu-13 + 1 + + fr.insee + CA-kbw9u1cu-13 + 1 + Category + + 13 + + + fr.insee + kbw9u1cu-14 + 1 + + fr.insee + CA-kbw9u1cu-14 + 1 + Category + + 14 + + + fr.insee + kbw9u1cu-15 + 1 + + fr.insee + CA-kbw9u1cu-15 + 1 + Category + + 15 + + + fr.insee + kbw9u1cu-16 + 1 + + fr.insee + CA-kbw9u1cu-16 + 1 + Category + + 16 + + + fr.insee + kbw9u1cu-17 + 1 + + fr.insee + CA-kbw9u1cu-17 + 1 + Category + + 17 + + + fr.insee + kbw9u1cu-18 + 1 + + fr.insee + CA-kbw9u1cu-18 + 1 + Category + + 18 + + + fr.insee + kbw9u1cu-19 + 1 + + fr.insee + CA-kbw9u1cu-19 + 1 + Category + + 19 + + + fr.insee + kbw9u1cu-20 + 1 + + fr.insee + CA-kbw9u1cu-20 + 1 + Category + + 2A + + + fr.insee + kbw9u1cu-21 + 1 + + fr.insee + CA-kbw9u1cu-21 + 1 + Category + + 2B + + + fr.insee + kbw9u1cu-22 + 1 + + fr.insee + CA-kbw9u1cu-22 + 1 + Category + + 21 + + + fr.insee + kbw9u1cu-23 + 1 + + fr.insee + CA-kbw9u1cu-23 + 1 + Category + + 22 + + + fr.insee + kbw9u1cu-24 + 1 + + fr.insee + CA-kbw9u1cu-24 + 1 + Category + + 23 + + + fr.insee + kbw9u1cu-25 + 1 + + fr.insee + CA-kbw9u1cu-25 + 1 + Category + + 24 + + + fr.insee + kbw9u1cu-26 + 1 + + fr.insee + CA-kbw9u1cu-26 + 1 + Category + + 25 + + + fr.insee + kbw9u1cu-27 + 1 + + fr.insee + CA-kbw9u1cu-27 + 1 + Category + + 26 + + + fr.insee + kbw9u1cu-28 + 1 + + fr.insee + CA-kbw9u1cu-28 + 1 + Category + + 27 + + + fr.insee + kbw9u1cu-29 + 1 + + fr.insee + CA-kbw9u1cu-29 + 1 + Category + + 28 + + + fr.insee + kbw9u1cu-30 + 1 + + fr.insee + CA-kbw9u1cu-30 + 1 + Category + + 29 + + + fr.insee + kbw9u1cu-31 + 1 + + fr.insee + CA-kbw9u1cu-31 + 1 + Category + + 30 + + + fr.insee + kbw9u1cu-32 + 1 + + fr.insee + CA-kbw9u1cu-32 + 1 + Category + + 31 + + + fr.insee + kbw9u1cu-33 + 1 + + fr.insee + CA-kbw9u1cu-33 + 1 + Category + + 32 + + + fr.insee + kbw9u1cu-34 + 1 + + fr.insee + CA-kbw9u1cu-34 + 1 + Category + + 33 + + + fr.insee + kbw9u1cu-35 + 1 + + fr.insee + CA-kbw9u1cu-35 + 1 + Category + + 34 + + + fr.insee + kbw9u1cu-36 + 1 + + fr.insee + CA-kbw9u1cu-36 + 1 + Category + + 35 + + + fr.insee + kbw9u1cu-37 + 1 + + fr.insee + CA-kbw9u1cu-37 + 1 + Category + + 36 + + + fr.insee + kbw9u1cu-38 + 1 + + fr.insee + CA-kbw9u1cu-38 + 1 + Category + + 37 + + + fr.insee + kbw9u1cu-39 + 1 + + fr.insee + CA-kbw9u1cu-39 + 1 + Category + + 38 + + + fr.insee + kbw9u1cu-40 + 1 + + fr.insee + CA-kbw9u1cu-40 + 1 + Category + + 39 + + + fr.insee + kbw9u1cu-41 + 1 + + fr.insee + CA-kbw9u1cu-41 + 1 + Category + + 40 + + + fr.insee + kbw9u1cu-42 + 1 + + fr.insee + CA-kbw9u1cu-42 + 1 + Category + + 41 + + + fr.insee + kbw9u1cu-43 + 1 + + fr.insee + CA-kbw9u1cu-43 + 1 + Category + + 42 + + + fr.insee + kbw9u1cu-44 + 1 + + fr.insee + CA-kbw9u1cu-44 + 1 + Category + + 43 + + + fr.insee + kbw9u1cu-45 + 1 + + fr.insee + CA-kbw9u1cu-45 + 1 + Category + + 44 + + + fr.insee + kbw9u1cu-46 + 1 + + fr.insee + CA-kbw9u1cu-46 + 1 + Category + + 45 + + + fr.insee + kbw9u1cu-47 + 1 + + fr.insee + CA-kbw9u1cu-47 + 1 + Category + + 46 + + + fr.insee + kbw9u1cu-48 + 1 + + fr.insee + CA-kbw9u1cu-48 + 1 + Category + + 47 + + + fr.insee + kbw9u1cu-49 + 1 + + fr.insee + CA-kbw9u1cu-49 + 1 + Category + + 48 + + + fr.insee + kbw9u1cu-50 + 1 + + fr.insee + CA-kbw9u1cu-50 + 1 + Category + + 49 + + + fr.insee + kbw9u1cu-51 + 1 + + fr.insee + CA-kbw9u1cu-51 + 1 + Category + + 50 + + + fr.insee + kbw9u1cu-52 + 1 + + fr.insee + CA-kbw9u1cu-52 + 1 + Category + + 51 + + + fr.insee + kbw9u1cu-53 + 1 + + fr.insee + CA-kbw9u1cu-53 + 1 + Category + + 52 + + + fr.insee + kbw9u1cu-54 + 1 + + fr.insee + CA-kbw9u1cu-54 + 1 + Category + + 53 + + + fr.insee + kbw9u1cu-55 + 1 + + fr.insee + CA-kbw9u1cu-55 + 1 + Category + + 54 + + + fr.insee + kbw9u1cu-56 + 1 + + fr.insee + CA-kbw9u1cu-56 + 1 + Category + + 55 + + + fr.insee + kbw9u1cu-57 + 1 + + fr.insee + CA-kbw9u1cu-57 + 1 + Category + + 56 + + + fr.insee + kbw9u1cu-58 + 1 + + fr.insee + CA-kbw9u1cu-58 + 1 + Category + + 57 + + + fr.insee + kbw9u1cu-59 + 1 + + fr.insee + CA-kbw9u1cu-59 + 1 + Category + + 58 + + + fr.insee + kbw9u1cu-60 + 1 + + fr.insee + CA-kbw9u1cu-60 + 1 + Category + + 59 + + + fr.insee + kbw9u1cu-61 + 1 + + fr.insee + CA-kbw9u1cu-61 + 1 + Category + + 60 + + + fr.insee + kbw9u1cu-62 + 1 + + fr.insee + CA-kbw9u1cu-62 + 1 + Category + + 61 + + + fr.insee + kbw9u1cu-63 + 1 + + fr.insee + CA-kbw9u1cu-63 + 1 + Category + + 62 + + + fr.insee + kbw9u1cu-64 + 1 + + fr.insee + CA-kbw9u1cu-64 + 1 + Category + + 63 + + + fr.insee + kbw9u1cu-65 + 1 + + fr.insee + CA-kbw9u1cu-65 + 1 + Category + + 64 + + + fr.insee + kbw9u1cu-66 + 1 + + fr.insee + CA-kbw9u1cu-66 + 1 + Category + + 65 + + + fr.insee + kbw9u1cu-67 + 1 + + fr.insee + CA-kbw9u1cu-67 + 1 + Category + + 66 + + + fr.insee + kbw9u1cu-68 + 1 + + fr.insee + CA-kbw9u1cu-68 + 1 + Category + + 67 + + + fr.insee + kbw9u1cu-69 + 1 + + fr.insee + CA-kbw9u1cu-69 + 1 + Category + + 68 + + + fr.insee + kbw9u1cu-70 + 1 + + fr.insee + CA-kbw9u1cu-70 + 1 + Category + + 69 + + + fr.insee + kbw9u1cu-71 + 1 + + fr.insee + CA-kbw9u1cu-71 + 1 + Category + + 70 + + + fr.insee + kbw9u1cu-72 + 1 + + fr.insee + CA-kbw9u1cu-72 + 1 + Category + + 71 + + + fr.insee + kbw9u1cu-73 + 1 + + fr.insee + CA-kbw9u1cu-73 + 1 + Category + + 72 + + + fr.insee + kbw9u1cu-74 + 1 + + fr.insee + CA-kbw9u1cu-74 + 1 + Category + + 73 + + + fr.insee + kbw9u1cu-75 + 1 + + fr.insee + CA-kbw9u1cu-75 + 1 + Category + + 74 + + + fr.insee + kbw9u1cu-76 + 1 + + fr.insee + CA-kbw9u1cu-76 + 1 + Category + + 75 + + + fr.insee + kbw9u1cu-77 + 1 + + fr.insee + CA-kbw9u1cu-77 + 1 + Category + + 76 + + + fr.insee + kbw9u1cu-78 + 1 + + fr.insee + CA-kbw9u1cu-78 + 1 + Category + + 77 + + + fr.insee + kbw9u1cu-79 + 1 + + fr.insee + CA-kbw9u1cu-79 + 1 + Category + + 78 + + + fr.insee + kbw9u1cu-80 + 1 + + fr.insee + CA-kbw9u1cu-80 + 1 + Category + + 79 + + + fr.insee + kbw9u1cu-81 + 1 + + fr.insee + CA-kbw9u1cu-81 + 1 + Category + + 80 + + + fr.insee + kbw9u1cu-82 + 1 + + fr.insee + CA-kbw9u1cu-82 + 1 + Category + + 81 + + + fr.insee + kbw9u1cu-83 + 1 + + fr.insee + CA-kbw9u1cu-83 + 1 + Category + + 82 + + + fr.insee + kbw9u1cu-84 + 1 + + fr.insee + CA-kbw9u1cu-84 + 1 + Category + + 83 + + + fr.insee + kbw9u1cu-85 + 1 + + fr.insee + CA-kbw9u1cu-85 + 1 + Category + + 84 + + + fr.insee + kbw9u1cu-86 + 1 + + fr.insee + CA-kbw9u1cu-86 + 1 + Category + + 85 + + + fr.insee + kbw9u1cu-87 + 1 + + fr.insee + CA-kbw9u1cu-87 + 1 + Category + + 86 + + + fr.insee + kbw9u1cu-88 + 1 + + fr.insee + CA-kbw9u1cu-88 + 1 + Category + + 87 + + + fr.insee + kbw9u1cu-89 + 1 + + fr.insee + CA-kbw9u1cu-89 + 1 + Category + + 88 + + + fr.insee + kbw9u1cu-90 + 1 + + fr.insee + CA-kbw9u1cu-90 + 1 + Category + + 89 + + + fr.insee + kbw9u1cu-91 + 1 + + fr.insee + CA-kbw9u1cu-91 + 1 + Category + + 90 + + + fr.insee + kbw9u1cu-92 + 1 + + fr.insee + CA-kbw9u1cu-92 + 1 + Category + + 91 + + + fr.insee + kbw9u1cu-93 + 1 + + fr.insee + CA-kbw9u1cu-93 + 1 + Category + + 92 + + + fr.insee + kbw9u1cu-94 + 1 + + fr.insee + CA-kbw9u1cu-94 + 1 + Category + + 93 + + + fr.insee + kbw9u1cu-95 + 1 + + fr.insee + CA-kbw9u1cu-95 + 1 + Category + + 94 + + + fr.insee + kbw9u1cu-96 + 1 + + fr.insee + CA-kbw9u1cu-96 + 1 + Category + + 95 + + + fr.insee + kbw9u1cu-97 + 1 + + fr.insee + CA-kbw9u1cu-97 + 1 + Category + + 971 + + + fr.insee + kbw9u1cu-98 + 1 + + fr.insee + CA-kbw9u1cu-98 + 1 + Category + + 972 + + + fr.insee + kbw9u1cu-99 + 1 + + fr.insee + CA-kbw9u1cu-99 + 1 + Category + + 973 + + + fr.insee + kbw9u1cu-100 + 1 + + fr.insee + CA-kbw9u1cu-100 + 1 + Category + + 974 + + + fr.insee + kbw9u1cu-101 + 1 + + fr.insee + CA-kbw9u1cu-101 + 1 + Category + + 976 + + + + fr.insee + kbwakjtt + 1 + + Pays + + Regular + + Ordinal + + + fr.insee + kbwakjtt-1 + 1 + + fr.insee + CA-kbwakjtt-1 + 1 + Category + + ESP + + + + fr.insee + kbwalpah + 1 + + Type de nationalités + + Regular + + Ordinal + + + fr.insee + kbwalpah-1 + 1 + + fr.insee + CA-kbwalpah-1 + 1 + Category + + 1 + + + fr.insee + kbwalpah-2 + 1 + + fr.insee + CA-kbwalpah-2 + 1 + Category + + 2 + + + fr.insee + kbwalpah-3 + 1 + + fr.insee + CA-kbwalpah-3 + 1 + Category + + 3 + + + fr.insee + kbwalpah-4 + 1 + + fr.insee + CA-kbwalpah-4 + 1 + Category + + 4 + + + + fr.insee + kbway7s0 + 1 + + Nationalité + + Regular + + Ordinal + + + fr.insee + kbway7s0-1 + 1 + + fr.insee + CA-kbway7s0-1 + 1 + Category + + ESP + + + + fr.insee + kuznwwbx + 1 + + debit + + Regular + + Ordinal + + + fr.insee + kuznwwbx-1 + 1 + + fr.insee + CA-kuznwwbx-1 + 1 + Category + + 1 + + + fr.insee + kuznwwbx-2 + 1 + + fr.insee + CA-kuznwwbx-2 + 1 + Category + + 2 + + + fr.insee + kuznwwbx-3 + 1 + + fr.insee + CA-kuznwwbx-3 + 1 + Category + + 3 + + + fr.insee + kuznwwbx-4 + 1 + + fr.insee + CA-kuznwwbx-4 + 1 + Category + + 4 + + + fr.insee + kuznwwbx-5 + 1 + + fr.insee + CA-kuznwwbx-5 + 1 + Category + + 5 + + + + fr.insee + lnbw2d2c + 1 + + Codes haut débit + + Regular + + Ordinal + + + fr.insee + lnbw2d2c-1 + 1 + + fr.insee + CA-lnbw2d2c-1 + 1 + Category + + 1 + + + fr.insee + lnbw2d2c-2 + 1 + + fr.insee + CA-lnbw2d2c-2 + 1 + Category + + 2 + + + fr.insee + lnbw2d2c-3 + 1 + + fr.insee + CA-lnbw2d2c-3 + 1 + Category + + 3 + + + fr.insee + lnbw2d2c-4 + 1 + + fr.insee + CA-lnbw2d2c-4 + 1 + Category + + 4 + + + fr.insee + lnbw2d2c-5 + 1 + + fr.insee + CA-lnbw2d2c-5 + 1 + Category + + 5 + + + fr.insee + lnbw2d2c-6 + 1 + + fr.insee + CA-lnbw2d2c-6 + 1 + Category + + 6 + + + + fr.insee + kc0hgqph + 1 + + nuseweb + + Regular + + Ordinal + + + fr.insee + kc0hgqph-1 + 1 + + fr.insee + CA-kc0hgqph-1 + 1 + Category + + 1 + + + fr.insee + kc0hgqph-2 + 1 + + fr.insee + CA-kc0hgqph-2 + 1 + Category + + 2 + + + fr.insee + kc0hgqph-3 + 1 + + fr.insee + CA-kc0hgqph-3 + 1 + Category + + 3 + + + fr.insee + kc0hgqph-4 + 1 + + fr.insee + CA-kc0hgqph-4 + 1 + Category + + 4 + + + + fr.insee + kc0he7f0 + 1 + + useweb + + Regular + + Ordinal + + + fr.insee + kc0he7f0-1 + 1 + + fr.insee + CA-kc0he7f0-1 + 1 + Category + + 1 + + + fr.insee + kc0he7f0-2 + 1 + + fr.insee + CA-kc0he7f0-2 + 1 + Category + + 2 + + + fr.insee + kc0he7f0-3 + 1 + + fr.insee + CA-kc0he7f0-3 + 1 + Category + + 3 + + + fr.insee + kc0he7f0-4 + 1 + + fr.insee + CA-kc0he7f0-4 + 1 + Category + + 4 + + + + fr.insee + kc0hwcna + 1 + + pratintxx + + Regular + + Ordinal + + + fr.insee + kc0hwcna-1 + 1 + + fr.insee + CA-kc0hwcna-1 + 1 + Category + + 1 + + + fr.insee + kc0hwcna-2 + 1 + + fr.insee + CA-kc0hwcna-2 + 1 + Category + + 2 + + + fr.insee + kc0hwcna-3 + 1 + + fr.insee + CA-kc0hwcna-3 + 1 + Category + + 3 + + + fr.insee + kc0hwcna-4 + 1 + + fr.insee + CA-kc0hwcna-4 + 1 + Category + + 4 + + + fr.insee + kc0hwcna-5 + 1 + + fr.insee + CA-kc0hwcna-5 + 1 + Category + + 5 + + + fr.insee + kc0hwcna-6 + 1 + + fr.insee + CA-kc0hwcna-6 + 1 + Category + + 6 + + + fr.insee + kc0hwcna-7 + 1 + + fr.insee + CA-kc0hwcna-7 + 1 + Category + + 7 + + + fr.insee + kc0hwcna-8 + 1 + + fr.insee + CA-kc0hwcna-8 + 1 + Category + + 8 + + + fr.insee + kc0hwcna-9 + 1 + + fr.insee + CA-kc0hwcna-9 + 1 + Category + + 9 + + + fr.insee + kc0hwcna-10 + 1 + + fr.insee + CA-kc0hwcna-10 + 1 + Category + + 10 + + + fr.insee + kc0hwcna-11 + 1 + + fr.insee + CA-kc0hwcna-11 + 1 + Category + + 11 + + + fr.insee + kc0hwcna-12 + 1 + + fr.insee + CA-kc0hwcna-12 + 1 + Category + + 12 + + + fr.insee + kc0hwcna-13 + 1 + + fr.insee + CA-kc0hwcna-13 + 1 + Category + + 13 + + + fr.insee + kc0hwcna-14 + 1 + + fr.insee + CA-kc0hwcna-14 + 1 + Category + + 14 + + + fr.insee + kc0hwcna-15 + 1 + + fr.insee + CA-kc0hwcna-15 + 1 + Category + + 15 + + + fr.insee + kc0hwcna-16 + 1 + + fr.insee + CA-kc0hwcna-16 + 1 + Category + + 16 + + + fr.insee + kc0hwcna-17 + 1 + + fr.insee + CA-kc0hwcna-17 + 1 + Category + + 17 + + + fr.insee + kc0hwcna-18 + 1 + + fr.insee + CA-kc0hwcna-18 + 1 + Category + + 18 + + + fr.insee + kc0hwcna-19 + 1 + + fr.insee + CA-kc0hwcna-19 + 1 + Category + + 19 + + + fr.insee + kc0hwcna-20 + 1 + + fr.insee + CA-kc0hwcna-20 + 1 + Category + + 20 + + + fr.insee + kc0hwcna-21 + 1 + + fr.insee + CA-kc0hwcna-21 + 1 + Category + + 21 + + + + fr.insee + ks4ti31a + 1 + + EDUPROX + + Regular + + Ordinal + + + fr.insee + ks4ti31a-1 + 1 + + fr.insee + CA-ks4ti31a-1 + 1 + Category + + 1 + + + fr.insee + ks4ti31a-2 + 1 + + fr.insee + CA-ks4ti31a-2 + 1 + Category + + 2 + + + fr.insee + ks4ti31a-3 + 1 + + fr.insee + CA-ks4ti31a-3 + 1 + Category + + 3 + + + fr.insee + ks4ti31a-4 + 1 + + fr.insee + CA-ks4ti31a-4 + 1 + Category + + 4 + + + + fr.insee + lnd4szkp + 1 + + OBJEDUX + + Regular + + Ordinal + + + fr.insee + lnd4szkp-1 + 1 + + fr.insee + CA-lnd4szkp-1 + 1 + Category + + 1 + + + fr.insee + lnd4szkp-2 + 1 + + fr.insee + CA-lnd4szkp-2 + 1 + Category + + 2 + + + fr.insee + lnd4szkp-3 + 1 + + fr.insee + CA-lnd4szkp-3 + 1 + Category + + 3 + + + + fr.insee + lnd5atf0 + 1 + + F_IMPROVEX + + Regular + + Ordinal + + + fr.insee + lnd5atf0-1 + 1 + + fr.insee + CA-lnd5atf0-1 + 1 + Category + + 1 + + + fr.insee + lnd5atf0-2 + 1 + + fr.insee + CA-lnd5atf0-2 + 1 + Category + + 2 + + + fr.insee + lnd5atf0-3 + 1 + + fr.insee + CA-lnd5atf0-3 + 1 + Category + + 3 + + + fr.insee + lnd5atf0-4 + 1 + + fr.insee + CA-lnd5atf0-4 + 1 + Category + + 4 + + + fr.insee + lnd5atf0-5 + 1 + + fr.insee + CA-lnd5atf0-5 + 1 + Category + + 5 + + + fr.insee + lnd5atf0-6 + 1 + + fr.insee + CA-lnd5atf0-6 + 1 + Category + + 6 + + + + fr.insee + lnd5ixy9 + 1 + + F_SKILLS + + Regular + + Ordinal + + + fr.insee + lnd5ixy9-1 + 1 + + fr.insee + CA-lnd5ixy9-1 + 1 + Category + + 1 + + + fr.insee + lnd5ixy9-2 + 1 + + fr.insee + CA-lnd5ixy9-2 + 1 + Category + + 2 + + + fr.insee + lnd5ixy9-3 + 1 + + fr.insee + CA-lnd5ixy9-3 + 1 + Category + + 3 + + + fr.insee + lnd5ixy9-4 + 1 + + fr.insee + CA-lnd5ixy9-4 + 1 + Category + + 4 + + + + fr.insee + kc0i2zi7 + 1 + + admx + + Regular + + Ordinal + + + fr.insee + kc0i2zi7-1 + 1 + + fr.insee + CA-kc0i2zi7-1 + 1 + Category + + 1 + + + fr.insee + kc0i2zi7-2 + 1 + + fr.insee + CA-kc0i2zi7-2 + 1 + Category + + 2 + + + fr.insee + kc0i2zi7-3 + 1 + + fr.insee + CA-kc0i2zi7-3 + 1 + Category + + 3 + + + fr.insee + kc0i2zi7-4 + 1 + + fr.insee + CA-kc0i2zi7-4 + 1 + Category + + 4 + + + + fr.insee + ks5vh364 + 1 + + RAIADMX + + Regular + + Ordinal + + + fr.insee + ks5vh364-1 + 1 + + fr.insee + CA-ks5vh364-1 + 1 + Category + + 1 + + + fr.insee + ks5vh364-2 + 1 + + fr.insee + CA-ks5vh364-2 + 1 + Category + + 2 + + + fr.insee + ks5vh364-3 + 1 + + fr.insee + CA-ks5vh364-3 + 1 + Category + + 3 + + + fr.insee + ks5vh364-4 + 1 + + fr.insee + CA-ks5vh364-4 + 1 + Category + + 4 + + + + fr.insee + ks5vvjjr + 1 + + DEMADMX + + Regular + + Ordinal + + + fr.insee + ks5vvjjr-1 + 1 + + fr.insee + CA-ks5vvjjr-1 + 1 + Category + + 1 + + + fr.insee + ks5vvjjr-2 + 1 + + fr.insee + CA-ks5vvjjr-2 + 1 + Category + + 2 + + + fr.insee + ks5vvjjr-3 + 1 + + fr.insee + CA-ks5vvjjr-3 + 1 + Category + + 3 + + + fr.insee + ks5vvjjr-4 + 1 + + fr.insee + CA-ks5vvjjr-4 + 1 + Category + + 4 + + + fr.insee + ks5vvjjr-5 + 1 + + fr.insee + CA-ks5vvjjr-5 + 1 + Category + + 5 + + + + fr.insee + lnd7mpuh + 1 + + PROADMX + + Regular + + Ordinal + + + fr.insee + lnd7mpuh-1 + 1 + + fr.insee + CA-lnd7mpuh-1 + 1 + Category + + 1 + + + fr.insee + lnd7mpuh-2 + 1 + + fr.insee + CA-lnd7mpuh-2 + 1 + Category + + 2 + + + fr.insee + lnd7mpuh-3 + 1 + + fr.insee + CA-lnd7mpuh-3 + 1 + Category + + 3 + + + fr.insee + lnd7mpuh-4 + 1 + + fr.insee + CA-lnd7mpuh-4 + 1 + Category + + 4 + + + fr.insee + lnd7mpuh-5 + 1 + + fr.insee + CA-lnd7mpuh-5 + 1 + Category + + 5 + + + fr.insee + lnd7mpuh-6 + 1 + + fr.insee + CA-lnd7mpuh-6 + 1 + Category + + 6 + + + + fr.insee + kc0ihwo1 + 1 + + aidadmx + + Regular + + Ordinal + + + fr.insee + kc0ihwo1-1 + 1 + + fr.insee + CA-kc0ihwo1-1 + 1 + Category + + 1 + + + fr.insee + kc0ihwo1-2 + 1 + + fr.insee + CA-kc0ihwo1-2 + 1 + Category + + 2 + + + fr.insee + kc0ihwo1-3 + 1 + + fr.insee + CA-kc0ihwo1-3 + 1 + Category + + 3 + + + fr.insee + kc0ihwo1-4 + 1 + + fr.insee + CA-kc0ihwo1-4 + 1 + Category + + 4 + + + fr.insee + kc0ihwo1-5 + 1 + + fr.insee + CA-kc0ihwo1-5 + 1 + Category + + 5 + + + + fr.insee + kc0irri6 + 1 + + renadmx + + Regular + + Ordinal + + + fr.insee + kc0irri6-1 + 1 + + fr.insee + CA-kc0irri6-1 + 1 + Category + + 1 + + + fr.insee + kc0irri6-2 + 1 + + fr.insee + CA-kc0irri6-2 + 1 + Category + + 2 + + + fr.insee + kc0irri6-3 + 1 + + fr.insee + CA-kc0irri6-3 + 1 + Category + + 3 + + + fr.insee + kc0irri6-4 + 1 + + fr.insee + CA-kc0irri6-4 + 1 + Category + + 4 + + + fr.insee + kc0irri6-5 + 1 + + fr.insee + CA-kc0irri6-5 + 1 + Category + + 5 + + + fr.insee + kc0irri6-6 + 1 + + fr.insee + CA-kc0irri6-6 + 1 + Category + + 6 + + + fr.insee + kc0irri6-7 + 1 + + fr.insee + CA-kc0irri6-7 + 1 + Category + + 7 + + + fr.insee + kc0irri6-8 + 1 + + fr.insee + CA-kc0irri6-8 + 1 + Category + + 8 + + + fr.insee + kc0irri6-9 + 1 + + fr.insee + CA-kc0irri6-9 + 1 + Category + + 9 + + + + fr.insee + kc0j0auj + 1 + + datecom + + Regular + + Ordinal + + + fr.insee + kc0j0auj-1 + 1 + + fr.insee + CA-kc0j0auj-1 + 1 + Category + + 1 + + + fr.insee + kc0j0auj-2 + 1 + + fr.insee + CA-kc0j0auj-2 + 1 + Category + + 2 + + + fr.insee + kc0j0auj-3 + 1 + + fr.insee + CA-kc0j0auj-3 + 1 + Category + + 3 + + + fr.insee + kc0j0auj-4 + 1 + + fr.insee + CA-kc0j0auj-4 + 1 + Category + + 4 + + + + fr.insee + kc0isivg + 1 + + achatxx + + Regular + + Ordinal + + + fr.insee + kc0isivg-1 + 1 + + fr.insee + CA-kc0isivg-1 + 1 + Category + + 1 + + + fr.insee + kc0isivg-2 + 1 + + fr.insee + CA-kc0isivg-2 + 1 + Category + + 2 + + + fr.insee + kc0isivg-3 + 1 + + fr.insee + CA-kc0isivg-3 + 1 + Category + + 3 + + + fr.insee + kc0isivg-4 + 1 + + fr.insee + CA-kc0isivg-4 + 1 + Category + + 4 + + + fr.insee + kc0isivg-5 + 1 + + fr.insee + CA-kc0isivg-5 + 1 + Category + + 5 + + + fr.insee + kc0isivg-6 + 1 + + fr.insee + CA-kc0isivg-6 + 1 + Category + + 6 + + + fr.insee + kc0isivg-7 + 1 + + fr.insee + CA-kc0isivg-7 + 1 + Category + + 7 + + + fr.insee + kc0isivg-8 + 1 + + fr.insee + CA-kc0isivg-8 + 1 + Category + + 8 + + + fr.insee + kc0isivg-9 + 1 + + fr.insee + CA-kc0isivg-9 + 1 + Category + + 9 + + + fr.insee + kc0isivg-10 + 1 + + fr.insee + CA-kc0isivg-10 + 1 + Category + + 10 + + + fr.insee + kc0isivg-11 + 1 + + fr.insee + CA-kc0isivg-11 + 1 + Category + + 11 + + + fr.insee + kc0isivg-12 + 1 + + fr.insee + CA-kc0isivg-12 + 1 + Category + + 12 + + + fr.insee + kc0isivg-13 + 1 + + fr.insee + CA-kc0isivg-13 + 1 + Category + + 13 + + + fr.insee + kc0isivg-14 + 1 + + fr.insee + CA-kc0isivg-14 + 1 + Category + + 14 + + + fr.insee + kc0isivg-15 + 1 + + fr.insee + CA-kc0isivg-15 + 1 + Category + + 15 + + + + fr.insee + lnd813te + 1 + + ABACHAX + + Regular + + Ordinal + + + fr.insee + lnd813te-1 + 1 + + fr.insee + CA-lnd813te-1 + 1 + Category + + 1 + + + fr.insee + lnd813te-2 + 1 + + fr.insee + CA-lnd813te-2 + 1 + Category + + 2 + + + fr.insee + lnd813te-3 + 1 + + fr.insee + CA-lnd813te-3 + 1 + Category + + 3 + + + + fr.insee + lnd87up6 + 1 + + SERACHAX + + Regular + + Ordinal + + + fr.insee + lnd87up6-1 + 1 + + fr.insee + CA-lnd87up6-1 + 1 + Category + + 1 + + + fr.insee + lnd87up6-2 + 1 + + fr.insee + CA-lnd87up6-2 + 1 + Category + + 2 + + + fr.insee + lnd87up6-3 + 1 + + fr.insee + CA-lnd87up6-3 + 1 + Category + + 3 + + + fr.insee + lnd87up6-4 + 1 + + fr.insee + CA-lnd87up6-4 + 1 + Category + + 4 + + + fr.insee + lnd87up6-5 + 1 + + fr.insee + CA-lnd87up6-5 + 1 + Category + + 5 + + + fr.insee + lnd87up6-6 + 1 + + fr.insee + CA-lnd87up6-6 + 1 + Category + + 6 + + + fr.insee + lnd87up6-7 + 1 + + fr.insee + CA-lnd87up6-7 + 1 + Category + + 7 + + + + fr.insee + lnd82qav + 1 + + PAYACHAX + + Regular + + Ordinal + + + fr.insee + lnd82qav-1 + 1 + + fr.insee + CA-lnd82qav-1 + 1 + Category + + 1 + + + fr.insee + lnd82qav-2 + 1 + + fr.insee + CA-lnd82qav-2 + 1 + Category + + 2 + + + fr.insee + lnd82qav-3 + 1 + + fr.insee + CA-lnd82qav-3 + 1 + Category + + 3 + + + fr.insee + lnd82qav-4 + 1 + + fr.insee + CA-lnd82qav-4 + 1 + Category + + 4 + + + fr.insee + lnd82qav-5 + 1 + + fr.insee + CA-lnd82qav-5 + 1 + Category + + 5 + + + fr.insee + lnd82qav-6 + 1 + + fr.insee + CA-lnd82qav-6 + 1 + Category + + 6 + + + fr.insee + lnd82qav-7 + 1 + + fr.insee + CA-lnd82qav-7 + 1 + Category + + 7 + + + + fr.insee + kc0jlyo1 + 1 + + financex + + Regular + + Ordinal + + + fr.insee + kc0jlyo1-1 + 1 + + fr.insee + CA-kc0jlyo1-1 + 1 + Category + + 1 + + + fr.insee + kc0jlyo1-2 + 1 + + fr.insee + CA-kc0jlyo1-2 + 1 + Category + + 2 + + + fr.insee + kc0jlyo1-3 + 1 + + fr.insee + CA-kc0jlyo1-3 + 1 + Category + + 3 + + + fr.insee + kc0jlyo1-4 + 1 + + fr.insee + CA-kc0jlyo1-4 + 1 + Category + + 4 + + + + fr.insee + lndboeeg + 1 + + HOMEIOTX + + Regular + + Ordinal + + + fr.insee + lndboeeg-1 + 1 + + fr.insee + CA-lndboeeg-1 + 1 + Category + + 1 + + + fr.insee + lndboeeg-2 + 1 + + fr.insee + CA-lndboeeg-2 + 1 + Category + + 2 + + + fr.insee + lndboeeg-3 + 1 + + fr.insee + CA-lndboeeg-3 + 1 + Category + + 3 + + + fr.insee + lndboeeg-4 + 1 + + fr.insee + CA-lndboeeg-4 + 1 + Category + + 4 + + + fr.insee + lndboeeg-5 + 1 + + fr.insee + CA-lndboeeg-5 + 1 + Category + + 5 + + + + fr.insee + lndbybkr + 1 + + RAISIOTX + + Regular + + Ordinal + + + fr.insee + lndbybkr-1 + 1 + + fr.insee + CA-lndbybkr-1 + 1 + Category + + 1 + + + fr.insee + lndbybkr-2 + 1 + + fr.insee + CA-lndbybkr-2 + 1 + Category + + 2 + + + fr.insee + lndbybkr-3 + 1 + + fr.insee + CA-lndbybkr-3 + 1 + Category + + 3 + + + fr.insee + lndbybkr-4 + 1 + + fr.insee + CA-lndbybkr-4 + 1 + Category + + 4 + + + fr.insee + lndbybkr-5 + 1 + + fr.insee + CA-lndbybkr-5 + 1 + Category + + 5 + + + fr.insee + lndbybkr-6 + 1 + + fr.insee + CA-lndbybkr-6 + 1 + Category + + 6 + + + fr.insee + lndbybkr-7 + 1 + + fr.insee + CA-lndbybkr-7 + 1 + Category + + 7 + + + fr.insee + lndbybkr-8 + 1 + + fr.insee + CA-lndbybkr-8 + 1 + Category + + 8 + + + fr.insee + lndbybkr-9 + 1 + + fr.insee + CA-lndbybkr-9 + 1 + Category + + 9 + + + + fr.insee + lndcb21u + 1 + + TVIOTX + + Regular + + Ordinal + + + fr.insee + lndcb21u-1 + 1 + + fr.insee + CA-lndcb21u-1 + 1 + Category + + 1 + + + fr.insee + lndcb21u-2 + 1 + + fr.insee + CA-lndcb21u-2 + 1 + Category + + 2 + + + fr.insee + lndcb21u-3 + 1 + + fr.insee + CA-lndcb21u-3 + 1 + Category + + 3 + + + fr.insee + lndcb21u-4 + 1 + + fr.insee + CA-lndcb21u-4 + 1 + Category + + 4 + + + + fr.insee + lndce7bj + 1 + + AUTIOTX + + Regular + + Ordinal + + + fr.insee + lndce7bj-1 + 1 + + fr.insee + CA-lndce7bj-1 + 1 + Category + + 1 + + + fr.insee + lndce7bj-2 + 1 + + fr.insee + CA-lndce7bj-2 + 1 + Category + + 2 + + + fr.insee + lndce7bj-3 + 1 + + fr.insee + CA-lndce7bj-3 + 1 + Category + + 3 + + + fr.insee + lndce7bj-4 + 1 + + fr.insee + CA-lndce7bj-4 + 1 + Category + + 4 + + + fr.insee + lndce7bj-5 + 1 + + fr.insee + CA-lndce7bj-5 + 1 + Category + + 5 + + + + fr.insee + lndcser6 + 1 + + PBIOTX + + Regular + + Ordinal + + + fr.insee + lndcser6-1 + 1 + + fr.insee + CA-lndcser6-1 + 1 + Category + + 1 + + + fr.insee + lndcser6-2 + 1 + + fr.insee + CA-lndcser6-2 + 1 + Category + + 2 + + + fr.insee + lndcser6-3 + 1 + + fr.insee + CA-lndcser6-3 + 1 + Category + + 3 + + + fr.insee + lndcser6-4 + 1 + + fr.insee + CA-lndcser6-4 + 1 + Category + + 4 + + + fr.insee + lndcser6-5 + 1 + + fr.insee + CA-lndcser6-5 + 1 + Category + + 5 + + + + fr.insee + lrholu47 + 1 + + GREENA + + Regular + + Ordinal + + + fr.insee + lrholu47-1 + 1 + + fr.insee + CA-lrholu47-1 + 1 + Category + + 1 + + + fr.insee + lrholu47-2 + 1 + + fr.insee + CA-lrholu47-2 + 1 + Category + + 2 + + + fr.insee + lrholu47-3 + 1 + + fr.insee + CA-lrholu47-3 + 1 + Category + + 3 + + + fr.insee + lrholu47-4 + 1 + + fr.insee + CA-lrholu47-4 + 1 + Category + + 4 + + + fr.insee + lrholu47-5 + 1 + + fr.insee + CA-lrholu47-5 + 1 + Category + + 5 + + + fr.insee + lrholu47-6 + 1 + + fr.insee + CA-lrholu47-6 + 1 + Category + + 6 + + + + fr.insee + lnucbojk + 1 + + GREENB + + Regular + + Ordinal + + + fr.insee + lnucbojk-1 + 1 + + fr.insee + CA-lnucbojk-1 + 1 + Category + + 1 + + + fr.insee + lnucbojk-2 + 1 + + fr.insee + CA-lnucbojk-2 + 1 + Category + + 2 + + + fr.insee + lnucbojk-3 + 1 + + fr.insee + CA-lnucbojk-3 + 1 + Category + + 3 + + + fr.insee + lnucbojk-4 + 1 + + fr.insee + CA-lnucbojk-4 + 1 + Category + + 4 + + + fr.insee + lnucbojk-5 + 1 + + fr.insee + CA-lnucbojk-5 + 1 + Category + + 5 + + + fr.insee + lnucbojk-6 + 1 + + fr.insee + CA-lnucbojk-6 + 1 + Category + + 6 + + + + fr.insee + lnucnu3i + 1 + + GREENC + + Regular + + Ordinal + + + fr.insee + lnucnu3i-1 + 1 + + fr.insee + CA-lnucnu3i-1 + 1 + Category + + 1 + + + fr.insee + lnucnu3i-2 + 1 + + fr.insee + CA-lnucnu3i-2 + 1 + Category + + 2 + + + fr.insee + lnucnu3i-3 + 1 + + fr.insee + CA-lnucnu3i-3 + 1 + Category + + 3 + + + fr.insee + lnucnu3i-4 + 1 + + fr.insee + CA-lnucnu3i-4 + 1 + Category + + 4 + + + fr.insee + lnucnu3i-5 + 1 + + fr.insee + CA-lnucnu3i-5 + 1 + Category + + 5 + + + fr.insee + lnucnu3i-6 + 1 + + fr.insee + CA-lnucnu3i-6 + 1 + Category + + 6 + + + + fr.insee + lnudc60s + 1 + + CARGREENX + + Regular + + Ordinal + + + fr.insee + lnudc60s-1 + 1 + + fr.insee + CA-lnudc60s-1 + 1 + Category + + 1 + + + fr.insee + lnudc60s-2 + 1 + + fr.insee + CA-lnudc60s-2 + 1 + Category + + 2 + + + fr.insee + lnudc60s-3 + 1 + + fr.insee + CA-lnudc60s-3 + 1 + Category + + 3 + + + fr.insee + lnudc60s-4 + 1 + + fr.insee + CA-lnudc60s-4 + 1 + Category + + 4 + + + fr.insee + lnudc60s-5 + 1 + + fr.insee + CA-lnudc60s-5 + 1 + Category + + 5 + + + fr.insee + lnudc60s-6 + 1 + + fr.insee + CA-lnudc60s-6 + 1 + Category + + 6 + + + fr.insee + lnudc60s-7 + 1 + + fr.insee + CA-lnudc60s-7 + 1 + Category + + 7 + + + fr.insee + lnudc60s-8 + 1 + + fr.insee + CA-lnudc60s-8 + 1 + Category + + 8 + + + fr.insee + lnudc60s-9 + 1 + + fr.insee + CA-lnudc60s-9 + 1 + Category + + 9 + + + + fr.insee + lnue216n + 1 + + F_FIXE + + Regular + + Ordinal + + + fr.insee + lnue216n-1 + 1 + + fr.insee + CA-lnue216n-1 + 1 + Category + + 1 + + + fr.insee + lnue216n-2 + 1 + + fr.insee + CA-lnue216n-2 + 1 + Category + + 2 + + + fr.insee + lnue216n-3 + 1 + + fr.insee + CA-lnue216n-3 + 1 + Category + + 3 + + + fr.insee + lnue216n-4 + 1 + + fr.insee + CA-lnue216n-4 + 1 + Category + + 4 + + + + fr.insee + lnuebhbp + 1 + + F_ORDIX + + Regular + + Ordinal + + + fr.insee + lnuebhbp-1 + 1 + + fr.insee + CA-lnuebhbp-1 + 1 + Category + + 1 + + + fr.insee + lnuebhbp-2 + 1 + + fr.insee + CA-lnuebhbp-2 + 1 + Category + + 2 + + + fr.insee + lnuebhbp-3 + 1 + + fr.insee + CA-lnuebhbp-3 + 1 + Category + + 3 + + + fr.insee + lnuebhbp-4 + 1 + + fr.insee + CA-lnuebhbp-4 + 1 + Category + + 4 + + + fr.insee + lnuebhbp-5 + 1 + + fr.insee + CA-lnuebhbp-5 + 1 + Category + + 5 + + + + fr.insee + kc0mv555 + 1 + + smartphonex + + Regular + + Ordinal + + + fr.insee + kc0mv555-1 + 1 + + fr.insee + CA-kc0mv555-1 + 1 + Category + + 1 + + + fr.insee + kc0mv555-2 + 1 + + fr.insee + CA-kc0mv555-2 + 1 + Category + + 2 + + + fr.insee + kc0mv555-3 + 1 + + fr.insee + CA-kc0mv555-3 + 1 + Category + + 3 + + + + fr.insee + lnuef84j + 1 + + F_DURSMART + + Regular + + Ordinal + + + fr.insee + lnuef84j-1 + 1 + + fr.insee + CA-lnuef84j-1 + 1 + Category + + 1 + + + fr.insee + lnuef84j-2 + 1 + + fr.insee + CA-lnuef84j-2 + 1 + Category + + 2 + + + fr.insee + lnuef84j-3 + 1 + + fr.insee + CA-lnuef84j-3 + 1 + Category + + 3 + + + fr.insee + lnuef84j-4 + 1 + + fr.insee + CA-lnuef84j-4 + 1 + Category + + 4 + + + + fr.insee + lnue9cua + 1 + + F_ETASMART + + Regular + + Ordinal + + + fr.insee + lnue9cua-1 + 1 + + fr.insee + CA-lnue9cua-1 + 1 + Category + + 1 + + + fr.insee + lnue9cua-2 + 1 + + fr.insee + CA-lnue9cua-2 + 1 + Category + + 2 + + + fr.insee + lnue9cua-3 + 1 + + fr.insee + CA-lnue9cua-3 + 1 + Category + + 3 + + + + fr.insee + lnuenvlm + 1 + + F_RAISMARTX + + Regular + + Ordinal + + + fr.insee + lnuenvlm-1 + 1 + + fr.insee + CA-lnuenvlm-1 + 1 + Category + + 1 + + + fr.insee + lnuenvlm-2 + 1 + + fr.insee + CA-lnuenvlm-2 + 1 + Category + + 2 + + + fr.insee + lnuenvlm-3 + 1 + + fr.insee + CA-lnuenvlm-3 + 1 + Category + + 3 + + + fr.insee + lnuenvlm-4 + 1 + + fr.insee + CA-lnuenvlm-4 + 1 + Category + + 4 + + + fr.insee + lnuenvlm-5 + 1 + + fr.insee + CA-lnuenvlm-5 + 1 + Category + + 5 + + + fr.insee + lnuenvlm-6 + 1 + + fr.insee + CA-lnuenvlm-6 + 1 + Category + + 6 + + + fr.insee + lnuenvlm-7 + 1 + + fr.insee + CA-lnuenvlm-7 + 1 + Category + + 7 + + + + fr.insee + lqb2fmkm + 1 + + Ecran1 + + Regular + + Ordinal + + + fr.insee + lqb2fmkm-1 + 1 + + fr.insee + CA-lqb2fmkm-1 + 1 + Category + + 1 + + + fr.insee + lqb2fmkm-2 + 1 + + fr.insee + CA-lqb2fmkm-2 + 1 + Category + + 2 + + + fr.insee + lqb2fmkm-3 + 1 + + fr.insee + CA-lqb2fmkm-3 + 1 + Category + + 3 + + + fr.insee + lqb2fmkm-4 + 1 + + fr.insee + CA-lqb2fmkm-4 + 1 + Category + + 4 + + + fr.insee + lqb2fmkm-5 + 1 + + fr.insee + CA-lqb2fmkm-5 + 1 + Category + + 5 + + + fr.insee + lqb2fmkm-6 + 1 + + fr.insee + CA-lqb2fmkm-6 + 1 + Category + + 6 + + + + fr.insee + lqb2hzst + 1 + + Ecran_2 + + Regular + + Ordinal + + + fr.insee + lqb2hzst-1 + 1 + + fr.insee + CA-lqb2hzst-1 + 1 + Category + + 1 + + + fr.insee + lqb2hzst-2 + 1 + + fr.insee + CA-lqb2hzst-2 + 1 + Category + + 2 + + + fr.insee + lqb2hzst-3 + 1 + + fr.insee + CA-lqb2hzst-3 + 1 + Category + + 3 + + + fr.insee + lqb2hzst-4 + 1 + + fr.insee + CA-lqb2hzst-4 + 1 + Category + + 4 + + + fr.insee + lqb2hzst-5 + 1 + + fr.insee + CA-lqb2hzst-5 + 1 + Category + + 5 + + + fr.insee + lqb2hzst-6 + 1 + + fr.insee + CA-lqb2hzst-6 + 1 + Category + + 6 + + + + fr.insee + lnufhdix + 1 + + F_TELECONX + + Regular + + Ordinal + + + fr.insee + lnufhdix-1 + 1 + + fr.insee + CA-lnufhdix-1 + 1 + Category + + 1 + + + fr.insee + lnufhdix-2 + 1 + + fr.insee + CA-lnufhdix-2 + 1 + Category + + 2 + + + fr.insee + lnufhdix-3 + 1 + + fr.insee + CA-lnufhdix-3 + 1 + Category + + 3 + + + fr.insee + lnufhdix-4 + 1 + + fr.insee + CA-lnufhdix-4 + 1 + Category + + 4 + + + + fr.insee + lnufyusq + 1 + + F_TELEOUIXX + + Regular + + Ordinal + + + fr.insee + lnufyusq-1 + 1 + + fr.insee + CA-lnufyusq-1 + 1 + Category + + 1 + + + fr.insee + lnufyusq-2 + 1 + + fr.insee + CA-lnufyusq-2 + 1 + Category + + 2 + + + fr.insee + lnufyusq-3 + 1 + + fr.insee + CA-lnufyusq-3 + 1 + Category + + 3 + + + fr.insee + lnufyusq-4 + 1 + + fr.insee + CA-lnufyusq-4 + 1 + Category + + 4 + + + fr.insee + lnufyusq-5 + 1 + + fr.insee + CA-lnufyusq-5 + 1 + Category + + 5 + + + fr.insee + lnufyusq-6 + 1 + + fr.insee + CA-lnufyusq-6 + 1 + Category + + 6 + + + fr.insee + lnufyusq-7 + 1 + + fr.insee + CA-lnufyusq-7 + 1 + Category + + 7 + + + fr.insee + lnufyusq-8 + 1 + + fr.insee + CA-lnufyusq-8 + 1 + Category + + 8 + + + fr.insee + lnufyusq-9 + 1 + + fr.insee + CA-lnufyusq-9 + 1 + Category + + 9 + + + fr.insee + lnufyusq-10 + 1 + + fr.insee + CA-lnufyusq-10 + 1 + Category + + 10 + + + + fr.insee + lnufwvel + 1 + + F_TELENONX + + Regular + + Ordinal + + + fr.insee + lnufwvel-1 + 1 + + fr.insee + CA-lnufwvel-1 + 1 + Category + + 1 + + + fr.insee + lnufwvel-2 + 1 + + fr.insee + CA-lnufwvel-2 + 1 + Category + + 2 + + + fr.insee + lnufwvel-3 + 1 + + fr.insee + CA-lnufwvel-3 + 1 + Category + + 3 + + + fr.insee + lnufwvel-4 + 1 + + fr.insee + CA-lnufwvel-4 + 1 + Category + + 4 + + + fr.insee + lnufwvel-5 + 1 + + fr.insee + CA-lnufwvel-5 + 1 + Category + + 5 + + + fr.insee + lnufwvel-6 + 1 + + fr.insee + CA-lnufwvel-6 + 1 + Category + + 6 + + + fr.insee + lnufwvel-7 + 1 + + fr.insee + CA-lnufwvel-7 + 1 + Category + + 7 + + + + fr.insee + kc0n7y7a + 1 + + situa + + Regular + + Ordinal + + + fr.insee + kc0n7y7a-1 + 1 + + fr.insee + CA-kc0n7y7a-1 + 1 + Category + + 1 + + + fr.insee + kc0n7y7a-2 + 1 + + fr.insee + CA-kc0n7y7a-2 + 1 + Category + + 2 + + + fr.insee + kc0n7y7a-3 + 1 + + fr.insee + CA-kc0n7y7a-3 + 1 + Category + + 3 + + + fr.insee + kc0n7y7a-4 + 1 + + fr.insee + CA-kc0n7y7a-4 + 1 + Category + + 4 + + + fr.insee + kc0n7y7a-5 + 1 + + fr.insee + CA-kc0n7y7a-5 + 1 + Category + + 5 + + + fr.insee + kc0n7y7a-6 + 1 + + fr.insee + CA-kc0n7y7a-6 + 1 + Category + + 6 + + + fr.insee + kc0n7y7a-7 + 1 + + fr.insee + CA-kc0n7y7a-7 + 1 + Category + + 7 + + + + fr.insee + lpv0f7wm + 1 + + oui_non_2 + + Regular + + Ordinal + + + fr.insee + lpv0f7wm-1 + 1 + + fr.insee + CA-lpv0f7wm-1 + 1 + Category + + 1 + + + fr.insee + lpv0f7wm-2 + 1 + + fr.insee + CA-lpv0f7wm-2 + 1 + Category + + 2 + + + + fr.insee + kc0nedap + 1 + + statut + + Regular + + Ordinal + + + fr.insee + kc0nedap-1 + 1 + + fr.insee + CA-kc0nedap-1 + 1 + Category + + 1 + + + fr.insee + kc0nedap-2 + 1 + + fr.insee + CA-kc0nedap-2 + 1 + Category + + 2 + + + fr.insee + kc0nedap-3 + 1 + + fr.insee + CA-kc0nedap-3 + 1 + Category + + 3 + + + fr.insee + kc0nedap-4 + 1 + + fr.insee + CA-kc0nedap-4 + 1 + Category + + 4 + + + fr.insee + kc0nedap-5 + 1 + + fr.insee + CA-kc0nedap-5 + 1 + Category + + 5 + + + + fr.insee + lox2f78d + 1 + + position_public + + Regular + + Ordinal + + + fr.insee + lox2f78d-1 + 1 + + fr.insee + CA-lox2f78d-1 + 1 + Category + + 1 + + + fr.insee + lox2f78d-2 + 1 + + fr.insee + CA-lox2f78d-2 + 1 + Category + + 2 + + + fr.insee + lox2f78d-3 + 1 + + fr.insee + CA-lox2f78d-3 + 1 + Category + + 3 + + + fr.insee + lox2f78d-4 + 1 + + fr.insee + CA-lox2f78d-4 + 1 + Category + + 4 + + + fr.insee + lox2f78d-5 + 1 + + fr.insee + CA-lox2f78d-5 + 1 + Category + + 5 + + + fr.insee + lox2f78d-6 + 1 + + fr.insee + CA-lox2f78d-6 + 1 + Category + + 6 + + + fr.insee + lox2f78d-7 + 1 + + fr.insee + CA-lox2f78d-7 + 1 + Category + + 7 + + + + fr.insee + lows9fg9 + 1 + + position_prive + + Regular + + Ordinal + + + fr.insee + lows9fg9-1 + 1 + + fr.insee + CA-lows9fg9-1 + 1 + Category + + 1 + + + fr.insee + lows9fg9-2 + 1 + + fr.insee + CA-lows9fg9-2 + 1 + Category + + 2 + + + fr.insee + lows9fg9-3 + 1 + + fr.insee + CA-lows9fg9-3 + 1 + Category + + 3 + + + fr.insee + lows9fg9-4 + 1 + + fr.insee + CA-lows9fg9-4 + 1 + Category + + 4 + + + fr.insee + lows9fg9-5 + 1 + + fr.insee + CA-lows9fg9-5 + 1 + Category + + 5 + + + fr.insee + lows9fg9-6 + 1 + + fr.insee + CA-lows9fg9-6 + 1 + Category + + 6 + + + fr.insee + lows9fg9-7 + 1 + + fr.insee + CA-lows9fg9-7 + 1 + Category + + 7 + + + + fr.insee + kc0qcptw + 1 + + nombresal + + Regular + + Ordinal + + + fr.insee + kc0qcptw-1 + 1 + + fr.insee + CA-kc0qcptw-1 + 1 + Category + + 1 + + + fr.insee + kc0qcptw-2 + 1 + + fr.insee + CA-kc0qcptw-2 + 1 + Category + + 2 + + + fr.insee + kc0qcptw-3 + 1 + + fr.insee + CA-kc0qcptw-3 + 1 + Category + + 3 + + + fr.insee + kc0qcptw-4 + 1 + + fr.insee + CA-kc0qcptw-4 + 1 + Category + + 4 + + + + fr.insee + kc0ntlza + 1 + + contrat + + Regular + + Ordinal + + + fr.insee + kc0ntlza-1 + 1 + + fr.insee + CA-kc0ntlza-1 + 1 + Category + + 1 + + + fr.insee + kc0ntlza-2 + 1 + + fr.insee + CA-kc0ntlza-2 + 1 + Category + + 2 + + + + fr.insee + kc0oigqa + 1 + + duree_emp + + Regular + + Ordinal + + + fr.insee + kc0oigqa-1 + 1 + + fr.insee + CA-kc0oigqa-1 + 1 + Category + + 1 + + + fr.insee + kc0oigqa-2 + 1 + + fr.insee + CA-kc0oigqa-2 + 1 + Category + + 2 + + + + fr.insee + ks4ttfz8 + 1 + + SANTE + + Regular + + Ordinal + + + fr.insee + ks4ttfz8-1 + 1 + + fr.insee + CA-ks4ttfz8-1 + 1 + Category + + 1 + + + fr.insee + ks4ttfz8-2 + 1 + + fr.insee + CA-ks4ttfz8-2 + 1 + Category + + 2 + + + fr.insee + ks4ttfz8-3 + 1 + + fr.insee + CA-ks4ttfz8-3 + 1 + Category + + 3 + + + + fr.insee + kc0qmn36 + 1 + + tranche de revenus + + Regular + + Ordinal + + + fr.insee + kc0qmn36-1 + 1 + + fr.insee + CA-kc0qmn36-1 + 1 + Category + + 1 + + + fr.insee + kc0qmn36-2 + 1 + + fr.insee + CA-kc0qmn36-2 + 1 + Category + + 2 + + + fr.insee + kc0qmn36-3 + 1 + + fr.insee + CA-kc0qmn36-3 + 1 + Category + + 3 + + + fr.insee + kc0qmn36-4 + 1 + + fr.insee + CA-kc0qmn36-4 + 1 + Category + + 4 + + + fr.insee + kc0qmn36-5 + 1 + + fr.insee + CA-kc0qmn36-5 + 1 + Category + + 5 + + + fr.insee + kc0qmn36-6 + 1 + + fr.insee + CA-kc0qmn36-6 + 1 + Category + + 6 + + + fr.insee + kc0qmn36-7 + 1 + + fr.insee + CA-kc0qmn36-7 + 1 + Category + + 7 + + + fr.insee + kc0qmn36-8 + 1 + + fr.insee + CA-kc0qmn36-8 + 1 + Category + + 8 + + + fr.insee + kc0qmn36-9 + 1 + + fr.insee + CA-kc0qmn36-9 + 1 + Category + + 9 + + + fr.insee + kc0qmn36-10 + 1 + + fr.insee + CA-kc0qmn36-10 + 1 + Category + + 10 + + + + fr.insee + INSEE-COMMUN-CL-Booleen + 1 + + Booleen + + Regular + + Ordinal + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + Category + + 1 + + + + + fr.insee + VariableScheme-lseh1s0t + 1 + + Variable Scheme for the survey + + + fr.insee + kbw8gkz1 + 1 + + AGEMILLESIME + + + Age en millesime (AGEMILLESIME) + + + fr.insee + kbw8gkz1-VROP + 1 + + + + fr.insee + kbw8gkz1-GI + 1 + GenerationInstruction + + + fr.insee + kbw8gkz1-GOP + 1 + OutParameter + + + fr.insee + kbw8gkz1-VROP + 1 + OutParameter + + + + + + 0 + 120 + + Decimal + + + + + fr.insee + kbw8vq36 + 1 + + FUTURANNIVERSAIRE + + + booleen anniversaire à venir dans l'annee (FUTURANNIVERSAIRE) + + + fr.insee + kbw8vq36-VROP + 1 + + + + fr.insee + kbw8vq36-GI + 1 + GenerationInstruction + + + fr.insee + kbw8vq36-GOP + 1 + OutParameter + + + fr.insee + kbw8vq36-VROP + 1 + OutParameter + + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kbw8o4fh + 1 + + AGE + + + Age de l'enquêté + + + fr.insee + kbw8o4fh-VROP + 1 + + + + fr.insee + kbw8o4fh-GI + 1 + GenerationInstruction + + + fr.insee + kbw8o4fh-GOP + 1 + OutParameter + + + fr.insee + kbw8o4fh-VROP + 1 + OutParameter + + + + + années + + 0 + 120 + + Decimal + + + + + fr.insee + kbwb38is + 1 + + sommehab + + + sommehab + + + fr.insee + kbwb38is-VROP + 1 + + + + fr.insee + kbwb38is-GI + 1 + GenerationInstruction + + + fr.insee + kbwb38is-GOP + 1 + OutParameter + + + fr.insee + kbwb38is-VROP + 1 + OutParameter + + + + + + 0 + 99 + + Decimal + + + + + fr.insee + ky9xfqnt + 1 + + plusieurnatio + + + plusieurnatio + + + fr.insee + ky9xfqnt-VROP + 1 + + + + fr.insee + ky9xfqnt-GI + 1 + GenerationInstruction + + + fr.insee + ky9xfqnt-GOP + 1 + OutParameter + + + fr.insee + ky9xfqnt-VROP + 1 + OutParameter + + + + + + + + fr.insee + ky9y6ltv + 1 + + KISHPOTENTIEL + + + Comptage 15 ans et plus + + + fr.insee + ky9y6ltv-VROP + 1 + + + + fr.insee + ky9y6ltv-GI + 1 + GenerationInstruction + + + fr.insee + ky9y6ltv-GOP + 1 + OutParameter + + + fr.insee + ky9y6ltv-VROP + 1 + OutParameter + + + + + + 0 + 1 + + Decimal + + + + + fr.insee + ky9yaq7z + 1 + + SUMKISHPOT + + + Somme 15 ans et plus + + + fr.insee + ky9yaq7z-VROP + 1 + + + + fr.insee + ky9yaq7z-GI + 1 + GenerationInstruction + + + fr.insee + ky9yaq7z-GOP + 1 + OutParameter + + + fr.insee + ky9yaq7z-VROP + 1 + OutParameter + + + + + + 0 + 30 + + Decimal + + + + + fr.insee + kyehc16s + 1 + + ANNEEENQ + + + ANNEEENQ + + + fr.insee + kyehc16s-VROP + 1 + + + + fr.insee + kyehc16s-GI + 1 + GenerationInstruction + + + fr.insee + kyehc16s-GOP + 1 + OutParameter + + + fr.insee + kyehc16s-VROP + 1 + OutParameter + + + + + + 0 + 9999 + + Decimal + + + + + fr.insee + kyehebkw + 1 + + JOURENQ + + + JOURENQ + + + fr.insee + kyehebkw-VROP + 1 + + + + fr.insee + kyehebkw-GI + 1 + GenerationInstruction + + + fr.insee + kyehebkw-GOP + 1 + OutParameter + + + fr.insee + kyehebkw-VROP + 1 + OutParameter + + + + + + 0 + 31 + + Decimal + + + + + fr.insee + kyeh87nb + 1 + + MOISENQ + + + MOISENQ + + + fr.insee + kyeh87nb-VROP + 1 + + + + fr.insee + kyeh87nb-GI + 1 + GenerationInstruction + + + fr.insee + kyeh87nb-GOP + 1 + OutParameter + + + fr.insee + kyeh87nb-VROP + 1 + OutParameter + + + + + + 0 + 11 + + Decimal + + + + + fr.insee + lp12dtpu + 1 + + MOIS_NAISSANCE_INT + + + MOIS_NAISSANCE_INT + + + fr.insee + lp12dtpu-VROP + 1 + + + + fr.insee + lp12dtpu-GI + 1 + GenerationInstruction + + + fr.insee + lp12dtpu-GOP + 1 + OutParameter + + + fr.insee + lp12dtpu-VROP + 1 + OutParameter + + + + + + + + fr.insee + lp12iwwj + 1 + + JOUR_NAISSANCE_STR + + + Jour de naissance (pour Kish) + + + fr.insee + lp12iwwj-VROP + 1 + + + + fr.insee + lp12iwwj-GI + 1 + GenerationInstruction + + + fr.insee + lp12iwwj-GOP + 1 + OutParameter + + + fr.insee + lp12iwwj-VROP + 1 + OutParameter + + + + + + + + fr.insee + lp173330 + 1 + + SCORE_KISH + + + Score pour calcul Kish + + + fr.insee + lp173330-VROP + 1 + + + + fr.insee + lp173330-GI + 1 + GenerationInstruction + + + fr.insee + lp173330-GOP + 1 + OutParameter + + + fr.insee + lp173330-VROP + 1 + OutParameter + + + + + + + + fr.insee + lp19vha2 + 1 + + KISH_MIN + + + Calcul du Kish minimal + + + fr.insee + lp19vha2-VROP + 1 + + + + fr.insee + lp19vha2-GI + 1 + GenerationInstruction + + + fr.insee + lp19vha2-GOP + 1 + OutParameter + + + fr.insee + lp19vha2-VROP + 1 + OutParameter + + + + + + + + fr.insee + lp1a2kmb + 1 + + SCORE_KISH_INT + + + Passage score en numérique + + + fr.insee + lp1a2kmb-VROP + 1 + + + + fr.insee + lp1a2kmb-GI + 1 + GenerationInstruction + + + fr.insee + lp1a2kmb-GOP + 1 + OutParameter + + + fr.insee + lp1a2kmb-VROP + 1 + OutParameter + + + + + + + + fr.insee + lp1a8gdv + 1 + + NB_POTENTIAL_KISH + + + Nombre de KIsh potentiels + + + fr.insee + lp1a8gdv-VROP + 1 + + + + fr.insee + lp1a8gdv-GI + 1 + GenerationInstruction + + + fr.insee + lp1a8gdv-GOP + 1 + OutParameter + + + fr.insee + lp1a8gdv-VROP + 1 + OutParameter + + + + + + 0 + 40 + + Decimal + + + + + fr.insee + lp1ao7mu + 1 + + KISH_INDICATOR + + + Indicatrice du Kish + + + fr.insee + lp1ao7mu-VROP + 1 + + + + fr.insee + lp1ao7mu-GI + 1 + GenerationInstruction + + + fr.insee + lp1ao7mu-GOP + 1 + OutParameter + + + fr.insee + lp1ao7mu-VROP + 1 + OutParameter + + + + + + + + fr.insee + lph5f314 + 1 + + ANNEE_NAISSANCE_STR + + + Année de naissance de l'enquêté + + + fr.insee + lph5f314-VROP + 1 + + + + fr.insee + lph5f314-GI + 1 + GenerationInstruction + + + fr.insee + lph5f314-GOP + 1 + OutParameter + + + fr.insee + lph5f314-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0ntxu9 + 1 + + emploi + + + emploi + + + fr.insee + kc0ntxu9-VROP + 1 + + + + fr.insee + kc0ntxu9-GI + 1 + GenerationInstruction + + + fr.insee + kc0ntxu9-GOP + 1 + OutParameter + + + fr.insee + kc0ntxu9-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0nt601 + 1 + + emploi2 + + + emploi2 + + + fr.insee + kc0nt601-VROP + 1 + + + + fr.insee + kc0nt601-GI + 1 + GenerationInstruction + + + fr.insee + kc0nt601-GOP + 1 + OutParameter + + + fr.insee + kc0nt601-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0o7r0w + 1 + + emploi3 + + + emploi3 + + + fr.insee + kc0o7r0w-VROP + 1 + + + + fr.insee + kc0o7r0w-GI + 1 + GenerationInstruction + + + fr.insee + kc0o7r0w-GOP + 1 + OutParameter + + + fr.insee + kc0o7r0w-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0oacnr + 1 + + emploi4 + + + emploi4 + + + fr.insee + kc0oacnr-VROP + 1 + + + + fr.insee + kc0oacnr-GI + 1 + GenerationInstruction + + + fr.insee + kc0oacnr-GOP + 1 + OutParameter + + + fr.insee + kc0oacnr-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0omjjm + 1 + + emploi8 + + + emploi8 + + + fr.insee + kc0omjjm-VROP + 1 + + + + fr.insee + kc0omjjm-GI + 1 + GenerationInstruction + + + fr.insee + kc0omjjm-GOP + 1 + OutParameter + + + fr.insee + kc0omjjm-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0p4gs7 + 1 + + emploi11 + + + emploi11 + + + fr.insee + kc0p4gs7-VROP + 1 + + + + fr.insee + kc0p4gs7-GI + 1 + GenerationInstruction + + + fr.insee + kc0p4gs7-GOP + 1 + OutParameter + + + fr.insee + kc0p4gs7-VROP + 1 + OutParameter + + + + + + + + fr.insee + kc0qj6l6 + 1 + + emploi12 + + + emploi12 + + + fr.insee + kc0qj6l6-VROP + 1 + + + + fr.insee + kc0qj6l6-GI + 1 + GenerationInstruction + + + fr.insee + kc0qj6l6-GOP + 1 + OutParameter + + + fr.insee + kc0qj6l6-VROP + 1 + OutParameter + + + + + + + + fr.insee + lox17mtt + 1 + + profession_c + + + profession_c + + + fr.insee + lox17mtt-VROP + 1 + + + + fr.insee + lox17mtt-GI + 1 + GenerationInstruction + + + fr.insee + lox17mtt-GOP + 1 + OutParameter + + + fr.insee + lox17mtt-VROP + 1 + OutParameter + + + + + + + + fr.insee + lox17exc + 1 + + professionclairp_c + + + professionclairp_c + + + fr.insee + lox17exc-VROP + 1 + + + + fr.insee + lox17exc-GI + 1 + GenerationInstruction + + + fr.insee + lox17exc-GOP + 1 + OutParameter + + + fr.insee + lox17exc-VROP + 1 + OutParameter + + + + + + + + fr.insee + lq2k2i3h + 1 + + PROFESSIONCLAIR_NORM + + + Libellé PROFESSIONCLAIR normalisé (PROFESSIONCLAIR_NORM) + + + fr.insee + lq2k2i3h-VROP + 1 + + + + fr.insee + lq2k2i3h-GI + 1 + GenerationInstruction + + + fr.insee + lq2k2i3h-GOP + 1 + OutParameter + + + fr.insee + lq2k2i3h-VROP + 1 + OutParameter + + + + + + + + fr.insee + lq2kgikz + 1 + + PROFESSIONCLAIR_FLOUS + + + PROFESSIONCLAIR appartient à liste des libellés flous 2024 (PROFESSIONCLAIR_FLOUS) + + + fr.insee + lq2kgikz-VROP + 1 + + + + fr.insee + lq2kgikz-GI + 1 + GenerationInstruction + + + fr.insee + lq2kgikz-GOP + 1 + OutParameter + + + fr.insee + lq2kgikz-VROP + 1 + OutParameter + + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lox6fu5k + 1 + + RESIDENCE + + + RESIDENCE label + + + fr.insee + lox6eoqy-QOP-lox6bm1z + 1 + OutParameter + + + fr.insee + lox6eoqy + 1 + QuestionItem + + + + + fr.insee + lox6814k + 1 + CodeList + + + + + + fr.insee + lox6f33h + 1 + + POLITES + + + POLITES label + + + fr.insee + lox62xmp-QOP-lox6dn7d + 1 + OutParameter + + + fr.insee + lox62xmp + 1 + QuestionItem + + + + + fr.insee + lox67843 + 1 + CodeList + + + + + + fr.insee + lpttuy84 + 1 + + DEBUT + + + DEBUT label + + + fr.insee + lptucl00-QOP-lptuokz8 + 1 + OutParameter + + + fr.insee + lptucl00 + 1 + QuestionItem + + + + + fr.insee + lptubo1v + 1 + CodeList + + + + + + fr.insee + loyjnhbh + 1 + + NBHABT + + + NBHABT label + + + fr.insee + loyjheaw-QOP-loylr0ax + 1 + OutParameter + + + fr.insee + loyjheaw + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + loyjpcdj + 1 + + PRENOM_TEL + + + PRENOM_TEL label + + + fr.insee + loyjwgx0-QOP-loyll4w6 + 1 + OutParameter + + + fr.insee + loyjwgx0 + 1 + QuestionItem + + + + + + + fr.insee + lp6y1gvu + 1 + + SEXE_TEL + + + SEXE_TEL label + + + fr.insee + loyl5bbb-QOP-loylv0km + 1 + OutParameter + + + fr.insee + loyl5bbb + 1 + QuestionItem + + + + + fr.insee + loykwrxi + 1 + CodeList + + + + + + fr.insee + loylcjxu + 1 + + DATENAIS_TEL + + + DATENAIS_TEL label + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + fr.insee + loyl4wyc + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2024-07-01 + + + + + + fr.insee + loyl9pq7 + 1 + + PASSER + + + PASSER label + + + fr.insee + loylambf-QOP-loylmlhn + 1 + OutParameter + + + fr.insee + loylambf + 1 + QuestionItem + + + + + fr.insee + loylh7zv + 1 + CodeList + + + + + + fr.insee + loylhrp8 + 1 + + IS_KISH + + + IS_KISH label + + + fr.insee + loylmcrg-QOP-loylwjqt + 1 + OutParameter + + + fr.insee + loylmcrg + 1 + QuestionItem + + + + + fr.insee + loyls2wd + 1 + CodeList + + + + + + fr.insee + lq5fv2eo + 1 + + PRESAKO + + + PRESAKO label + + + fr.insee + loylqm0o-QOP-loym3okn + 1 + OutParameter + + + fr.insee + loylqm0o + 1 + QuestionItem + + + + + fr.insee + loylid8o + 1 + CodeList + + + + + + fr.insee + l5qrark2 + 1 + + DIPLOME + + + DIPLOME label + + + fr.insee + kbw8yqwv-QOP-kbw94lhc + 1 + OutParameter + + + fr.insee + kbw8yqwv + 1 + QuestionItem + + + + + fr.insee + kbw8w2j7 + 1 + CodeList + + + + + + fr.insee + kwktozze + 1 + + ETUDE + + + ETUDE label + + + fr.insee + kbw97gaf-QOP-kbw9l1s9 + 1 + OutParameter + + + fr.insee + kbw97gaf + 1 + QuestionItem + + + + + fr.insee + kbw9j1g0 + 1 + CodeList + + + + + + fr.insee + kwkthkph + 1 + + COUPLE + + + COUPLE label + + + fr.insee + kbw9jgd2-QOP-kbw9hp4z + 1 + OutParameter + + + fr.insee + kbw9jgd2 + 1 + QuestionItem + + + + + fr.insee + kbw9fu8f + 1 + CodeList + + + + + + fr.insee + kwktnvjy + 1 + + ETAMATRI + + + ETAMATRI label + + + fr.insee + kbw9i35f-QOP-kbw9k7kk + 1 + OutParameter + + + fr.insee + kbw9i35f + 1 + QuestionItem + + + + + fr.insee + kbw9oep5 + 1 + CodeList + + + + + + fr.insee + lq2l4l9v + 1 + + PACS + + + PACS label + + + fr.insee + kbw9gttr-QOP-kbw9omdm + 1 + OutParameter + + + fr.insee + kbw9gttr + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq5f67ny + 1 + + LNAIS + + + LNAIS label + + + fr.insee + kbw9rrbt-QOP-kbw9i9ec + 1 + OutParameter + + + fr.insee + kbw9rrbt + 1 + QuestionItem + + + + + fr.insee + kbw9mytb + 1 + CodeList + + + + + + fr.insee + kwm5aab7 + 1 + + DEPNAIS + + + DEPNAIS label + + + fr.insee + kbw9r169-QOP-kbwa8xdj + 1 + OutParameter + + + fr.insee + kbw9r169 + 1 + QuestionItem + + + + + fr.insee + kbw9u1cu + 1 + CodeList + + + + + + fr.insee + kbwac54g + 1 + + PAYSNAIS + + + Pays de naissance de l'enquêté + + + fr.insee + kbwanueu-QOP-kbwaiq6l + 1 + OutParameter + + + fr.insee + kbwanueu + 1 + QuestionItem + + + + + fr.insee + kbwakjtt + 1 + CodeList + + + + + + fr.insee + kwm71ada + 1 + + NATIO1N1 + + + 1 - Français(e) de naissance, y compris par réintégration + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + OutParameter + + + fr.insee + kbwafrus + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwm6s38p + 1 + + NATIO1N2 + + + 2 - Français(e) par naturalisation, mariage, déclaration ou option à votre majorité + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + OutParameter + + + fr.insee + kbwafrus + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwm6qpqv + 1 + + NATIO1N3 + + + 3 - Étranger(ère) + + + fr.insee + kbwafrus-QOP-kwmb49mu + 1 + OutParameter + + + fr.insee + kbwafrus + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwm6odp0 + 1 + + NATIO1N4 + + + 4 - Apatride + + + fr.insee + kbwafrus-QOP-kwmay4fv + 1 + OutParameter + + + fr.insee + kbwafrus + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwm60nhm + 1 + + NATIO2N + + + NATIO2N label + + + fr.insee + kbwanqdo-QOP-kbwavom8 + 1 + OutParameter + + + fr.insee + kbwanqdo + 1 + QuestionItem + + + + + fr.insee + kbway7s0 + 1 + CodeList + + + + + + fr.insee + lq2kzh80 + 1 + + NET + + + NET label + + + fr.insee + kc0gq6qv-QOP-kc0h0gps + 1 + OutParameter + + + fr.insee + kc0gq6qv + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lnbxo4i4 + 1 + + F_DEBITX1 + + + 1 - Une connexion à très haut débit au réseau fixe (par la fibre, le câble, le WI-FI ou par satellite, au moins 30Mbit/s) + + + fr.insee + kuznl5ba-QOP-lnby5sw0 + 1 + OutParameter + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbxylck + 1 + + F_DEBITX2 + + + 2 - Une connexion à haut débit au réseau fixe (par l'ADSL, le câble, le WI-FI ou par satellite) + + + fr.insee + kuznl5ba-QOP-lnbyaj6d + 1 + OutParameter + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbxw4zd + 1 + + F_DEBITX3 + + + 3 - Une connexion à haut débit au réseau mobile (téléphone, tablette ou ordinateur portable) par la 3G, la 4G ou la 5G + + + fr.insee + kuznl5ba-QOP-lnbxw9v4 + 1 + OutParameter + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbxlnla + 1 + + F_DEBITX4 + + + 4 - Une connexion fixe à bas débit à l’aide d’un modem (réseau téléphonique classique) + + + fr.insee + kuznl5ba-QOP-lnbxxb1a + 1 + OutParameter + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbxs16x + 1 + + F_DEBITX5 + + + 5 - Une connexion mobile à bas débit sur un téléphone portable (GSM, GPRS, EDGE) + + + fr.insee + kuznl5ba-QOP-lnby7qgh + 1 + OutParameter + + + fr.insee + kuznl5ba + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwixxo + 1 + + F_HDEB1 + + + 1 - Les membres de votre foyer y ont accès ailleurs + + + fr.insee + lnbwa2sl-QOP-lnby1c4f + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwj8d2 + 1 + + F_HDEB2 + + + 2 - L'installation ou l'abonnement au très haut débit coûte trop cher + + + fr.insee + lnbwa2sl-QOP-lnby44if + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwe55j + 1 + + F_HDEB3 + + + 3 - Le très haut débit n'est pas disponible à l'endroit où vous vivez + + + fr.insee + lnbwa2sl-QOP-lnbyaj1x + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwnmew + 1 + + F_HDEB4 + + + 4 - L'installation n'est pas possible techniquement + + + fr.insee + lnbwa2sl-QOP-lnbybgrm + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwjpwp + 1 + + F_HDEB5 + + + 5 - Vous n'en avez pas l'utilité, votre connexion actuelle vous suffit + + + fr.insee + lnbwa2sl-QOP-lnby6790 + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnbwcfrl + 1 + + F_HDEB6 + + + 6 - Pour une autre raison + + + fr.insee + lnbwa2sl-QOP-lnby4672 + 1 + OutParameter + + + fr.insee + lnbwa2sl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwm7u52d + 1 + + NUSEWEB + + + NUSEWEB label + + + fr.insee + kc0h7448-QOP-kc0hndcc + 1 + OutParameter + + + fr.insee + kc0h7448 + 1 + QuestionItem + + + + + fr.insee + kc0hgqph + 1 + CodeList + + + + + + fr.insee + l5qrr6sw + 1 + + USEWEB + + + USEWEB label + + + fr.insee + kc0haj1j-QOP-kc0he2xy + 1 + OutParameter + + + fr.insee + kc0haj1j + 1 + QuestionItem + + + + + fr.insee + kc0he7f0 + 1 + CodeList + + + + + + fr.insee + lq5ema46 + 1 + + PRATINTXX1 + + + 1 - Envoyer et recevoir des e-mails + + + fr.insee + kc0hyu5k-QOP-lq5fp0us + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5exbyp + 1 + + PRATINTXX2 + + + 2 - Téléphoner (ou passer des appels vidéo) par Internet, par exemple via Skype, Messenger, WhatsApp, Facetime, Viber, Snapchat, Zoom ou Teams... + + + fr.insee + kc0hyu5k-QOP-lq5fh949 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5epdf4 + 1 + + PRATINTXX3 + + + 3 - Créer un profil ou poster des messages sur les réseaux sociaux (Facebook, Twitter, Instagram, Snapchat, TikTok, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fp32f + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5f3egi + 1 + + PRATINTXX4 + + + 4 - Utiliser une messagerie instantanée, c’est-à-dire échanger des messages, par exemple via Skype, Messenger, WhatsApp, Viber ou Snapchat + + + fr.insee + kc0hyu5k-QOP-lq5f7bzd + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eut3n + 1 + + PRATINTXX5 + + + 5 - Rechercher des informations sur des produits et services (horaires de transport, catalogues en ligne, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fnqsz + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5esg5j + 1 + + PRATINTXX6 + + + 6 - Lire des journaux, des magazines ou consulter des sites d’actualité + + + fr.insee + kc0hyu5k-QOP-lq5f7h9u + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eya4b + 1 + + PRATINTXX7 + + + 7 - Exprimer des opinions sur des questions civiques ou politiques via des sites web ou médias sociaux (Facebook, Twitter, Instagram, YouTube, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5f5pp2 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eoj2y + 1 + + PRATINTXX8 + + + 8 - Participer à des consultations ou des votes en ligne sur des questions civiques ou politiques (plan d’urbanisation, signature d’une pétition, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fg0y2 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5em8yj + 1 + + PRATINTXX9 + + + 9 - Télécharger ou écouter de la musique (radio en ligne, musique en streaming, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5flzel + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5esabx + 1 + + PRATINTXX10 + + + 10 - Regarder la télévision sur Internet (en direct ou en replay) sur les sites des chaînes TV (TF1, France 3, MyCanal, W9, TMC, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fnbv7 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5f1ala + 1 + + PRATINTXX11 + + + 11 - Regarder des vidéos à la demande à partir de services commerciaux (Netflix, HBO MAX, Amazon Prime Vidéo, Apple TV+, Disney+, Showtime, Salto, etc) + + + fr.insee + kc0hyu5k-QOP-lq5foc8i + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eo2vi + 1 + + PRATINTXX12 + + + 12 - Regarder des vidéos depuis des services de partage (Youtube, Instagram, TikTok, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fbf7d + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eurvs + 1 + + PRATINTXX13 + + + 13 - Jouer ou télécharger des jeux + + + fr.insee + kc0hyu5k-QOP-lq5f6m3o + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5etf2f + 1 + + PRATINTXX14 + + + 14 - Écouter ou télécharger des podcasts + + + fr.insee + kc0hyu5k-QOP-lq5facrr + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eubx2 + 1 + + PRATINTXX15 + + + 15 - Rechercher des informations liées à la santé (ex : sur une maladie, des blessures, la nutrition ou l’amélioration de la santé) + + + fr.insee + kc0hyu5k-QOP-lq5f6bn0 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eqnq1 + 1 + + PRATINTXX16 + + + 16 - Prendre un rendez-vous avec un praticien de santé (avec un médecin, à l’hôpital, dans un centre de santé, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fc14s + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5eyvvg + 1 + + PRATINTXX17 + + + 17 - Accéder à un dossier médical personnel en ligne + + + fr.insee + kc0hyu5k-QOP-lq5finzp + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5elyh3 + 1 + + PRATINTXX18 + + + 18 - Utiliser d’autres services de santé plutôt que se rendre à l’hôpital ou consulter un médecin (obtenir une ordonnance ou une consultation en ligne, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fb4c6 + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5ewd3b + 1 + + PRATINTXX19 + + + 19 - Vendre des produits et services sur des sites en ligne ou applications (eBay, Leboncoin, Facebook Marketplace, Vinted, etc.) + + + fr.insee + kc0hyu5k-QOP-lq5fob3f + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5enmaq + 1 + + PRATINTXX20 + + + 20 - Accéder à votre compte bancaire + + + fr.insee + kc0hyu5k-QOP-lq5feqnb + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5et6xk + 1 + + PRATINTXX21 + + + 21 - Vous n’avez effectué aucune de ces activités + + + fr.insee + kc0hyu5k-QOP-lq5fn7vv + 1 + OutParameter + + + fr.insee + kc0hyu5k + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsh73v + 1 + + EDUPROX1 + + + 1 - Suivre des cours en ligne + + + fr.insee + ks4tje5l-QOP-l5qsbjcn + 1 + OutParameter + + + fr.insee + ks4tje5l + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qrzfmo + 1 + + EDUPROX2 + + + 2 - Utiliser des supports de formation autres que des cours en ligne (supports audiovisuels, logiciels d’apprentissage en ligne, manuels électroniques, applications d’apprentissage etc.) + + + fr.insee + ks4tje5l-QOP-l5qss6oe + 1 + OutParameter + + + fr.insee + ks4tje5l + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsfscc + 1 + + EDUPROX3 + + + 3 - Échanger avec des enseignants ou des étudiants à l’aide d’outils audio ou vidéo en ligne (Zoom, MS Teams, Google Classroom, etc.) + + + fr.insee + ks4tje5l-QOP-l5qsqkz5 + 1 + OutParameter + + + fr.insee + ks4tje5l + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsj7bs + 1 + + EDUPROX4 + + + 4 - Vous n’avez pratiqué aucune activité de formation sur Internet. + + + fr.insee + ks4tje5l-QOP-l5qsepmx + 1 + OutParameter + + + fr.insee + ks4tje5l + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd4xiqr + 1 + + OBJEDUX1 + + + 1 - Dans un cadre scolaire (école, université, etc.) + + + fr.insee + lnd4rdph-QOP-lnd680q9 + 1 + OutParameter + + + fr.insee + lnd4rdph + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd4yu4r + 1 + + OBJEDUX2 + + + 2 - Pour des raisons professionnelles ou liées au travail + + + fr.insee + lnd4rdph-QOP-lnd5y670 + 1 + OutParameter + + + fr.insee + lnd4rdph + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd4sc3t + 1 + + OBJEDUX3 + + + 3 - Pour des raisons personnelles + + + fr.insee + lnd4rdph-QOP-lnd6139f + 1 + OutParameter + + + fr.insee + lnd4rdph + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd5l793 + 1 + + F_IMPROVEX1 + + + 1 - Vous avez suivi une formation gratuite en ligne ou étudié de manière autonome à l’aide d’un tutoriel gratuit + + + fr.insee + lnd5kw2d-QOP-lnd61gz7 + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd59qdi + 1 + + F_IMPROVEX2 + + + 2 - Vous vous êtes formé(e) avec l’aide de votre entourage (par exemple avec des collègues, des voisins, des proches…) + + + fr.insee + lnd5kw2d-QOP-lnd5ttaw + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd5a6of + 1 + + F_IMPROVEX3 + + + 3 - Vous avez suivi une formation gratuite dispensée par des programmes publics ou des associations + + + fr.insee + lnd5kw2d-QOP-lnd5uk3h + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd5ej7u + 1 + + F_IMPROVEX4 + + + 4 - Vous avez suivi une formation payée par vos soins + + + fr.insee + lnd5kw2d-QOP-lnd6bqz6 + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd5fjmg + 1 + + F_IMPROVEX5 + + + 5 - Vous avez suivi une formation payée ou dispensée par votre employeur + + + fr.insee + lnd5kw2d-QOP-lnd5si8z + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd55rfu + 1 + + F_IMPROVEX6 + + + 6 - Vous n’avez réalisé aucune de ces activités de formation + + + fr.insee + lnd5kw2d-QOP-lnd5vhu7 + 1 + OutParameter + + + fr.insee + lnd5kw2d + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5ezn4t + 1 + + F_SKILLS + + + F_SKILLS label + + + fr.insee + lnd64z9l-QOP-lnd5xtpf + 1 + OutParameter + + + fr.insee + lnd64z9l + 1 + QuestionItem + + + + + fr.insee + lnd5ixy9 + 1 + CodeList + + + + + + fr.insee + lq2l58lo + 1 + + REGIST + + + REGIST label + + + fr.insee + lnd5pnag-QOP-lnd5uri7 + 1 + OutParameter + + + fr.insee + lnd5pnag + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2koz7a + 1 + + SUPREGIST + + + SUPREGIST label + + + fr.insee + lnd5x3l5-QOP-lnd8gx94 + 1 + OutParameter + + + fr.insee + lnd5x3l5 + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2kzkz4 + 1 + + PBREGIST + + + PBREGIST label + + + fr.insee + lnd66axd-QOP-lnd8fufu + 1 + OutParameter + + + fr.insee + lnd66axd + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + kwmaxfgd + 1 + + ADMX1 + + + 1 - Accéder à vos données personnelles conservées par les autorités ou les services publics (informations sur vos droits à pension, sur votre santé, etc.) + + + fr.insee + kc0i0jec-QOP-kwmazv3k + 1 + OutParameter + + + fr.insee + kc0i0jec + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmamn1b + 1 + + ADMX2 + + + 2 - Accéder à des informations dans des bases de données ou des registres publics (disponibilité de livres dans les bibliothèques, registres cadastraux, registres d’entreprises, etc.) + + + fr.insee + kc0i0jec-QOP-kwmb4o86 + 1 + OutParameter + + + fr.insee + kc0i0jec + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmassnb + 1 + + ADMX3 + + + 3 - Obtenir des informations administratives (services, avantages, droits, articles de loi, heures d’ouverture, etc.) + + + fr.insee + kc0i0jec-QOP-kwmb6i3d + 1 + OutParameter + + + fr.insee + kc0i0jec + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmaes2q + 1 + + ADMX4 + + + 4 - Vous n’avez effectué aucune de ces actions. + + + fr.insee + kc0i0jec-QOP-kwmaw31m + 1 + OutParameter + + + fr.insee + kc0i0jec + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq2kyue5 + 1 + + IMPADM + + + IMPADM label + + + fr.insee + ks5vgahz-QOP-ks5vi3ij + 1 + OutParameter + + + fr.insee + ks5vgahz + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2knz4i + 1 + + RDVADM + + + RDVADM label + + + fr.insee + ks5vqq6b-QOP-ks5vefod + 1 + OutParameter + + + fr.insee + ks5vqq6b + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2kqcxu + 1 + + MESADM + + + MESADM label + + + fr.insee + ks5vhf4w-QOP-ks5vmp70 + 1 + OutParameter + + + fr.insee + ks5vhf4w + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2l4w0g + 1 + + DECLADM + + + DECLADM label + + + fr.insee + ks5vgp57-QOP-ks5vtqus + 1 + OutParameter + + + fr.insee + ks5vgp57 + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + l5qsh61p + 1 + + RAIADMX1 + + + 1 - Demander des documents officiels ou des certificats (diplôme, acte de naissance, de mariage ou de décès, certificat de divorce, attestation de domicile, extrait du casier judiciaire, etc.) + + + fr.insee + ks5vdqs4-QOP-l5qsic6y + 1 + OutParameter + + + fr.insee + ks5vdqs4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qs9zs8 + 1 + + RAIADMX2 + + + 2 - Demander des prestations ou des droits (pension de retraite, chômage, allocations familiales, inscription à l’école ou l’université, etc.) + + + fr.insee + ks5vdqs4-QOP-l5qs9n5l + 1 + OutParameter + + + fr.insee + ks5vdqs4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsm5ty + 1 + + RAIADMX3 + + + 3 - Formuler d’autres demandes, réclamations ou plaintes (signaler un vol à la police, déposer plainte devant la Justice, demander une aide juridique, engager une procédure civile devant un tribunal, etc.) + + + fr.insee + ks5vdqs4-QOP-l5qsrxdz + 1 + OutParameter + + + fr.insee + ks5vdqs4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsjwk4 + 1 + + RAIADMX4 + + + 4 - Vous n’avez effectué aucune de ces actions + + + fr.insee + ks5vdqs4-QOP-l5qsc84x + 1 + OutParameter + + + fr.insee + ks5vdqs4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmcem4k + 1 + + DEMADMX1 + + + 1 - Vous n’avez pas eu besoin de demander de document ni de faire de réclamation + + + fr.insee + ks5vnmgt-QOP-kwmcigfw + 1 + OutParameter + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmcrlyq + 1 + + DEMADMX2 + + + 2 - Vous manquez de compétence ou de connaissance (vous ne saviez pas comment vous servir du site Web ou il était trop compliqué à utiliser) + + + fr.insee + ks5vnmgt-QOP-kwmckybs + 1 + OutParameter + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmcpgmj + 1 + + DEMADMX3 + + + 3 - Vous avez des inquiétudes concernant la sécurité de vos données personnelles ou vous refusez de payer en ligne (crainte d’une fraude à la carte bancaire, etc.) + + + fr.insee + ks5vnmgt-QOP-kwmckiz6 + 1 + OutParameter + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmcbl0g + 1 + + DEMADMX4 + + + 4 - Une autre personne l’a fait en votre nom (un conseiller, un parent, etc.) + + + fr.insee + ks5vnmgt-QOP-kwmcylnt + 1 + OutParameter + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwmcgwja + 1 + + DEMADMX5 + + + 5 - Pour une autre raison + + + fr.insee + ks5vnmgt-QOP-kwmcs5mx + 1 + OutParameter + + + fr.insee + ks5vnmgt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7e7jn + 1 + + PROADMX1 + + + 1 - Le site ou l’application était difficile à utiliser (interface peu compréhensible, formulation compliquée, procédure mal expliquée, etc.) + + + fr.insee + lnd7ni7e-QOP-lnd8lf32 + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7gt02 + 1 + + PROADMX2 + + + 2 - Des problèmes techniques sont survenus lors de l’utilisation (chargement long, site Web en panne, etc.) + + + fr.insee + lnd7ni7e-QOP-lnd8pvwm + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd71fgo + 1 + + PROADMX3 + + + 3 - Il était impossible de payer via le site Web ou l’application (manque d’accès aux moyens de paiement requis, etc.) + + + fr.insee + lnd7ni7e-QOP-lnd8f6hi + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7fd57 + 1 + + PROADMX4 + + + 4 - Il était impossible d’accéder au service par un smartphone ou une tablette (versions d’appareil non compatibles, applications non disponibles, etc.) + + + fr.insee + lnd7ni7e-QOP-lnd8lp83 + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7gz6q + 1 + + PROADMX5 + + + 5 - Un autre problème + + + fr.insee + lnd7ni7e-QOP-lnd8czjz + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd75jx2 + 1 + + PROADMX6 + + + 6 - Je n’ai pas rencontré de problème + + + fr.insee + lnd7ni7e-QOP-lnd8cx7p + 1 + OutParameter + + + fr.insee + lnd7ni7e + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lda1byie + 1 + + F_AIDADMX1 + + + 1 - Oui, auprès de ma famille, d’amis ou de voisins + + + fr.insee + kc0i7d8t-QOP-lda11p1n + 1 + OutParameter + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lda1295g + 1 + + F_AIDADMX2 + + + 2 - Oui, auprès d’un agent de l’administration (France Services, agents de mairie…) + + + fr.insee + kc0i7d8t-QOP-lda197nn + 1 + OutParameter + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lda1d614 + 1 + + F_AIDADMX3 + + + 3 - Oui, auprès d’un travailleur social ou d’une association + + + fr.insee + kc0i7d8t-QOP-lda16296 + 1 + OutParameter + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lda0uj2r + 1 + + F_AIDADMX4 + + + 4 - Oui, auprès d’une autre personne + + + fr.insee + kc0i7d8t-QOP-lda0yh9x + 1 + OutParameter + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lda1d1w9 + 1 + + F_AIDADMX5 + + + 5 - Non + + + fr.insee + kc0i7d8t-QOP-lda10j63 + 1 + OutParameter + + + fr.insee + kc0i7d8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsdt8o + 1 + + F_RENADMX1 + + + 1 - Oui, car le site Internet était en panne ou bloquait + + + fr.insee + kc0is12p-QOP-l5qsr5vo + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qskmrn + 1 + + F_RENADMX2 + + + 2 - Oui, car je n’ai pas eu accès à un ordinateur ou à Internet + + + fr.insee + kc0is12p-QOP-l5qsgsly + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsl0m5 + 1 + + F_RENADMX3 + + + 3 - Oui, car je n’ai pas pu demander ou obtenir de l’aide auprès de mon entourage + + + fr.insee + kc0is12p-QOP-l5qsm2gh + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsp98i + 1 + + F_RENADMX4 + + + 4 - Oui, car l’administration n’a pas répondu à mes questions + + + fr.insee + kc0is12p-QOP-l5qsyby7 + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qso8b4 + 1 + + F_RENADMX5 + + + 5 - Oui, je n’ai même pas essayé car je m’en sentais incapable + + + fr.insee + kc0is12p-QOP-l5qsshvt + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qswdrx + 1 + + F_RENADMX6 + + + 6 - Oui, car cela n’en valait pas la peine (inutile, gain attendu trop faible) + + + fr.insee + kc0is12p-QOP-l5qsrllz + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsvsqf + 1 + + F_RENADMX7 + + + 7 - Oui, car les démarches étaient trop complexes (trop de pièces justificatives, procédure longue) + + + fr.insee + kc0is12p-QOP-l5qsuktj + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsmj3u + 1 + + F_RENADMX8 + + + 8 - Oui, pour une autre raison + + + fr.insee + kc0is12p-QOP-l5qshfk9 + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5qsx2u9 + 1 + + F_RENADMX9 + + + 9 - Non + + + fr.insee + kc0is12p-QOP-l5qsvqkb + 1 + OutParameter + + + fr.insee + kc0is12p + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq2l0blq + 1 + + F_AUTADM + + + F_AUTADM label + + + fr.insee + kc0iso1a-QOP-kc0in9hs + 1 + OutParameter + + + fr.insee + kc0iso1a + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + kwuov9vx + 1 + + DATECOM + + + DATECOM label + + + fr.insee + kc0iuqho-QOP-kc0j4swy + 1 + OutParameter + + + fr.insee + kc0iuqho + 1 + QuestionItem + + + + + fr.insee + kc0j0auj + 1 + CodeList + + + + + + fr.insee + lnd7xe94 + 1 + + ACHATXX1 + + + 1 - Des vêtements (y compris vêtements de sport), chaussures ou accessoires (sacs, bijoux, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8qelb + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7ll50 + 1 + + ACHATXX2 + + + 2 - Des articles de sport (hors vêtements) + + + fr.insee + kc0ijn79-QOP-lnd8qkwb + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7ovnf + 1 + + ACHATXX3 + + + 3 - Des jouets ou des articles pour enfants (couches, biberons, poussettes, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8uqlf + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7vbox + 1 + + ACHATXX4 + + + 4 - Des meubles, accessoires pour la maison (tapis, rideaux, etc.) ou des articles de jardinage (outils, plantes, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8jdby + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7r2kl + 1 + + ACHATXX5 + + + 5 - De la musique (CD, vinyles, etc.), des films ou séries (DVD, Blu-Ray, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8du45 + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7q6pf + 1 + + ACHATXX6 + + + 6 - Des livres, magazines ou journaux papier + + + fr.insee + kc0ijn79-QOP-lnd8kw25 + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7xd1c + 1 + + ACHATXX7 + + + 7 - Des ordinateurs, tablettes, téléphones mobiles ou accessoires informatiques + + + fr.insee + kc0ijn79-QOP-lnd8huar + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd83pwh + 1 + + ACHATXX8 + + + 8 - Des appareils électroniques (téléviseurs, chaînes stéréo, appareils photos, enceintes, assistants vocaux, etc.) ou des appareils électroménagers (machine à laver, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8r9hm + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7okan + 1 + + ACHATXX9 + + + 9 - Des médicaments ou des compléments alimentaires (hors renouvellement d’ordonnance en ligne) + + + fr.insee + kc0ijn79-QOP-lnd8azun + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7r12b + 1 + + ACHATXX10 + + + 10 - Des plats livrés à domicile (via Just Eat, Deliveroo, UberEats, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8uq4q + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7ygie + 1 + + ACHATXX11 + + + 11 - Des produits alimentaires (y compris drive et kits-repas à cuisiner) + + + fr.insee + kc0ijn79-QOP-lnd8hgjh + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd80f8v + 1 + + ACHATXX12 + + + 12 - Des cosmétiques, des articles de beauté ou de bien-être + + + fr.insee + kc0ijn79-QOP-lnd8a4pd + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7l4wg + 1 + + ACHATXX13 + + + 13 - Des produits de nettoyage ou d’hygiène corporelle (brosses à dents, mouchoirs, produits de lessive, etc.) + + + fr.insee + kc0ijn79-QOP-lnd8nwzt + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd8452n + 1 + + ACHATXX14 + + + 14 - Des vélos, motos, voitures ou d’autres véhicules ou leurs pièces détachées + + + fr.insee + kc0ijn79-QOP-lnd8jubz + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7l03r + 1 + + ACHATXX15 + + + 15 - D’autres articles + + + fr.insee + kc0ijn79-QOP-lnd8qx6d + 1 + OutParameter + + + fr.insee + kc0ijn79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd8b0ox + 1 + + ABACHAX1 + + + 1 - Un abonnement à Internet ou de téléphonie mobile + + + fr.insee + lnd86l8j-QOP-lnd8hj37 + 1 + OutParameter + + + fr.insee + lnd86l8j + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7vwft + 1 + + ABACHAX2 + + + 2 - Un abonnement en électricité, eau, chauffage ou services similaires + + + fr.insee + lnd86l8j-QOP-lnd8fqxa + 1 + OutParameter + + + fr.insee + lnd86l8j + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd81njc + 1 + + ABACHAX3 + + + 3 - Aucun de ces abonnements + + + fr.insee + lnd86l8j-QOP-lnd89wkt + 1 + OutParameter + + + fr.insee + lnd86l8j + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd80j2y + 1 + + SERACHAX1 + + + 1 - Un service de transport auprès d’une compagnie de bus, train, avion, taxi (SNCF, Uber, etc.) + + + fr.insee + lnd8amkr-QOP-lnd8axa7 + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd87cr2 + 1 + + SERACHAX2 + + + 2 - Une location de logement auprès d’une entreprise telle qu’un hôtel ou une agence de voyages + + + fr.insee + lnd8amkr-QOP-lnd8s5fg + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd8fllw + 1 + + SERACHAX3 + + + 3 - Un billet pour une manifestation culturelle ou sportive (cinéma, concerts, matchs, foires, etc.) + + + fr.insee + lnd8amkr-QOP-lnd8durp + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd8ctw6 + 1 + + SERACHAX4 + + + 4 - Un livre électronique ou un livre audio téléchargé (y compris les mises à jour) + + + fr.insee + lnd8amkr-QOP-lnd8o5fs + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd7wjoq + 1 + + SERACHAX5 + + + 5 - Un logiciel téléchargé (y compris les mises à jour) + + + fr.insee + lnd8amkr-QOP-lnd8aop4 + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd807db + 1 + + SERACHAX6 + + + 6 - Un jeu en ligne ou téléchargé (y compris les mises à jour) + + + fr.insee + lnd8amkr-QOP-lnd8kbvo + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnd8673q + 1 + + SERACHAX7 + + + 7 - Aucun de ces produits ou services + + + fr.insee + lnd8amkr-QOP-lnd8culf + 1 + OutParameter + + + fr.insee + lnd8amkr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5ezrce + 1 + + PAYACHAX1 + + + 1 - Un service de musique en streaming (Spotify, Deezer, etc.) + + + fr.insee + lnd8oyto-QOP-lq5fejj8 + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5fcu8m + 1 + + PAYACHAX2 + + + 2 - Un service de films, sports ou séries en streaming (Netflix, HBO Max, Amazon prime, Disney+, MyCanal, Apple TV, Showtime, etc.) + + + fr.insee + lnd8oyto-QOP-lq5fmgn8 + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5f7wlv + 1 + + PAYACHAX3 + + + 3 - Un magazine, un site d’information ou un journal en ligne + + + fr.insee + lnd8oyto-QOP-lq5fo1h3 + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5fd8sz + 1 + + PAYACHAX4 + + + 4 - Un service de jeux vidéo à la demande (XBOX Game, GeForce Now, PlayStation Now, etc.) + + + fr.insee + lnd8oyto-QOP-lq5febyh + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5f0ajr + 1 + + PAYACHAX5 + + + 5 - Une application payante liée à la santé ou à la forme physique + + + fr.insee + lnd8oyto-QOP-lq5f7shc + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5fcjbr + 1 + + PAYACHAX6 + + + 6 - Une autre application payante (apprentissage de langues, voyages, météo, etc.) + + + fr.insee + lnd8oyto-QOP-lq5fcx77 + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq5f36y3 + 1 + + PAYACHAX7 + + + 7 - Vous n’avez personnellement payé aucun de ces services + + + fr.insee + lnd8oyto-QOP-lq5f6twe + 1 + OutParameter + + + fr.insee + lnd8oyto + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwupespu + 1 + + FINANCEX1 + + + 1 - Souscrire à une assurance (y compris une assurance voyage lors de l’achat d’un billet d’avion). + + + fr.insee + kc0juxed-QOP-kwupchpe + 1 + OutParameter + + + fr.insee + kc0juxed + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwupennh + 1 + + FINANCEX2 + + + 2 - Contracter un prêt, une hypothèque ou un emprunt auprès d’une banque ou d’un autre fournisseur financier + + + fr.insee + kc0juxed-QOP-kwupd9tf + 1 + OutParameter + + + fr.insee + kc0juxed + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwup6lqs + 1 + + FINANCEX3 + + + 3 - Acheter ou vendre des actions, obligations, parts de fonds de placement ou d’autres actifs financiers + + + fr.insee + kc0juxed-QOP-kwupqb7v + 1 + OutParameter + + + fr.insee + kc0juxed + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + kwupe1da + 1 + + FINANCEX4 + + + 4 - Aucune de ces activités financières + + + fr.insee + kc0juxed-QOP-kwupdwz9 + 1 + OutParameter + + + fr.insee + kc0juxed + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbxa67 + 1 + + HOMEIOTX1 + + + 1 - Appareils pour la gestion de l’énergie de votre maison (thermostat, compteurs électriques, éclairages, plug-ins, etc.) + + + fr.insee + lndbnxta-QOP-lndcmxp7 + 1 + OutParameter + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbmiiz + 1 + + HOMEIOTX2 + + + 2 - Appareils de sécurité pour votre maison (système d’alarme, détecteur de fumée, caméras de sécurité, serrures de porte, etc.) + + + fr.insee + lndbnxta-QOP-lndcspen + 1 + OutParameter + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc72v4 + 1 + + HOMEIOTX3 + + + 3 - Appareils électroménagers (aspirateurs robotisés, réfrigérateurs, fours, machines à café, etc.) + + + fr.insee + lndbnxta-QOP-lndcokyy + 1 + OutParameter + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc4bum + 1 + + HOMEIOTX4 + + + 4 - Assistant virtuel sous forme d’enceinte intelligente ou d’application (Google Home, Amazon Echo ou Alexa, Google Assistant, Siri, Cortana, Bixby, etc.) + + + fr.insee + lndbnxta-QOP-lndcx88t + 1 + OutParameter + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbz3l1 + 1 + + HOMEIOTX5 + + + 5 - Aucun de ces appareils + + + fr.insee + lndbnxta-QOP-lndd58y0 + 1 + OutParameter + + + fr.insee + lndbnxta + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbwifk + 1 + + RAISIOTX1 + + + 1 - Vous ne saviez pas que cela existait + + + fr.insee + lndc97me-QOP-lndd2a0j + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcevit + 1 + + RAISIOTX2 + + + 2 - Vous n'en aviez pas besoin + + + fr.insee + lndc97me-QOP-lndcpqmn + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc1xqe + 1 + + RAISIOTX3 + + + 3 - Les coûts sont trops élevés + + + fr.insee + lndc97me-QOP-lndd17il + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbv9nc + 1 + + RAISIOTX4 + + + 4 - Ils n'étaient pas compatibles avec d'autres dispositifs ou systèmes + + + fr.insee + lndc97me-QOP-lndcwqv9 + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbzvdi + 1 + + RAISIOTX5 + + + 5 - Vous manquez de compétences + + + fr.insee + lndc97me-QOP-lndcvahp + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndbvzdn + 1 + + RAISIOTX6 + + + 6 - Vous êtes préoccupé(e) par la confidentialité et la protection de vos données personnelles + + + fr.insee + lndc97me-QOP-lndctsyq + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc627w + 1 + + RAISIOTX7 + + + 7 - Vous êtes préoccupé(e) par la sécurité (peur du piratage) + + + fr.insee + lndc97me-QOP-lndcv02f + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc859q + 1 + + RAISIOTX8 + + + 8 - Vous êtes préoccupé(e) par la santé (peur que cea entraîne un accident, une blessure, etc.) + + + fr.insee + lndc97me-QOP-lndcz1pb + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc7z6k + 1 + + RAISIOTX9 + + + 9 - Pour une autre raison + + + fr.insee + lndc97me-QOP-lndd3fbj + 1 + OutParameter + + + fr.insee + lndc97me + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndc81ie + 1 + + TVIOTX1 + + + 1 - Une télévision + + + fr.insee + lndcj9fz-QOP-lndd0hai + 1 + OutParameter + + + fr.insee + lndcj9fz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcgpv4 + 1 + + TVIOTX2 + + + 2 - Une console de jeu + + + fr.insee + lndcj9fz-QOP-lndd6bpp + 1 + OutParameter + + + fr.insee + lndcj9fz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcgac0 + 1 + + TVIOTX3 + + + 3 - Un système audio domestique, des enceintes intelligentes + + + fr.insee + lndcj9fz-QOP-lndd0jk8 + 1 + OutParameter + + + fr.insee + lndcj9fz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcam4d + 1 + + TVIOTX4 + + + 4 - Aucun de ces appareils + + + fr.insee + lndcj9fz-QOP-lndcspt5 + 1 + OutParameter + + + fr.insee + lndcj9fz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcrp5g + 1 + + AUTIOTX1 + + + 1 - Un objet connecté porté au quotidien (montre intelligente, bracelet de fitness, lunettes ou casques connectés, traqueurs de sécurité, accessoires, vêtements ou chaussures connectés) + + + fr.insee + lndcjg90-QOP-lndco0sy + 1 + OutParameter + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcyl1o + 1 + + AUTIOTX2 + + + 2 - Un dispositif pour la santé et les soins médicaux (pour contrôler la tension artérielle, le taux de sucre, le poids corporel avec une balance intelligente par exemple, etc.) + + + fr.insee + lndcjg90-QOP-lndd6aqv + 1 + OutParameter + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcws37 + 1 + + AUTIOTX3 + + + 3 - Des jouets (pour les enfants ou pour les adultes), comme des robots, des drones ou des poupées connectés. + + + fr.insee + lndcjg90-QOP-lndcuhub + 1 + OutParameter + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcr9m7 + 1 + + AUTIOTX4 + + + 4 - Une voiture avec accès Internet sans fil intégré + + + fr.insee + lndcjg90-QOP-lndcy1ey + 1 + OutParameter + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcr3fg + 1 + + AUTIOTX5 + + + 5 - Aucun de ces appareils + + + fr.insee + lndcjg90-QOP-lndcqc5j + 1 + OutParameter + + + fr.insee + lndcjg90 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndd55pa + 1 + + PBIOTX1 + + + 1 - Des problèmes de sécurité ou de confidentialité (appareil piraté, problèmes avec la protection des informations privées sur vous ou votre famille, etc.) + + + fr.insee + lndcrv7o-QOP-lndd38cy + 1 + OutParameter + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcwljx + 1 + + PBIOTX2 + + + 2 - Des problèmes de santé (utilisation d’un appareil conduisant à un accident, une blessure ou une maladie, etc.) + + + fr.insee + lndcrv7o-QOP-lndd37cd + 1 + OutParameter + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcvj8p + 1 + + PBIOTX3 + + + 3 - Des difficultés à utiliser l’appareil (installation, configuration, connexion, jumelage de l’appareil, etc.) + + + fr.insee + lndcrv7o-QOP-lndctdru + 1 + OutParameter + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcletu + 1 + + PBIOTX4 + + + 4 - D’autres problèmes (déconnexions, problèmes d’assistance, etc.) + + + fr.insee + lndcrv7o-QOP-lndct3sr + 1 + OutParameter + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lndcyk7v + 1 + + PBIOTX5 + + + 5 - Vous n’avez rencontré aucun problème + + + fr.insee + lndcrv7o-QOP-lndd5noi + 1 + OutParameter + + + fr.insee + lndcrv7o + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lrhouph8 + 1 + + GREENA + + + GREENA label + + + fr.insee + lnucc4yw-QOP-lrhonzx9 + 1 + OutParameter + + + fr.insee + lnucc4yw + 1 + QuestionItem + + + + + fr.insee + lrholu47 + 1 + CodeList + + + + + + fr.insee + lrhodwxq + 1 + + GREENB + + + GREENB label + + + fr.insee + lnuctqyc-QOP-lnuf36ga + 1 + OutParameter + + + fr.insee + lnuctqyc + 1 + QuestionItem + + + + + fr.insee + lnucbojk + 1 + CodeList + + + + + + fr.insee + lnuctzlq + 1 + + GREENC + + + GREENC label + + + fr.insee + lnucrg4j-QOP-lnufm4ao + 1 + OutParameter + + + fr.insee + lnucrg4j + 1 + QuestionItem + + + + + fr.insee + lnucnu3i + 1 + CodeList + + + + + + fr.insee + lnudre1n + 1 + + CARGREENX1 + + + 1 - Le prix + + + fr.insee + lnudc90x-QOP-lnufkxpk + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudxjzc + 1 + + CARGREENX2 + + + 2 - La marque, le design ou la taille + + + fr.insee + lnudc90x-QOP-lnufek2c + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnue7k80 + 1 + + CARGREENX3 + + + 3 - Les caractéristiques matérielles du produit (stockage, vitesse du processeur, caméra, carte graphique, etc) + + + fr.insee + lnudc90x-QOP-lnufgjc8 + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnue5n59 + 1 + + CARGREENX4 + + + 4 - L’éco-conception de l'appareil (produit durable, évolutif et réparables qui nécessite moins de matériaux, emballage respectueux de l'environnement, etc.) + + + fr.insee + lnudc90x-QOP-lnufiitm + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudxa91 + 1 + + CARGREENX5 + + + 5 - La possibilité de prolonger la durée de vie de l'appareil en achetant une garantie supplémentaire + + + fr.insee + lnudc90x-QOP-lnufa5j3 + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudrvlc + 1 + + CARGREENX6 + + + 6 - L’efficacité énergétique de l’appareil + + + fr.insee + lnudc90x-QOP-lnufdnfo + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudvotg + 1 + + CARGREENX7 + + + 7 - Une garantie de reprise proposé par le fabricant ou le vendeur (le fabricant ou le vendeur reprend l'appareil obsolète sans frais ou offre des remises pour acheter un nouvel appareil) + + + fr.insee + lnudc90x-QOP-lnuflw4f + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudt5d6 + 1 + + CARGREENX8 + + + 8 - Vous n’avez pris en compte aucune des caractéristiques mentionnées + + + fr.insee + lnudc90x-QOP-lnufbcrx + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudzopa + 1 + + CARGREENX9 + + + 9 - Vous n'avez jamais acheté aucun de ces appareils + + + fr.insee + lnudc90x-QOP-lnuf3b2e + 1 + OutParameter + + + fr.insee + lnudc90x + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnudzeci + 1 + + F_FIXE + + + F_FIXE label + + + fr.insee + lnue69t2-QOP-lnuf883a + 1 + OutParameter + + + fr.insee + lnue69t2 + 1 + QuestionItem + + + + + fr.insee + lnue216n + 1 + CodeList + + + + + + fr.insee + lnuefwzd + 1 + + F_ORDIX1 + + + 1 - Un ordinateur fixe + + + fr.insee + lnue7e91-QOP-lnuf6vvh + 1 + OutParameter + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnueel3a + 1 + + F_ORDIX2 + + + 2 - Un ordinateur portable + + + fr.insee + lnue7e91-QOP-lnufbk1s + 1 + OutParameter + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnue2hxt + 1 + + F_ORDIX3 + + + 3 - Une tablette + + + fr.insee + lnue7e91-QOP-lnufbc34 + 1 + OutParameter + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnue7ln0 + 1 + + F_ORDIX4 + + + 4 - Une liseuse + + + fr.insee + lnue7e91-QOP-lnuf7khz + 1 + OutParameter + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuec4kb + 1 + + F_ORDIX5 + + + 5 - Aucun de ces appareils + + + fr.insee + lnue7e91-QOP-lnuf8g9e + 1 + OutParameter + + + fr.insee + lnue7e91 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5rzwsp8 + 1 + + F_SMARTPHONEX1 + + + 1 - Un smartphone + + + fr.insee + kc0mzowl-QOP-l5s01nq2 + 1 + OutParameter + + + fr.insee + kc0mzowl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5s0cfvo + 1 + + F_SMARTPHONEX2 + + + 2 - Un téléphone mobile hors smartphone + + + fr.insee + kc0mzowl-QOP-l5s0d01s + 1 + OutParameter + + + fr.insee + kc0mzowl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l5s01ufz + 1 + + F_SMARTPHONEX3 + + + 3 - Aucun de ces appareils + + + fr.insee + kc0mzowl-QOP-l5s03ili + 1 + OutParameter + + + fr.insee + kc0mzowl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuetd7f + 1 + + F_DURSMART + + + F_DURSMART label + + + fr.insee + lnuef2pw-QOP-lnufeh7y + 1 + OutParameter + + + fr.insee + lnuef2pw + 1 + QuestionItem + + + + + fr.insee + lnuef84j + 1 + CodeList + + + + + + fr.insee + lruo97e6 + 1 + + F_ETASMART + + + F_ETASMART label + + + fr.insee + lnuf1qgc-QOP-lnuf4otk + 1 + OutParameter + + + fr.insee + lnuf1qgc + 1 + QuestionItem + + + + + fr.insee + lnue9cua + 1 + CodeList + + + + + + fr.insee + lnuf56xj + 1 + + F_RAISMARTX1 + + + 1 - Votre précédent smartphone était cassé ou défaillant (batterie défaillante, écran abîmé, etc.) + + + fr.insee + lnuf6krf-QOP-lnufk54m + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufd5dw + 1 + + F_RAISMARTX2 + + + 2 - Votre précédent smartphone ne fonctionnait plus bien du fait de problèmes liés au système d’exploitation (lenteurs, applications qui ne fonctionnent plus, etc.) + + + fr.insee + lnuf6krf-QOP-lnufdzue + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuf8pyk + 1 + + F_RAISMARTX3 + + + 3 - Vous souhaitiez un modèle plus récent que le précédent + + + fr.insee + lnuf6krf-QOP-lnufkq86 + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuey1we + 1 + + F_RAISMARTX4 + + + 4 - Vous souhaitiez monter en gamme de smartphone (avoir une meilleure capacité de stockage, une meilleure qualité de photo, etc.) + + + fr.insee + lnuf6krf-QOP-lnufk19a + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuf77hs + 1 + + F_RAISMARTX5 + + + 5 - Vous avez remplacé votre ancien smartphone en raison d’une offre promotionnelle + + + fr.insee + lnuf6krf-QOP-lnufee61 + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuf2ynx + 1 + + F_RAISMARTX6 + + + 6 - Vous n’aviez pas de smartphone précédemment mais vous souhaitiez en avoir un + + + fr.insee + lnuf6krf-QOP-lnufes85 + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnuey4qf + 1 + + F_RAISMARTX7 + + + 7 - Autre + + + fr.insee + lnuf6krf-QOP-lnufcpin + 1 + OutParameter + + + fr.insee + lnuf6krf + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lqb1xh5w + 1 + + F_FRESEC + + + F_FRESEC label + + + fr.insee + lqb27fdb-QOP-lqb2ie40 + 1 + OutParameter + + + fr.insee + lqb27fdb + 1 + QuestionItem + + + + + fr.insee + lqb2fmkm + 1 + CodeList + + + + + + fr.insee + lqb22lah + 1 + + F_FREWEC + + + F_FREWEC label + + + fr.insee + lqb2cik4-QOP-lqb25uep + 1 + OutParameter + + + fr.insee + lqb2cik4 + 1 + QuestionItem + + + + + fr.insee + lqb2hzst + 1 + CodeList + + + + + + fr.insee + lqb2g7h7 + 1 + + F_SATISVIE + + + F_SATISVIE label + + + fr.insee + lqb23j8a-QOP-lqb2hoha + 1 + OutParameter + + + fr.insee + lqb23j8a + 1 + QuestionItem + + + + + 0 + 10 + + Decimal + + + + + fr.insee + lqb2et25 + 1 + + F_SATISSANTE + + + F_SATISSANTE label + + + fr.insee + lqb2a9ht-QOP-lqb28pgy + 1 + OutParameter + + + fr.insee + lqb2a9ht + 1 + QuestionItem + + + + + 0 + 10 + + Decimal + + + + + fr.insee + lnuft4a6 + 1 + + F_TELECONX1 + + + 1 - Oui, vous avez téléconsulté par vidéo + + + fr.insee + lnufsvxy-QOP-lnugi3w6 + 1 + OutParameter + + + fr.insee + lnufsvxy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufmlnd + 1 + + F_TELECONX2 + + + 2 - Oui, vous avez téléconsulté par téléphone + + + fr.insee + lnufsvxy-QOP-lnug9f6b + 1 + OutParameter + + + fr.insee + lnufsvxy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufhy6b + 1 + + F_TELECONX3 + + + 3 - Non, vous n'avez pas téléconsulté mais vous avez consulté un médecin à son cabinet, à l'hôpital ou à domicile. + + + fr.insee + lnufsvxy-QOP-lnug6a77 + 1 + OutParameter + + + fr.insee + lnufsvxy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufmtv6 + 1 + + F_TELECONX4 + + + 4 - Non, vous n'avez consulté aucun médecin au cours des douze derniers mois (que ce soit à distance, dans son cabinet, à l'hôpital ou à votre domicile) + + + fr.insee + lnufsvxy-QOP-lnug12ge + 1 + OutParameter + + + fr.insee + lnufsvxy + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufvirk + 1 + + F_TELEOUIXX1 + + + 1 - Il est compliqué pour vous de vous déplacer (handicap, pas de voiture ou pas de permis, enfants en bas âge, etc.) + + + fr.insee + lnufz3ld-QOP-lnug0ia9 + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug556v + 1 + + F_TELEOUIXX2 + + + 2 - Vous étiez loin de votre domicile au moment où vous souhaitiez consulter (vacances, déplacement, formation…) + + + fr.insee + lnufz3ld-QOP-lnufy8q3 + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufvfxh + 1 + + F_TELEOUIXX3 + + + 3 - Vous aviez besoin de consulter un médecin en urgence + + + fr.insee + lnufz3ld-QOP-lnug07vj + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug6yhw + 1 + + F_TELEOUIXX4 + + + 4 - Le délai d’attente pour une consultation en cabinet est trop long + + + fr.insee + lnufz3ld-QOP-lnug55x8 + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug2t0f + 1 + + F_TELEOUIXX5 + + + 5 - Le médecin que vous souhaitiez consulter est loin de votre domicile + + + fr.insee + lnufz3ld-QOP-lnugdcy0 + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug179h + 1 + + F_TELEOUIXX6 + + + 6 - La téléconsultation évite de transmettre ou d’être exposé.e à des maladies chez le médecin + + + fr.insee + lnufz3ld-QOP-lnug92qf + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug2bkv + 1 + + F_TELEOUIXX7 + + + 7 - C’est plus confortable pour le respect de l’intimité + + + fr.insee + lnufz3ld-QOP-lnugd9kx + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufw5r6 + 1 + + F_TELEOUIXX8 + + + 8 - Vous aviez juste besoin d’un renouvellement d’une ordonnance ou d’un certificat médical + + + fr.insee + lnufz3ld-QOP-lnufysso + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufps42 + 1 + + F_TELEOUIXX9 + + + 9 - Vous aviez juste besoin de conseils médicaux + + + fr.insee + lnufz3ld-QOP-lnufzppy + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug5mfb + 1 + + F_TELEOUIXX10 + + + 10 - Pour une autre raison + + + fr.insee + lnufz3ld-QOP-lnug6iti + 1 + OutParameter + + + fr.insee + lnufz3ld + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug6rfy + 1 + + F_TELENONX1 + + + 1 - Votre médecin ne propose pas ce mode de consultation + + + fr.insee + lnufz5dt-QOP-lnugaghj + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufuiai + 1 + + F_TELENONX2 + + + 2 - Vous préférez vous rendre sur place pour consulter un médecin plutôt que de le faire virtuellement (attachement à la relation patient-médecin, meilleure qualité de la consultation…) + + + fr.insee + lnufz5dt-QOP-lnug81ys + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufy6vu + 1 + + F_TELENONX3 + + + 3 - Vos symptômes nécessitaient une consultation en présence d’un médecin + + + fr.insee + lnufz5dt-QOP-lnug4uyb + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufvfcl + 1 + + F_TELENONX4 + + + 4 - Vous n’êtes pas assez bien équipé pour réaliser une téléconsultation (matériel informatique inadapté, accès à Internet limité…) + + + fr.insee + lnufz5dt-QOP-lnugbjch + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnug77yc + 1 + + F_TELENONX5 + + + 5 - Vous n’êtes pas à l’aise avec les outils informatiques (Internet, sites Web sur lesquels sont réalisées les téléconsultations, applications) + + + fr.insee + lnufz5dt-QOP-lnufzsi2 + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnugd3h8 + 1 + + F_TELENONX6 + + + 6 - Vous craignez pour la sécurité de vos données et le respect du secret médical (plateforme peu sécurisée, fuite de données) + + + fr.insee + lnufz5dt-QOP-lnug6c61 + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lnufzhpx + 1 + + F_TELENONX7 + + + 7 - Pour une autre raison + + + fr.insee + lnufz5dt-QOP-lnugdexh + 1 + OutParameter + + + fr.insee + lnufz5dt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lq2kffpx + 1 + + SITUAEU + + + SITUAEU label + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0n6snm + 1 + QuestionItem + + + + + fr.insee + kc0n7y7a + 1 + CodeList + + + + + + fr.insee + lq2kafz7 + 1 + + TRAVAIL + + + TRAVAIL label + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + lpv06337 + 1 + QuestionItem + + + + + fr.insee + lpv0f7wm + 1 + CodeList + + + + + + fr.insee + lq2k5e9f + 1 + + ACTIVANTE + + + ACTIVANTE label + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + OutParameter + + + fr.insee + lpv0e9d4 + 1 + QuestionItem + + + + + fr.insee + lpv0f7wm + 1 + CodeList + + + + + + fr.insee + lrrn197y + 1 + + PROFESSIONLISTE + + + PROFESSIONLISTE label + + + fr.insee + lowso3oc-QOP-lq2k2co5 + 1 + OutParameter + + + fr.insee + lowso3oc + 1 + QuestionItem + + + + + + + fr.insee + lq2kcrrn + 1 + + PROFESSIONCLAIR + + + PROFESSIONCLAIR label + + + fr.insee + lox14baw-QOP-lq2keyfy + 1 + OutParameter + + + fr.insee + lox14baw + 1 + QuestionItem + + + + + + + fr.insee + lq2k4z02 + 1 + + PROFESSIONCLAIRP + + + PROFESSIONCLAIRP label + + + fr.insee + lox1j0b5-QOP-lq2k2dlg + 1 + OutParameter + + + fr.insee + lox1j0b5 + 1 + QuestionItem + + + + + + + fr.insee + lq2k2z4d + 1 + + STCPUB + + + STCPUB label + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + kc0nbhww + 1 + QuestionItem + + + + + fr.insee + kc0nedap + 1 + CodeList + + + + + + fr.insee + lq2k7yle + 1 + + ENCADR + + + ENCADR label + + + fr.insee + kc0nuukd-QOP-lq2k9i89 + 1 + OutParameter + + + fr.insee + kc0nuukd + 1 + QuestionItem + + + + + fr.insee + kbw9cik3 + 1 + CodeList + + + + + + fr.insee + lq2keohp + 1 + + POSITION_PUBLIC + + + POSITION_PUBLIC label + + + fr.insee + lox2pfjr-QOP-lq2kfqxl + 1 + OutParameter + + + fr.insee + lox2pfjr + 1 + QuestionItem + + + + + fr.insee + lox2f78d + 1 + CodeList + + + + + + fr.insee + lq2kdxyc + 1 + + POSITION_PRIVE + + + POSITION_PRIVE label + + + fr.insee + lowseoqt-QOP-lq2k4gc1 + 1 + OutParameter + + + fr.insee + lowseoqt + 1 + QuestionItem + + + + + fr.insee + lows9fg9 + 1 + CodeList + + + + + + fr.insee + lq2kaon3 + 1 + + ACTILIB + + + ACTILIB label + + + fr.insee + kc0p4jga-QOP-lq2kd409 + 1 + OutParameter + + + fr.insee + kc0p4jga + 1 + QuestionItem + + + + + + + fr.insee + lrupkrh4 + 1 + + NBSAL + + + NBSAL label + + + fr.insee + kc0qftls-QOP-lq2k0m1d + 1 + OutParameter + + + fr.insee + kc0qftls + 1 + QuestionItem + + + + + fr.insee + kc0qcptw + 1 + CodeList + + + + + + fr.insee + lq2jy5qp + 1 + + CONTRAT + + + CONTRAT label + + + fr.insee + kc0o78n2-QOP-lq2jvic1 + 1 + OutParameter + + + fr.insee + kc0o78n2 + 1 + QuestionItem + + + + + fr.insee + kc0ntlza + 1 + CodeList + + + + + + fr.insee + lq2kbfgr + 1 + + DUREE_EMP + + + temps partiel ou complet + + + fr.insee + kc0o6lj8-QOP-lq2k9jxl + 1 + OutParameter + + + fr.insee + kc0o6lj8 + 1 + QuestionItem + + + + + fr.insee + kc0oigqa + 1 + CodeList + + + + + + fr.insee + lq2k6qn6 + 1 + + SANTE + + + SANTE label + + + fr.insee + ks4txhy9-QOP-lq2k2urn + 1 + OutParameter + + + fr.insee + ks4txhy9 + 1 + QuestionItem + + + + + fr.insee + ks4ttfz8 + 1 + CodeList + + + + + + fr.insee + lqwjfi7b + 1 + + REVENU + + + REVENU label + + + fr.insee + kc0qz959-QOP-lqwjnvq1 + 1 + OutParameter + + + fr.insee + kc0qz959 + 1 + QuestionItem + + + + + + 0 + 99999 + + Decimal + + + + + fr.insee + lqwjlf9g + 1 + + TRANCHREVENU + + + TRANCHREVENU label + + + fr.insee + lqwjbav6-QOP-lqwjn845 + 1 + OutParameter + + + fr.insee + lqwjbav6 + 1 + QuestionItem + + + + + fr.insee + kc0qmn36 + 1 + CodeList + + + + + + fr.insee + lp11qpea-vg + 1 + + + fr.insee + lp11qpea + 1 + Loop + + + fr.insee + lp11s4qn + 1 + Loop + + + fr.insee + lp11erqo + 1 + Loop + + + fr.insee + lp11a9aj + 1 + Loop + + + Loop + + BOUCLE_KISH + + + fr.insee + kbw8gkz1 + 1 + Variable + + + fr.insee + kbw8vq36 + 1 + Variable + + + fr.insee + kbw8o4fh + 1 + Variable + + + fr.insee + lp12dtpu + 1 + Variable + + + fr.insee + lp12iwwj + 1 + Variable + + + fr.insee + lp173330 + 1 + Variable + + + fr.insee + lp1a2kmb + 1 + Variable + + + fr.insee + lp1ao7mu + 1 + Variable + + + fr.insee + lph5f314 + 1 + Variable + + + fr.insee + loyjpcdj + 1 + Variable + + + fr.insee + lp6y1gvu + 1 + Variable + + + fr.insee + loylcjxu + 1 + Variable + + + fr.insee + loyl9pq7 + 1 + Variable + + + fr.insee + loylhrp8 + 1 + Variable + + + + fr.insee + INSEE-Instrument-lseh1s0t-vg + 1 + + + fr.insee + Instrument-lseh1s0t + 1 + Instrument + + + Questionnaire + + m2 + + + fr.insee + kbwb38is + 1 + Variable + + + fr.insee + ky9xfqnt + 1 + Variable + + + fr.insee + ky9y6ltv + 1 + Variable + + + fr.insee + ky9yaq7z + 1 + Variable + + + fr.insee + kyehc16s + 1 + Variable + + + fr.insee + kyehebkw + 1 + Variable + + + fr.insee + kyeh87nb + 1 + Variable + + + fr.insee + lp19vha2 + 1 + Variable + + + fr.insee + lp1a8gdv + 1 + Variable + + + fr.insee + kc0ntxu9 + 1 + Variable + + + fr.insee + kc0nt601 + 1 + Variable + + + fr.insee + kc0o7r0w + 1 + Variable + + + fr.insee + kc0oacnr + 1 + Variable + + + fr.insee + kc0omjjm + 1 + Variable + + + fr.insee + kc0p4gs7 + 1 + Variable + + + fr.insee + kc0qj6l6 + 1 + Variable + + + fr.insee + lox17mtt + 1 + Variable + + + fr.insee + lox17exc + 1 + Variable + + + fr.insee + lq2k2i3h + 1 + Variable + + + fr.insee + lq2kgikz + 1 + Variable + + + fr.insee + lox6fu5k + 1 + Variable + + + fr.insee + lox6f33h + 1 + Variable + + + fr.insee + lpttuy84 + 1 + Variable + + + fr.insee + loyjnhbh + 1 + Variable + + + fr.insee + lq5fv2eo + 1 + Variable + + + fr.insee + l5qrark2 + 1 + Variable + + + fr.insee + kwktozze + 1 + Variable + + + fr.insee + kwkthkph + 1 + Variable + + + fr.insee + kwktnvjy + 1 + Variable + + + fr.insee + lq2l4l9v + 1 + Variable + + + fr.insee + lq5f67ny + 1 + Variable + + + fr.insee + kwm5aab7 + 1 + Variable + + + fr.insee + kbwac54g + 1 + Variable + + + fr.insee + kwm71ada + 1 + Variable + + + fr.insee + kwm6s38p + 1 + Variable + + + fr.insee + kwm6qpqv + 1 + Variable + + + fr.insee + kwm6odp0 + 1 + Variable + + + fr.insee + kwm60nhm + 1 + Variable + + + fr.insee + lq2kzh80 + 1 + Variable + + + fr.insee + lnbxo4i4 + 1 + Variable + + + fr.insee + lnbxylck + 1 + Variable + + + fr.insee + lnbxw4zd + 1 + Variable + + + fr.insee + lnbxlnla + 1 + Variable + + + fr.insee + lnbxs16x + 1 + Variable + + + fr.insee + lnbwixxo + 1 + Variable + + + fr.insee + lnbwj8d2 + 1 + Variable + + + fr.insee + lnbwe55j + 1 + Variable + + + fr.insee + lnbwnmew + 1 + Variable + + + fr.insee + lnbwjpwp + 1 + Variable + + + fr.insee + lnbwcfrl + 1 + Variable + + + fr.insee + kwm7u52d + 1 + Variable + + + fr.insee + l5qrr6sw + 1 + Variable + + + fr.insee + lq5ema46 + 1 + Variable + + + fr.insee + lq5exbyp + 1 + Variable + + + fr.insee + lq5epdf4 + 1 + Variable + + + fr.insee + lq5f3egi + 1 + Variable + + + fr.insee + lq5eut3n + 1 + Variable + + + fr.insee + lq5esg5j + 1 + Variable + + + fr.insee + lq5eya4b + 1 + Variable + + + fr.insee + lq5eoj2y + 1 + Variable + + + fr.insee + lq5em8yj + 1 + Variable + + + fr.insee + lq5esabx + 1 + Variable + + + fr.insee + lq5f1ala + 1 + Variable + + + fr.insee + lq5eo2vi + 1 + Variable + + + fr.insee + lq5eurvs + 1 + Variable + + + fr.insee + lq5etf2f + 1 + Variable + + + fr.insee + lq5eubx2 + 1 + Variable + + + fr.insee + lq5eqnq1 + 1 + Variable + + + fr.insee + lq5eyvvg + 1 + Variable + + + fr.insee + lq5elyh3 + 1 + Variable + + + fr.insee + lq5ewd3b + 1 + Variable + + + fr.insee + lq5enmaq + 1 + Variable + + + fr.insee + lq5et6xk + 1 + Variable + + + fr.insee + l5qsh73v + 1 + Variable + + + fr.insee + l5qrzfmo + 1 + Variable + + + fr.insee + l5qsfscc + 1 + Variable + + + fr.insee + l5qsj7bs + 1 + Variable + + + fr.insee + lnd4xiqr + 1 + Variable + + + fr.insee + lnd4yu4r + 1 + Variable + + + fr.insee + lnd4sc3t + 1 + Variable + + + fr.insee + lnd5l793 + 1 + Variable + + + fr.insee + lnd59qdi + 1 + Variable + + + fr.insee + lnd5a6of + 1 + Variable + + + fr.insee + lnd5ej7u + 1 + Variable + + + fr.insee + lnd5fjmg + 1 + Variable + + + fr.insee + lnd55rfu + 1 + Variable + + + fr.insee + lq5ezn4t + 1 + Variable + + + fr.insee + lq2l58lo + 1 + Variable + + + fr.insee + lq2koz7a + 1 + Variable + + + fr.insee + lq2kzkz4 + 1 + Variable + + + fr.insee + kwmaxfgd + 1 + Variable + + + fr.insee + kwmamn1b + 1 + Variable + + + fr.insee + kwmassnb + 1 + Variable + + + fr.insee + kwmaes2q + 1 + Variable + + + fr.insee + lq2kyue5 + 1 + Variable + + + fr.insee + lq2knz4i + 1 + Variable + + + fr.insee + lq2kqcxu + 1 + Variable + + + fr.insee + lq2l4w0g + 1 + Variable + + + fr.insee + l5qsh61p + 1 + Variable + + + fr.insee + l5qs9zs8 + 1 + Variable + + + fr.insee + l5qsm5ty + 1 + Variable + + + fr.insee + l5qsjwk4 + 1 + Variable + + + fr.insee + kwmcem4k + 1 + Variable + + + fr.insee + kwmcrlyq + 1 + Variable + + + fr.insee + kwmcpgmj + 1 + Variable + + + fr.insee + kwmcbl0g + 1 + Variable + + + fr.insee + kwmcgwja + 1 + Variable + + + fr.insee + lnd7e7jn + 1 + Variable + + + fr.insee + lnd7gt02 + 1 + Variable + + + fr.insee + lnd71fgo + 1 + Variable + + + fr.insee + lnd7fd57 + 1 + Variable + + + fr.insee + lnd7gz6q + 1 + Variable + + + fr.insee + lnd75jx2 + 1 + Variable + + + fr.insee + lda1byie + 1 + Variable + + + fr.insee + lda1295g + 1 + Variable + + + fr.insee + lda1d614 + 1 + Variable + + + fr.insee + lda0uj2r + 1 + Variable + + + fr.insee + lda1d1w9 + 1 + Variable + + + fr.insee + l5qsdt8o + 1 + Variable + + + fr.insee + l5qskmrn + 1 + Variable + + + fr.insee + l5qsl0m5 + 1 + Variable + + + fr.insee + l5qsp98i + 1 + Variable + + + fr.insee + l5qso8b4 + 1 + Variable + + + fr.insee + l5qswdrx + 1 + Variable + + + fr.insee + l5qsvsqf + 1 + Variable + + + fr.insee + l5qsmj3u + 1 + Variable + + + fr.insee + l5qsx2u9 + 1 + Variable + + + fr.insee + lq2l0blq + 1 + Variable + + + fr.insee + kwuov9vx + 1 + Variable + + + fr.insee + lnd7xe94 + 1 + Variable + + + fr.insee + lnd7ll50 + 1 + Variable + + + fr.insee + lnd7ovnf + 1 + Variable + + + fr.insee + lnd7vbox + 1 + Variable + + + fr.insee + lnd7r2kl + 1 + Variable + + + fr.insee + lnd7q6pf + 1 + Variable + + + fr.insee + lnd7xd1c + 1 + Variable + + + fr.insee + lnd83pwh + 1 + Variable + + + fr.insee + lnd7okan + 1 + Variable + + + fr.insee + lnd7r12b + 1 + Variable + + + fr.insee + lnd7ygie + 1 + Variable + + + fr.insee + lnd80f8v + 1 + Variable + + + fr.insee + lnd7l4wg + 1 + Variable + + + fr.insee + lnd8452n + 1 + Variable + + + fr.insee + lnd7l03r + 1 + Variable + + + fr.insee + lnd8b0ox + 1 + Variable + + + fr.insee + lnd7vwft + 1 + Variable + + + fr.insee + lnd81njc + 1 + Variable + + + fr.insee + lnd80j2y + 1 + Variable + + + fr.insee + lnd87cr2 + 1 + Variable + + + fr.insee + lnd8fllw + 1 + Variable + + + fr.insee + lnd8ctw6 + 1 + Variable + + + fr.insee + lnd7wjoq + 1 + Variable + + + fr.insee + lnd807db + 1 + Variable + + + fr.insee + lnd8673q + 1 + Variable + + + fr.insee + lq5ezrce + 1 + Variable + + + fr.insee + lq5fcu8m + 1 + Variable + + + fr.insee + lq5f7wlv + 1 + Variable + + + fr.insee + lq5fd8sz + 1 + Variable + + + fr.insee + lq5f0ajr + 1 + Variable + + + fr.insee + lq5fcjbr + 1 + Variable + + + fr.insee + lq5f36y3 + 1 + Variable + + + fr.insee + kwupespu + 1 + Variable + + + fr.insee + kwupennh + 1 + Variable + + + fr.insee + kwup6lqs + 1 + Variable + + + fr.insee + kwupe1da + 1 + Variable + + + fr.insee + lndbxa67 + 1 + Variable + + + fr.insee + lndbmiiz + 1 + Variable + + + fr.insee + lndc72v4 + 1 + Variable + + + fr.insee + lndc4bum + 1 + Variable + + + fr.insee + lndbz3l1 + 1 + Variable + + + fr.insee + lndbwifk + 1 + Variable + + + fr.insee + lndcevit + 1 + Variable + + + fr.insee + lndc1xqe + 1 + Variable + + + fr.insee + lndbv9nc + 1 + Variable + + + fr.insee + lndbzvdi + 1 + Variable + + + fr.insee + lndbvzdn + 1 + Variable + + + fr.insee + lndc627w + 1 + Variable + + + fr.insee + lndc859q + 1 + Variable + + + fr.insee + lndc7z6k + 1 + Variable + + + fr.insee + lndc81ie + 1 + Variable + + + fr.insee + lndcgpv4 + 1 + Variable + + + fr.insee + lndcgac0 + 1 + Variable + + + fr.insee + lndcam4d + 1 + Variable + + + fr.insee + lndcrp5g + 1 + Variable + + + fr.insee + lndcyl1o + 1 + Variable + + + fr.insee + lndcws37 + 1 + Variable + + + fr.insee + lndcr9m7 + 1 + Variable + + + fr.insee + lndcr3fg + 1 + Variable + + + fr.insee + lndd55pa + 1 + Variable + + + fr.insee + lndcwljx + 1 + Variable + + + fr.insee + lndcvj8p + 1 + Variable + + + fr.insee + lndcletu + 1 + Variable + + + fr.insee + lndcyk7v + 1 + Variable + + + fr.insee + lrhouph8 + 1 + Variable + + + fr.insee + lrhodwxq + 1 + Variable + + + fr.insee + lnuctzlq + 1 + Variable + + + fr.insee + lnudre1n + 1 + Variable + + + fr.insee + lnudxjzc + 1 + Variable + + + fr.insee + lnue7k80 + 1 + Variable + + + fr.insee + lnue5n59 + 1 + Variable + + + fr.insee + lnudxa91 + 1 + Variable + + + fr.insee + lnudrvlc + 1 + Variable + + + fr.insee + lnudvotg + 1 + Variable + + + fr.insee + lnudt5d6 + 1 + Variable + + + fr.insee + lnudzopa + 1 + Variable + + + fr.insee + lnudzeci + 1 + Variable + + + fr.insee + lnuefwzd + 1 + Variable + + + fr.insee + lnueel3a + 1 + Variable + + + fr.insee + lnue2hxt + 1 + Variable + + + fr.insee + lnue7ln0 + 1 + Variable + + + fr.insee + lnuec4kb + 1 + Variable + + + fr.insee + l5rzwsp8 + 1 + Variable + + + fr.insee + l5s0cfvo + 1 + Variable + + + fr.insee + l5s01ufz + 1 + Variable + + + fr.insee + lnuetd7f + 1 + Variable + + + fr.insee + lruo97e6 + 1 + Variable + + + fr.insee + lnuf56xj + 1 + Variable + + + fr.insee + lnufd5dw + 1 + Variable + + + fr.insee + lnuf8pyk + 1 + Variable + + + fr.insee + lnuey1we + 1 + Variable + + + fr.insee + lnuf77hs + 1 + Variable + + + fr.insee + lnuf2ynx + 1 + Variable + + + fr.insee + lnuey4qf + 1 + Variable + + + fr.insee + lqb1xh5w + 1 + Variable + + + fr.insee + lqb22lah + 1 + Variable + + + fr.insee + lqb2g7h7 + 1 + Variable + + + fr.insee + lqb2et25 + 1 + Variable + + + fr.insee + lnuft4a6 + 1 + Variable + + + fr.insee + lnufmlnd + 1 + Variable + + + fr.insee + lnufhy6b + 1 + Variable + + + fr.insee + lnufmtv6 + 1 + Variable + + + fr.insee + lnufvirk + 1 + Variable + + + fr.insee + lnug556v + 1 + Variable + + + fr.insee + lnufvfxh + 1 + Variable + + + fr.insee + lnug6yhw + 1 + Variable + + + fr.insee + lnug2t0f + 1 + Variable + + + fr.insee + lnug179h + 1 + Variable + + + fr.insee + lnug2bkv + 1 + Variable + + + fr.insee + lnufw5r6 + 1 + Variable + + + fr.insee + lnufps42 + 1 + Variable + + + fr.insee + lnug5mfb + 1 + Variable + + + fr.insee + lnug6rfy + 1 + Variable + + + fr.insee + lnufuiai + 1 + Variable + + + fr.insee + lnufy6vu + 1 + Variable + + + fr.insee + lnufvfcl + 1 + Variable + + + fr.insee + lnug77yc + 1 + Variable + + + fr.insee + lnugd3h8 + 1 + Variable + + + fr.insee + lnufzhpx + 1 + Variable + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + fr.insee + lq2k5e9f + 1 + Variable + + + fr.insee + lrrn197y + 1 + Variable + + + fr.insee + lq2kcrrn + 1 + Variable + + + fr.insee + lq2k4z02 + 1 + Variable + + + fr.insee + lq2k2z4d + 1 + Variable + + + fr.insee + lq2k7yle + 1 + Variable + + + fr.insee + lq2keohp + 1 + Variable + + + fr.insee + lq2kdxyc + 1 + Variable + + + fr.insee + lq2kaon3 + 1 + Variable + + + fr.insee + lrupkrh4 + 1 + Variable + + + fr.insee + lq2jy5qp + 1 + Variable + + + fr.insee + lq2kbfgr + 1 + Variable + + + fr.insee + lq2k6qn6 + 1 + Variable + + + fr.insee + lqwjfi7b + 1 + Variable + + + fr.insee + lqwjlf9g + 1 + Variable + + + fr.insee + lp11qpea-vg + 1 + VariableGroup + + + + + fr.insee + INSEE-SIMPSONS-PIS-1 + 1 + + SIMPSONS + + + Processing instructions of the Simpsons questionnaire + + + fr.insee + kbw8gkz1-GI + 1 + + fr.insee + kyehc16s + 1 + Variable + + + fr.insee + lph5f314 + 1 + Variable + + + + vtl + + fr.insee + kbw8gkz1-IP-1 + 1 + + ANNEEENQ + + + + fr.insee + kbw8gkz1-IP-2 + 1 + + ANNEE_NAISSANCE_STR + + + + fr.insee + kbw8gkz1-GOP + 1 + + + + fr.insee + kyehc16s-GOP + 1 + OutParameter + + + fr.insee + kbw8gkz1-IP-1 + 1 + InParameter + + + + + fr.insee + lph5f314-GOP + 1 + OutParameter + + + fr.insee + kbw8gkz1-IP-2 + 1 + InParameter + + + cast(kbw8gkz1-IP-1,integer) - cast(kbw8gkz1-IP-2, integer) + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + kbw8vq36-GI + 1 + + fr.insee + kyehebkw + 1 + Variable + + + fr.insee + kyeh87nb + 1 + Variable + + + fr.insee + lp12dtpu + 1 + Variable + + + fr.insee + lp12iwwj + 1 + Variable + + + + vtl + + fr.insee + kbw8vq36-IP-1 + 1 + + JOURENQ + + + + fr.insee + kbw8vq36-IP-2 + 1 + + MOISENQ + + + + fr.insee + kbw8vq36-IP-3 + 1 + + MOIS_NAISSANCE_INT + + + + fr.insee + kbw8vq36-IP-4 + 1 + + JOUR_NAISSANCE_STR + + + + fr.insee + kbw8vq36-GOP + 1 + + + + fr.insee + kyehebkw-GOP + 1 + OutParameter + + + fr.insee + kbw8vq36-IP-1 + 1 + InParameter + + + + + fr.insee + kyeh87nb-GOP + 1 + OutParameter + + + fr.insee + kbw8vq36-IP-2 + 1 + InParameter + + + + + fr.insee + lp12dtpu-GOP + 1 + OutParameter + + + fr.insee + kbw8vq36-IP-3 + 1 + InParameter + + + + + fr.insee + lp12iwwj-GOP + 1 + OutParameter + + + fr.insee + kbw8vq36-IP-4 + 1 + InParameter + + + cast((kbw8vq36-IP-2 || kbw8vq36-IP-1),integer) < cast((cast(kbw8vq36-IP-3,string) || kbw8vq36-IP-4), integer) + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + kbw8o4fh-GI + 1 + + fr.insee + kbw8gkz1 + 1 + Variable + + + fr.insee + kbw8vq36 + 1 + Variable + + + + vtl + + fr.insee + kbw8o4fh-IP-1 + 1 + + AGEMILLESIME + + + + fr.insee + kbw8o4fh-IP-2 + 1 + + FUTURANNIVERSAIRE + + + + fr.insee + kbw8o4fh-GOP + 1 + + + + fr.insee + kbw8gkz1-GOP + 1 + OutParameter + + + fr.insee + kbw8o4fh-IP-1 + 1 + InParameter + + + + + fr.insee + kbw8vq36-GOP + 1 + OutParameter + + + fr.insee + kbw8o4fh-IP-2 + 1 + InParameter + + + if (kbw8o4fh-IP-2) then cast((cast(kbw8o4fh-IP-1,integer) - 1),integer) else cast(kbw8o4fh-IP-1,integer) + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + kbwb38is-GI + 1 + + + vtl + + fr.insee + kbwb38is-GOP + 1 + + nvl($REPARTHAB11$, 0) + nvl($REPARTHAB21$, 0) + nvl($REPARTHAB31$, 0) + nvl($REPARTHAB41$, 0) + nvl($REPARTHAB51$, 0) + nvl($REPARTHAB61$, 0) + nvl($REPARTHAB71$, 0) + nvl($REPARTHAB81$, 0) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + ky9xfqnt-GI + 1 + + fr.insee + kbwafrus + 1 + QuestionGrid + + + fr.insee + kwm71ada + 1 + Variable + + + fr.insee + kwm6s38p + 1 + Variable + + + + vtl + + fr.insee + ky9xfqnt-IP-1 + 1 + + NATIO1N1 + + + + fr.insee + ky9xfqnt-IP-2 + 1 + + NATIO1N2 + + + + fr.insee + ky9xfqnt-GOP + 1 + + + + fr.insee + kbwafrus-QOP-kwmb8u5k + 1 + OutParameter + + + fr.insee + ky9xfqnt-IP-1 + 1 + InParameter + + + + + fr.insee + kbwafrus-QOP-kwmatb1k + 1 + OutParameter + + + fr.insee + ky9xfqnt-IP-2 + 1 + InParameter + + + if (isnull(ky9xfqnt-IP-1) and isnull(ky9xfqnt-IP-2)) then "" else (if ( nvl(ky9xfqnt-IP-1, false) =true or nvl(ky9xfqnt-IP-2, false)= true ) then "autre " else "") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + ky9y6ltv-GI + 1 + + fr.insee + kbw8o4fh + 1 + Variable + + + + vtl + + fr.insee + ky9y6ltv-IP-1 + 1 + + AGE + + + + fr.insee + ky9y6ltv-GOP + 1 + + + + fr.insee + kbw8o4fh-GOP + 1 + OutParameter + + + fr.insee + ky9y6ltv-IP-1 + 1 + InParameter + + + if (cast(nvl(ky9y6ltv-IP-1,"15"),integer) < 14) then 0 else 1 + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + ky9yaq7z-GI + 1 + + fr.insee + ky9y6ltv + 1 + Variable + + + + vtl + + fr.insee + ky9yaq7z-IP-1 + 1 + + KISHPOTENTIEL + + + + fr.insee + ky9yaq7z-GOP + 1 + + + + fr.insee + ky9y6ltv-GOP + 1 + OutParameter + + + fr.insee + ky9yaq7z-IP-1 + 1 + InParameter + + + sum(ky9yaq7z-IP-1) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kyehc16s-GI + 1 + + + vtl + + fr.insee + kyehc16s-GOP + 1 + + cast(current_date(),string,"YYYY") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kyehebkw-GI + 1 + + + vtl + + fr.insee + kyehebkw-GOP + 1 + + cast(current_date(),string,"DD") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kyeh87nb-GI + 1 + + + vtl + + fr.insee + kyeh87nb-GOP + 1 + + cast(current_date(), date, "MM") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lp12dtpu-GI + 1 + + fr.insee + loyl4wyc + 1 + QuestionItem + + + fr.insee + loylcjxu + 1 + Variable + + + + vtl + + fr.insee + lp12dtpu-IP-1 + 1 + + DATENAIS_TEL + + + + fr.insee + lp12dtpu-GOP + 1 + + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + fr.insee + lp12dtpu-IP-1 + 1 + InParameter + + + if isnull(lp12dtpu-IP-1) then 0 else cast(cast(cast(lp12dtpu-IP-1, date, "YYY-MM-DD"), string, "MM"), integer) + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + lp12iwwj-GI + 1 + + fr.insee + loyl4wyc + 1 + QuestionItem + + + fr.insee + loylcjxu + 1 + Variable + + + + vtl + + fr.insee + lp12iwwj-IP-1 + 1 + + DATENAIS_TEL + + + + fr.insee + lp12iwwj-GOP + 1 + + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + fr.insee + lp12iwwj-IP-1 + 1 + InParameter + + + if isnull(lp12iwwj-IP-1) then "00" else cast(cast(lp12iwwj-IP-1, date, "YYYY-MM-DD"), string, "DD") + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + lp173330-GI + 1 + + fr.insee + kbw8o4fh + 1 + Variable + + + fr.insee + lp12dtpu + 1 + Variable + + + fr.insee + lp12iwwj + 1 + Variable + + + + vtl + + fr.insee + lp173330-IP-1 + 1 + + AGE + + + + fr.insee + lp173330-IP-2 + 1 + + MOIS_NAISSANCE_INT + + + + fr.insee + lp173330-IP-3 + 1 + + JOUR_NAISSANCE_STR + + + + fr.insee + lp173330-GOP + 1 + + + + fr.insee + kbw8o4fh-GOP + 1 + OutParameter + + + fr.insee + lp173330-IP-1 + 1 + InParameter + + + + + fr.insee + lp12dtpu-GOP + 1 + OutParameter + + + fr.insee + lp173330-IP-2 + 1 + InParameter + + + + + fr.insee + lp12iwwj-GOP + 1 + OutParameter + + + fr.insee + lp173330-IP-3 + 1 + InParameter + + + cast((if cast(lp173330-IP-1, integer) < 15 then cast(lp173330-IP-2, integer) + 24 else if cast(lp173330-IP-2, integer) < 6 then cast(lp173330-IP-2, integer) + 12 else cast(lp173330-IP-2,integer)), string) || "." || lp173330-IP-3 + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + lp19vha2-GI + 1 + + fr.insee + lp1a2kmb + 1 + Variable + + + + vtl + + fr.insee + lp19vha2-IP-1 + 1 + + SCORE_KISH_INT + + + + fr.insee + lp19vha2-GOP + 1 + + + + fr.insee + lp1a2kmb-GOP + 1 + OutParameter + + + fr.insee + lp19vha2-IP-1 + 1 + InParameter + + + min(lp19vha2-IP-1) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lp1a2kmb-GI + 1 + + fr.insee + lp173330 + 1 + Variable + + + + vtl + + fr.insee + lp1a2kmb-IP-1 + 1 + + SCORE_KISH + + + + fr.insee + lp1a2kmb-GOP + 1 + + + + fr.insee + lp173330-GOP + 1 + OutParameter + + + fr.insee + lp1a2kmb-IP-1 + 1 + InParameter + + + cast(lp1a2kmb-IP-1, number) + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + lp1a8gdv-GI + 1 + + fr.insee + lp1ao7mu + 1 + Variable + + + + vtl + + fr.insee + lp1a8gdv-IP-1 + 1 + + KISH_INDICATOR + + + + fr.insee + lp1a8gdv-GOP + 1 + + + + fr.insee + lp1ao7mu-GOP + 1 + OutParameter + + + fr.insee + lp1a8gdv-IP-1 + 1 + InParameter + + + sum(lp1a8gdv-IP-1) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lp1ao7mu-GI + 1 + + fr.insee + lp19vha2 + 1 + Variable + + + fr.insee + lp1a2kmb + 1 + Variable + + + + vtl + + fr.insee + lp1ao7mu-IP-1 + 1 + + KISH_MIN + + + + fr.insee + lp1ao7mu-IP-2 + 1 + + SCORE_KISH_INT + + + + fr.insee + lp1ao7mu-GOP + 1 + + + + fr.insee + lp19vha2-GOP + 1 + OutParameter + + + fr.insee + lp1ao7mu-IP-1 + 1 + InParameter + + + + + fr.insee + lp1a2kmb-GOP + 1 + OutParameter + + + fr.insee + lp1ao7mu-IP-2 + 1 + InParameter + + + if cast(lp1ao7mu-IP-1, number) = cast (lp1ao7mu-IP-2, number) then 1 else 0 + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + lph5f314-GI + 1 + + fr.insee + loyl4wyc + 1 + QuestionItem + + + fr.insee + loylcjxu + 1 + Variable + + + + vtl + + fr.insee + lph5f314-IP-1 + 1 + + DATENAIS_TEL + + + + fr.insee + lph5f314-GOP + 1 + + + + fr.insee + loyl4wyc-QOP-loylmb1v + 1 + OutParameter + + + fr.insee + lph5f314-IP-1 + 1 + InParameter + + + if isnull(lph5f314-IP-1) then "0000" else cast(cast(lph5f314-IP-1, date, "YYYY-MM-DD"), string, "YYYY") + + + + fr.insee + lp11qpea + 1 + Loop + + + + fr.insee + kc0ntxu9-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + + vtl + + fr.insee + kc0ntxu9-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0ntxu9-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0ntxu9-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0ntxu9-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0ntxu9-IP-2 + 1 + InParameter + + + if (isnull(kc0ntxu9-IP-1)) then "emploi ou dernier emploi, êtes-vous " else (if (kc0ntxu9-IP-1 = "1" or kc0ntxu9-IP-2 = "1") then "emploi actuel, êtes-vous " else "dernier emploi, étiez-vous") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0nt601-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + + vtl + + fr.insee + kc0nt601-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0nt601-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0nt601-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0nt601-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0nt601-IP-2 + 1 + InParameter + + + if (isnull(kc0nt601-IP-1)) then "est ou était" else (if (kc0nt601-IP-1 = "1" or kc0nt601-IP-2 = "1" ) then "est" else "était") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0o7r0w-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + + vtl + + fr.insee + kc0o7r0w-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0o7r0w-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0o7r0w-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0o7r0w-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0o7r0w-IP-2 + 1 + InParameter + + + if (isnull(kc0o7r0w-IP-1)) then "Êtes ou étiez" else (if (kc0o7r0w-IP-1 = "1" or kc0o7r0w-IP-2 ="1" ) then "Êtes" else "Étiez") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0oacnr-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + + vtl + + fr.insee + kc0oacnr-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0oacnr-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0oacnr-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0oacnr-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0oacnr-IP-2 + 1 + InParameter + + + if (isnull(kc0oacnr-IP-1)) then "Travaillez ou travailliez" else (if (kc0oacnr-IP-1 = "1" or kc0oacnr-IP-2 = "1" ) then "Travaillez" else "Travailliez") + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0omjjm-GI + 1 + + + vtl + + fr.insee + kc0omjjm-GOP + 1 + + if (isnull($STATUT$)) then "Quelle est (ou était) votre profession principale (ou celle de la personne que vous aidez (ou aidiez))" else (if ($STATUT= "5" and ($SITUA= "1" or $SITUA= "2")) then "la profession principale de la personne que vous aidez" else ( if($STATUT= "5" and ($SITUA> "2" or isnull($SITUA$)) ) then "la profession principale de la personne que vous aidiez" else "votre profession principale")) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0p4gs7-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lpv0e9d4 + 1 + QuestionItem + + + fr.insee + kc0nbhww + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + fr.insee + lq2k5e9f + 1 + Variable + + + fr.insee + lq2k2z4d + 1 + Variable + + + + vtl + + fr.insee + kc0p4gs7-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0p4gs7-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0p4gs7-IP-3 + 1 + + ACTIVANTE + + + + fr.insee + kc0p4gs7-IP-4 + 1 + + STCPUB + + + + fr.insee + kc0p4gs7-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0p4gs7-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0p4gs7-IP-2 + 1 + InParameter + + + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + OutParameter + + + fr.insee + kc0p4gs7-IP-3 + 1 + InParameter + + + + + fr.insee + kc0nbhww-QOP-lq2jxff5 + 1 + OutParameter + + + fr.insee + kc0p4gs7-IP-4 + 1 + InParameter + + + if (isnull(kc0p4gs7-IP-4) and isnull(kc0p4gs7-IP-1)) then "est (ou était) l'activité de l'établissement ou du site où vous travaillez (ou travailliez)/ que vous dirigez" else if (kc0p4gs7-IP-4 = "2" or kc0p4gs7-IP-4 = "3") and (kc0p4gs7-IP-1 = "1" or kc0p4gs7-IP-2 = "1") then "est l'activité de l'établissement ou du site où vous travaillez" else if (kc0p4gs7-IP-4 = "2" or kc0p4gs7-IP-4 = "3") and (kc0p4gs7-IP-3 = "1") then "était l'activité de l'établissement ou du site où vous travailliez" else if (kc0p4gs7-IP-4 = "1") and (kc0p4gs7-IP-1 = "1" or kc0p4gs7-IP-2 = "1") then "est l'activité de l'établissement ou du site que vous dirigez" else if (kc0p4gs7-IP-4 = "1") and (kc0p4gs7-IP-3 = "1") then "était l'activité de l'établissement ou du site que vous dirigiez" else if (kc0p4gs7-IP-4 = "5") and (kc0p4gs7-IP-1 = "1" or kc0p4gs7-IP-2 = "1") then "est l'activité de l'établissement que dirige la personne que vous aidez" else if (kc0p4gs7-IP-4 = "5") and (kc0p4gs7-IP-3 = "1") then "était l'activité de l'établissement que dirige la personne que vous aidiez" else "est ou était l'activité de l'établissement ou du site où vous travaill(i)ez")))))) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + kc0qj6l6-GI + 1 + + fr.insee + kc0n6snm + 1 + QuestionItem + + + fr.insee + lpv06337 + 1 + QuestionItem + + + fr.insee + lpv0e9d4 + 1 + QuestionItem + + + fr.insee + lq2kffpx + 1 + Variable + + + fr.insee + lq2kafz7 + 1 + Variable + + + fr.insee + lq2k5e9f + 1 + Variable + + + + vtl + + fr.insee + kc0qj6l6-IP-1 + 1 + + SITUAEU + + + + fr.insee + kc0qj6l6-IP-2 + 1 + + TRAVAIL + + + + fr.insee + kc0qj6l6-IP-3 + 1 + + ACTIVANTE + + + + fr.insee + kc0qj6l6-GOP + 1 + + + + fr.insee + kc0n6snm-QOP-lq2k9ca8 + 1 + OutParameter + + + fr.insee + kc0qj6l6-IP-1 + 1 + InParameter + + + + + fr.insee + lpv06337-QOP-lq2ke4ei + 1 + OutParameter + + + fr.insee + kc0qj6l6-IP-2 + 1 + InParameter + + + + + fr.insee + lpv0e9d4-QOP-lq2k10pu + 1 + OutParameter + + + fr.insee + kc0qj6l6-IP-3 + 1 + InParameter + + + if (kc0qj6l6-IP-1 = "1" or kc0qj6l6-IP-2 = "1") then "travaillent" else if (kc0qj6l6-IP-3 = "1") then "travaillaient" else "travaillent ou travaillaient" + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lox17mtt-GI + 1 + + + vtl + + fr.insee + lox17mtt-GOP + 1 + + if (($STATUT= "1" ) or ($STATUT= "2" )) then "Votre profession n'est pas dans la liste. Pouvez-vous indiquer, le plus exactement possible, votre libellé de profession ? " else ($STATUT= "5") then "La profession principale de la personne que vous aidez n’est pas dans la liste. Pouvez-vous indiquer, le plus exactement possible, le libellé de la profession principale de la personne que vous aidez ? " + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lox17exc-GI + 1 + + + vtl + + fr.insee + lox17exc-GOP + 1 + + if (($STATUT= "1") or ($STATUT= "2") or ($STATUT= "3") or ($STATUT= "4") ) then "Pouvez-vous décrire en quelques mots en quoi consiste votre travail ?" else ($STATUT= "5") then "Pouvez-vous décrire en quelques mots en quoi consiste le travail de la personne que vous aidez ?" + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lq2k2i3h-GI + 1 + + fr.insee + lox14baw + 1 + QuestionItem + + + fr.insee + lq2kcrrn + 1 + Variable + + + + vtl + + fr.insee + lq2k2i3h-IP-1 + 1 + + PROFESSIONCLAIR + + + + fr.insee + lq2k2i3h-GOP + 1 + + + + fr.insee + lox14baw-QOP-lq2keyfy + 1 + OutParameter + + + fr.insee + lq2k2i3h-IP-1 + 1 + InParameter + + + upper( replace( replace( replace( replace( replace( replace(lower(lq2k2i3h-IP-1), " ", "") , "à", "a") , "ç", "c") , "é", "e") , "è", "e") , "ê", "e")) + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + fr.insee + lq2kgikz-GI + 1 + + fr.insee + lq2k2i3h + 1 + Variable + + + + vtl + + fr.insee + lq2kgikz-IP-1 + 1 + + PROFESSIONCLAIR_NORM + + + + fr.insee + lq2kgikz-GOP + 1 + + + + fr.insee + lq2k2i3h-GOP + 1 + OutParameter + + + fr.insee + lq2kgikz-IP-1 + 1 + InParameter + + + lq2kgikz-IP-1 in {"ACCOMPAGNATEUR", "ACCOMPAGNATRICE", "ACHETEUR", "ACHETEUSE", "ACTIVITESAISONNIERE", "ADJOINT", "ADJOINTADMINISTRATIF", "ADJOINTADMINISTRATIFPRINCIPAL", "ADJOINTADMINISTRATIFTERRITORIAL", "ADJOINTTECHNIQUE", "ADJOINTTECHNIQUEALACOMMUNE", "ADJOINTTECHNIQUEALAVILLE", "ADJOINTTECHNIQUECOLLECTIVITESTERRITORIALES", "ADJOINTTECHNIQUEDESCOLLECTIVITESTERRITORIALES", "ADJOINTTECHNIQUECOMMUNAL", "ADJOINTTECHNIQUECOMMUNE", "ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE", "ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE(ATRF)", "ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE", "ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE(ATRF)", "ADJOINTTECHNIQUEDESADMINISTRATIONSDEL'ETAT(ATAE)", "ADJOINTTECHNIQUEDESADMINISTRATIONSDEL'ETAT", "ADJOINTTECHNIQUEDESADMINISTRATIONSDELETAT(ATAE)", "ADJOINTTECHNIQUEDESADMINISTRATIONSDELETAT", "ADJOINTTECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT", "ADJOINTTECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT(ATEE)", "ADJOINTTECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT", "ADJOINTTECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT(ATEE)", "ADJOINTTECHNIQUEMAIRIE", "ADJOINTTECHNIQUEPOLYVALENT", "ADJOINTTECHNIQUEPRINCIPAL", "ADJOINTTECHNIQUETERRITORIAL", "ADJOINTTECHNIQUETERRITORIALALACOMMUNE", "ADJOINTTECHNIQUETERRITORIALALAVILLE", "ADJOINTTECHNIQUETERRITORIALCOMMUNAL", "ADJOINTTECHNIQUETERRITORIALCOMMUNE", "ADJOINTTECHNIQUETERRITORIALCOLLECTIVITESTERRITORIALES", "ADJOINTTECHNIQUETERRITORIALDESCOLLECTIVITESTERRITORIALES", "ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSD'ENSEIGNEMENT", "ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSD'ENSEIGNEMENT(ATTEE)", "ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSDENSEIGNEMENT", "ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSDENSEIGNEMENT(ATTEE)", "ADJOINTTECHNIQUETERRITORIALMAIRIE", "ADJOINTTECHNIQUETERRITORIALPOLYVALENT", "ADJOINTTECHNIQUETERRITORIALPRINCIPAL", "ADJOINTTECHNIQUETERRITORIALVILLE", "ADJOINTTECHNIQUEVILLE", "ADJOINTTERRITORIAL", "ADJOINTTERRITORIALALACOMMUNE", "ADJOINTTERRITORIALALAVILLE", "ADJOINTTERRITORIALCOMMUNAL", "ADJOINTTERRITORIALCOMMUNE", "ADJOINTTERRITORIALENMAIRIE", "ADJOINTTERRITORIALMAIRIE", "ADJOINTTERRITORIALPOLYVALENT", "ADJOINTTERRITORIALPRINCIPAL", "ADJOINTTERRITORIALVILLE", "ADJOINTE", "ADJOINTEADMINISTRATIVE", "ADJOINTEADMINISTRATIVEPRINCIPALE", "ADJOINTEADMINISTRATIVETERRITORIALE", "ADJOINTETECHNIQUE", "ADJOINTETECHNIQUEALACOMMUNE", "ADJOINTETECHNIQUEALAVILLE", "ADJOINTETECHNIQUECOLLECTIVITESTERRITORIALES", "ADJOINTETECHNIQUEDESCOLLECTIVITESTERRITORIALES", "ADJOINTETECHNIQUECOMMUNALE", "ADJOINTETECHNIQUECOMMUNE", "ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE", "ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE(ATRF)", "ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE", "ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE(ATRF)", "ADJOINTETECHNIQUEDESADMINISTRATIONSDEL'ETAT(ATAE)", "ADJOINTETECHNIQUEDESADMINISTRATIONSDEL'ETAT", "ADJOINTETECHNIQUEDESADMINISTRATIONSDELETAT(ATAE)", "ADJOINTETECHNIQUEDESADMINISTRATIONSDELETAT", "ADJOINTETECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT", "ADJOINTETECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT(ATEE)", "ADJOINTETECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT", "ADJOINTETECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT(ATEE)", "ADJOINTETECHNIQUEMAIRIE", "ADJOINTETECHNIQUEPOLYVALENTE", "ADJOINTETECHNIQUEPRINCIPALE", "ADJOINTETECHNIQUETERRITORIALE", "ADJOINTETECHNIQUETERRITORIALEALACOMMUNE", "ADJOINTETECHNIQUETERRITORIALEALAVILLE", "ADJOINTETECHNIQUETERRITORIALECOMMUNALE", "ADJOINTETECHNIQUETERRITORIALECOMMUNE", "ADJOINTETECHNIQUETERRITORIALECOLLECTIVITESTERRITORIALES", "ADJOINTETECHNIQUETERRITORIALEDESCOLLECTIVITESTERRITORIALES", "ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSD'ENSEIGNEMENT", "ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSD'ENSEIGNEMENT(ATTEE)", "ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSDENSEIGNEMENT", "ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSDENSEIGNEMENT(ATTEE)", "ADJOINTETECHNIQUETERRITORIALEMAIRIE", "ADJOINTETECHNIQUETERRITORIALEPOLYVALENTE", "ADJOINTETECHNIQUETERRITORIALEPRINCIPALE", "ADJOINTETECHNIQUETERRITORIALEVILLE", "ADJOINTETECHNIQUEVILLE", "ADJOINTETERRITORIALE", "ADJOINTETERRITORIALEALACOMMUNE", "ADJOINTETERRITORIALEALAVILLE", "ADJOINTETERRITORIALECOMMUNALE", "ADJOINTETERRITORIALECOMMUNE", "ADJOINTETERRITORIALEENMAIRIE", "ADJOINTETERRITORIALEMAIRIE", "ADJOINTETERRITORIALEPOLYVALENTE", "ADJOINTETERRITORIALEPRINCIPALE", "ADJOINTETERRITORIALEVILLE", "ADMINISTRATEUR", "ADMINISTRATRICE", "AGENT", "AGENTACCUEIL", "AGENTADMINISTRATIF", "AGENTCOMMERCIAL", "AGENTCOMMUNAL", "AGENTDACCUEIL", "AGENTDENTRETIEN", "AGENTDEXPLOITATION", "AGENTD'ACCUEIL", "AGENTD'ENTRETIEN", "AGENTD'EXPLOITATION", "AGENTDEBUREAU", "AGENTDEFABRICATION", "AGENTDEGESTION", "AGENTDEL'ETAT", "AGENTDELAPOSTE", "AGENTDEMAIRIE", "AGENTDEMAITRISE", "AGENTDEMAITRISETERRITORIAL", "AGENTDEMEDIATION", "AGENTDEPOSTE", "AGENTDEPRODUCTION", "AGENTDEPRODUCTIONAUTOMOBILE", "AGENTDEPRODUCTIONDANSL'AUTOMOBILE", "AGENTDEPRODUCTIONDANSLAUTOMOBILE", "AGENTDESERVICE", "AGENTDESERVICEPOLYVALENT", "AGENTDESERVICESCOLAIRE", "AGENTDESSERVICESTECHNIQUES", "AGENTEDF", "AGENTENTRETIEN", "AGENTEXPLOITATION", "AGENTMAIRIE", "AGENTMUNICIPAL", "AGENTPOLYVALENT", "AGENTPOLYVALENTTERRITORIAL", "AGENTPOSTE", "AGENTSERVICEPOLYVALENT", "AGENTSERVICESCOLAIRE", "AGENTSERVICESTECHNIQUES", "AGENTSNCF", "AGENTTECHNIQUE", "AGENTTECHNIQUEALACOMMUNE", "AGENTTECHNIQUEALAVILLE", "AGENTTECHNIQUECOLLECTIVITE", "AGENTTECHNIQUECOLLECTIVITESTERRITORIALES", "AGENTTECHNIQUECOMMUNAL", "AGENTTECHNIQUECOMMUNE", "AGENTTECHNIQUEDESCOLLECTIVITESTERRITORIALES", "AGENTTECHNIQUEDESECOLES", "AGENTTECHNIQUEDESECOLES(ATE)", "AGENTTECHNIQUEECOLE", "AGENTTECHNIQUEECOLE(ATE)", "AGENTTECHNIQUEMAIRIE", "AGENTTECHNIQUEPOLYVALENT", "AGENTTECHNIQUEPRINCIPAL", "AGENTTECHNIQUETERRITORIAL", "AGENTTECHNIQUETERRITORIALALACOMMUNE", "AGENTTECHNIQUETERRITORIALALAVILLE", "AGENTTECHNIQUETERRITORIALCOLLECTIVITESTERRITORIALES", "AGENTTECHNIQUETERRITORIALCOMMUNAL", "AGENTTECHNIQUETERRITORIALCOMMUNE", "AGENTTECHNIQUETERRITORIALDESCOLLECTIVITESTERRITORIALES", "AGENTTECHNIQUETERRITORIALMAIRIE", "AGENTTECHNIQUETERRITORIALPOLYVALENT", "AGENTTECHNIQUETERRITORIALPRINCIPAL", "AGENTTECHNIQUETERRITORIALVILLE", "AGENTTECHNIQUEVILLE", "AGENTTERRITORIAL", "AGENTTERRITORIALALACOMMUNE", "AGENTTERRITORIALALAVILLE", "AGENTTERRITORIALCOLLECTIVITESTERRITORIALES", "AGENTTERRITORIALCOMMUNAL", "AGENTTERRITORIALCOMMUNE", "AGENTTERRITORIALDESCOLLECTIVITESTERRITORIALES", "AGENTTERRITORIALMAIRIE", "AGENTTERRITORIALPOLYVALENT", "AGENTTERRITORIALPRINCIPAL", "AGENTTERRITORIALVILLE", "AGENTE", "AGENTEACCUEIL", "AGENTEADMINISTRATIVE", "AGENTECOMMERCIALE", "AGENTECOMMUNALE", "AGENTEDACCUEIL", "AGENTEDENTRETIEN", "AGENTEDEXPLOITATION", "AGENTED'ACCUEIL", "AGENTED'ENTRETIEN", "AGENTED'EXPLOITATION", "AGENTEDEBUREAU", "AGENTEDEFABRICATION", "AGENTEDEGESTION", "AGENTEDEL'ETAT", "AGENTEDELAPOSTE", "AGENTEDEMAIRIE", "AGENTEDEMAITRISE", "AGENTEDEMAITRISETERRITORIAL", "AGENTEDEMEDIATION", "AGENTEDEPOSTE", "AGENTEDEPRODUCTION", "AGENTEDEPRODUCTIONAUTOMOBILE", "AGENTEDEPRODUCTIONDANSL'AUTOMOBILE", "AGENTEDEPRODUCTIONDANSLAUTOMOBILE", "AGENTEDESERVICE", "AGENTEDESERVICEPOLYVALENTE", "AGENTEDESERVICESCOLAIRE", "AGENTEDESSERVICESTECHNIQUES", "AGENTEEDF", "AGENTEENTRETIEN", "AGENTEEXPLOITATION", "AGENTEMAIRIE", "AGENTEMUNICIPALE", "AGENTEPOLYVALENTE", "AGENTEPOLYVALENTETERRITORIALE", "AGENTEPOSTE", "AGENTESERVICEPOLYVALENTE", "AGENTESERVICESCOLAIRE", "AGENTESERVICESTECHNIQUES", "AGENTESNCF", "AGENTETECHNIQUE", "AGENTETECHNIQUEALACOMMUNE", "AGENTETECHNIQUEALAVILLE", "AGENTETECHNIQUECOLLECTIVITE", "AGENTETECHNIQUECOLLECTIVITESTERRITORIALES", "AGENTETECHNIQUECOMMUNALE", "AGENTETECHNIQUECOMMUNE", "AGENTETECHNIQUEDESCOLLECTIVITESTERRITORIALES", "AGENTETECHNIQUEDESECOLES", "AGENTETECHNIQUEDESECOLES(ATE)", "AGENTETECHNIQUEECOLE", "AGENTETECHNIQUEECOLE(ATE)", "AGENTETECHNIQUEMAIRIE", "AGENTETECHNIQUEPOLYVALENTE", "AGENTETECHNIQUEPRINCIPALE", "AGENTETECHNIQUETERRITORIALE", "AGENTETECHNIQUETERRITORIALEALACOMMUNE", "AGENTETECHNIQUETERRITORIALEALAVILLE", "AGENTETECHNIQUETERRITORIALECOLLECTIVITESTERRITORIALES", "AGENTETECHNIQUETERRITORIALECOMMUNALE", "AGENTETECHNIQUETERRITORIALECOMMUNE", "AGENTETECHNIQUETERRITORIALEDESCOLLECTIVITESTERRITORIALES", "AGENTETECHNIQUETERRITORIALEMAIRIE", "AGENTETECHNIQUETERRITORIALEPOLYVALENTE", "AGENTETECHNIQUETERRITORIALEPRINCIPALE", "AGENTETECHNIQUETERRITORIALEVILLE", "AGENTETECHNIQUEVILLE", "AGENTETERRITORIALE", "AGENTETERRITORIALEALACOMMUNE", "AGENTETERRITORIALEALAVILLE", "AGENTETERRITORIALECOLLECTIVITESTERRITORIALES", "AGENTETERRITORIALECOMMUNALE", "AGENTETERRITORIALECOMMUNE", "AGENTETERRITORIALDESCOLLECTIVITESTERRITORIALES", "AGENTETERRITORIALEMAIRIE", "AGENTETERRITORIALEPOLYVALENTE", "AGENTETERRITORIALEPRINCIPALE", "AGENTETERRITORIALEVILLE", "AGRICULTEUR", "AGRICULTRICE", "AIDE", "AIDEFAMILIAL", "AIDEFAMILIALE", "ALTERNANT", "ALTERNANTE", "ANALYSTE", "ANIMATEUR", "ANIMATRICE", "APPRENTI", "APPRENTIE", "ARTIFICIER", "ARTIFICIERE", "ARTISAN", "ARTISANE", "ARTISTE", "ASSISTANT", "ASSISTANTDEGESTION", "ASSISTANTGESTION", "ASSISTANTE", "ASSISTANTEDEGESTION", "ASSISTANTEGESTION", "ATE", "ATEE", "ATRF", "ATTEE", "ATTACHE", "ATTACHECLIENTELE", "ATTACHEDECLIENTELE", "ATTACHEE", "ATTACHEECLIENTELE", "ATTACHEEDECLIENTELE", "AUDITEUR", "AUDITRICE", "AUTOENTREPRENEUR", "AUTOENTREPRENEUSE", "AUTOENTREPRENEUR", "AUTOENTREPRENEUSE", "BOBINEUR", "BOBINEUSE", "BOBINIER", "BOULOTDETE", "BOULOTD'ETE", "BOULOTETE", "BOULOTSDETE", "BOULOTSD'ETE", "BOULOTSETE", "CADRE", "CADREDIRIGEANT", "CADREDIRIGEANTE", "CADRETECHNIQUE", "CAISSIER", "CAISSIERE", "CAPITAINE", "CDD", "CDI", "CHARGEAFFAIRE", "CHARGEAFFAIRES", "CHARGEDAFFAIRE", "CHARGEDAFFAIRES", "CHARGEDETUDES", "CHARGED'AFFAIRE", "CHARGED'AFFAIRES", "CHARGED'ETUDES", "CHARGEDECLIENTELE", "CHARGEDEMISSION", "CHARGEDEMISSIONENERGIE", "CHARGEDEPRODUCTION", "CHARGEDEPROJET", "CHARGEETUDES", "CHARGEMISSION", "CHARGEMISSIONENERGIE", "CHARGEEAFFAIRE", "CHARGEEAFFAIRES", "CHARGEEDAFFAIRE", "CHARGEEDAFFAIRES", "CHARGEEDETUDES", "CHARGEED'AFFAIRE", "CHARGEED'AFFAIRES", "CHARGEED'ETUDES", "CHARGEEDECLIENTELE", "CHARGEEDEMISSION", "CHARGEEDEMISSIONENERGIE", "CHARGEEDEPRODUCTION", "CHARGEEDEPROJET", "CHARGEEETUDES", "CHARGEEMISSION", "CHARGEEMISSIONENERGIE", "CHAUFFEUR", "CHAUFFEUSE", "CHEF", "CHEFATELIER", "CHEFDATELIER", "CHEFDENTREPRISE", "CHEFDEQUIPE", "CHEFDEXPLOITATION", "CHEFD'ATELIER", "CHEFD'ENTREPRISE", "CHEFD'ENTREPRISECOMMERCIALE", "CHEFD'ENTREPRISEDEFABRICATIONARTISANALE", "CHEFD'ENTREPRISEDESERVICES", "CHEFD'ENTREPRISEFABRICATIONARTISANALE", "CHEFD'ENTREPRISESERVICES", "CHEFD'EQUIPE", "CHEFD'EXPLOITATION", "CHEFDEGROUPE", "CHEFDEPROJET", "CHEFDESECTEUR", "CHEFDESERVICE", "CHEFENTREPRISE", "CHEFENTREPRISECOMMERCIALE", "CHEFENTREPRISEDEFABRICATIONARTISANALE", "CHEFENTREPRISEFABRICATIONARTISANALE", "CHEFENTREPRISEDESERVICES", "CHEFENTREPRISESERVICES", "CHEFEQUIPE", "CHEFEXPLOITATION", "CHEFFE", "CHEFFEATELIER", "CHEFFEDATELIER", "CHEFFEDENTREPRISE", "CHEFFEDEQUIPE", "CHEFFEDEXPLOITATION", "CHEFFED'ATELIER", "CHEFFED'ENTREPRISE", "CHEFFED'ENTREPRISECOMMERCIALE", "CHEFFED'ENTREPRISEDEFABRICATIONARTISANALE", "CHEFFED'ENTREPRISEDESERVICES", "CHEFFED'ENTREPRISEFABRICATIONARTISANALE", "CHEFFED'ENTREPRISESERVICES", "CHEFFED'EQUIPE", "CHEFFED'EXPLOITATION", "CHEFFEDEGROUPE", "CHEFFEDEPROJET", "CHEFFEDESECTEUR", "CHEFFEDESERVICE", "CHEFFEENTREPRISE", "CHEFFEENTREPRISECOMMERCIALE", "CHEFFEENTREPRISEDEFABRICATIONARTISANALE", "CHEFFEENTREPRISEFABRICATIONARTISANALE", "CHEFFEENTREPRISEDESERVICES", "CHEFFEENTREPRISESERVICES", "CHEFFEEQUIPE", "CHEFFEEXPLOITATION", "CHEMINOT", "CHEMINOTSNCF", "COACH", "COLORISTE", "COMMANDANT", "COMMANDANTE", "COMMERCANT", "COMMERCANTAMBULANT", "COMMERCANTE", "COMMERCANTEAMBULANTE", "COMMERCIAL", "COMMERCIALE", "COMMIS", "COMMISSAIRE", "CONDUCTEUR", "CONDUCTEURDENGINS", "CONDUCTEURD'ENGINS", "CONDUCTEURDELIGNE", "CONDUCTEURDELIGNES", "CONDUCTEURENGINS", "CONDUCTRICE", "CONDUCTRICEDENGINS", "CONDUCTRICED'ENGINS", "CONDUCTRICEDELIGNE", "CONDUCTRICEDELIGNES", "CONDUCTRICEENGINS", "CONJOINTCOLLABORATEUR", "CONJOINTECOLLABORATRICE", "CONSEILLER", "CONSEILLERCLIENTELE", "CONSEILLERCOMMERCIAL", "CONSEILLERE", "CONSEILLERECLIENTELE", "CONSEILLERECOMMERCIALE", "CONSERVATEUR", "CONSERVATRICE", "CONSULTANT", "CONSULTANTJUNIOR", "CONSULTANTSENIOR", "CONSULTANTE", "CONSULTANTEJUNIOR", "CONSULTANTESENIOR", "CONTREMAITRE", "CONTROLEUR", "CONTROLEUSE", "COORDINATEUR", "COORDINATRICE", "COORDONNATEUR", "COORDONNATRICE", "COURTIER", "DECORATEUR", "DECORATRICE", "DESSINATEUR", "DESSINATRICE", "DEVELOPPEUR", "DEVELOPPEUSE", "DIRECTEUR", "DIRECTEURADJOINT", "DIRECTEURAGENCE", "DIRECTEURDAGENCE", "DIRECTEURD'AGENCE", "DIRECTRICE", "DIRECTRICEADJOINTE", "DIRECTRICEAGENCE", "DIRECTRICEDAGENCE", "DIRECTRICED'AGENCE", "DIRIGEANTDUNESOCIETE", "DIRIGEANTD'UNESOCIETE", "DIRIGEANTDESOCIETE", "DIRIGEANTSOCIETE", "DIRIGEANTEDUNESOCIETE", "DIRIGEANTED'UNESOCIETE", "DIRIGEANTEDESOCIETE", "DIRIGEANTESOCIETE", "EDUCATEUR", "EDUCATRICE", "ELECTRICIEN", "ELECTRICIENNE", "ELEVEUR", "ELEVEUSE", "EMPLOISAISONNIER", "EMPLOYE", "EMPLOYEADMINISTRATIF", "EMPLOYECOMMUNAL", "EMPLOYEDUSINE", "EMPLOYED'USINE", "EMPLOYEDEBUREAU", "EMPLOYEDEMAIRIE", "EMPLOYEDEPOSTE", "EMPLOYEDELAPOSTE", "EMPLOYEMUNICIPAL", "EMPLOYEPOLYVALENT", "EMPLOYEPOSTE", "EMPLOYETECHNIQUE", "EMPLOYEUSINE", "EMPLOYEE", "EMPLOYEEADMINISTRATIVE", "EMPLOYEECOMMUNALE", "EMPLOYEEDUSINE", "EMPLOYEED'USINE", "EMPLOYEEDEBUREAU", "EMPLOYEEDEMAIRIE", "EMPLOYEEDEPOSTE", "EMPLOYEEDELAPOSTE", "EMPLOYEEMUNICIPALE", "EMPLOYEEPOLYVALENTE", "EMPLOYEEPOSTE", "EMPLOYEETECHNIQUE", "EMPLOYEEUSINE", "ENSEIGNANT", "ENSEIGNANTE", "ENTREPRENEUR", "ENTREPRENEUSE", "ENALTERNANCE", "ETUDIANT", "ETUDIANTALTERNANCE", "ETUDIANTALTERNANT", "ETUDIANTENALTERNANCE", "ETUDIANTE", "ETUDIANTEALTERNANCE", "ETUDIANTEALTERNANTE", "ETUDIANTEENALTERNANCE", "EXPERT", "EXPERTE", "EXPLOITANT", "EXPLOITANTAGRICOLE", "EXPLOITANTE", "EXPLOITANTEAGRICOLE", "FABRICANT", "FABRICANTE", "FONCTIONNAIRE", "FONCTIONNAIRETERRITORIAL", "FONCTIONNAIRETERRITORIALE", "GARDIEN", "GARDIENNE", "GERANT", "GERANTCOMMERCE", "GERANTD'ENTREPRISE", "GERANTDENTREPRISE", "GERANTDECOMMERCE", "GERANTDESOCIETE", "GERANTDESOCIETECOMMERCIALE", "GERANTDESOCIETEDESERVICES", "GERANTDESOCIETESERVICES", "GERANTENTREPRISE", "GERANTSOCIETE", "GERANTSOCIETECOMMERCIALE", "GERANTSOCIETEDESERVICES", "GERANTSOCIETESERVICES", "GERANTE", "GERANTECOMMERCE", "GERANTED'ENTREPRISE", "GERANTEDENTREPRISE", "GERANTEDECOMMERCE", "GERANTEDESOCIETE", "GERANTEDESOCIETECOMMERCIALE", "GERANTEDESOCIETEDESERVICES", "GERANTEDESOCIETESERVICES", "GERANTEENTREPRISE", "GERANTESOCIETE", "GERANTESOCIETECOMMERCIALE", "GERANTESOCIETESERVICES", "GERANTESOCIETEDESERVICES", "GESTIONNAIRE", "GROSSISTE", "INGENIEUR", "INGENIEURCONSEIL", "INGENIEUR-CONSEIL", "INGENIEURE", "INGENIEURECONSEIL", "INGENIEURE-CONSEIL", "INSPECTEUR", "INSPECTRICE", "INTERIMAIRE", "INTERMITTENT", "INTERMITTENTE", "INTERMITTENTDUSPECTACLE", "INTERMITTENTEDUSPECTACLE", "INTERMITTENTSPECTACLE", "INTERMITTENTESPECTACLE", "JOBDETE", "JOBD'ETE", "JOBETE", "JOBSDETE", "JOBSD'ETE", "JOBSETE", "LAPOSTE", "LIEUTENANT", "LIEUTENANTE", "LIVREUR", "LIVREUSE", "MANAGER", "MANAGERDEQUIPE", "MANAGERD'EQUIPE", "MANAGEREQUIPE", "MANDATAIRE", "MANOEUVRE", "MANEUVRE", "MANŒUVRE", "MARCHAND", "MARCHANDAMBULANT", "MARCHANDE", "MARCHANDEAMBULANTE", "MARIN", "MATELOT", "MECANICIEN", "MECANICIENNE", "MEDECIN", "MEDIATEUR", "MEDIATRICE", "MENUISIER", "MENUISIERE", "MILITAIRE", "MILITAIREDECARRIERE", "MONITEUR", "MONITRICE", "MONTEUR", "MONTEUSE", "NAVIGATEUR", "NAVIGATRICE", "NEGOCIANT", "NEGOCIANTE", "OFFICIER", "OFFICIERE", "OPERATEUR", "OPERATRICE", "OUVRIER", "OUVRIERAGRICOLE", "OUVRIERAUTOMOBILE", "OUVRIERBATIMENT", "OUVRIERCONSTRUCTION", "OUVRIERD'ENTRETIEN", "OUVRIERDENTRETIEN", "OUVRIERD'USINE", "OUVRIERDUSINE", "OUVRIERDANSLINDUSTRIE", "OUVRIERDANSLINDUSTRIEAUTOMOBILE", "OUVRIERDANSL'INDUSTRIE", "OUVRIERDANSL'INDUSTRIEAUTOMOBILE", "OUVRIERDANSINDUSTRIE", "OUVRIERDANSINDUSTRIEAUTOMOBILE", "OUVRIERDEFABRICATION", "OUVRIERDELINDUSTRIE", "OUVRIERDELINDUSTRIEAUTOMOBILE", "OUVRIERDEL'INDUSTRIE", "OUVRIERDEL'INDUSTRIEAUTOMOBILE", "OUVRIERDEPRODUCTION", "OUVRIERDUBATIMENT", "OUVRIERENTRETIEN", "OUVRIERENBATIMENT", "OUVRIERENCONSTRUCTION", "OUVRIERENUSINE", "OUVRIERFABRICATION", "OUVRIERINDUSTRIE", "OUVRIERINDUSTRIEAUTOMOBILE", "OUVRIERPOLYVALENT", "OUVRIERPRODUCTION", "OUVRIERUSINE", "OUVRIERE", "OUVRIEREAGRICOLE", "OUVRIEREAUTOMOBILE", "OUVRIEREBATIMENT", "OUVRIERECONSTRUCTION", "OUVRIERED'ENTRETIEN", "OUVRIEREDENTRETIEN", "OUVRIERED'USINE", "OUVRIEREDUSINE", "OUVRIEREDANSLINDUSTRIE", "OUVRIEREDANSLINDUSTRIEAUTOMOBILE", "OUVRIEREDANSL'INDUSTRIE", "OUVRIEREDANSL'INDUSTRIEAUTOMOBILE", "OUVRIEREDANSINDUSTRIE", "OUVRIEREDANSINDUSTRIEAUTOMOBILE", "OUVRIEREDEFABRICATION", "OUVRIEREDELINDUSTRIE", "OUVRIEREDELINDUSTRIEAUTOMOBILE", "OUVRIEREDEL'INDUSTRIE", "OUVRIEREDEL'INDUSTRIEAUTOMOBILE", "OUVRIEREDEPRODUCTION", "OUVRIEREDUBATIMENT", "OUVRIEREENTRETIEN", "OUVRIEREENBATIMENT", "OUVRIEREENCONSTRUCTION", "OUVRIEREENUSINE", "OUVRIEREFABRICATION", "OUVRIEREINDUSTRIE", "OUVRIEREINDUSTRIEAUTOMOBILE", "OUVRIEREPOLYVALENTE", "OUVRIEREPRODUCTION", "OUVRIEREUSINE", "PDG", "PEINTRE", "PETITBOULOTDETE", "PETITBOULOTD'ETE", "PETITBOULOTETE", "PETITSBOULOTSDETE", "PETITSBOULOTSD'ETE", "PETITSBOULOTSDIVERS", "PETITSBOULOTSETE", "PETITJOBDETE", "PETITJOBD'ETE", "PETITJOBETE", "PETITSJOBSDETE", "PETITSJOBSD'ETE", "PETITSJOBSETE", "PILOTE", "PILOTEDELIGNE", "POLICIER", "POLICIERE", "POLYVALENT", "POLYVALENTE", "POSTE", "PREPARATEUR", "PREPARATRICE", "PRESIDENT", "PRESIDENTE", "PRODUCTEUR", "PRODUCTRICE", "PROFESSEUR", "PROFESSEURE", "PYROTECHNICIEN", "PYROTECHNICIENNE", "RECEVEUR", "RECEVEUSE", "REDACTEUR", "REDACTRICE", "REGISSEUR", "REGISSEUSE", "REPARATEUR", "REPARATRICE", "REPRESENTANT", "REPRESENTANTCOMMERCE", "REPRESENTANTDECOMMERCE", "REPRESENTANTE", "REPRESENTANTECOMMERCE", "REPRESENTANTEDECOMMERCE", "RESPONSABLE", "RESPONSABLEAGENCE", "RESPONSABLEDAGENCE", "RESPONSABLEDEXPLOITATION", "RESPONSABLED'AGENCE", "RESPONSABLED'EXPLOITATION", "RESPONSABLEDESAV", "RESPONSABLEDESECTEUR", "RESPONSABLEDESERVICEAPRESVENTE", "RESPONSABLEDESERVICEAPRES-VENTE", "RESPONSABLEDESSERVICESTECHNIQUES", "RESPONSABLEEXPLOITATION", "RESPONSABLESAV", "RESPONSABLESECTEUR", "RESPONSABLESERVICEAPRESVENTE", "RESPONSABLESERVICEAPRESVENTE(SAV)", "RESPONSABLESERVICEAPRES-VENTE", "RESPONSABLESERVICEAPRES-VENTE(SAV)", "RESPONSABLESERVICESAPRESVENTE", "RESPONSABLESERVICESAPRESVENTE(SAV)", "RESPONSABLESERVICESAPRES-VENTE", "RESPONSABLESERVICESAPRES-VENTE(SAV)", "RESPONSABLESERVICESTECHNIQUES", "RESPONSABLETECHNIQUE", "RESTAURATEUR", "RESTAURATRICE", "SAISONNIER", "SAISONNIERE", "SALARIE", "SALARIEE", "SERVICECIVIQUE", "STAGIAIRE", "SURVEILLANT", "SURVEILLANTE", "TAILLEUR", "TAILLEUSE", "TECHNICIEN", "TECHNICIENDEXPLOITATION", "TECHNICIENDINSTALLATION", "TECHNICIENDINTERVENTION", "TECHNICIEND'EXPLOITATION", "TECHNICIEND'INSTALLATION", "TECHNICIEND'INTERVENTION", "TECHNICIENDEMAINTENANCE", "TECHNICIENEXPLOITATION", "TECHNICIENINSTALLATION", "TECHNICIENINTERVENTION", "TECHNICIENMAINTENANCE", "TECHNICIENSAV", "TECHNICIENSERVICEAPRESVENTE", "TECHNICIENSERVICEAPRESVENTESAV", "TECHNICIENTERRITORIAL", "TECHNICIENNE", "TECHNICIENNEDEXPLOITATION", "TECHNICIENNEDINSTALLATION", "TECHNICIENNEDINTERVENTION", "TECHNICIENNED'EXPLOITATION", "TECHNICIENNED'INSTALLATION", "TECHNICIENNED'INTERVENTION", "TECHNICIENNEDEMAINTENANCE", "TECHNICIENNEEXPLOITATION", "TECHNICIENNEINSTALLATION", "TECHNICIENNEINTERVENTION", "TECHNICIENNEMAINTENANCE", "TECHNICIENNESAV", "TECHNICIENNESERVICEAPRESVENTE", "TECHNICIENNESERVICEAPRESVENTESAV", "TECHNICIENNETERRITORIALE", "TECHNICOCOMMERCIAL", "TECHNICOCOMMERCIALE", "TECHNICO-COMMERCIAL", "TECHNICO-COMMERCIALE", "TECHNICOCOMMERCIAL", "TECHNICOCOMMERCIALE", "TEMPORAIRE", "VCM", "VENDEUR", "VENDEURCONSEIL", "VENDEURCONSEILMAGASIN", "VENDEUSE", "VENDEUSECONSEIL", "VENDEUSECONSEILMAGASIN", "VRP"} + + + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + + fr.insee + INSEE-SIMPSONS-MRS + 1 + + Liste de formats numériques et dates de + l'enquête + Numeric and DateTime list for the survey + + + fr.insee + INSEE-COMMUN-MNR-DateTimedate-YYYY-MM-DD + 1 + YYYY-MM-DD + date + + 1900-01-01 + format-date(current-date(),'[Y0001]-[M01]-[D01]') + + + + + + fr.insee + StudyUnit-lseh1s0t + 1 + + + fr.insee + DataCollection-lseh1s0t + 1 + + fr.insee + QuestionScheme-lseh1s0t + 1 + QuestionScheme + + + fr.insee + ControlConstructScheme-lseh1s0t + 1 + ControlConstructScheme + + + fr.insee + InterviewerInstructionScheme-lseh1s0t + 1 + InterviewerInstructionScheme + + + fr.insee + InstrumentScheme-lseh1s0t + 1 + + fr.insee + Instrument-lseh1s0t + 1 + + m2 + + + Enquête sur les technologies de l'information et de la communication 2024 - Téléphone V2 questionnaire + + A définir + + fr.insee + Sequence-lseh1s0t + 1 + Sequence + + + + + + diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/kraftwerk.json b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/kraftwerk.json new file mode 100644 index 00000000..eb4e89c4 --- /dev/null +++ b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/kraftwerk.json @@ -0,0 +1,26 @@ +{ + + "campaign": "TIC-2024-X04", + + "survey_data": [ + { + "data_mode": "TEL", + "data_file": "data", + "DDI_file": "ddi-tic-2024-x04-tel.xml", + "lunatic_file": "tic2024x04_tel.json", + "data_format": "LUNATIC_XML", + "paradata_folder": "", + "reporting_data_file": "campaign.20240311153539.extract.xml", + "mode_specifications": "" + } + ], + + "multimode_dataset_name": "MULTIMODE", + + "reconciliation_specifications": "", + + "transformation_specifications": "", + + "information_levels_specifications": "" + +} diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/tic2024x04_tel.json b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/tic2024x04_tel.json new file mode 100644 index 00000000..d06f5a83 --- /dev/null +++ b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/tic2024x04_tel.json @@ -0,0 +1,12704 @@ +{ + "id": "TIC2024X04_queenv2", + "modele": "m2", + "enoCoreVersion": "3.17.0", + "lunaticModelVersion": "3.2.7", + "generatingDate": "19-02-2024 14:37:50", + "missing": true, + "pagination": "question", + "maxPage": "104", + "label": { + "value": "Enquête sur les technologies de l'information et de la communication 2024 - Téléphone V2", + "type": "VTL|MD" + }, + "components": [ + { + "id": "lox6750f", + "componentType": "Sequence", + "page": "1", + "label": { + "value": "\"I - \" || \"Type de logement\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lox6750f", + "page": "1", + "label": { + "value": "\"I - \" || \"Type de logement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lox6eoqy", + "componentType": "Radio", + "mandatory": false, + "page": "2", + "label": { + "value": "\"➡ \" || \"Bonjour, je suis PRENOM NOM, enquêteur de l’Insee. Vous avez reçu un courrier de l’Insee annonçant une enquête sur l’usage de l’informatique et d’Internet. Le logement situé à l’adresse ADRESSE DE LA LISTE DE GESTION correspond-il à la résidence où vous vivez la plus grande partie de l’année ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lox6eqd5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Si la personne vous dit que c'était son ancienne adresse, répondez \"oui\" et réalisez l'enquête\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lox6750f", + "page": "1", + "label": { + "value": "\"I - \" || \"Type de logement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "RESIDENCE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RESIDENCE" + } + }, + { + "id": "lox62xmp", + "componentType": "Radio", + "mandatory": false, + "page": "3", + "label": { + "value": "\"➡ \" || \"Votre réponse me conduit à arrêter là cet entretien. En effet, l’Insee réalise l’enquête uniquement auprès des ménages dont le numéro d’appel correspond à une résidence principale. Je tiens néanmoins à vous remercier d’avoir accepté de répondre à cette question.\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lox6jlyn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Formule de politesse en cas d'arrêt\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(nvl(RESIDENCE, \" \")=\"2\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lox6750f", + "page": "1", + "label": { + "value": "\"I - \" || \"Type de logement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "POLITES_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"ok\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "POLITES" + } + }, + { + "id": "loyjaeen", + "componentType": "Sequence", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "loyjqfj1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"L’enquête s’adresse à une personne de votre ménage qui va être sélectionnée aléatoirement. Pour cela, nous avons besoin de faire la liste des personnes qui vivent habituellement dans votre logement.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lptucl00", + "componentType": "Radio", + "mandatory": false, + "page": "5", + "label": { + "value": "\"➡ \" || \"L'enquête s'adresse à une personne de votre ménage qui va être sélectionnée aléatoirement. Pour cela, nous avons besoin de faire la liste des personnes qui vivent habituellement dans votre logement.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DEBUT_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"OK\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DEBUT" + } + }, + { + "id": "loyjheaw", + "componentType": "InputNumber", + "mandatory": false, + "page": "6", + "min": 0.0, + "max": 20.0, + "decimals": 0, + "label": { + "value": "\"➡ \" || \"Combien de personnes vivent habituellement dans votre logement ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "loyjdepa", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Inclure les étudiants qui ne rentrent que le week-end\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NBHABT_MISSING" + }, + "response": { + "name": "NBHABT" + } + }, + { + "id": "lp11qpea", + "componentType": "Loop", + "page": "7", + "depth": 1, + "paginatedLoop": false, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "loopDependencies": [ + "NBHABT" + ], + "lines": { + "min": { + "value": "cast(NBHABT, integer)", + "type": "VTL" + }, + "max": { + "value": "cast(NBHABT, integer)", + "type": "VTL" + } + }, + "components": [ + { + "id": "loyk884v", + "componentType": "Subsequence", + "page": "7", + "goToPage": "7", + "label": { + "value": "\"Tirage de la personne répondante (Kish)\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyk884v", + "page": "7", + "label": { + "value": "\"Tirage de la personne répondante (Kish)\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "loyjwgx0", + "componentType": "Input", + "mandatory": false, + "page": "7", + "maxLength": 249, + "label": { + "value": "\"➡ \" || \"Quel est le prénom de la personne ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyk884v", + "page": "7", + "label": { + "value": "\"Tirage de la personne répondante (Kish)\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PRENOM_TEL_MISSING" + }, + "response": { + "name": "PRENOM_TEL" + } + } + ], + "label": { + "value": "Nouvelle personne du ménage", + "type": "VTL|MD" + } + }, + { + "id": "lp11s4qn", + "componentType": "Loop", + "page": "8", + "maxPage": "2", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "loopDependencies": [ + "PRENOM_TEL" + ], + "components": [ + { + "id": "loyl8mc7", + "componentType": "Subsequence", + "goToPage": "8.1", + "label": { + "value": "\"Sexe et âge\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl8mc7", + "page": "8.1", + "label": { + "value": "\"Sexe et âge\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "loyl5bbb", + "componentType": "Radio", + "mandatory": false, + "page": "8.1", + "label": { + "value": "\"➡ \" || \"Quel est le sexe de \" || nvl(PRENOM_TEL, \"cette personne\") || \" ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl8mc7", + "page": "8.1", + "label": { + "value": "\"Sexe et âge\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "SEXE_TEL_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Masculin\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Féminin\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SEXE_TEL" + } + }, + { + "id": "loyl4wyc", + "componentType": "Datepicker", + "mandatory": false, + "page": "8.2", + "min": "1900-01-01", + "max": "2024-07-01", + "label": { + "value": "\"➡ \" || \"Quelle est la date de naissance de \" || nvl(PRENOM_TEL, \"cette personne\") || \" ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl8mc7", + "page": "8.1", + "label": { + "value": "\"Sexe et âge\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DATENAIS_TEL_MISSING" + }, + "dateFormat": "YYYY-MM-DD", + "response": { + "name": "DATENAIS_TEL" + } + } + ], + "iterations": { + "value": "count(PRENOM_TEL)", + "type": "VTL" + } + }, + { + "id": "lp11erqo", + "componentType": "Loop", + "page": "9", + "maxPage": "2", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + } + }, + "loopDependencies": [ + "PRENOM_TEL" + ], + "components": [ + { + "id": "loyl3jdz", + "componentType": "Subsequence", + "goToPage": "9.1", + "label": { + "value": "\"Sélection manuelle du Kish\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl3jdz", + "page": "9.1", + "label": { + "value": "\"Sélection manuelle du Kish\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "loylambf", + "componentType": "Radio", + "mandatory": false, + "page": "9.1", + "label": { + "value": "\"➡ \" || \"\" || if cast (NB_POTENTIAL_KISH, integer) > 1 then \"Sélection manuelle du Kish (car plusieurs personnes du foyer sont nées le même jour)\" else \"Le Kish est connu, vous pouvez passer cette étape\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl3jdz", + "page": "9.1", + "label": { + "value": "\"Sélection manuelle du Kish\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PASSER_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"OK\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PASSER" + } + }, + { + "id": "loylmcrg", + "componentType": "Radio", + "mandatory": false, + "page": "9.2", + "label": { + "value": "\"➡ \" || \"\" || PRENOM_TEL || \" est-il le kish ?\" ", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "loyll3wy", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"La date de naissance de cette personne est : \" || cast(DATENAIS_TEL, string) ) ", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (NB_POTENTIAL_KISH >1)", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyjaeen", + "page": "4", + "label": { + "value": "\"II - \" || \"Liste des habitants du logement\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyl3jdz", + "page": "9.1", + "label": { + "value": "\"Sélection manuelle du Kish\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "IS_KISH_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "IS_KISH" + } + } + ], + "iterations": { + "value": "count(PRENOM_TEL)", + "type": "VTL" + } + }, + { + "id": "loyluetj", + "componentType": "Sequence", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "loyliate", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Le Kish est la personne de 15 ans ou plus (au 1er janvier 2023) dont l’anniversaire arrivera en premier à partir du 1er juin. C’est la personne à interroger pour le reste de l’enquête.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyluetj", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lp11a9aj", + "componentType": "Loop", + "page": "11", + "maxPage": "1", + "depth": 1, + "paginatedLoop": true, + "conditionFilter": { + "value": "(not(nvl(IS_KISH, \"99\") = \"2\" or (cast(NB_POTENTIAL_KISH,integer) = 1 and cast(KISH_INDICATOR,integer) = 0))) and ((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyluetj", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + } + } + }, + "loopDependencies": [ + "PRENOM_TEL" + ], + "components": [ + { + "id": "loylvt9g", + "componentType": "Subsequence", + "page": "11.1", + "goToPage": "11.1", + "label": { + "value": "\"Le Kish sélectionné est \" || cast(PRENOM_TEL, string) ", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "loyll4bn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons à présent interroger \" || cast(PRENOM_TEL, string) || \" sur sa disponibilité.\" ", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "(not(nvl(IS_KISH, \"99\") = \"2\" or (cast(NB_POTENTIAL_KISH,integer) = 1 and cast(KISH_INDICATOR,integer) = 0))) and ((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyluetj", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loylvt9g", + "page": "11.1", + "label": { + "value": "\"Le Kish sélectionné est \" || cast(PRENOM_TEL, string) ", + "type": "VTL|MD" + } + } + } + } + ], + "iterations": { + "value": "count(PRENOM_TEL)", + "type": "VTL" + } + }, + { + "id": "loyll7qx", + "componentType": "Subsequence", + "goToPage": "12", + "label": { + "value": "\"Disponibilité du Kish\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyluetj", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyll7qx", + "page": "12", + "label": { + "value": "\"Disponibilité du Kish\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "loylqm0o", + "componentType": "CheckboxOne", + "mandatory": false, + "page": "12", + "label": { + "value": "\"➡ \" || \"La personne sélectionnée est-elle disponible pour répondre au questionnaire ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "loyluetj", + "page": "10", + "label": { + "value": "\"III - \" || \"Questions Kish\"", + "type": "VTL|MD" + } + }, + "subSequence": { + "id": "loyll7qx", + "page": "12", + "label": { + "value": "\"Disponibilité du Kish\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PRESAKO_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non, la personne ne peut pas ou ne souhaite pas répondre tout de suite à l'enquête (prise de rendez-vous ultérieur)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, la personne refuse, est inapte ou est absente jusqu'au 14 mai ou tous les habitants du ménage sont nés après 2009\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PRESAKO" + } + }, + { + "id": "ks4qe7yy", + "componentType": "Sequence", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwksiobo", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Débutons ce questionnaire par un aperçu de votre situation personnelle.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kbw8yqwv", + "componentType": "Radio", + "mandatory": false, + "page": "14", + "label": { + "value": "\"➡ \" || \"Quel est le diplôme le plus élevé que vous ayez obtenu ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l5qr6oee", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Indiquez le niveau de diplôme au moment où vous l'avez obtenu, pas son niveau actuel\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DIPLOME_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" Aucun diplôme\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" Un CEP (certificat d’études primaires) ou diplôme étranger de même niveau\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"BEPC, brevet élémentaire, brevet des collèges ou diplôme étranger de même niveau\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"CAP, BEP ou diplôme de niveau équivalent\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Baccalauréat (général, technologique ou professionnel), brevet supérieur, brevet professionnel, de technicien ou d’enseignement ou diplôme équivalent\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Capacité en droit, DAEU, ESEU\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"BTS, DUT, Deug, Deust, diplôme de la santé ou du social de niveau Bac+2 ou diplôme équivalent\"", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "\"Licence, licence pro, maîtrise ou diplôme équivalent de niveau Bac+3 ou Bac+4\"", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "\"Master, DEA, DESS, diplôme de grande école de niveau Bac + 5, doctorat de santé\"", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "\"Doctorat de recherche (hors santé)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DIPLOME" + } + }, + { + "id": "kbw97gaf", + "componentType": "Radio", + "mandatory": false, + "page": "15", + "label": { + "value": "\"➡ \" || \"Quel est votre niveau d’étude ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (DIPLOME = \"1\" or DIPLOME = \"2\" or DIPLOME = \"3\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ETUDE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" Vous n'avez jamais fait d’études\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" École primaire (y compris certificat d’études primaires)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" 6ème à 4ème (collège)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\" 3ème (collège)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\" Première, deuxième ou dernière année de CAP-BEP ou d’une formation équivalente\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\" Seconde, première ou terminale de lycée\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\" Vous avez fait des études mais ne savez pas jusqu’à quel niveau\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ETUDE" + } + }, + { + "id": "kbw9jgd2", + "componentType": "Radio", + "mandatory": false, + "page": "16", + "label": { + "value": "\"➡ \" || \"Êtes-vous actuellement en couple ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "COUPLE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" Oui, avec une personne qui vit dans le logement\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" Oui, avec une personne qui ne vit pas dans le logement\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "COUPLE" + } + }, + { + "id": "kbw9i35f", + "componentType": "Radio", + "mandatory": false, + "page": "17", + "label": { + "value": "\"➡ \" || \"Quel est votre statut matrimonial ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ETAMATRI_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" Célibataire (jamais légalement marié(e))\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" Marié(e) ou remarié(e), y compris séparé(e) mais non divorcé(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" Veuf(ve)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\" Divorcé(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ETAMATRI" + } + }, + { + "id": "kbw9gttr", + "componentType": "Radio", + "mandatory": false, + "page": "18", + "label": { + "value": "\"➡ \" || \"Êtes-vous pacsé(e) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (ETAMATRI = \"1\" or ETAMATRI = \"3\" or ETAMATRI = \"4\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PACS_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PACS" + } + }, + { + "id": "kbw9rrbt", + "componentType": "Radio", + "mandatory": false, + "page": "19", + "label": { + "value": "\"➡ \" || \"Où êtes-vous né(e) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwm50q4n", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Pays de résidence habituelle de votre mère au moment de l'accouchement, selon les frontières nationales actuelles (et non selon les frontières en place au moment de la naissance)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "LNAIS_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" En France (métropole - DROM-COM)\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" À l’étranger\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "LNAIS" + } + }, + { + "id": "kbw9r169", + "componentType": "Suggester", + "mandatory": false, + "page": "20", + "label": { + "value": "\"➡ \" || \"Dans quel département ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS=\"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DEPNAIS_MISSING" + }, + "storeName": "L_DEPNAIS-1-1-0", + "options": [ + { + "value": "1", + "label": { + "value": "\"Ain\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Aisne\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Allier\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\" Alpes-de-Haute-Provence \"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\" Hautes-Alpes \"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\" Alpes-Maritimes \"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\" Ardèche \"", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "\" Ardennes \"", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "\" Ariège \"", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "\" Aube \"", + "type": "VTL|MD" + } + }, + { + "value": "11", + "label": { + "value": "\"Aude\"", + "type": "VTL|MD" + } + }, + { + "value": "12", + "label": { + "value": "\" Aveyron \"", + "type": "VTL|MD" + } + }, + { + "value": "13", + "label": { + "value": "\" Bouches-du-Rhône \"", + "type": "VTL|MD" + } + }, + { + "value": "14", + "label": { + "value": "\" Calvados \"", + "type": "VTL|MD" + } + }, + { + "value": "15", + "label": { + "value": "\" Cantal \"", + "type": "VTL|MD" + } + }, + { + "value": "16", + "label": { + "value": "\" Charente \"", + "type": "VTL|MD" + } + }, + { + "value": "17", + "label": { + "value": "\" Charente-Maritime \"", + "type": "VTL|MD" + } + }, + { + "value": "18", + "label": { + "value": "\" Cher \"", + "type": "VTL|MD" + } + }, + { + "value": "19", + "label": { + "value": "\" Corrèze \"", + "type": "VTL|MD" + } + }, + { + "value": "2A", + "label": { + "value": "\" Corse-du-Sud \"", + "type": "VTL|MD" + } + }, + { + "value": "2B", + "label": { + "value": "\" Haute-Corse \"", + "type": "VTL|MD" + } + }, + { + "value": "21", + "label": { + "value": "\" Côte-d'Or \"", + "type": "VTL|MD" + } + }, + { + "value": "22", + "label": { + "value": "\" Côtes d'Armor \"", + "type": "VTL|MD" + } + }, + { + "value": "23", + "label": { + "value": "\" Creuse \"", + "type": "VTL|MD" + } + }, + { + "value": "24", + "label": { + "value": "\" Dordogne \"", + "type": "VTL|MD" + } + }, + { + "value": "25", + "label": { + "value": "\" Doubs \"", + "type": "VTL|MD" + } + }, + { + "value": "26", + "label": { + "value": "\" Drôme \"", + "type": "VTL|MD" + } + }, + { + "value": "27", + "label": { + "value": "\" Eure \"", + "type": "VTL|MD" + } + }, + { + "value": "28", + "label": { + "value": "\" Eure-et-Loir \"", + "type": "VTL|MD" + } + }, + { + "value": "29", + "label": { + "value": "\" Finistère \"", + "type": "VTL|MD" + } + }, + { + "value": "30", + "label": { + "value": "\" Gard \"", + "type": "VTL|MD" + } + }, + { + "value": "31", + "label": { + "value": "\" Haute-Garonne \"", + "type": "VTL|MD" + } + }, + { + "value": "32", + "label": { + "value": "\" Gers \"", + "type": "VTL|MD" + } + }, + { + "value": "33", + "label": { + "value": "\" Gironde \"", + "type": "VTL|MD" + } + }, + { + "value": "34", + "label": { + "value": "\" Hérault \"", + "type": "VTL|MD" + } + }, + { + "value": "35", + "label": { + "value": "\" Ille-et-Vilaine \"", + "type": "VTL|MD" + } + }, + { + "value": "36", + "label": { + "value": "\" Indre \"", + "type": "VTL|MD" + } + }, + { + "value": "37", + "label": { + "value": "\" Indre-et-Loire \"", + "type": "VTL|MD" + } + }, + { + "value": "38", + "label": { + "value": "\" Isère \"", + "type": "VTL|MD" + } + }, + { + "value": "39", + "label": { + "value": "\" Jura \"", + "type": "VTL|MD" + } + }, + { + "value": "40", + "label": { + "value": "\" Landes \"", + "type": "VTL|MD" + } + }, + { + "value": "41", + "label": { + "value": "\" Loir-et-Cher \"", + "type": "VTL|MD" + } + }, + { + "value": "42", + "label": { + "value": "\" Loire \"", + "type": "VTL|MD" + } + }, + { + "value": "43", + "label": { + "value": "\" Haute-Loire \"", + "type": "VTL|MD" + } + }, + { + "value": "44", + "label": { + "value": "\" Loire-Atlantique \"", + "type": "VTL|MD" + } + }, + { + "value": "45", + "label": { + "value": "\" Loiret \"", + "type": "VTL|MD" + } + }, + { + "value": "46", + "label": { + "value": "\" Lot \"", + "type": "VTL|MD" + } + }, + { + "value": "47", + "label": { + "value": "\" Lot-et-Garonne \"", + "type": "VTL|MD" + } + }, + { + "value": "48", + "label": { + "value": "\" Lozère \"", + "type": "VTL|MD" + } + }, + { + "value": "49", + "label": { + "value": "\" Maine-et-Loire \"", + "type": "VTL|MD" + } + }, + { + "value": "50", + "label": { + "value": "\" Manche \"", + "type": "VTL|MD" + } + }, + { + "value": "51", + "label": { + "value": "\" Marne \"", + "type": "VTL|MD" + } + }, + { + "value": "52", + "label": { + "value": "\" Haute-Marne \"", + "type": "VTL|MD" + } + }, + { + "value": "53", + "label": { + "value": "\" Mayenne \"", + "type": "VTL|MD" + } + }, + { + "value": "54", + "label": { + "value": "\" Meurthe-et-Moselle \"", + "type": "VTL|MD" + } + }, + { + "value": "55", + "label": { + "value": "\" Meuse \"", + "type": "VTL|MD" + } + }, + { + "value": "56", + "label": { + "value": "\" Morbihan \"", + "type": "VTL|MD" + } + }, + { + "value": "57", + "label": { + "value": "\" Moselle \"", + "type": "VTL|MD" + } + }, + { + "value": "58", + "label": { + "value": "\" Nièvre \"", + "type": "VTL|MD" + } + }, + { + "value": "59", + "label": { + "value": "\" Nord \"", + "type": "VTL|MD" + } + }, + { + "value": "60", + "label": { + "value": "\" Oise \"", + "type": "VTL|MD" + } + }, + { + "value": "61", + "label": { + "value": "\" Orne \"", + "type": "VTL|MD" + } + }, + { + "value": "62", + "label": { + "value": "\" Pas-de-Calais \"", + "type": "VTL|MD" + } + }, + { + "value": "63", + "label": { + "value": "\" Puy-de-Dôme \"", + "type": "VTL|MD" + } + }, + { + "value": "64", + "label": { + "value": "\" Pyrénées-Atlantiques \"", + "type": "VTL|MD" + } + }, + { + "value": "65", + "label": { + "value": "\" Hautes-Pyrénées \"", + "type": "VTL|MD" + } + }, + { + "value": "66", + "label": { + "value": "\" Pyrénées-Orientales \"", + "type": "VTL|MD" + } + }, + { + "value": "67", + "label": { + "value": "\" Bas-Rhin \"", + "type": "VTL|MD" + } + }, + { + "value": "68", + "label": { + "value": "\" Haut-Rhin \"", + "type": "VTL|MD" + } + }, + { + "value": "69", + "label": { + "value": "\" Rhône \"", + "type": "VTL|MD" + } + }, + { + "value": "70", + "label": { + "value": "\" Haute-Saône \"", + "type": "VTL|MD" + } + }, + { + "value": "71", + "label": { + "value": "\" Saône-et-Loire \"", + "type": "VTL|MD" + } + }, + { + "value": "72", + "label": { + "value": "\" Sarthe \"", + "type": "VTL|MD" + } + }, + { + "value": "73", + "label": { + "value": "\" Savoie \"", + "type": "VTL|MD" + } + }, + { + "value": "74", + "label": { + "value": "\" Haute-Savoie \"", + "type": "VTL|MD" + } + }, + { + "value": "75", + "label": { + "value": "\" Paris \"", + "type": "VTL|MD" + } + }, + { + "value": "76", + "label": { + "value": "\" Seine-Maritime \"", + "type": "VTL|MD" + } + }, + { + "value": "77", + "label": { + "value": "\" Seine-et-Marne \"", + "type": "VTL|MD" + } + }, + { + "value": "78", + "label": { + "value": "\" Yvelines \"", + "type": "VTL|MD" + } + }, + { + "value": "79", + "label": { + "value": "\" Deux-Sèvres \"", + "type": "VTL|MD" + } + }, + { + "value": "80", + "label": { + "value": "\" Somme \"", + "type": "VTL|MD" + } + }, + { + "value": "81", + "label": { + "value": "\" Tarn \"", + "type": "VTL|MD" + } + }, + { + "value": "82", + "label": { + "value": "\" Tarn-et-Garonne \"", + "type": "VTL|MD" + } + }, + { + "value": "83", + "label": { + "value": "\" Var \"", + "type": "VTL|MD" + } + }, + { + "value": "84", + "label": { + "value": "\" Vaucluse \"", + "type": "VTL|MD" + } + }, + { + "value": "85", + "label": { + "value": "\" Vendée \"", + "type": "VTL|MD" + } + }, + { + "value": "86", + "label": { + "value": "\" Vienne \"", + "type": "VTL|MD" + } + }, + { + "value": "87", + "label": { + "value": "\" Haute-Vienne \"", + "type": "VTL|MD" + } + }, + { + "value": "88", + "label": { + "value": "\" Vosges \"", + "type": "VTL|MD" + } + }, + { + "value": "89", + "label": { + "value": "\" Yonne \"", + "type": "VTL|MD" + } + }, + { + "value": "90", + "label": { + "value": "\" Territoire de Belfort \"", + "type": "VTL|MD" + } + }, + { + "value": "91", + "label": { + "value": "\" Essonne \"", + "type": "VTL|MD" + } + }, + { + "value": "92", + "label": { + "value": "\" Hauts-de-Seine \"", + "type": "VTL|MD" + } + }, + { + "value": "93", + "label": { + "value": "\" Seine-St-Denis \"", + "type": "VTL|MD" + } + }, + { + "value": "94", + "label": { + "value": "\" Val-de-Marne \"", + "type": "VTL|MD" + } + }, + { + "value": "95", + "label": { + "value": "\" Val-D'Oise \"", + "type": "VTL|MD" + } + }, + { + "value": "971", + "label": { + "value": "\" Guadeloupe \"", + "type": "VTL|MD" + } + }, + { + "value": "972", + "label": { + "value": "\" Martinique \"", + "type": "VTL|MD" + } + }, + { + "value": "973", + "label": { + "value": "\" Guyane \"", + "type": "VTL|MD" + } + }, + { + "value": "974", + "label": { + "value": "\" La Réunion \"", + "type": "VTL|MD" + } + }, + { + "value": "976", + "label": { + "value": "\" Mayotte \"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DEPNAIS" + } + }, + { + "id": "kbwanueu", + "componentType": "Suggester", + "mandatory": false, + "page": "21", + "label": { + "value": "\"➡ \" || \"Dans quel pays ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS = \"2\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PAYSNAIS_MISSING" + }, + "storeName": "L_PAYS-1-2-0", + "options": [ + { + "value": "ESP", + "label": { + "value": "\"Espagne\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PAYSNAIS" + } + }, + { + "id": "kbwafrus", + "componentType": "CheckboxGroup", + "page": "22", + "label": { + "value": "\"➡ \" || \"Quelle est votre nationalité ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kbwafrus-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(NATIO1N4, false) and (nvl(NATIO1N1, false) or nvl(NATIO1N2, false) or nvl(NATIO1N3, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Apatride » est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + }, + { + "id": "kbwafrus-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(NATIO1N1, false) and nvl(NATIO1N2, false))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Les réponses \"Français(e) de naissance\" et \"Français(e) par naturalisation\" sont incompatibles. Veuillez décocher la réponse inexacte.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NATIO1N_MISSING" + }, + "responses": [ + { + "id": "kbwafrus-QOP-kwmb8u5k", + "label": { + "value": "\" \n\nFrançais(e) de naissance, y compris par réintégration\"", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N1" + } + }, + { + "id": "kbwafrus-QOP-kwmatb1k", + "label": { + "value": "\" \n\nFrançais(e) par naturalisation, mariage, déclaration ou option à votre majorité\"", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N2" + } + }, + { + "id": "kbwafrus-QOP-kwmb49mu", + "label": { + "value": "\" \n\nÉtranger(ère)\"", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N3" + } + }, + { + "id": "kbwafrus-QOP-kwmay4fv", + "label": { + "value": "\" \n\nApatride\"", + "type": "VTL|MD" + }, + "response": { + "name": "NATIO1N4" + } + } + ] + }, + { + "id": "kbwanqdo", + "componentType": "Suggester", + "mandatory": false, + "page": "23", + "label": { + "value": "\"➡ \" || \"Quelle est votre \" || plusieurnatio || \"nationalité ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NATIO1N3, false))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4qe7yy", + "page": "13", + "label": { + "value": "\"IV - \" || \"Caractéristiques socio-démographiques\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NATIO2N_MISSING" + }, + "storeName": "L_NATIONALITE-1-2-0", + "options": [ + { + "value": "ESP", + "label": { + "value": "\"Espagnole\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NATIO2N" + } + }, + { + "id": "kc0h2x4z", + "componentType": "Sequence", + "page": "24", + "label": { + "value": "\"V - \" || \"L’équipement de votre foyer en Internet\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0gvsub", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Abordons les questions sur l’équipement de votre foyer en Internet, quel que soit l'appareil utilisé (ordinateur fixe ou portable, tablette, téléphone mobile ou smartphone, appareils intelligents, etc.).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h2x4z", + "page": "24", + "label": { + "value": "\"V - \" || \"L’équipement de votre foyer en Internet\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kc0gq6qv", + "componentType": "Radio", + "mandatory": true, + "page": "25", + "label": { + "value": "\"➡ \" || \"Votre foyer a-t-il accès à Internet depuis son domicile ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0h5ajs", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\" Y compris depuis un ordinateur portable, une tablette ou un téléphone portable.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h2x4z", + "page": "24", + "label": { + "value": "\"V - \" || \"L’équipement de votre foyer en Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NET_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NET" + } + }, + { + "id": "kuznl5ba", + "componentType": "CheckboxGroup", + "page": "26", + "label": { + "value": "\"➡ \" || \"Votre connexion à Internet à domicile est-elle ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kuzo2jh2", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h2x4z", + "page": "24", + "label": { + "value": "\"V - \" || \"L’équipement de votre foyer en Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_DEBITX_MISSING" + }, + "responses": [ + { + "id": "kuznl5ba-QOP-lnby5sw0", + "label": { + "value": "\"Une connexion à très haut débit au réseau fixe (par la fibre, le câble, le WI-FI ou par satellite, au moins 30Mbit/s)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_DEBITX1" + } + }, + { + "id": "kuznl5ba-QOP-lnbyaj6d", + "label": { + "value": "\"Une connexion à haut débit au réseau fixe (par l'ADSL, le câble, le WI-FI ou par satellite)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_DEBITX2" + } + }, + { + "id": "kuznl5ba-QOP-lnbxw9v4", + "label": { + "value": "\"Une connexion à haut débit au réseau mobile (téléphone, tablette ou ordinateur portable) par la 3G, la 4G ou la 5G\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_DEBITX3" + } + }, + { + "id": "kuznl5ba-QOP-lnbxxb1a", + "label": { + "value": "\"Une connexion fixe à bas débit à l’aide d’un modem (réseau téléphonique classique)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_DEBITX4" + } + }, + { + "id": "kuznl5ba-QOP-lnby7qgh", + "label": { + "value": "\"Une connexion mobile à bas débit sur un téléphone portable (GSM, GPRS, EDGE)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_DEBITX5" + } + } + ] + }, + { + "id": "lnbwa2sl", + "componentType": "CheckboxGroup", + "page": "27", + "label": { + "value": "\"➡ \" || \"Pourquoi ne disposez-vous pas d'une connexion à très haut débit fixe à Internet à votre domicile ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnbwdk40", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h2x4z", + "page": "24", + "label": { + "value": "\"V - \" || \"L’équipement de votre foyer en Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_HDEBX_MISSING" + }, + "responses": [ + { + "id": "lnbwa2sl-QOP-lnby1c4f", + "label": { + "value": "\"Les membres de votre foyer y ont accès ailleurs\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB1" + } + }, + { + "id": "lnbwa2sl-QOP-lnby44if", + "label": { + "value": "\"L'installation ou l'abonnement au très haut débit coûte trop cher\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB2" + } + }, + { + "id": "lnbwa2sl-QOP-lnbyaj1x", + "label": { + "value": "\"Le très haut débit n'est pas disponible à l'endroit où vous vivez\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB3" + } + }, + { + "id": "lnbwa2sl-QOP-lnbybgrm", + "label": { + "value": "\"L'installation n'est pas possible techniquement\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB4" + } + }, + { + "id": "lnbwa2sl-QOP-lnby6790", + "label": { + "value": "\"Vous n'en avez pas l'utilité, votre connexion actuelle vous suffit\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB5" + } + }, + { + "id": "lnbwa2sl-QOP-lnby4672", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_HDEB6" + } + } + ] + }, + { + "id": "kc0h9y1j", + "componentType": "Sequence", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0hkapg", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons aborder maintenant l'usage que vous faites d'Internet. \"", + "type": "VTL|MD" + } + }, + { + "id": "lqff0i4m", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous nous intéressons à votre utilisation d'Internet dans tout type de lieu (à votre domicile, au travail ou autre) et sur tout type de support (ordinateurs, tablettes, smartphones, liseuses, objets connectés ), même pour un usage très occasionnel. \"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kc0h7448", + "componentType": "Radio", + "mandatory": true, + "page": "29", + "label": { + "value": "\"➡ \" || \"Personnellement, quand avez-vous utilisé Internet pour la dernière fois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0htor3", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\" Quel que soit le lieu ou le type d’accès.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0h7448-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(isnull(NUSEWEB))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NUSEWEB_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" \n\nAu cours des trois derniers mois\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" \n\nEntre trois mois et un an\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" \n\nIl y a plus d’un an\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous n’avez jamais utilisé Internet\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NUSEWEB" + } + }, + { + "id": "kc0haj1j", + "componentType": "Radio", + "mandatory": false, + "page": "30", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, en moyenne, à quelle fréquence avez-vous utilisé Internet ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0hqlhc", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Quel que soit le lieu ou le type d’accès.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0haj1j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(isnull(USEWEB))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous n’avez pas répondu à cette question. Si c’est un oubli, veuillez compléter votre réponse.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "USEWEB_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Tous les jours, plusieurs fois par jour.\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Tous les jours ou presque. \"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Au moins une fois par semaine (mais pas tous les jours). \"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Moins d’une fois par semaine. \"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "USEWEB" + } + }, + { + "id": "kc0hyu5k", + "componentType": "CheckboxGroup", + "page": "31", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, hors usage professionnel, avez-vous utilisé Internet (y compris via des applications) pour les activités suivantes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0hwdd6", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Quel que soit le lieu d’utilisation \"", + "type": "VTL|MD" + } + }, + { + "id": "kc0i0z56", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0hyu5k-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(PRATINTXX21, false) and (nvl(PRATINTXX1, false) or nvl(PRATINTXX2, false) or nvl(PRATINTXX3, false) or nvl(PRATINTXX4, false) or nvl(PRATINTXX5, false) or nvl(PRATINTXX6, false) or nvl(PRATINTXX7, false) or nvl(PRATINTXX8, false) or nvl(PRATINTXX9, false) or nvl(PRATINTXX10, false) or nvl(PRATINTXX11, false) or nvl(PRATINTXX12, false) or nvl(PRATINTXX13, false) or nvl(PRATINTXX14, false) or nvl(PRATINTXX15, false) or nvl(PRATINTXX16, false) or nvl(PRATINTXX17, false) or nvl(PRATINTXX18, false) or nvl(PRATINTXX19, false) or nvl(PRATINTXX20, false))))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse \"Vous n’avez effectué aucune de ces activités\" est incompatible avec les autres.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PRATINTXX_MISSING" + }, + "responses": [ + { + "id": "kc0hyu5k-QOP-lq5fp0us", + "label": { + "value": "\"Envoyer et recevoir des e-mails\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX1" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fh949", + "label": { + "value": "\"Téléphoner (ou passer des appels vidéo) par Internet, par exemple via Skype, Messenger, WhatsApp, Facetime, Viber, Snapchat, Zoom ou Teams...\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX2" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fp32f", + "label": { + "value": "\"Créer un profil ou poster des messages sur les réseaux sociaux (Facebook, Twitter, Instagram, Snapchat, TikTok, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX3" + } + }, + { + "id": "kc0hyu5k-QOP-lq5f7bzd", + "label": { + "value": "\"Utiliser une messagerie instantanée, c’est-à-dire échanger des messages, par exemple via Skype, Messenger, WhatsApp, Viber ou Snapchat\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX4" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fnqsz", + "label": { + "value": "\"Rechercher des informations sur des produits et services (horaires de transport, catalogues en ligne, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX5" + } + }, + { + "id": "kc0hyu5k-QOP-lq5f7h9u", + "label": { + "value": "\"Lire des journaux, des magazines ou consulter des sites d’actualité\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX6" + } + }, + { + "id": "kc0hyu5k-QOP-lq5f5pp2", + "label": { + "value": "\"Exprimer des opinions sur des questions civiques ou politiques via des sites web ou médias sociaux (Facebook, Twitter, Instagram, YouTube, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX7" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fg0y2", + "label": { + "value": "\"Participer à des consultations ou des votes en ligne sur des questions civiques ou politiques (plan d’urbanisation, signature d’une pétition, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX8" + } + }, + { + "id": "kc0hyu5k-QOP-lq5flzel", + "label": { + "value": "\"Télécharger ou écouter de la musique (radio en ligne, musique en streaming, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX9" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fnbv7", + "label": { + "value": "\"Regarder la télévision sur Internet (en direct ou en replay) sur les sites des chaînes TV (TF1, France 3, MyCanal, W9, TMC, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX10" + } + }, + { + "id": "kc0hyu5k-QOP-lq5foc8i", + "label": { + "value": "\"Regarder des vidéos à la demande à partir de services commerciaux (Netflix, HBO MAX, Amazon Prime Vidéo, Apple TV+, Disney+, Showtime, Salto, etc)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX11" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fbf7d", + "label": { + "value": "\"Regarder des vidéos depuis des services de partage (Youtube, Instagram, TikTok, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX12" + } + }, + { + "id": "kc0hyu5k-QOP-lq5f6m3o", + "label": { + "value": "\"Jouer ou télécharger des jeux\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX13" + } + }, + { + "id": "kc0hyu5k-QOP-lq5facrr", + "label": { + "value": "\"Écouter ou télécharger des podcasts\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX14" + } + }, + { + "id": "kc0hyu5k-QOP-lq5f6bn0", + "label": { + "value": "\"Rechercher des informations liées à la santé (ex : sur une maladie, des blessures, la nutrition ou l’amélioration de la santé)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX15" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fc14s", + "label": { + "value": "\"Prendre un rendez-vous avec un praticien de santé (avec un médecin, à l’hôpital, dans un centre de santé, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX16" + } + }, + { + "id": "kc0hyu5k-QOP-lq5finzp", + "label": { + "value": "\"Accéder à un dossier médical personnel en ligne\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX17" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fb4c6", + "label": { + "value": "\"Utiliser d’autres services de santé plutôt que se rendre à l’hôpital ou consulter un médecin (obtenir une ordonnance ou une consultation en ligne, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX18" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fob3f", + "label": { + "value": "\"Vendre des produits et services sur des sites en ligne ou applications (eBay, Leboncoin, Facebook Marketplace, Vinted, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX19" + } + }, + { + "id": "kc0hyu5k-QOP-lq5feqnb", + "label": { + "value": "\"Accéder à votre compte bancaire\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX20" + } + }, + { + "id": "kc0hyu5k-QOP-lq5fn7vv", + "label": { + "value": "\"Vous n’avez effectué aucune de ces activités\"", + "type": "VTL|MD" + }, + "response": { + "name": "PRATINTXX21" + } + } + ] + }, + { + "id": "ks4tje5l", + "componentType": "CheckboxGroup", + "page": "32", + "label": { + "value": "\"➡ \" || \"Concernant l’apprentissage par Internet (que ce soit pour un usage privé ou professionnel), au cours des trois derniers mois, avez-vous déjà personnellement effectué l’une des activités suivantes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ks4tjwkv", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "ks4tje5l-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(EDUPROX4, false) and (nvl(EDUPROX1, false) or nvl(EDUPROX2, false) or nvl(EDUPROX3, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Vous n’avez pratiqué aucune activité de formation sur Internet » est incompatible avec les autres réponses.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "EDUPROX_MISSING" + }, + "responses": [ + { + "id": "ks4tje5l-QOP-l5qsbjcn", + "label": { + "value": "\"Suivre des cours en ligne\"", + "type": "VTL|MD" + }, + "response": { + "name": "EDUPROX1" + } + }, + { + "id": "ks4tje5l-QOP-l5qss6oe", + "label": { + "value": "\"Utiliser des supports de formation autres que des cours en ligne (supports audiovisuels, tutoriels en ligne par exemple sur Youtube, logiciels d’apprentissage en ligne, manuels électroniques, applications d’apprentissage etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "EDUPROX2" + } + }, + { + "id": "ks4tje5l-QOP-l5qsqkz5", + "label": { + "value": "\"Échanger avec des enseignants ou des étudiants à l’aide d’outils audio ou vidéo en ligne (Zoom, MS Teams, Google Classroom, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "EDUPROX3" + } + }, + { + "id": "ks4tje5l-QOP-l5qsepmx", + "label": { + "value": "\"Vous n’avez pratiqué aucune activité de formation sur Internet.\"", + "type": "VTL|MD" + }, + "response": { + "name": "EDUPROX4" + } + } + ] + }, + { + "id": "lnd4rdph", + "componentType": "CheckboxGroup", + "page": "33", + "label": { + "value": "\"➡ \" || \"Dans quel but avez-vous entrepris ces activités d'apprentissage au cours des 3 derniers mois ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd4o8bt", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "OBJEDUX_MISSING" + }, + "responses": [ + { + "id": "lnd4rdph-QOP-lnd680q9", + "label": { + "value": "\"Dans un cadre scolaire (école, université, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "OBJEDUX1" + } + }, + { + "id": "lnd4rdph-QOP-lnd5y670", + "label": { + "value": "\"Pour des raisons professionnelles ou liées au travail\"", + "type": "VTL|MD" + }, + "response": { + "name": "OBJEDUX2" + } + }, + { + "id": "lnd4rdph-QOP-lnd6139f", + "label": { + "value": "\"Pour des raisons personnelles\"", + "type": "VTL|MD" + }, + "response": { + "name": "OBJEDUX3" + } + } + ] + }, + { + "id": "lnd5kw2d", + "componentType": "CheckboxGroup", + "page": "34", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, vous êtes vous formé(e) afin d’améliorer vos compétences dans l’usage des ordinateurs, de logiciels ou d’applications ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd57dqk", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnd5kw2d-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not((nvl(F_IMPROVEX6, false)=true and (nvl(F_IMPROVEX1, false) = true or nvl(F_IMPROVEX2, false)=true or nvl(F_IMPROVEX3, false)=true or nvl(F_IMPROVEX4, false)=true or nvl(F_IMPROVEX5, false)=true)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\" La réponse « Vous n’avez réalisé aucune de ces activités de formation » n’est pas compatible avec les autres items. \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_IMPROVEX_MISSING" + }, + "responses": [ + { + "id": "lnd5kw2d-QOP-lnd61gz7", + "label": { + "value": "\"Vous avez suivi une formation gratuite en ligne ou étudié de manière autonome à l’aide d’un tutoriel gratuit\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX1" + } + }, + { + "id": "lnd5kw2d-QOP-lnd5ttaw", + "label": { + "value": "\"Vous vous êtes formé(e) avec l’aide de votre entourage (par exemple avec des collègues, des voisins, des proches…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX2" + } + }, + { + "id": "lnd5kw2d-QOP-lnd5uk3h", + "label": { + "value": "\"Vous avez suivi une formation gratuite dispensée par des programmes publics ou des associations\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX3" + } + }, + { + "id": "lnd5kw2d-QOP-lnd6bqz6", + "label": { + "value": "\"Vous avez suivi une formation payée par vos soins\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX4" + } + }, + { + "id": "lnd5kw2d-QOP-lnd5si8z", + "label": { + "value": "\"Vous avez suivi une formation payée ou dispensée par votre employeur\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX5" + } + }, + { + "id": "lnd5kw2d-QOP-lnd5vhu7", + "label": { + "value": "\"Vous n’avez réalisé aucune de ces activités de formation\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_IMPROVEX6" + } + } + ] + }, + { + "id": "lnd64z9l", + "componentType": "Radio", + "mandatory": false, + "page": "35", + "label": { + "value": "\"➡ \" || \"Comment décririez-vous vos compétences relatives à l'usage des ordinateurs, logiciels ou applications ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd5s0oi", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Pour un usage personnel ou professionnel\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_SKILLS_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Vous avez les compétences pour réaliser des tâches plus exigeantes que celles que vous réalisez actuellement\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Vos compétences correspondent bien aux tâches que vous devez ou souhaitez accomplir\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Vous avez quelques difficultés et auriez besoin d’une formation pour réaliser les tâches que vous devez ou souhaitez accomplir\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous vous sentez dépassé(e) par les évolutions dans ce domaine\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_SKILLS" + } + }, + { + "id": "lnd5pnag", + "componentType": "Radio", + "mandatory": false, + "page": "36", + "label": { + "value": "\"➡ \" || \"Avez-vous déjà créé un compte ou vous êtes-vous enregistré gratuitement sur une application ou sur le site d’un service en ligne ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd5rq6s", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Par exemple, un compte sur un réseau social ou sur une application pour acheter des titres de transport, du streaming, des jeux...\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "REGIST_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "REGIST" + } + }, + { + "id": "lnd5x3l5", + "componentType": "Radio", + "mandatory": false, + "page": "37", + "label": { + "value": "\"➡ \" || \"Avez-vous supprimé ou tenté de supprimer un compte gratuit créé sur une application ou un service en ligne ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "SUPREGIST_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SUPREGIST" + } + }, + { + "id": "lnd66axd", + "componentType": "Radio", + "mandatory": false, + "page": "38", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, avez-vous rencontré des problèmes lors de la suppression d’un compte gratuit sur une application ou un service en ligne ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd66q3n", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Par exemple des difficultés à trouver la procédure pour fermer le compte, y passer un temps beaucoup trop long, des problèmes techniques, des conditions de clôtures inadmissibles, l’impossibilité de fermer le compte...\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0h9y1j", + "page": "28", + "label": { + "value": "\"VI - \" || \"Votre usage d’Internet\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PBREGIST_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "PBREGIST" + } + }, + { + "id": "kc0i2t9p", + "componentType": "Sequence", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0ie0xd", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Poursuivons avec votre utilisation des services administratifs sur Internet, pour vous-même ou pour une autre personne, hors usage professionnel. Ces questions vous concernent même si vous n’avez pas utilisé Internet au cours de l’année.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kc0i0jec", + "componentType": "CheckboxGroup", + "page": "40", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, hors usage professionnel, avez-vous utilisé le site Web ou l’application d’une administration ou d’un service public pour l’une des raisons suivantes ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0ik811", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Exclure les e-mails.\"", + "type": "VTL|MD" + } + }, + { + "id": "kc0i9s2a", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\" Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0i0jec-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(ADMX4, false) and ( nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Vous n’avez effectué aucune de ces actions » n’est pas compatible avec les autres items.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ADMX_MISSING" + }, + "responses": [ + { + "id": "kc0i0jec-QOP-kwmazv3k", + "label": { + "value": "\"Accéder à vos données personnelles conservées par les autorités ou les services publics (informations sur vos droits à pension, sur votre santé, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ADMX1" + } + }, + { + "id": "kc0i0jec-QOP-kwmb4o86", + "label": { + "value": "\"Accéder à des informations dans des bases de données ou des registres publics (disponibilité de livres dans les bibliothèques, registres cadastraux, registres d’entreprises, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ADMX2" + } + }, + { + "id": "kc0i0jec-QOP-kwmb6i3d", + "label": { + "value": "\"Obtenir des informations administratives (services, avantages, droits, articles de loi, heures d’ouverture, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ADMX3" + } + }, + { + "id": "kc0i0jec-QOP-kwmaw31m", + "label": { + "value": "\"Vous n’avez effectué aucune de ces actions.\"", + "type": "VTL|MD" + }, + "response": { + "name": "ADMX4" + } + } + ] + }, + { + "id": "ks5vgahz", + "componentType": "Radio", + "mandatory": false, + "page": "41", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, hors usage professionnel, avez-vous téléchargé ou imprimé des formulaires officiels depuis le site Web ou l’application d’une administration ou d’un service public ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "IMPADM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "IMPADM" + } + }, + { + "id": "ks5vqq6b", + "componentType": "Radio", + "mandatory": false, + "page": "42", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, hors usage professionnel, avez-vous pris un rendez-vous ou effectué une réservation via un site Web ou une application auprès d’une administration ou d’un service public (réservation d’un livre dans une bibliothèque municipale, rendez-vous en mairie, en préfecture, à l’hôpital public, etc.) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "RDVADM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "RDVADM" + } + }, + { + "id": "ks5vhf4w", + "componentType": "Radio", + "mandatory": false, + "page": "43", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, hors usage professionnel, avez-vous reçu des messages ou documents officiels des autorités publiques via votre compte sur le site Web ou l’application d’une administration ou d’un service public (notification d’amendes ou de factures, lettres, convocation au tribunal, documents judiciaires, etc.) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kwmchqix", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Exclure les messages automatiques de notification qu’un document est disponible.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "MESADM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "MESADM" + } + }, + { + "id": "ks5vgp57", + "componentType": "Radio", + "mandatory": false, + "page": "44", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, avez-vous rempli, corrigé, complété ou validé votre déclaration d'impôts via un site Web ou une application ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DECLADM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DECLADM" + } + }, + { + "id": "ks5vdqs4", + "componentType": "CheckboxGroup", + "page": "45", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, hors usage professionnel, avez-vous effectué l’une des actions suivantes via le site Web ou l’application d’une administration ou d’un service public ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ks5vrixr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "controls": [ + { + "id": "ks5vdqs4-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(RAIADMX4, false) and ( nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Vous n’avez effectué aucune de ces actions » n’est pas compatible avec les autres items.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "RAIADMX_MISSING" + }, + "responses": [ + { + "id": "ks5vdqs4-QOP-l5qsic6y", + "label": { + "value": "\"Demander des documents officiels ou des certificats (diplôme, acte de naissance, de mariage ou de décès, certificat de divorce, attestation de domicile, extrait du casier judiciaire, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAIADMX1" + } + }, + { + "id": "ks5vdqs4-QOP-l5qs9n5l", + "label": { + "value": "\"Demander des prestations ou des droits (pension de retraite, chômage, allocations familiales, inscription à l’école ou l’université, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAIADMX2" + } + }, + { + "id": "ks5vdqs4-QOP-l5qsrxdz", + "label": { + "value": "\"Formuler d’autres demandes, réclamations ou plaintes (signaler un vol à la police, déposer plainte devant la Justice, demander une aide juridique, engager une procédure civile devant un tribunal, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAIADMX3" + } + }, + { + "id": "ks5vdqs4-QOP-l5qsc84x", + "label": { + "value": "\"Vous n’avez effectué aucune de ces actions\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAIADMX4" + } + } + ] + }, + { + "id": "ks5vnmgt", + "componentType": "CheckboxGroup", + "page": "46", + "label": { + "value": "\"➡ \" || \"Pour quelle(s) raison(s) n’avez-vous pas demandé de documents officiels ni fait de demande à une administration ou un service public par Internet au cours des douze derniers mois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ks5vxjm4", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "type": "VTL" + }, + "controls": [ + { + "id": "ks5vnmgt-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(DEMADMX1, false) and ( nvl(DEMADMX2, false) or nvl(DEMADMX3, false) or nvl(DEMADMX4, false) or nvl(DEMADMX5, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Vous n’avez pas eu besoin de demander de document ni de faire de réclamation » n’est pas compatible avec les autres items. \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DEMADMX_MISSING" + }, + "responses": [ + { + "id": "ks5vnmgt-QOP-kwmcigfw", + "label": { + "value": "\"Vous n’avez pas eu besoin de demander de document ni de faire de réclamation\"", + "type": "VTL|MD" + }, + "response": { + "name": "DEMADMX1" + } + }, + { + "id": "ks5vnmgt-QOP-kwmckybs", + "label": { + "value": "\"Vous manquez de compétence ou de connaissance (vous ne saviez pas comment vous servir du site Web ou il était trop compliqué à utiliser)\"", + "type": "VTL|MD" + }, + "response": { + "name": "DEMADMX2" + } + }, + { + "id": "ks5vnmgt-QOP-kwmckiz6", + "label": { + "value": "\"Vous avez des inquiétudes concernant la sécurité de vos données personnelles ou vous refusez de payer en ligne (crainte d’une fraude à la carte bancaire, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "DEMADMX3" + } + }, + { + "id": "ks5vnmgt-QOP-kwmcylnt", + "label": { + "value": "\"Une autre personne l’a fait en votre nom (un conseiller, un parent, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "DEMADMX4" + } + }, + { + "id": "ks5vnmgt-QOP-kwmcs5mx", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "DEMADMX5" + } + } + ] + }, + { + "id": "lnd7ni7e", + "componentType": "CheckboxGroup", + "page": "47", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, avez-vous rencontré l’un des problèmes suivants lors de l’utilisation du site Web ou de l’application d’une administration ou d’un service public ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd7d8le", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "type": "VTL" + }, + "controls": [ + { + "id": "lnd7ni7e-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(PROADMX6, false) and (nvl(PROADMX1, false) or nvl(PROADMX2, false) or nvl(PROADMX3, false) or nvl(PROADMX4, false) or nvl(PROADMX5, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Je n’ai pas rencontré de problème » n’est pas compatible avec les autres items.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PROADMX_MISSING" + }, + "responses": [ + { + "id": "lnd7ni7e-QOP-lnd8lf32", + "label": { + "value": "\"Le site ou l’application était difficile à utiliser (interface peu compréhensible, formulation compliquée, procédure mal expliquée, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX1" + } + }, + { + "id": "lnd7ni7e-QOP-lnd8pvwm", + "label": { + "value": "\"Des problèmes techniques sont survenus lors de l’utilisation (chargement long, site Web en panne, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX2" + } + }, + { + "id": "lnd7ni7e-QOP-lnd8f6hi", + "label": { + "value": "\"Il était impossible de payer via le site Web ou l’application (manque d’accès aux moyens de paiement requis, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX3" + } + }, + { + "id": "lnd7ni7e-QOP-lnd8lp83", + "label": { + "value": "\"Il était impossible d’accéder au service par un smartphone ou une tablette (versions d’appareil non compatibles, applications non disponibles, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX4" + } + }, + { + "id": "lnd7ni7e-QOP-lnd8czjz", + "label": { + "value": "\"Un autre problème\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX5" + } + }, + { + "id": "lnd7ni7e-QOP-lnd8cx7p", + "label": { + "value": "\"Je n’ai pas rencontré de problème\"", + "type": "VTL|MD" + }, + "response": { + "name": "PROADMX6" + } + } + ] + }, + { + "id": "kc0i7d8t", + "componentType": "CheckboxGroup", + "page": "48", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, avez-vous demandé de l’aide pour effectuer une démarche administrative sur Internet (par exemple pour prendre un RDV, obtenir une information, faire une demande de droit, toucher une allocation ou une prestation sociale, accéder à un compte personnel, etc. ) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0i7d8t-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_AIDADMX5, false) and (nvl(F_AIDADMX1, false) or nvl(F_AIDADMX2, false) or nvl(F_AIDADMX3, false) or nvl(F_AIDADMX4, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Non » n’est pas compatible avec les autres items.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_AIDADMX_MISSING" + }, + "responses": [ + { + "id": "kc0i7d8t-QOP-lda11p1n", + "label": { + "value": "\" \n\nOui, auprès de ma famille, d’amis ou de voisins\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_AIDADMX1" + } + }, + { + "id": "kc0i7d8t-QOP-lda197nn", + "label": { + "value": "\"Oui, auprès d’un agent de l’administration (France Services, agents de mairie…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_AIDADMX2" + } + }, + { + "id": "kc0i7d8t-QOP-lda16296", + "label": { + "value": "\" \n\nOui, auprès d’un travailleur social ou d’une association\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_AIDADMX3" + } + }, + { + "id": "kc0i7d8t-QOP-lda0yh9x", + "label": { + "value": "\" \n\nOui, auprès d’une autre personne\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_AIDADMX4" + } + }, + { + "id": "kc0i7d8t-QOP-lda10j63", + "label": { + "value": "\" \n\nNon\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_AIDADMX5" + } + } + ] + }, + { + "id": "kc0is12p", + "componentType": "CheckboxGroup", + "page": "49", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, avez-vous renoncé à faire des démarches administratives sur Internet ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "l5qshzbr", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Un refus de l’administration à l’issue d’une démarche ne compte pas comme un renoncement à cette démarche.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0is12p-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_RENADMX9, false) and ( nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"La réponse « Non » n’est pas compatible avec les autres items.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_RENADMX_MISSING" + }, + "responses": [ + { + "id": "kc0is12p-QOP-l5qsr5vo", + "label": { + "value": "\" \n\nOui, car le site Internet était en panne ou bloquait \"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX1" + } + }, + { + "id": "kc0is12p-QOP-l5qsgsly", + "label": { + "value": "\" \n\nOui, car je n’ai pas eu accès à un ordinateur ou à Internet\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX2" + } + }, + { + "id": "kc0is12p-QOP-l5qsm2gh", + "label": { + "value": "\"Oui, car je n’ai pas pu demander ou obtenir de l’aide auprès de mon entourage\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX3" + } + }, + { + "id": "kc0is12p-QOP-l5qsyby7", + "label": { + "value": "\" \n\nOui, car l’administration n’a pas répondu à mes questions\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX4" + } + }, + { + "id": "kc0is12p-QOP-l5qsshvt", + "label": { + "value": "\" \n\nOui, je n’ai même pas essayé car je m’en sentais incapable\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX5" + } + }, + { + "id": "kc0is12p-QOP-l5qsrllz", + "label": { + "value": "\" \n\nOui, car cela n’en valait pas la peine (inutile, gain attendu trop faible)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX6" + } + }, + { + "id": "kc0is12p-QOP-l5qsuktj", + "label": { + "value": "\"Oui, car les démarches étaient trop complexes (trop de pièces justificatives, procédure longue)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX7" + } + }, + { + "id": "kc0is12p-QOP-l5qshfk9", + "label": { + "value": "\" \n\nOui, pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX8" + } + }, + { + "id": "kc0is12p-QOP-l5qsvqkb", + "label": { + "value": "\" \n\nNon\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RENADMX9" + } + } + ] + }, + { + "id": "kc0iso1a", + "componentType": "Radio", + "mandatory": false, + "page": "50", + "label": { + "value": "\"➡ \" || \"Avez-vous pu effectuer ces démarches d’une autre façon (sur place, par téléphone, etc.) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0i2t9p", + "page": "39", + "label": { + "value": "\"VII - \" || \"Votre utilisation des services administratifs\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_AUTADM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_AUTADM" + } + }, + { + "id": "kc0ir8tk", + "componentType": "Sequence", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0ixcd2", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Abordons les questions concernant vos achats ou commandes sur Internet à titre privé, c'est-à-dire pour votre usage ou celui d'une tierce personne mais hors usage professionnel.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kc0iuqho", + "componentType": "Radio", + "mandatory": false, + "page": "52", + "label": { + "value": "\"➡ \" || \"Personnellement, quand avez-vous pour la dernière fois acheté ou commandé des produits ou des services sur Internet pour un usage privé (c'est-à-dire hors usage professionnel) ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DATECOM_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" \n\nAu cours des trois derniers mois\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" \n\nEntre trois mois et un an\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" \n\nIl y a plus d’un an\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous n’avez jamais acheté ou commandé sur Internet. \"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DATECOM" + } + }, + { + "id": "kc0ijn79", + "componentType": "CheckboxGroup", + "page": "53", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, hors usage professionnel, avez-vous personnellement acheté ou commandé sur Internet ou via une application les biens ou services suivants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ACHATXX_MISSING" + }, + "responses": [ + { + "id": "kc0ijn79-QOP-lnd8qelb", + "label": { + "value": "\" \n\nDes vêtements (y compris vêtements de sport), chaussures ou accessoires (sacs, bijoux, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX1" + } + }, + { + "id": "kc0ijn79-QOP-lnd8qkwb", + "label": { + "value": "\"Des articles de sport (hors vêtements)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX2" + } + }, + { + "id": "kc0ijn79-QOP-lnd8uqlf", + "label": { + "value": "\"Des jouets ou des articles pour enfants (couches, biberons, poussettes, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX3" + } + }, + { + "id": "kc0ijn79-QOP-lnd8jdby", + "label": { + "value": "\"Des meubles, accessoires pour la maison (tapis, rideaux, etc.) ou des articles de jardinage (outils, plantes, etc.) \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX4" + } + }, + { + "id": "kc0ijn79-QOP-lnd8du45", + "label": { + "value": "\"De la musique (CD, vinyles, etc.), des films ou séries (DVD, Blu-Ray, etc.) \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX5" + } + }, + { + "id": "kc0ijn79-QOP-lnd8kw25", + "label": { + "value": "\"Des livres, magazines ou journaux papier \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX6" + } + }, + { + "id": "kc0ijn79-QOP-lnd8huar", + "label": { + "value": "\"Des ordinateurs, tablettes, téléphones mobiles ou accessoires informatiques \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX7" + } + }, + { + "id": "kc0ijn79-QOP-lnd8r9hm", + "label": { + "value": "\"Des appareils électroniques (téléviseurs, chaînes stéréo, appareils photos, enceintes, assistants vocaux, etc.) ou des appareils électroménagers (machine à laver, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX8" + } + }, + { + "id": "kc0ijn79-QOP-lnd8azun", + "label": { + "value": "\"Des médicaments ou des compléments alimentaires (hors renouvellement d’ordonnance en ligne)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX9" + } + }, + { + "id": "kc0ijn79-QOP-lnd8uq4q", + "label": { + "value": "\"Des plats livrés à domicile (via Just Eat, Deliveroo, UberEats, etc.) \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX10" + } + }, + { + "id": "kc0ijn79-QOP-lnd8hgjh", + "label": { + "value": "\"Des produits alimentaires (y compris drive et kits-repas à cuisiner)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX11" + } + }, + { + "id": "kc0ijn79-QOP-lnd8a4pd", + "label": { + "value": "\"Des cosmétiques, des articles de beauté ou de bien-être\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX12" + } + }, + { + "id": "kc0ijn79-QOP-lnd8nwzt", + "label": { + "value": "\"Des produits de nettoyage ou d’hygiène corporelle (brosses à dents, mouchoirs, produits de lessive, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX13" + } + }, + { + "id": "kc0ijn79-QOP-lnd8jubz", + "label": { + "value": "\"Des vélos, motos, voitures ou d’autres véhicules ou leurs pièces détachées\"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX14" + } + }, + { + "id": "kc0ijn79-QOP-lnd8qx6d", + "label": { + "value": "\"D’autres articles \"", + "type": "VTL|MD" + }, + "response": { + "name": "ACHATXX15" + } + } + ] + }, + { + "id": "lnd86l8j", + "componentType": "CheckboxGroup", + "page": "54", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, hors usage professionnel, avez-vous souscrit à un des abonnements suivants sur Internet ou via une application ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd7ygqw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnd86l8j-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(ABACHAX3, false) and (nvl(ABACHAX1, false) or nvl(ABACHAX2, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\" Votre réponse « Aucun de ces abonnements » est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ABACHAX_MISSING" + }, + "responses": [ + { + "id": "lnd86l8j-QOP-lnd8hj37", + "label": { + "value": "\"Un abonnement à Internet ou de téléphonie mobile\"", + "type": "VTL|MD" + }, + "response": { + "name": "ABACHAX1" + } + }, + { + "id": "lnd86l8j-QOP-lnd8fqxa", + "label": { + "value": "\"Un abonnement en électricité, eau, chauffage ou services similaires\"", + "type": "VTL|MD" + }, + "response": { + "name": "ABACHAX2" + } + }, + { + "id": "lnd86l8j-QOP-lnd89wkt", + "label": { + "value": "\"Aucun de ces abonnements\"", + "type": "VTL|MD" + }, + "response": { + "name": "ABACHAX3" + } + } + ] + }, + { + "id": "lnd8amkr", + "componentType": "CheckboxGroup", + "page": "55", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, hors usage professionnel, avez-vous acheté sur un site Internet ou via une application un des produits ou services suivants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnd8amkr-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(SERACHAX7, false) and (nvl($SERVACHAX1$, false) or nvl($SERVACHAX2$, false) or nvl($SERVACHAX3$, false) or nvl($SERVACHAX4$, false) or nvl($SERVACHAX5$, false) or nvl($SERVACHAX6$, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Aucun de ces produits ou services » est incompatible avec les autres réponses.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "SERACHAX_MISSING" + }, + "responses": [ + { + "id": "lnd8amkr-QOP-lnd8axa7", + "label": { + "value": "\"Un service de transport auprès d’une compagnie de bus, train, avion, taxi (SNCF, Uber, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX1" + } + }, + { + "id": "lnd8amkr-QOP-lnd8s5fg", + "label": { + "value": "\"Une location de logement auprès d’une entreprise telle qu’un hôtel ou une agence de voyages\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX2" + } + }, + { + "id": "lnd8amkr-QOP-lnd8durp", + "label": { + "value": "\"Un billet pour une manifestation culturelle ou sportive (cinéma, concerts, matchs, foires, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX3" + } + }, + { + "id": "lnd8amkr-QOP-lnd8o5fs", + "label": { + "value": "\"Un livre électronique ou un livre audio téléchargé (y compris les mises à jour)\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX4" + } + }, + { + "id": "lnd8amkr-QOP-lnd8aop4", + "label": { + "value": "\"Un logiciel téléchargé (y compris les mises à jour)\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX5" + } + }, + { + "id": "lnd8amkr-QOP-lnd8kbvo", + "label": { + "value": "\"Un jeu en ligne ou téléchargé (y compris les mises à jour)\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX6" + } + }, + { + "id": "lnd8amkr-QOP-lnd8culf", + "label": { + "value": "\"Aucun de ces produits ou services\"", + "type": "VTL|MD" + }, + "response": { + "name": "SERACHAX7" + } + } + ] + }, + { + "id": "lnd8oyto", + "componentType": "CheckboxGroup", + "page": "56", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, hors usage professionnel, avez-vous personnellement payé un abonnement à un des services suivants (que ce soit un abonnement en cours ou une nouvelle souscription) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd8i3e6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnd8oyto-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(PAYACHAX7, false) and (nvl(PAYACHAX1, false) or nvl(PAYACHAX2, false) or nvl(PAYACHAX3, false) or nvl(PAYACHAX4, false) or nvl(PAYACHAX5, false) or nvl(PAYACHAX6, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Vous n’avez personnellement payé aucun de ces services » est incompatible avec les autres réponses \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PAYACHAX_MISSING" + }, + "responses": [ + { + "id": "lnd8oyto-QOP-lq5fejj8", + "label": { + "value": "\"Un service de musique en streaming (Spotify, Deezer, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX1" + } + }, + { + "id": "lnd8oyto-QOP-lq5fmgn8", + "label": { + "value": "\"Un service de films, sports ou séries en streaming (Netflix, HBO Max, Amazon prime, Disney+, MyCanal, Apple TV, Showtime, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX2" + } + }, + { + "id": "lnd8oyto-QOP-lq5fo1h3", + "label": { + "value": "\"Un magazine, un site d’information ou un journal en ligne\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX3" + } + }, + { + "id": "lnd8oyto-QOP-lq5febyh", + "label": { + "value": "\"Un service de jeux vidéo à la demande (XBOX Game, GeForce Now, PlayStation Now, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX4" + } + }, + { + "id": "lnd8oyto-QOP-lq5f7shc", + "label": { + "value": "\"Une application payante liée à la santé ou à la forme physique\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX5" + } + }, + { + "id": "lnd8oyto-QOP-lq5fcx77", + "label": { + "value": "\"Une autre application payante (apprentissage de langues, voyages, météo, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX6" + } + }, + { + "id": "lnd8oyto-QOP-lq5f6twe", + "label": { + "value": "\"Vous n’avez personnellement payé aucun de ces services\"", + "type": "VTL|MD" + }, + "response": { + "name": "PAYACHAX7" + } + } + ] + }, + { + "id": "kc0juxed", + "componentType": "CheckboxGroup", + "page": "57", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, dans un but privé, avez-vous effectué les activités financières suivantes sur un site Internet ou une application :\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0juxed-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(FINANCEX4,false) and ( nvl(FINANCEX1,false) or nvl(FINANCEX2,false) or nvl(FINANCEX3,false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Aucune de ces activités financières » est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0ir8tk", + "page": "51", + "label": { + "value": "\"VIII - \" || \"Vos habitudes de consommation sur Internet \"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "FINANCEX_MISSING" + }, + "responses": [ + { + "id": "kc0juxed-QOP-kwupchpe", + "label": { + "value": "\" \n\nSouscrire à une assurance (y compris une assurance voyage lors de l’achat d’un billet d’avion).\"", + "type": "VTL|MD" + }, + "response": { + "name": "FINANCEX1" + } + }, + { + "id": "kc0juxed-QOP-kwupd9tf", + "label": { + "value": "\" \n\nContracter un prêt, une hypothèque ou un emprunt auprès d’une banque ou d’un établissement financier\"", + "type": "VTL|MD" + }, + "response": { + "name": "FINANCEX2" + } + }, + { + "id": "kc0juxed-QOP-kwupqb7v", + "label": { + "value": "\" \n\nAcheter ou vendre des actions, obligations, parts de fonds de placement ou d’autres actifs financiers\"", + "type": "VTL|MD" + }, + "response": { + "name": "FINANCEX3" + } + }, + { + "id": "kc0juxed-QOP-kwupdwz9", + "label": { + "value": "\" \n\nAucune de ces activités financières\"", + "type": "VTL|MD" + }, + "response": { + "name": "FINANCEX4" + } + } + ] + }, + { + "id": "lnd9bbn9", + "componentType": "Sequence", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnd96e99", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Les questions suivantes concernent l’utilisation, à des fins privées, d’appareils connectés à Internet ou connectés entre eux (commande à distance de l’appareil, réglage des paramètres, instructions pour les tâches à effectuer, réception de données de l’appareil, etc.)\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lndbnxta", + "componentType": "CheckboxGroup", + "page": "59", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, avez-vous déjà utilisé à des fins privées l’un des appareils connectés à Internet suivants ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lndc2hq5", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lndbnxta-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(HOMEIOTX5, false) and (nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Aucun de ces appareils » - est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "HOMEIOTX_MISSING" + }, + "responses": [ + { + "id": "lndbnxta-QOP-lndcmxp7", + "label": { + "value": "\"Appareils pour la gestion de l’énergie de votre maison (thermostat, compteurs électriques, éclairages, plug-ins, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "HOMEIOTX1" + } + }, + { + "id": "lndbnxta-QOP-lndcspen", + "label": { + "value": "\"Appareils de sécurité pour votre maison (système d’alarme, détecteur de fumée, caméras de sécurité, serrures de porte, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "HOMEIOTX2" + } + }, + { + "id": "lndbnxta-QOP-lndcokyy", + "label": { + "value": "\"Appareils électroménagers (aspirateurs robotisés, réfrigérateurs, fours, machines à café, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "HOMEIOTX3" + } + }, + { + "id": "lndbnxta-QOP-lndcx88t", + "label": { + "value": "\"Assistant virtuel sous forme d’enceinte intelligente ou d’application (Google Home, Amazon Echo ou Alexa, Google Assistant, Siri, Cortana, Bixby, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "HOMEIOTX4" + } + }, + { + "id": "lndbnxta-QOP-lndd58y0", + "label": { + "value": "\"Aucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "HOMEIOTX5" + } + } + ] + }, + { + "id": "lndc97me", + "componentType": "CheckboxGroup", + "page": "60", + "label": { + "value": "\"➡ \" || \"Pourquoi n’avez-vous pas utilisé les appareils connectés à Internet mentionnés précédemment, au cours des trois derniers mois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lndcerzw", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "type": "VTL" + }, + "controls": [ + { + "id": "lndc97me-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(RAISIOTX1, false) and (nvl(RAISIOTX2,false) or nvl(RAISIOTX3,false) or nvl(RAISIOTX4,false) or nvl(RAISIOTX5,false) or nvl(RAISIOTX6,false) or nvl(RAISIOTX7,false) or nvl(RAISIOTX8,false) or nvl(RAISIOTX9,false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Je ne savais pas que cela existait » - est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "RAISIOTX_MISSING" + }, + "responses": [ + { + "id": "lndc97me-QOP-lndd2a0j", + "label": { + "value": "\"Vous ne saviez pas que cela existait\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX1" + } + }, + { + "id": "lndc97me-QOP-lndcpqmn", + "label": { + "value": "\"Vous n'en aviez pas besoin\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX2" + } + }, + { + "id": "lndc97me-QOP-lndd17il", + "label": { + "value": "\"Les coûts sont trops élevés\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX3" + } + }, + { + "id": "lndc97me-QOP-lndcwqv9", + "label": { + "value": "\"Ils n'étaient pas compatibles avec d'autres dispositifs ou systèmes\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX4" + } + }, + { + "id": "lndc97me-QOP-lndcvahp", + "label": { + "value": "\"Vous manquez de compétences\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX5" + } + }, + { + "id": "lndc97me-QOP-lndctsyq", + "label": { + "value": "\"Vous êtes préoccupé(e) par la confidentialité et la protection de vos données personnelles\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX6" + } + }, + { + "id": "lndc97me-QOP-lndcv02f", + "label": { + "value": "\"Vous êtes préoccupé(e) par la sécurité (peur du piratage)\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX7" + } + }, + { + "id": "lndc97me-QOP-lndcz1pb", + "label": { + "value": "\"Vous êtes préoccupé(e) par la santé (peur que cela entraîne un accident, une blessure, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX8" + } + }, + { + "id": "lndc97me-QOP-lndd3fbj", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "RAISIOTX9" + } + } + ] + }, + { + "id": "lndcj9fz", + "componentType": "CheckboxGroup", + "page": "61", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, à votre domicile, avez-vous déjà utilisé Internet sur l’un des appareils suivants ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lndcxyg7", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lndcj9fz-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(TVIOTX4, false) and (nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse – « Aucun de ces appareils » – est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "TVIOTX_MISSING" + }, + "responses": [ + { + "id": "lndcj9fz-QOP-lndd0hai", + "label": { + "value": "\"Une télévision\"", + "type": "VTL|MD" + }, + "response": { + "name": "TVIOTX1" + } + }, + { + "id": "lndcj9fz-QOP-lndd6bpp", + "label": { + "value": "\"Une console de jeu\"", + "type": "VTL|MD" + }, + "response": { + "name": "TVIOTX2" + } + }, + { + "id": "lndcj9fz-QOP-lndd0jk8", + "label": { + "value": "\"Un système audio domestique, des enceintes intelligentes\"", + "type": "VTL|MD" + }, + "response": { + "name": "TVIOTX3" + } + }, + { + "id": "lndcj9fz-QOP-lndcspt5", + "label": { + "value": "\"Aucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "TVIOTX4" + } + } + ] + }, + { + "id": "lndcjg90", + "componentType": "CheckboxGroup", + "page": "62", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, avez-vous utilisé l'un des dispositifs connectés à Internet suivants, pour un usage privé ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lndcjizc", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lndcjg90-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(AUTIOTX5, false) and (nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse – « Aucun de ces appareils  » – est incompatible avec les autres réponses \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "AUTIOTX_MISSING" + }, + "responses": [ + { + "id": "lndcjg90-QOP-lndco0sy", + "label": { + "value": "\"Un objet connecté porté au quotidien (montre intelligente, bracelet de fitness, lunettes ou casques connectés, traqueurs de sécurité, accessoires, vêtements ou chaussures connectés)\"", + "type": "VTL|MD" + }, + "response": { + "name": "AUTIOTX1" + } + }, + { + "id": "lndcjg90-QOP-lndd6aqv", + "label": { + "value": "\"Un dispositif pour la santé et les soins médicaux (pour contrôler la tension artérielle, le taux de sucre, le poids corporel avec une balance intelligente par exemple, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "AUTIOTX2" + } + }, + { + "id": "lndcjg90-QOP-lndcuhub", + "label": { + "value": "\"Des jouets (pour les enfants ou pour les adultes), comme des robots, des drones ou des poupées connectés.\"", + "type": "VTL|MD" + }, + "response": { + "name": "AUTIOTX3" + } + }, + { + "id": "lndcjg90-QOP-lndcy1ey", + "label": { + "value": "\"Une voiture avec accès Internet sans fil intégré\"", + "type": "VTL|MD" + }, + "response": { + "name": "AUTIOTX4" + } + }, + { + "id": "lndcjg90-QOP-lndcqc5j", + "label": { + "value": "\"Aucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "AUTIOTX5" + } + } + ] + }, + { + "id": "lndcrv7o", + "componentType": "CheckboxGroup", + "page": "63", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, avez-vous rencontré l’un des problèmes suivants en utilisant les appareils connectés mentionnés précédemment ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lndd4xzn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "type": "VTL" + }, + "controls": [ + { + "id": "lndcrv7o-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(PBIOTX5, false) and (nvl(PBIOTX1,false) or nvl(PBIOTX2,false) or nvl(PBIOTX3,false) or nvl(PBIOTX4,false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Vous n’avez rencontré aucun problème » - est incompatible avec les autres réponses \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnd9bbn9", + "page": "58", + "label": { + "value": "\"IX - \" || \"Les objets connectés\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PBIOTX_MISSING" + }, + "responses": [ + { + "id": "lndcrv7o-QOP-lndd38cy", + "label": { + "value": "\"Des problèmes de sécurité ou de confidentialité (appareil piraté, problèmes avec la protection des informations privées sur vous ou votre famille, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PBIOTX1" + } + }, + { + "id": "lndcrv7o-QOP-lndd37cd", + "label": { + "value": "\"Des problèmes de santé (utilisation d’un appareil conduisant à un accident, une blessure ou une maladie, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PBIOTX2" + } + }, + { + "id": "lndcrv7o-QOP-lndctdru", + "label": { + "value": "\"Des difficultés à utiliser l’appareil (installation, configuration, connexion, jumelage de l’appareil, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PBIOTX3" + } + }, + { + "id": "lndcrv7o-QOP-lndct3sr", + "label": { + "value": "\"D’autres problèmes (déconnexions, problèmes d’assistance, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "PBIOTX4" + } + }, + { + "id": "lndcrv7o-QOP-lndd5noi", + "label": { + "value": "\"Vous n’avez rencontré aucun problème\"", + "type": "VTL|MD" + }, + "response": { + "name": "PBIOTX5" + } + } + ] + }, + { + "id": "lnubyqsk", + "componentType": "Sequence", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnuc0utf", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Les questions suivantes concernent vos pratiques environnementales.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lnubyqsk", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lnucc4yw", + "componentType": "Radio", + "mandatory": false, + "page": "65", + "label": { + "value": "\"➡ \" || \"Qu'avez-vous fait de votre dernier téléphone portable ou smartphone lorsque vous l'avez remplacé ou qu'il est devenu inutile ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnucbucm", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Répondez en vous référant à l'appareil personnel le plus récent que vous ayez remplacé ou cessé d'utiliser.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lnubyqsk", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "GREENA_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Vous le conservez à votre domicile mais il n'est plus utilisé.\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Vous l'avez vendu ou donné à quelqu'un d'autre.\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Vous l'avez jeté dans une poubelle de recyclage des déchets électroniques (ou laissé à un détaillant pour qu'il le jette).\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous l'avez jeté mais pas dans une poubelle de recyclage.\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Vous n'avez jamais acheté de téléphone portable ou smartphone ou vous l'utilisez toujours.\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Autre.\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GREENA" + } + }, + { + "id": "lnuctqyc", + "componentType": "Radio", + "mandatory": false, + "page": "66", + "label": { + "value": "\"➡ \" || \"Qu'avez-vous fait de votre dernier ordinateur portable ou tablette lorsque vous l'avez remplacé ou qu'il est devenu inutile ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnucet0l", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Répondez en vous référant à l’appareil personnel le plus récent que vous ayez remplacé ou cessé d’utiliser.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lnubyqsk", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "GREENB_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Vous le conservez à votre domicile mais il n'est plus utilisé.\r\n\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Vous l'avez vendu à ou donné à quelqu'un d'autre.\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Vous l'avez jeté dans une poubelle de recyclage de déchets électroniques (ou laissé à un détaillant pour qu'il le jette)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous l'avez jeté mais pas dans une poubelle de recyclage\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Vous n'avez jamais acheté d'ordinateur portable ou de tablette ou vous l'utilisez toujours.\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Autre\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GREENB" + } + }, + { + "id": "lnucrg4j", + "componentType": "Radio", + "mandatory": false, + "page": "67", + "label": { + "value": "\"➡ \" || \"Qu'avez-vous fait de votre dernier ordinateur fixe lorsque vous l'avez remplacé ou qu'il est devenu inutile ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnucu041", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Répondez en vous référant à l’appareil personnel le plus récent que vous ayez remplacé ou cessé d’utiliser.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lnubyqsk", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "GREENC_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Vous le conservez à votre domicile mais il n’est plus utilisé\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Vous l’avez vendu ou donné à quelqu’un d’autre\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Vous l’avez jeté dans une poubelle de recyclage des déchets électroniques (ou laissé à un détaillant pour qu’il le jette)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous l’avez jeté mais pas dans une poubelle de recyclage\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Vous n’avez jamais acheté d’ordinateur fixe ou vous l’utilisez toujours\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Autre\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "GREENC" + } + }, + { + "id": "lnudc90x", + "componentType": "CheckboxGroup", + "page": "68", + "label": { + "value": "\"➡ \" || \"Lors de votre dernier achat de téléphone portable, smartphone, tablette ou ordinateur fixe ou portable, lesquelles des caractéristiques suivantes avez-vous considérées comme importantes ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnud68e6", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnudc90x-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(CARGREENX8, false) and (nvl(CARGREENX1, false) or nvl(CARGREENX2, false) or nvl(CARGREENX3, false) or nvl(CARGREENX4, false) or nvl(CARGREENX5, false) or nvl(CARGREENX6, false) or nvl(CARGREENX7, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Vous n’avez pris en compte aucune des caractéristiques mentionnées » - est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + }, + { + "id": "lnudc90x-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(CARGREENX9, false) and (nvl(CARGREENX1, false) or nvl(CARGREENX2, false) or nvl(CARGREENX3, false) or nvl(CARGREENX4, false) or nvl(CARGREENX5, false) or nvl(CARGREENX6, false) or nvl(CARGREENX7, false) or nvl(CARGREENX8, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Vous n’avez jamais acheté aucun de ces appareils » - est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "lnubyqsk", + "page": "64", + "label": { + "value": "\"X - \" || \"Les technologies et l'environnement\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "CARGREENX_MISSING" + }, + "responses": [ + { + "id": "lnudc90x-QOP-lnufkxpk", + "label": { + "value": "\"Le prix\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX1" + } + }, + { + "id": "lnudc90x-QOP-lnufek2c", + "label": { + "value": "\"La marque, le design ou la taille\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX2" + } + }, + { + "id": "lnudc90x-QOP-lnufgjc8", + "label": { + "value": "\"Les caractéristiques matérielles du produit (stockage, vitesse du processeur, caméra, carte graphique, etc)\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX3" + } + }, + { + "id": "lnudc90x-QOP-lnufiitm", + "label": { + "value": "\"L’éco-conception de l'appareil (produit durable, évolutif et réparables qui nécessite moins de matériaux, emballage respectueux de l'environnement, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX4" + } + }, + { + "id": "lnudc90x-QOP-lnufa5j3", + "label": { + "value": "\"La possibilité de prolonger la durée de vie de l'appareil en achetant une garantie supplémentaire\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX5" + } + }, + { + "id": "lnudc90x-QOP-lnufdnfo", + "label": { + "value": "\"L’efficacité énergétique de l’appareil\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX6" + } + }, + { + "id": "lnudc90x-QOP-lnuflw4f", + "label": { + "value": "\"Une garantie de reprise proposé par le fabricant ou le vendeur (le fabricant ou le vendeur reprend l'appareil obsolète sans frais ou offre des remises pour acheter un nouvel appareil)\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX7" + } + }, + { + "id": "lnudc90x-QOP-lnufbcrx", + "label": { + "value": "\"Vous n’avez pris en compte aucune des caractéristiques mentionnées\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX8" + } + }, + { + "id": "lnudc90x-QOP-lnuf3b2e", + "label": { + "value": "\"Vous n'avez jamais acheté aucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "CARGREENX9" + } + } + ] + }, + { + "id": "kc0mpozo", + "componentType": "Sequence", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0mf1y0", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Poursuivons par des questions concernant votre équipement numérique (téléphone fixe, téléphone portable, ordinateur, box).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lnue69t2", + "componentType": "Radio", + "mandatory": false, + "page": "70", + "label": { + "value": "\"➡ \" || \"De quel type d'équipement en téléphone fixe disposez-vous à domicile ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_FIXE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Une box Internet comprenant une ligne fixe, avec un téléphone fixe branché dessus.\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Une box Internet comprenant une ligne fixe mais sans téléphone fixe branché dessus.\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Juste une ligne fixe avec un téléphone branché dessus\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Vous n'avez pas de ligne de téléphone fixe\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_FIXE" + } + }, + { + "id": "lnue7e91", + "componentType": "CheckboxGroup", + "page": "71", + "label": { + "value": "\"➡ \" || \"À votre domicile, pour votre usage privé, disposez-vous de l'un des appareils suivants ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnueb49y", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnue7e91-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_ORDIX5, false) and (nvl(F_ORDIX1, false) or nvl(F_ORDIX2, false) or nvl(F_ORDIX3, false) or nvl(F_ORDIX4, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse «Aucun de ces appareils » est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_ORDIX_MISSING" + }, + "responses": [ + { + "id": "lnue7e91-QOP-lnuf6vvh", + "label": { + "value": "\"Un ordinateur fixe\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_ORDIX1" + } + }, + { + "id": "lnue7e91-QOP-lnufbk1s", + "label": { + "value": "\"Un ordinateur portable\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_ORDIX2" + } + }, + { + "id": "lnue7e91-QOP-lnufbc34", + "label": { + "value": "\"Une tablette\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_ORDIX3" + } + }, + { + "id": "lnue7e91-QOP-lnuf7khz", + "label": { + "value": "\"Une liseuse\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_ORDIX4" + } + }, + { + "id": "lnue7e91-QOP-lnuf8g9e", + "label": { + "value": "\"Aucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_ORDIX5" + } + } + ] + }, + { + "id": "kc0mzowl", + "componentType": "CheckboxGroup", + "page": "72", + "label": { + "value": "\"➡ \" || \"Pour votre usage privé, utilisez-vous l'un des équipements suivants ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0mzowl-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_SMARTPHONEX3,false) and ( nvl(F_SMARTPHONEX1,false) or nvl(F_SMARTPHONEX2,false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Aucun de ces appareils » est incompatible avec les autres réponses.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_SMARTPHONEX_MISSING" + }, + "responses": [ + { + "id": "kc0mzowl-QOP-l5s01nq2", + "label": { + "value": "\" \n\nUn smartphone\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_SMARTPHONEX1" + } + }, + { + "id": "kc0mzowl-QOP-l5s0d01s", + "label": { + "value": "\" \n\nUn téléphone mobile hors smartphone\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_SMARTPHONEX2" + } + }, + { + "id": "kc0mzowl-QOP-l5s03ili", + "label": { + "value": "\" \n\nAucun de ces appareils\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_SMARTPHONEX3" + } + } + ] + }, + { + "id": "lnuef2pw", + "componentType": "Radio", + "mandatory": false, + "page": "73", + "label": { + "value": "\"➡ \" || \"Depuis combien de temps possédez-vous votre smartphone actuel ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_DURSMART_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Depuis moins d'un an\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Depuis 1 à 2 ans\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Depuis 3 à 5 ans\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Depuis plus de 5 ans\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_DURSMART" + } + }, + { + "id": "lnuf1qgc", + "componentType": "Radio", + "mandatory": false, + "page": "74", + "label": { + "value": "\"➡ \" || \"Quand vous vous êtes procuré votre smartphone actuel, quelle sorte d'appareil était-ce ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_ETASMART_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Un smartphone neuf\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Un smartphone d'occasion\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Un smartphone reconditionné\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_ETASMART" + } + }, + { + "id": "lnuf6krf", + "componentType": "CheckboxGroup", + "page": "75", + "label": { + "value": "\"➡ \" || \"Pour quelle(s) raison(s) vous êtes vous procuré votre smartphone actuel ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnuf1mzn", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "type": "VTL" + }, + "controls": [ + { + "id": "lnuf6krf-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_RAISMARTX6, false) and (nvl(F_RAISMARTX1, false) or nvl(F_RAISMARTX2, false) or nvl(F_RAISMARTX3, false) or nvl(F_RAISMARTX4, false) or nvl(F_RAISMARTX5, false) or nvl(F_RAISMARTX7, false) ))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse - « Vous n’aviez pas de smartphone précédemment mais vous souhaitiez en avoir un » - est incompatible avec les autres réponses\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0mpozo", + "page": "69", + "label": { + "value": "\"XI - \" || \"Votre équipement numérique\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_RAISMARTX_MISSING" + }, + "responses": [ + { + "id": "lnuf6krf-QOP-lnufk54m", + "label": { + "value": "\"Votre précédent smartphone était cassé ou défaillant (batterie défaillante, écran abîmé, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX1" + } + }, + { + "id": "lnuf6krf-QOP-lnufdzue", + "label": { + "value": "\"Votre précédent smartphone ne fonctionnait plus bien du fait de problèmes liés au système d’exploitation (lenteurs, applications qui ne fonctionnent plus, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX2" + } + }, + { + "id": "lnuf6krf-QOP-lnufkq86", + "label": { + "value": "\"Vous souhaitiez un modèle plus récent que le précédent\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX3" + } + }, + { + "id": "lnuf6krf-QOP-lnufk19a", + "label": { + "value": "\"Vous souhaitiez monter en gamme de smartphone (avoir une meilleure capacité de stockage, une meilleure qualité de photo, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX4" + } + }, + { + "id": "lnuf6krf-QOP-lnufee61", + "label": { + "value": "\"Vous avez remplacé votre ancien smartphone en raison d’une offre promotionnelle\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX5" + } + }, + { + "id": "lnuf6krf-QOP-lnufes85", + "label": { + "value": "\"Vous n’aviez pas de smartphone précédemment mais vous souhaitiez en avoir un\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX6" + } + }, + { + "id": "lnuf6krf-QOP-lnufcpin", + "label": { + "value": "\"Autre\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_RAISMARTX7" + } + } + ] + }, + { + "id": "lqb26uki", + "componentType": "Sequence", + "page": "76", + "label": { + "value": "\"XII - \" || \"Exposition aux écrans\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lqb21ofu", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous nous intéressons à présent au temps que vous passez devant les écrans pour un usage personnel, quel que soit le type de support (ordinateur, smartphone, tablette, télévision, console de jeu...).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lqb26uki", + "page": "76", + "label": { + "value": "\"XII - \" || \"Exposition aux écrans\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lqb27fdb", + "componentType": "Radio", + "mandatory": false, + "page": "77", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, pour un usage personnel, combien de temps en moyenne avez-vous passé devant un écran par jour travaillé (jour d’école, jour de semaine...) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lqb1zl9l", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Pour les personnes en emploi ou en cursus scolaire\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lqb26uki", + "page": "76", + "label": { + "value": "\"XII - \" || \"Exposition aux écrans\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_FRESEC_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Moins d'une heure\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Entre une et deux heures\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Entre deux et quatre heures\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Entre quatre et six heures\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Plus de six heures\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Non concerné(e)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_FRESEC" + } + }, + { + "id": "lqb2cik4", + "componentType": "Radio", + "mandatory": false, + "page": "78", + "label": { + "value": "\"➡ \" || \"Au cours des trois derniers mois, pour un usage personnel, combien de temps en moyenne avez-vous passé devant un écran par jour non-travaillé (week-end, congés...) ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lqb2fm9f", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Hors usage professionnel ou scolaire\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lqb26uki", + "page": "76", + "label": { + "value": "\"XII - \" || \"Exposition aux écrans\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_FREWEC_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Moins d'une heure\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Entre une et deux heures\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Entre deux et quatre heures\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Entre quatre et six heures\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Entre six et huit heures\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Plus de huit heures\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "F_FREWEC" + } + }, + { + "id": "lqb23j8a", + "componentType": "InputNumber", + "mandatory": false, + "page": "79", + "min": 0.0, + "max": 10.0, + "decimals": 0, + "label": { + "value": "\"➡ \" || \"Sur une échelle allant de 0 (pas du tout satisfait(e)) à 10 (entièrement satisfait(e)), indiquez votre satisfaction concernant la vie que vous menez actuellement.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "lqb26uki", + "page": "76", + "label": { + "value": "\"XII - \" || \"Exposition aux écrans\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_SATISVIE_MISSING" + }, + "response": { + "name": "F_SATISVIE" + } + }, + { + "id": "ks4tv406", + "componentType": "Sequence", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "ks4u5ja1", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Nous allons à présent nous intéresser à votre recours à la téléconsultation. La téléconsultation est une consultation d’un patient réalisée à distance par un médecin (généraliste ou de toute autre spécialité médicale).\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4tv406", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "lqb2a9ht", + "componentType": "InputNumber", + "mandatory": false, + "page": "81", + "min": 0.0, + "max": 10.0, + "decimals": 0, + "label": { + "value": "\"➡ \" || \"Sur une échelle allant de 0 (pas du tout satisfait(e)) à 10 (entièrement satisfait(e)), indiquez votre satisfaction concernant votre santé.\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4tv406", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_SATISSANTE_MISSING" + }, + "response": { + "name": "F_SATISSANTE" + } + }, + { + "id": "lnufsvxy", + "componentType": "CheckboxGroup", + "page": "82", + "label": { + "value": "\"➡ \" || \"Au cours des douze derniers mois, avez-vous eu recours à une téléconsultation avec un médecin (généraliste ou spécialiste), c’est-à-dire à une consultation à distance soit par téléphone, soit par l’intermédiaire d’une vidéo ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnufnpc1", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "lnufsvxy-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_TELECONX3, false) and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false) or nvl(F_TELECONX4, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Non, vous n’avez pas téléconsulté mais vous avez consulté un médecin à son cabinet, à l’hôpital ou à domicile » est incompatible avec les autres réponses.\"", + "type": "VTL|MD" + } + }, + { + "id": "lnufsvxy-CI-1", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(nvl(F_TELECONX4, false) and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false) or nvl(F_TELECONX3, false)))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Votre réponse « Non, vous n’avez consulté aucun médecin au cours des douze derniers mois » est incompatible avec les autres réponses. \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "ks4tv406", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_TELECONX_MISSING" + }, + "responses": [ + { + "id": "lnufsvxy-QOP-lnugi3w6", + "label": { + "value": "\"Oui, vous avez téléconsulté par vidéo\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELECONX1" + } + }, + { + "id": "lnufsvxy-QOP-lnug9f6b", + "label": { + "value": "\"Oui, vous avez téléconsulté par téléphone\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELECONX2" + } + }, + { + "id": "lnufsvxy-QOP-lnug6a77", + "label": { + "value": "\"Non, vous n'avez pas téléconsulté mais vous avez consulté un médecin à son cabinet, à l'hôpital ou à domicile.\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELECONX3" + } + }, + { + "id": "lnufsvxy-QOP-lnug12ge", + "label": { + "value": "\"Non, vous n'avez consulté aucun médecin au cours des douze derniers mois (que ce soit à distance, dans son cabinet, à l'hôpital ou à votre domicile)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELECONX4" + } + } + ] + }, + { + "id": "lnufz3ld", + "componentType": "CheckboxGroup", + "page": "83", + "label": { + "value": "\"➡ \" || \"Pour quelles raisons avez-vous réalisé une téléconsultation plutôt qu’une consultation en présence physique du médecin au cours des trois derniers mois ?\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lnufzf6c", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Plusieurs réponses possibles\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4tv406", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_TELEOUIXX_MISSING" + }, + "responses": [ + { + "id": "lnufz3ld-QOP-lnug0ia9", + "label": { + "value": "\"Il est compliqué pour vous de vous déplacer (handicap, pas de voiture ou pas de permis, enfants en bas âge, etc.)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX1" + } + }, + { + "id": "lnufz3ld-QOP-lnufy8q3", + "label": { + "value": "\"Vous étiez loin de votre domicile au moment où vous souhaitiez consulter (vacances, déplacement, formation…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX2" + } + }, + { + "id": "lnufz3ld-QOP-lnug07vj", + "label": { + "value": "\"Vous aviez besoin de consulter un médecin en urgence\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX3" + } + }, + { + "id": "lnufz3ld-QOP-lnug55x8", + "label": { + "value": "\"Le délai d’attente pour une consultation en cabinet est trop long\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX4" + } + }, + { + "id": "lnufz3ld-QOP-lnugdcy0", + "label": { + "value": "\"Le médecin que vous souhaitiez consulter est loin de votre domicile\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX5" + } + }, + { + "id": "lnufz3ld-QOP-lnug92qf", + "label": { + "value": "\"La téléconsultation évite de transmettre ou d’être exposé.e à des maladies chez le médecin\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX6" + } + }, + { + "id": "lnufz3ld-QOP-lnugd9kx", + "label": { + "value": "\"C’est plus confortable pour le respect de l’intimité\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX7" + } + }, + { + "id": "lnufz3ld-QOP-lnufysso", + "label": { + "value": "\"Vous aviez juste besoin d’un renouvellement d’une ordonnance ou d’un certificat médical\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX8" + } + }, + { + "id": "lnufz3ld-QOP-lnufzppy", + "label": { + "value": "\"Vous aviez juste besoin de conseils médicaux\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX9" + } + }, + { + "id": "lnufz3ld-QOP-lnug6iti", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELEOUIXX10" + } + } + ] + }, + { + "id": "lnufz5dt", + "componentType": "CheckboxGroup", + "page": "84", + "label": { + "value": "\"➡ \" || \"Pourquoi n'avez-vous pas recouru à la téléconsultation au cours de douze derniers mois ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "ks4tv406", + "page": "80", + "label": { + "value": "\"XIII - \" || \"Les téléconsultations médicales\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "F_TELENONX_MISSING" + }, + "responses": [ + { + "id": "lnufz5dt-QOP-lnugaghj", + "label": { + "value": "\"Votre médecin ne propose pas ce mode de consultation\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX1" + } + }, + { + "id": "lnufz5dt-QOP-lnug81ys", + "label": { + "value": "\"Vous préférez vous rendre sur place pour consulter un médecin plutôt que de le faire virtuellement (attachement à la relation patient-médecin, meilleure qualité de la consultation…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX2" + } + }, + { + "id": "lnufz5dt-QOP-lnug4uyb", + "label": { + "value": "\"Vos symptômes nécessitaient une consultation en présence d’un médecin\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX3" + } + }, + { + "id": "lnufz5dt-QOP-lnugbjch", + "label": { + "value": "\"Vous n’êtes pas assez bien équipé pour réaliser une téléconsultation (matériel informatique inadapté, accès à Internet limité…)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX4" + } + }, + { + "id": "lnufz5dt-QOP-lnufzsi2", + "label": { + "value": "\"Vous n’êtes pas à l’aise avec les outils informatiques (Internet, sites Web sur lesquels sont réalisées les téléconsultations, applications)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX5" + } + }, + { + "id": "lnufz5dt-QOP-lnug6c61", + "label": { + "value": "\"Vous craignez pour la sécurité de vos données et le respect du secret médical (plateforme peu sécurisée, fuite de données)\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX6" + } + }, + { + "id": "lnufz5dt-QOP-lnugdexh", + "label": { + "value": "\"Pour une autre raison\"", + "type": "VTL|MD" + }, + "response": { + "name": "F_TELENONX7" + } + } + ] + }, + { + "id": "kc0n110n", + "componentType": "Sequence", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "kc0mziaq", + "declarationType": "INSTRUCTION", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Terminons par quelques questions plus générales sur votre situation professionnelle.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "kc0n6snm", + "componentType": "Radio", + "mandatory": false, + "page": "86", + "label": { + "value": "\"➡ \" || \"Quelle est actuellement votre situation principale vis-à-vis du travail ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "SITUAEU_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"En emploi\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Au chômage (inscrit(e) ou non à France Travail (anciennement Pôle Emploi))\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Retraité(e) ou pré-retraité(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"En incapacité de travailler en raison d'un handicap ou d'un problème de santé\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"En études\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Homme (femme) au foyer\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SITUAEU" + } + }, + { + "id": "lpv06337", + "componentType": "Radio", + "mandatory": false, + "page": "87", + "label": { + "value": "\"➡ \" || \"Avez-vous cependant un emploi ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lpv0erti", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Inclure : petit boulot, apprentissage, contrats en alternance, stage rémunéré, personne en congé maternité, en congé maladie ou en chômage partiel, personne travaillant sans être rémunéré(e) avec un membre de sa famille, élu(e)\"", + "type": "VTL|MD" + } + }, + { + "id": "lpuzyjqp", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Exclure : bénévolat\"", + "type": "VTL|MD" + } + }, + { + "id": "lpv01jrh", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Une seule réponse possible\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "TRAVAIL_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRAVAIL" + } + }, + { + "id": "lpv0e9d4", + "componentType": "Radio", + "mandatory": false, + "page": "88", + "label": { + "value": "\"➡ \" || \"Avez-vous déjà travaillé par le passé, même pour un petit boulot, même s'il y a longtemps ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lpv08qp9", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Une seule réponse possible\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\") and (TRAVAIL = \"2\" or nvl(TRAVAIL, \" \") = \" \")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ACTIVANTE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ACTIVANTE" + } + }, + { + "id": "lowso3oc", + "componentType": "Suggester", + "mandatory": false, + "page": "89", + "maxLength": 249, + "label": { + "value": "\"➡ \" || \"Quelle \" || emploi2 || \" votre profession principale ?\" ", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lowskfmg", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Saisissez le libellé de votre profession et sélectionnez-le dans la liste.\r\n\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PROFESSIONLISTE_MISSING" + }, + "storeName": "L_PCS_HOMMES-1-5-0", + "response": { + "name": "PROFESSIONLISTE" + } + }, + { + "id": "lox14baw", + "componentType": "Input", + "mandatory": false, + "page": "90", + "maxLength": 249, + "label": { + "value": "\"➡ \" || \"Votre profession n'est pas dans la liste. Pouvez-vous l'indiquer, le plus exactement possible ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PROFESSIONCLAIR_MISSING" + }, + "response": { + "name": "PROFESSIONCLAIR" + } + }, + { + "id": "lox1j0b5", + "componentType": "Input", + "mandatory": false, + "page": "91", + "maxLength": 249, + "label": { + "value": "\"➡ \" || \"Pouvez-vous décrire en quelques mots en quoi consiste votre travail ? \"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "PROFESSIONCLAIRP_MISSING" + }, + "response": { + "name": "PROFESSIONCLAIRP" + } + }, + { + "id": "kc0nbhww", + "componentType": "Radio", + "mandatory": false, + "page": "92", + "label": { + "value": "\"➡ \" || \"Dans votre \" || emploi || \" ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "STCPUB_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"A votre compte (y compris gérant(e) de société ou chef(fe) d'entreprise salarié(e))\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Salarié(e) de la fonction publique (État, territoriale, hospitalière)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Salarié(e) d'une entreprise (y compris d'une association ou de la Sécurité sociale)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Salarié(e) d'un particulier\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Vous travaillez, sans être rémunéré(e), avec un membre de votre famille\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "STCPUB" + } + }, + { + "id": "kc0nuukd", + "componentType": "Radio", + "mandatory": false, + "page": "93", + "label": { + "value": "\"➡ \" || \"Votre tâche principale \" || emploi2 || \"-elle de superviser le travail d’autres salariés (hors apprentis et stagiaires) ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ENCADR_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Non\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "ENCADR" + } + }, + { + "id": "lox2pfjr", + "componentType": "Radio", + "mandatory": false, + "page": "94", + "label": { + "value": "\"➡ \" || emploi3 || \"-vous ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "POSITION_PUBLIC_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Manoeuvre ou ouvrier(ière) spécialisé(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvrier(ière) qualifié(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Technicien(ne)\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent(e) de catégorie C de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Agent(e) de catégorie B de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Agent(e) de catégorie A de la fonction publique\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "POSITION_PUBLIC" + } + }, + { + "id": "lowseoqt", + "componentType": "Radio", + "mandatory": false, + "page": "95", + "label": { + "value": "\"➡ \" || emploi3 || \"-vous ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "POSITION_PRIVE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Manoeuvre ou ouvrier(ière) spécialisé(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Ouvrier(ière) qualifié(e), technicien(ne) d'atelier\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Employé(e) de bureau, de commerce, de services\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"Agent(e) de maîtrise (y compris administrative ou commerciale)\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\"Technicien(ne)\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\"Ingénieur(e), cadre d'entreprise\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\"Dans une autre situation\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "POSITION_PRIVE" + } + }, + { + "id": "kc0p4jga", + "componentType": "Suggester", + "mandatory": false, + "page": "96", + "maxLength": 50, + "label": { + "value": "\"➡ \" || \"Quelle \" || emploi11 || \" ?\" ", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lox1t2sd", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Soyez précis. Par exemple : réparation automobile, vente de vêtements de détail, service en informatique\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0p4jga-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(isnull(ACTILIB))", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Vous n'avez pas répondu à cette question. Si c'est un oubli, veuillez compléter votre réponse. \"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "ACTILIB_MISSING" + }, + "storeName": "L_ACTIVITES-1-0-0", + "response": { + "name": "ACTILIB" + } + }, + { + "id": "kc0qftls", + "componentType": "Radio", + "mandatory": false, + "page": "97", + "label": { + "value": "\"➡ \" || \"En vous comptant, combien de personnes \" || emploi12 ||\" dans l'établissement ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "NBSAL_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Une seule personne, vous \" || emploi4 || \" seul(e)\" ", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Entre 2 et 10 personnes\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Entre 11 et 49 personnes\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\"50 personnes ou plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "NBSAL" + } + }, + { + "id": "kc0o78n2", + "componentType": "Radio", + "mandatory": false, + "page": "98", + "label": { + "value": "\"➡ \" || \"Quel \" || emploi2 || \" votre type d’emploi ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "CONTRAT_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" \n\nEmploi sans limite de durée (CDI ou titulaire de la fonction publique)\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" \n\nEmploi à durée déterminée (CDD, intérim, saisonnier, apprentissage, contrat d'avenir, etc.)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "CONTRAT" + } + }, + { + "id": "kc0o6lj8", + "componentType": "Radio", + "mandatory": false, + "page": "99", + "label": { + "value": "\"➡ \" || emploi4 || \"-vous ?\" ", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "DUREE_EMP_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" \n\nÀ temps complet\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" \n\nÀ temps partiel ou incomplet (mi-temps, 90%, 80%, etc.)\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "DUREE_EMP" + } + }, + { + "id": "ks4txhy9", + "componentType": "Radio", + "mandatory": false, + "page": "100", + "label": { + "value": "\"➡ \" || \"Êtes-vous limité(e) depuis au moins six mois, à cause d’un problème de santé, dans les activités que les gens font habituellement ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "SANTE_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\"Oui, fortement limité(e)\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\"Oui, limité(e) mais pas fortement\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\"Non, pas limité(e) du tout\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "SANTE" + } + }, + { + "id": "kc0qz959", + "componentType": "InputNumber", + "mandatory": false, + "page": "101", + "min": 0.0, + "max": 99999.0, + "decimals": 0, + "label": { + "value": "\"➡ \" || \"Une dernière question, quel est le revenu mensuel de votre ménage en euros ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "type": "VTL" + }, + "controls": [ + { + "id": "kc0qz959-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(REVENU > 9999)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Confirmez-vous ce montant supérieur à 9 999€ par mois\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "REVENU_MISSING" + }, + "unit": "€", + "response": { + "name": "REVENU" + } + }, + { + "id": "lqwjbav6", + "componentType": "Radio", + "mandatory": false, + "page": "102", + "label": { + "value": "\"➡ \" || \"Pouvez-vous, néanmoins, le situer dans une des tranches suivantes ? \"", + "type": "VTL|MD" + }, + "declarations": [ + { + "id": "lqwjqw2l", + "declarationType": "HELP", + "position": "AFTER_QUESTION_TEXT", + "label": { + "value": "\"Il s'agit du revenu net (de cotisations sociales et de C.S.G.) avant impôts (y compris impôts sur le revenu prélevé à la source). Prenez en compte tous les types de revenus perçus durant le mois par le ménage : salaires, pensions de retraite, minima sociaux, allocations chômage, prestations familiales, revenus du patrimoine, etc.\"", + "type": "VTL|MD" + } + } + ], + "conditionFilter": { + "value": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (isnull(REVENU) = true)", + "type": "VTL" + }, + "controls": [ + { + "id": "lqwjbav6-CI-0", + "typeOfControl": "CONSISTENCY", + "criticality": "INFO", + "control": { + "value": "not(REVENU > 9999)", + "type": "VTL" + }, + "errorMessage": { + "value": "\"Confirmez-vous ce revenu supérieur à 9 999 € par mois.\"", + "type": "VTL|MD" + } + } + ], + "hierarchy": { + "sequence": { + "id": "kc0n110n", + "page": "85", + "label": { + "value": "\"XIV - \" || \"Votre situation professionnelle\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "TRANCHREVENU_MISSING" + }, + "options": [ + { + "value": "1", + "label": { + "value": "\" \n\nMoins de 800 €\"", + "type": "VTL|MD" + } + }, + { + "value": "2", + "label": { + "value": "\" \n\nDe 800 à 999 €\"", + "type": "VTL|MD" + } + }, + { + "value": "3", + "label": { + "value": "\" \n\nDe 1 000 à 1 199 €\"", + "type": "VTL|MD" + } + }, + { + "value": "4", + "label": { + "value": "\" \n\nDe 1 200 à 1 499 €\"", + "type": "VTL|MD" + } + }, + { + "value": "5", + "label": { + "value": "\" \n\nDe 1 500 à 1 999 €\"", + "type": "VTL|MD" + } + }, + { + "value": "6", + "label": { + "value": "\" \n\nDe 2 000 à 2 499 €\"", + "type": "VTL|MD" + } + }, + { + "value": "7", + "label": { + "value": "\" \n\nDe 2 500 à 2 999 €\"", + "type": "VTL|MD" + } + }, + { + "value": "8", + "label": { + "value": "\" \n\nDe 3 000 à 3 999 €\"", + "type": "VTL|MD" + } + }, + { + "value": "9", + "label": { + "value": "\" \n\nDe 4 000 à 5 999 €\"", + "type": "VTL|MD" + } + }, + { + "value": "10", + "label": { + "value": "\"6 000 € ou plus\"", + "type": "VTL|MD" + } + } + ], + "response": { + "name": "TRANCHREVENU" + } + }, + { + "id": "COMMENT-SEQ", + "componentType": "Sequence", + "page": "103", + "label": { + "value": "\"Commentaire\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "COMMENT-SEQ", + "page": "103", + "label": { + "value": "\"Commentaire\"", + "type": "VTL|MD" + } + } + } + }, + { + "id": "COMMENT-QUESTION", + "componentType": "Textarea", + "mandatory": false, + "page": "104", + "maxLength": 2000, + "label": { + "value": "\"➡ \" || \"Avez-vous des remarques concernant l'enquête ou des commentaires ?\"", + "type": "VTL|MD" + }, + "conditionFilter": { + "value": "true", + "type": "VTL" + }, + "hierarchy": { + "sequence": { + "id": "COMMENT-SEQ", + "page": "103", + "label": { + "value": "\"Commentaire\"", + "type": "VTL|MD" + } + } + }, + "missingResponse": { + "name": "COMMENT_QE_MISSING" + }, + "response": { + "name": "COMMENT_QE" + } + } + ], + "suggesters": [ + { + "name": "L_DEPNAIS-1-1-0", + "fields": [ + { + "name": "label", + "rules": "soft" + }, + { + "name": "id", + "rules": "soft" + } + ], + "order": { + "field": "label", + "type": "ascending" + }, + "queryParser": { + "type": "soft" + }, + "version": "1" + }, + { + "name": "L_PAYS-1-2-0", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 3, + "stemmer": false + } + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "min": 3, + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1" + }, + { + "name": "L_NATIONALITE-1-2-0", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 3, + "stemmer": false + } + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "min": 3, + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1" + }, + { + "name": "L_PCS_HOMMES-1-5-0", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 3, + "stemmer": false + } + ], + "meloto": true, + "stopWords": [ + "a", + "au", + "dans", + "de", + "des", + "du", + "en", + "er", + "la", + "le", + "ou", + "sur", + "d", + "l", + "aux", + "dans", + "un", + "une", + "pour", + "avec", + "chez", + "par", + "les" + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "min": 3, + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1" + }, + { + "name": "L_ACTIVITES-1-0-0", + "fields": [ + { + "name": "label", + "rules": [ + "[\\w]+" + ], + "language": "French", + "min": 3, + "stemmer": false, + "synonyms": { + "conseil": [ + "CONSULTING" + ], + "accueil": [ + "ACCEUIL", + "ACCUEILLIR", + "ACCUEILLANTE", + "ACCUEILLANT", + "ACCUEILLE" + ], + "ingenierie": [ + "INGENIEURIE", + "INGENERIE", + "INGIENERIE" + ], + "fabrication": [ + "FABRICANT" + ], + "prestation": [ + "PRESTATAIRE" + ], + "distribution": [ + "DISTRIBUTEUR" + ], + "abattage": [ + "ABATOIR", + "ABBATOIR", + "ABATTOIRS", + "ABATOIRE", + "ABATTOIRE", + "ABBATTAGE" + ], + "pneumatique": [ + "PNEU", + "PNEUS" + ], + "plaquisterie": [ + "PLACO", + "PLACOPLATRE" + ], + "briqueterie": [ + "BRIQUETTERIE" + ], + "ascenseur": [ + "ASCENCEUR", + "ASCENCEURS" + ], + "URSSAF": [ + "URSAF", + "URSAFF" + ], + "joaillerie": [ + "JOAILLIER" + ], + "recherche-développement": [ + "R & D", + "R&D" + ], + "alimentaire": [ + "ALIMANTAIRE" + ], + "construction": [ + "CONSTRUCTEUR" + ], + "agroalimentaire": [ + "AGGRO", + "AGGROALIMANTAIRE", + "AGRO", + "AGROALIMENTAIRE" + ], + "EHPAD": [ + "EPHAD", + "HEPAD", + "EPAD", + "EPAHD", + "EPADH" + ], + "echafaudage": [ + "ECHAFFAUDAGE", + "ECHAFFAUDEUR" + ] + } + } + ], + "stopWords": [ + "a", + "au", + "dans", + "de", + "des", + "du", + "en", + "er", + "la", + "le", + "ou", + "sur", + "d", + "l", + "aux", + "dans", + "un", + "une", + "pour", + "avec", + "chez", + "par", + "les" + ], + "queryParser": { + "type": "tokenized", + "params": { + "language": "French", + "min": 3, + "pattern": "[\\w.]+", + "stemmer": false + } + }, + "version": "1" + } + ], + "variables": [ + { + "variableType": "CALCULATED", + "name": "AGEMILLESIME", + "expression": { + "value": "cast(ANNEEENQ,integer) - cast(ANNEE_NAISSANCE_STR, integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "ANNEEENQ", + "ANNEE_NAISSANCE_STR", + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "FUTURANNIVERSAIRE", + "expression": { + "value": "cast((MOISENQ || JOURENQ),integer) < cast((cast(MOIS_NAISSANCE_INT,string) || JOUR_NAISSANCE_STR), integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "JOURENQ", + "MOISENQ", + "MOIS_NAISSANCE_INT", + "JOUR_NAISSANCE_STR", + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "AGE", + "expression": { + "value": "if (FUTURANNIVERSAIRE) then cast((cast(AGEMILLESIME,integer) - 1),integer) else cast(AGEMILLESIME,integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "AGEMILLESIME", + "FUTURANNIVERSAIRE" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "sommehab", + "expression": { + "value": "nvl($REPARTHAB11$, 0) + nvl($REPARTHAB21$, 0) + nvl($REPARTHAB31$, 0) + nvl($REPARTHAB41$, 0) + nvl($REPARTHAB51$, 0) + nvl($REPARTHAB61$, 0) + nvl($REPARTHAB71$, 0) + nvl($REPARTHAB81$, 0)", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "plusieurnatio", + "expression": { + "value": "if (isnull(NATIO1N1) and isnull(NATIO1N2)) then \"\" else (if ( nvl(NATIO1N1, false) =true or nvl(NATIO1N2, false)= true ) then \"autre \" else \"\")", + "type": "VTL" + }, + "bindingDependencies": [ + "NATIO1N1", + "NATIO1N2" + ] + }, + { + "variableType": "CALCULATED", + "name": "KISHPOTENTIEL", + "expression": { + "value": "if (cast(nvl(AGE,\"15\"),integer) < 14) then 0 else 1", + "type": "VTL" + }, + "bindingDependencies": [ + "AGE" + ] + }, + { + "variableType": "CALCULATED", + "name": "SUMKISHPOT", + "expression": { + "value": "sum(KISHPOTENTIEL)", + "type": "VTL" + }, + "bindingDependencies": [ + "KISHPOTENTIEL" + ] + }, + { + "variableType": "CALCULATED", + "name": "ANNEEENQ", + "expression": { + "value": "cast(current_date(),string,\"YYYY\")", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "JOURENQ", + "expression": { + "value": "cast(current_date(),string,\"DD\")", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "MOISENQ", + "expression": { + "value": "cast(current_date(), date, \"MM\")", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "MOIS_NAISSANCE_INT", + "expression": { + "value": "if isnull(DATENAIS_TEL) then 0 else cast(cast(cast(DATENAIS_TEL, date, \"YYY-MM-DD\"), string, \"MM\"), integer)", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "JOUR_NAISSANCE_STR", + "expression": { + "value": "if isnull(DATENAIS_TEL) then \"00\" else cast(cast(DATENAIS_TEL, date, \"YYYY-MM-DD\"), string, \"DD\")", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "SCORE_KISH", + "expression": { + "value": "cast((if cast(AGE, integer) < 15 then cast(MOIS_NAISSANCE_INT, integer) + 24 else if cast(MOIS_NAISSANCE_INT, integer) < 6 then cast(MOIS_NAISSANCE_INT, integer) + 12 else cast(MOIS_NAISSANCE_INT,integer)), string) || \".\" || JOUR_NAISSANCE_STR", + "type": "VTL" + }, + "bindingDependencies": [ + "AGE", + "MOIS_NAISSANCE_INT", + "JOUR_NAISSANCE_STR", + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "KISH_MIN", + "expression": { + "value": "min(SCORE_KISH_INT)", + "type": "VTL" + }, + "bindingDependencies": [ + "SCORE_KISH_INT" + ] + }, + { + "variableType": "CALCULATED", + "name": "SCORE_KISH_INT", + "expression": { + "value": "cast(SCORE_KISH, number)", + "type": "VTL" + }, + "bindingDependencies": [ + "SCORE_KISH" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "NB_POTENTIAL_KISH", + "expression": { + "value": "sum(KISH_INDICATOR)", + "type": "VTL" + }, + "bindingDependencies": [ + "KISH_INDICATOR" + ] + }, + { + "variableType": "CALCULATED", + "name": "KISH_INDICATOR", + "expression": { + "value": "if cast(KISH_MIN, number) = cast (SCORE_KISH_INT, number) then 1 else 0", + "type": "VTL" + }, + "bindingDependencies": [ + "KISH_MIN", + "SCORE_KISH_INT" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "ANNEE_NAISSANCE_STR", + "expression": { + "value": "if isnull(DATENAIS_TEL) then \"0000\" else cast(cast(DATENAIS_TEL, date, \"YYYY-MM-DD\"), string, \"YYYY\")", + "type": "VTL" + }, + "bindingDependencies": [ + "DATENAIS_TEL" + ], + "shapeFrom": "PRENOM_TEL" + }, + { + "variableType": "CALCULATED", + "name": "emploi", + "expression": { + "value": "if (isnull(SITUAEU)) then \"emploi ou dernier emploi, êtes-vous \" else (if (SITUAEU = \"1\" or TRAVAIL = \"1\") then \"emploi actuel, êtes-vous \" else \"dernier emploi, étiez-vous\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL" + ] + }, + { + "variableType": "CALCULATED", + "name": "emploi2", + "expression": { + "value": "if (isnull(SITUAEU)) then \"est ou était\" else (if (SITUAEU = \"1\" or TRAVAIL = \"1\" ) then \"est\" else \"était\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL" + ] + }, + { + "variableType": "CALCULATED", + "name": "emploi3", + "expression": { + "value": "if (isnull(SITUAEU)) then \"Êtes ou étiez\" else (if (SITUAEU = \"1\" or TRAVAIL =\"1\" ) then \"Êtes\" else \"Étiez\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL" + ] + }, + { + "variableType": "CALCULATED", + "name": "emploi4", + "expression": { + "value": "if (isnull(SITUAEU)) then \"Travaillez ou travailliez\" else (if (SITUAEU = \"1\" or TRAVAIL = \"1\" ) then \"Travaillez\" else \"Travailliez\")", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL" + ] + }, + { + "variableType": "CALCULATED", + "name": "emploi8", + "expression": { + "value": "if (isnull($STATUT$)) then \"Quelle est (ou était) votre profession principale (ou celle de la personne que vous aidez (ou aidiez))\" else (if ($STATUT= \"5\" and ($SITUA= \"1\" or $SITUA= \"2\")) then \"la profession principale de la personne que vous aidez\" else ( if($STATUT= \"5\" and ($SITUA> \"2\" or isnull($SITUA$)) ) then \"la profession principale de la personne que vous aidiez\" else \"votre profession principale\"))", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "emploi11", + "expression": { + "value": "if (isnull(STCPUB) and isnull(SITUAEU)) then \"est (ou était) l'activité de l'établissement ou du site où vous travaillez (ou travailliez)/ que vous dirigez\" else if (STCPUB = \"2\" or STCPUB = \"3\") and (SITUAEU = \"1\" or TRAVAIL = \"1\") then \"est l'activité de l'établissement ou du site où vous travaillez\" else if (STCPUB = \"2\" or STCPUB = \"3\") and (ACTIVANTE = \"1\") then \"était l'activité de l'établissement ou du site où vous travailliez\" else if (STCPUB = \"1\") and (SITUAEU = \"1\" or TRAVAIL = \"1\") then \"est l'activité de l'établissement ou du site que vous dirigez\" else if (STCPUB = \"1\") and (ACTIVANTE = \"1\") then \"était l'activité de l'établissement ou du site que vous dirigiez\" else if (STCPUB = \"5\") and (SITUAEU = \"1\" or TRAVAIL = \"1\") then \"est l'activité de l'établissement que dirige la personne que vous aidez\" else if (STCPUB = \"5\") and (ACTIVANTE = \"1\") then \"était l'activité de l'établissement que dirige la personne que vous aidiez\" else \"est ou était l'activité de l'établissement ou du site où vous travaill(i)ez\"))))))", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL", + "ACTIVANTE", + "STCPUB" + ] + }, + { + "variableType": "CALCULATED", + "name": "emploi12", + "expression": { + "value": "if (SITUAEU = \"1\" or TRAVAIL = \"1\") then \"travaillent\" else if (ACTIVANTE = \"1\") then \"travaillaient\" else \"travaillent ou travaillaient\"", + "type": "VTL" + }, + "bindingDependencies": [ + "SITUAEU", + "TRAVAIL", + "ACTIVANTE" + ] + }, + { + "variableType": "CALCULATED", + "name": "profession_c", + "expression": { + "value": "if (($STATUT= \"1\" ) or ($STATUT= \"2\" )) then \"Votre profession n'est pas dans la liste. Pouvez-vous indiquer, le plus exactement possible, votre libellé de profession ? \" else ($STATUT= \"5\") then \"La profession principale de la personne que vous aidez n’est pas dans la liste. Pouvez-vous indiquer, le plus exactement possible, le libellé de la profession principale de la personne que vous aidez ? \"", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "professionclairp_c", + "expression": { + "value": "if (($STATUT= \"1\") or ($STATUT= \"2\") or ($STATUT= \"3\") or ($STATUT= \"4\") ) then \"Pouvez-vous décrire en quelques mots en quoi consiste votre travail ?\" else ($STATUT= \"5\") then \"Pouvez-vous décrire en quelques mots en quoi consiste le travail de la personne que vous aidez ?\"", + "type": "VTL" + } + }, + { + "variableType": "CALCULATED", + "name": "PROFESSIONCLAIR_NORM", + "expression": { + "value": "upper( replace( replace( replace( replace( replace( replace(lower(PROFESSIONCLAIR), \" \", \"\") , \"à\", \"a\") , \"ç\", \"c\") , \"é\", \"e\") , \"è\", \"e\") , \"ê\", \"e\"))", + "type": "VTL" + }, + "bindingDependencies": [ + "PROFESSIONCLAIR" + ] + }, + { + "variableType": "CALCULATED", + "name": "PROFESSIONCLAIR_FLOUS", + "expression": { + "value": "PROFESSIONCLAIR_NORM in {\"ACCOMPAGNATEUR\", \"ACCOMPAGNATRICE\", \"ACHETEUR\", \"ACHETEUSE\", \"ACTIVITESAISONNIERE\", \"ADJOINT\", \"ADJOINTADMINISTRATIF\", \"ADJOINTADMINISTRATIFPRINCIPAL\", \"ADJOINTADMINISTRATIFTERRITORIAL\", \"ADJOINTTECHNIQUE\", \"ADJOINTTECHNIQUEALACOMMUNE\", \"ADJOINTTECHNIQUEALAVILLE\", \"ADJOINTTECHNIQUECOLLECTIVITESTERRITORIALES\", \"ADJOINTTECHNIQUEDESCOLLECTIVITESTERRITORIALES\", \"ADJOINTTECHNIQUECOMMUNAL\", \"ADJOINTTECHNIQUECOMMUNE\", \"ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE\", \"ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE(ATRF)\", \"ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE\", \"ADJOINTTECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE(ATRF)\", \"ADJOINTTECHNIQUEDESADMINISTRATIONSDEL'ETAT(ATAE)\", \"ADJOINTTECHNIQUEDESADMINISTRATIONSDEL'ETAT\", \"ADJOINTTECHNIQUEDESADMINISTRATIONSDELETAT(ATAE)\", \"ADJOINTTECHNIQUEDESADMINISTRATIONSDELETAT\", \"ADJOINTTECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT\", \"ADJOINTTECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT(ATEE)\", \"ADJOINTTECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT\", \"ADJOINTTECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT(ATEE)\", \"ADJOINTTECHNIQUEMAIRIE\", \"ADJOINTTECHNIQUEPOLYVALENT\", \"ADJOINTTECHNIQUEPRINCIPAL\", \"ADJOINTTECHNIQUETERRITORIAL\", \"ADJOINTTECHNIQUETERRITORIALALACOMMUNE\", \"ADJOINTTECHNIQUETERRITORIALALAVILLE\", \"ADJOINTTECHNIQUETERRITORIALCOMMUNAL\", \"ADJOINTTECHNIQUETERRITORIALCOMMUNE\", \"ADJOINTTECHNIQUETERRITORIALCOLLECTIVITESTERRITORIALES\", \"ADJOINTTECHNIQUETERRITORIALDESCOLLECTIVITESTERRITORIALES\", \"ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSD'ENSEIGNEMENT\", \"ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSD'ENSEIGNEMENT(ATTEE)\", \"ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSDENSEIGNEMENT\", \"ADJOINTTECHNIQUETERRITORIALDESETABLISSEMENTSDENSEIGNEMENT(ATTEE)\", \"ADJOINTTECHNIQUETERRITORIALMAIRIE\", \"ADJOINTTECHNIQUETERRITORIALPOLYVALENT\", \"ADJOINTTECHNIQUETERRITORIALPRINCIPAL\", \"ADJOINTTECHNIQUETERRITORIALVILLE\", \"ADJOINTTECHNIQUEVILLE\", \"ADJOINTTERRITORIAL\", \"ADJOINTTERRITORIALALACOMMUNE\", \"ADJOINTTERRITORIALALAVILLE\", \"ADJOINTTERRITORIALCOMMUNAL\", \"ADJOINTTERRITORIALCOMMUNE\", \"ADJOINTTERRITORIALENMAIRIE\", \"ADJOINTTERRITORIALMAIRIE\", \"ADJOINTTERRITORIALPOLYVALENT\", \"ADJOINTTERRITORIALPRINCIPAL\", \"ADJOINTTERRITORIALVILLE\", \"ADJOINTE\", \"ADJOINTEADMINISTRATIVE\", \"ADJOINTEADMINISTRATIVEPRINCIPALE\", \"ADJOINTEADMINISTRATIVETERRITORIALE\", \"ADJOINTETECHNIQUE\", \"ADJOINTETECHNIQUEALACOMMUNE\", \"ADJOINTETECHNIQUEALAVILLE\", \"ADJOINTETECHNIQUECOLLECTIVITESTERRITORIALES\", \"ADJOINTETECHNIQUEDESCOLLECTIVITESTERRITORIALES\", \"ADJOINTETECHNIQUECOMMUNALE\", \"ADJOINTETECHNIQUECOMMUNE\", \"ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE\", \"ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDEL'EDUCATIONNATIONALE(ATRF)\", \"ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE\", \"ADJOINTETECHNIQUEDERECHERCHEETDEFORMATIONDELEDUCATIONNATIONALE(ATRF)\", \"ADJOINTETECHNIQUEDESADMINISTRATIONSDEL'ETAT(ATAE)\", \"ADJOINTETECHNIQUEDESADMINISTRATIONSDEL'ETAT\", \"ADJOINTETECHNIQUEDESADMINISTRATIONSDELETAT(ATAE)\", \"ADJOINTETECHNIQUEDESADMINISTRATIONSDELETAT\", \"ADJOINTETECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT\", \"ADJOINTETECHNIQUEDESETABLISSEMENTSD'ENSEIGNEMENT(ATEE)\", \"ADJOINTETECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT\", \"ADJOINTETECHNIQUEDESETABLISSEMENTSDENSEIGNEMENT(ATEE)\", \"ADJOINTETECHNIQUEMAIRIE\", \"ADJOINTETECHNIQUEPOLYVALENTE\", \"ADJOINTETECHNIQUEPRINCIPALE\", \"ADJOINTETECHNIQUETERRITORIALE\", \"ADJOINTETECHNIQUETERRITORIALEALACOMMUNE\", \"ADJOINTETECHNIQUETERRITORIALEALAVILLE\", \"ADJOINTETECHNIQUETERRITORIALECOMMUNALE\", \"ADJOINTETECHNIQUETERRITORIALECOMMUNE\", \"ADJOINTETECHNIQUETERRITORIALECOLLECTIVITESTERRITORIALES\", \"ADJOINTETECHNIQUETERRITORIALEDESCOLLECTIVITESTERRITORIALES\", \"ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSD'ENSEIGNEMENT\", \"ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSD'ENSEIGNEMENT(ATTEE)\", \"ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSDENSEIGNEMENT\", \"ADJOINTETECHNIQUETERRITORIALEDESETABLISSEMENTSDENSEIGNEMENT(ATTEE)\", \"ADJOINTETECHNIQUETERRITORIALEMAIRIE\", \"ADJOINTETECHNIQUETERRITORIALEPOLYVALENTE\", \"ADJOINTETECHNIQUETERRITORIALEPRINCIPALE\", \"ADJOINTETECHNIQUETERRITORIALEVILLE\", \"ADJOINTETECHNIQUEVILLE\", \"ADJOINTETERRITORIALE\", \"ADJOINTETERRITORIALEALACOMMUNE\", \"ADJOINTETERRITORIALEALAVILLE\", \"ADJOINTETERRITORIALECOMMUNALE\", \"ADJOINTETERRITORIALECOMMUNE\", \"ADJOINTETERRITORIALEENMAIRIE\", \"ADJOINTETERRITORIALEMAIRIE\", \"ADJOINTETERRITORIALEPOLYVALENTE\", \"ADJOINTETERRITORIALEPRINCIPALE\", \"ADJOINTETERRITORIALEVILLE\", \"ADMINISTRATEUR\", \"ADMINISTRATRICE\", \"AGENT\", \"AGENTACCUEIL\", \"AGENTADMINISTRATIF\", \"AGENTCOMMERCIAL\", \"AGENTCOMMUNAL\", \"AGENTDACCUEIL\", \"AGENTDENTRETIEN\", \"AGENTDEXPLOITATION\", \"AGENTD'ACCUEIL\", \"AGENTD'ENTRETIEN\", \"AGENTD'EXPLOITATION\", \"AGENTDEBUREAU\", \"AGENTDEFABRICATION\", \"AGENTDEGESTION\", \"AGENTDEL'ETAT\", \"AGENTDELAPOSTE\", \"AGENTDEMAIRIE\", \"AGENTDEMAITRISE\", \"AGENTDEMAITRISETERRITORIAL\", \"AGENTDEMEDIATION\", \"AGENTDEPOSTE\", \"AGENTDEPRODUCTION\", \"AGENTDEPRODUCTIONAUTOMOBILE\", \"AGENTDEPRODUCTIONDANSL'AUTOMOBILE\", \"AGENTDEPRODUCTIONDANSLAUTOMOBILE\", \"AGENTDESERVICE\", \"AGENTDESERVICEPOLYVALENT\", \"AGENTDESERVICESCOLAIRE\", \"AGENTDESSERVICESTECHNIQUES\", \"AGENTEDF\", \"AGENTENTRETIEN\", \"AGENTEXPLOITATION\", \"AGENTMAIRIE\", \"AGENTMUNICIPAL\", \"AGENTPOLYVALENT\", \"AGENTPOLYVALENTTERRITORIAL\", \"AGENTPOSTE\", \"AGENTSERVICEPOLYVALENT\", \"AGENTSERVICESCOLAIRE\", \"AGENTSERVICESTECHNIQUES\", \"AGENTSNCF\", \"AGENTTECHNIQUE\", \"AGENTTECHNIQUEALACOMMUNE\", \"AGENTTECHNIQUEALAVILLE\", \"AGENTTECHNIQUECOLLECTIVITE\", \"AGENTTECHNIQUECOLLECTIVITESTERRITORIALES\", \"AGENTTECHNIQUECOMMUNAL\", \"AGENTTECHNIQUECOMMUNE\", \"AGENTTECHNIQUEDESCOLLECTIVITESTERRITORIALES\", \"AGENTTECHNIQUEDESECOLES\", \"AGENTTECHNIQUEDESECOLES(ATE)\", \"AGENTTECHNIQUEECOLE\", \"AGENTTECHNIQUEECOLE(ATE)\", \"AGENTTECHNIQUEMAIRIE\", \"AGENTTECHNIQUEPOLYVALENT\", \"AGENTTECHNIQUEPRINCIPAL\", \"AGENTTECHNIQUETERRITORIAL\", \"AGENTTECHNIQUETERRITORIALALACOMMUNE\", \"AGENTTECHNIQUETERRITORIALALAVILLE\", \"AGENTTECHNIQUETERRITORIALCOLLECTIVITESTERRITORIALES\", \"AGENTTECHNIQUETERRITORIALCOMMUNAL\", \"AGENTTECHNIQUETERRITORIALCOMMUNE\", \"AGENTTECHNIQUETERRITORIALDESCOLLECTIVITESTERRITORIALES\", \"AGENTTECHNIQUETERRITORIALMAIRIE\", \"AGENTTECHNIQUETERRITORIALPOLYVALENT\", \"AGENTTECHNIQUETERRITORIALPRINCIPAL\", \"AGENTTECHNIQUETERRITORIALVILLE\", \"AGENTTECHNIQUEVILLE\", \"AGENTTERRITORIAL\", \"AGENTTERRITORIALALACOMMUNE\", \"AGENTTERRITORIALALAVILLE\", \"AGENTTERRITORIALCOLLECTIVITESTERRITORIALES\", \"AGENTTERRITORIALCOMMUNAL\", \"AGENTTERRITORIALCOMMUNE\", \"AGENTTERRITORIALDESCOLLECTIVITESTERRITORIALES\", \"AGENTTERRITORIALMAIRIE\", \"AGENTTERRITORIALPOLYVALENT\", \"AGENTTERRITORIALPRINCIPAL\", \"AGENTTERRITORIALVILLE\", \"AGENTE\", \"AGENTEACCUEIL\", \"AGENTEADMINISTRATIVE\", \"AGENTECOMMERCIALE\", \"AGENTECOMMUNALE\", \"AGENTEDACCUEIL\", \"AGENTEDENTRETIEN\", \"AGENTEDEXPLOITATION\", \"AGENTED'ACCUEIL\", \"AGENTED'ENTRETIEN\", \"AGENTED'EXPLOITATION\", \"AGENTEDEBUREAU\", \"AGENTEDEFABRICATION\", \"AGENTEDEGESTION\", \"AGENTEDEL'ETAT\", \"AGENTEDELAPOSTE\", \"AGENTEDEMAIRIE\", \"AGENTEDEMAITRISE\", \"AGENTEDEMAITRISETERRITORIAL\", \"AGENTEDEMEDIATION\", \"AGENTEDEPOSTE\", \"AGENTEDEPRODUCTION\", \"AGENTEDEPRODUCTIONAUTOMOBILE\", \"AGENTEDEPRODUCTIONDANSL'AUTOMOBILE\", \"AGENTEDEPRODUCTIONDANSLAUTOMOBILE\", \"AGENTEDESERVICE\", \"AGENTEDESERVICEPOLYVALENTE\", \"AGENTEDESERVICESCOLAIRE\", \"AGENTEDESSERVICESTECHNIQUES\", \"AGENTEEDF\", \"AGENTEENTRETIEN\", \"AGENTEEXPLOITATION\", \"AGENTEMAIRIE\", \"AGENTEMUNICIPALE\", \"AGENTEPOLYVALENTE\", \"AGENTEPOLYVALENTETERRITORIALE\", \"AGENTEPOSTE\", \"AGENTESERVICEPOLYVALENTE\", \"AGENTESERVICESCOLAIRE\", \"AGENTESERVICESTECHNIQUES\", \"AGENTESNCF\", \"AGENTETECHNIQUE\", \"AGENTETECHNIQUEALACOMMUNE\", \"AGENTETECHNIQUEALAVILLE\", \"AGENTETECHNIQUECOLLECTIVITE\", \"AGENTETECHNIQUECOLLECTIVITESTERRITORIALES\", \"AGENTETECHNIQUECOMMUNALE\", \"AGENTETECHNIQUECOMMUNE\", \"AGENTETECHNIQUEDESCOLLECTIVITESTERRITORIALES\", \"AGENTETECHNIQUEDESECOLES\", \"AGENTETECHNIQUEDESECOLES(ATE)\", \"AGENTETECHNIQUEECOLE\", \"AGENTETECHNIQUEECOLE(ATE)\", \"AGENTETECHNIQUEMAIRIE\", \"AGENTETECHNIQUEPOLYVALENTE\", \"AGENTETECHNIQUEPRINCIPALE\", \"AGENTETECHNIQUETERRITORIALE\", \"AGENTETECHNIQUETERRITORIALEALACOMMUNE\", \"AGENTETECHNIQUETERRITORIALEALAVILLE\", \"AGENTETECHNIQUETERRITORIALECOLLECTIVITESTERRITORIALES\", \"AGENTETECHNIQUETERRITORIALECOMMUNALE\", \"AGENTETECHNIQUETERRITORIALECOMMUNE\", \"AGENTETECHNIQUETERRITORIALEDESCOLLECTIVITESTERRITORIALES\", \"AGENTETECHNIQUETERRITORIALEMAIRIE\", \"AGENTETECHNIQUETERRITORIALEPOLYVALENTE\", \"AGENTETECHNIQUETERRITORIALEPRINCIPALE\", \"AGENTETECHNIQUETERRITORIALEVILLE\", \"AGENTETECHNIQUEVILLE\", \"AGENTETERRITORIALE\", \"AGENTETERRITORIALEALACOMMUNE\", \"AGENTETERRITORIALEALAVILLE\", \"AGENTETERRITORIALECOLLECTIVITESTERRITORIALES\", \"AGENTETERRITORIALECOMMUNALE\", \"AGENTETERRITORIALECOMMUNE\", \"AGENTETERRITORIALDESCOLLECTIVITESTERRITORIALES\", \"AGENTETERRITORIALEMAIRIE\", \"AGENTETERRITORIALEPOLYVALENTE\", \"AGENTETERRITORIALEPRINCIPALE\", \"AGENTETERRITORIALEVILLE\", \"AGRICULTEUR\", \"AGRICULTRICE\", \"AIDE\", \"AIDEFAMILIAL\", \"AIDEFAMILIALE\", \"ALTERNANT\", \"ALTERNANTE\", \"ANALYSTE\", \"ANIMATEUR\", \"ANIMATRICE\", \"APPRENTI\", \"APPRENTIE\", \"ARTIFICIER\", \"ARTIFICIERE\", \"ARTISAN\", \"ARTISANE\", \"ARTISTE\", \"ASSISTANT\", \"ASSISTANTDEGESTION\", \"ASSISTANTGESTION\", \"ASSISTANTE\", \"ASSISTANTEDEGESTION\", \"ASSISTANTEGESTION\", \"ATE\", \"ATEE\", \"ATRF\", \"ATTEE\", \"ATTACHE\", \"ATTACHECLIENTELE\", \"ATTACHEDECLIENTELE\", \"ATTACHEE\", \"ATTACHEECLIENTELE\", \"ATTACHEEDECLIENTELE\", \"AUDITEUR\", \"AUDITRICE\", \"AUTOENTREPRENEUR\", \"AUTOENTREPRENEUSE\", \"AUTOENTREPRENEUR\", \"AUTOENTREPRENEUSE\", \"BOBINEUR\", \"BOBINEUSE\", \"BOBINIER\", \"BOULOTDETE\", \"BOULOTD'ETE\", \"BOULOTETE\", \"BOULOTSDETE\", \"BOULOTSD'ETE\", \"BOULOTSETE\", \"CADRE\", \"CADREDIRIGEANT\", \"CADREDIRIGEANTE\", \"CADRETECHNIQUE\", \"CAISSIER\", \"CAISSIERE\", \"CAPITAINE\", \"CDD\", \"CDI\", \"CHARGEAFFAIRE\", \"CHARGEAFFAIRES\", \"CHARGEDAFFAIRE\", \"CHARGEDAFFAIRES\", \"CHARGEDETUDES\", \"CHARGED'AFFAIRE\", \"CHARGED'AFFAIRES\", \"CHARGED'ETUDES\", \"CHARGEDECLIENTELE\", \"CHARGEDEMISSION\", \"CHARGEDEMISSIONENERGIE\", \"CHARGEDEPRODUCTION\", \"CHARGEDEPROJET\", \"CHARGEETUDES\", \"CHARGEMISSION\", \"CHARGEMISSIONENERGIE\", \"CHARGEEAFFAIRE\", \"CHARGEEAFFAIRES\", \"CHARGEEDAFFAIRE\", \"CHARGEEDAFFAIRES\", \"CHARGEEDETUDES\", \"CHARGEED'AFFAIRE\", \"CHARGEED'AFFAIRES\", \"CHARGEED'ETUDES\", \"CHARGEEDECLIENTELE\", \"CHARGEEDEMISSION\", \"CHARGEEDEMISSIONENERGIE\", \"CHARGEEDEPRODUCTION\", \"CHARGEEDEPROJET\", \"CHARGEEETUDES\", \"CHARGEEMISSION\", \"CHARGEEMISSIONENERGIE\", \"CHAUFFEUR\", \"CHAUFFEUSE\", \"CHEF\", \"CHEFATELIER\", \"CHEFDATELIER\", \"CHEFDENTREPRISE\", \"CHEFDEQUIPE\", \"CHEFDEXPLOITATION\", \"CHEFD'ATELIER\", \"CHEFD'ENTREPRISE\", \"CHEFD'ENTREPRISECOMMERCIALE\", \"CHEFD'ENTREPRISEDEFABRICATIONARTISANALE\", \"CHEFD'ENTREPRISEDESERVICES\", \"CHEFD'ENTREPRISEFABRICATIONARTISANALE\", \"CHEFD'ENTREPRISESERVICES\", \"CHEFD'EQUIPE\", \"CHEFD'EXPLOITATION\", \"CHEFDEGROUPE\", \"CHEFDEPROJET\", \"CHEFDESECTEUR\", \"CHEFDESERVICE\", \"CHEFENTREPRISE\", \"CHEFENTREPRISECOMMERCIALE\", \"CHEFENTREPRISEDEFABRICATIONARTISANALE\", \"CHEFENTREPRISEFABRICATIONARTISANALE\", \"CHEFENTREPRISEDESERVICES\", \"CHEFENTREPRISESERVICES\", \"CHEFEQUIPE\", \"CHEFEXPLOITATION\", \"CHEFFE\", \"CHEFFEATELIER\", \"CHEFFEDATELIER\", \"CHEFFEDENTREPRISE\", \"CHEFFEDEQUIPE\", \"CHEFFEDEXPLOITATION\", \"CHEFFED'ATELIER\", \"CHEFFED'ENTREPRISE\", \"CHEFFED'ENTREPRISECOMMERCIALE\", \"CHEFFED'ENTREPRISEDEFABRICATIONARTISANALE\", \"CHEFFED'ENTREPRISEDESERVICES\", \"CHEFFED'ENTREPRISEFABRICATIONARTISANALE\", \"CHEFFED'ENTREPRISESERVICES\", \"CHEFFED'EQUIPE\", \"CHEFFED'EXPLOITATION\", \"CHEFFEDEGROUPE\", \"CHEFFEDEPROJET\", \"CHEFFEDESECTEUR\", \"CHEFFEDESERVICE\", \"CHEFFEENTREPRISE\", \"CHEFFEENTREPRISECOMMERCIALE\", \"CHEFFEENTREPRISEDEFABRICATIONARTISANALE\", \"CHEFFEENTREPRISEFABRICATIONARTISANALE\", \"CHEFFEENTREPRISEDESERVICES\", \"CHEFFEENTREPRISESERVICES\", \"CHEFFEEQUIPE\", \"CHEFFEEXPLOITATION\", \"CHEMINOT\", \"CHEMINOTSNCF\", \"COACH\", \"COLORISTE\", \"COMMANDANT\", \"COMMANDANTE\", \"COMMERCANT\", \"COMMERCANTAMBULANT\", \"COMMERCANTE\", \"COMMERCANTEAMBULANTE\", \"COMMERCIAL\", \"COMMERCIALE\", \"COMMIS\", \"COMMISSAIRE\", \"CONDUCTEUR\", \"CONDUCTEURDENGINS\", \"CONDUCTEURD'ENGINS\", \"CONDUCTEURDELIGNE\", \"CONDUCTEURDELIGNES\", \"CONDUCTEURENGINS\", \"CONDUCTRICE\", \"CONDUCTRICEDENGINS\", \"CONDUCTRICED'ENGINS\", \"CONDUCTRICEDELIGNE\", \"CONDUCTRICEDELIGNES\", \"CONDUCTRICEENGINS\", \"CONJOINTCOLLABORATEUR\", \"CONJOINTECOLLABORATRICE\", \"CONSEILLER\", \"CONSEILLERCLIENTELE\", \"CONSEILLERCOMMERCIAL\", \"CONSEILLERE\", \"CONSEILLERECLIENTELE\", \"CONSEILLERECOMMERCIALE\", \"CONSERVATEUR\", \"CONSERVATRICE\", \"CONSULTANT\", \"CONSULTANTJUNIOR\", \"CONSULTANTSENIOR\", \"CONSULTANTE\", \"CONSULTANTEJUNIOR\", \"CONSULTANTESENIOR\", \"CONTREMAITRE\", \"CONTROLEUR\", \"CONTROLEUSE\", \"COORDINATEUR\", \"COORDINATRICE\", \"COORDONNATEUR\", \"COORDONNATRICE\", \"COURTIER\", \"DECORATEUR\", \"DECORATRICE\", \"DESSINATEUR\", \"DESSINATRICE\", \"DEVELOPPEUR\", \"DEVELOPPEUSE\", \"DIRECTEUR\", \"DIRECTEURADJOINT\", \"DIRECTEURAGENCE\", \"DIRECTEURDAGENCE\", \"DIRECTEURD'AGENCE\", \"DIRECTRICE\", \"DIRECTRICEADJOINTE\", \"DIRECTRICEAGENCE\", \"DIRECTRICEDAGENCE\", \"DIRECTRICED'AGENCE\", \"DIRIGEANTDUNESOCIETE\", \"DIRIGEANTD'UNESOCIETE\", \"DIRIGEANTDESOCIETE\", \"DIRIGEANTSOCIETE\", \"DIRIGEANTEDUNESOCIETE\", \"DIRIGEANTED'UNESOCIETE\", \"DIRIGEANTEDESOCIETE\", \"DIRIGEANTESOCIETE\", \"EDUCATEUR\", \"EDUCATRICE\", \"ELECTRICIEN\", \"ELECTRICIENNE\", \"ELEVEUR\", \"ELEVEUSE\", \"EMPLOISAISONNIER\", \"EMPLOYE\", \"EMPLOYEADMINISTRATIF\", \"EMPLOYECOMMUNAL\", \"EMPLOYEDUSINE\", \"EMPLOYED'USINE\", \"EMPLOYEDEBUREAU\", \"EMPLOYEDEMAIRIE\", \"EMPLOYEDEPOSTE\", \"EMPLOYEDELAPOSTE\", \"EMPLOYEMUNICIPAL\", \"EMPLOYEPOLYVALENT\", \"EMPLOYEPOSTE\", \"EMPLOYETECHNIQUE\", \"EMPLOYEUSINE\", \"EMPLOYEE\", \"EMPLOYEEADMINISTRATIVE\", \"EMPLOYEECOMMUNALE\", \"EMPLOYEEDUSINE\", \"EMPLOYEED'USINE\", \"EMPLOYEEDEBUREAU\", \"EMPLOYEEDEMAIRIE\", \"EMPLOYEEDEPOSTE\", \"EMPLOYEEDELAPOSTE\", \"EMPLOYEEMUNICIPALE\", \"EMPLOYEEPOLYVALENTE\", \"EMPLOYEEPOSTE\", \"EMPLOYEETECHNIQUE\", \"EMPLOYEEUSINE\", \"ENSEIGNANT\", \"ENSEIGNANTE\", \"ENTREPRENEUR\", \"ENTREPRENEUSE\", \"ENALTERNANCE\", \"ETUDIANT\", \"ETUDIANTALTERNANCE\", \"ETUDIANTALTERNANT\", \"ETUDIANTENALTERNANCE\", \"ETUDIANTE\", \"ETUDIANTEALTERNANCE\", \"ETUDIANTEALTERNANTE\", \"ETUDIANTEENALTERNANCE\", \"EXPERT\", \"EXPERTE\", \"EXPLOITANT\", \"EXPLOITANTAGRICOLE\", \"EXPLOITANTE\", \"EXPLOITANTEAGRICOLE\", \"FABRICANT\", \"FABRICANTE\", \"FONCTIONNAIRE\", \"FONCTIONNAIRETERRITORIAL\", \"FONCTIONNAIRETERRITORIALE\", \"GARDIEN\", \"GARDIENNE\", \"GERANT\", \"GERANTCOMMERCE\", \"GERANTD'ENTREPRISE\", \"GERANTDENTREPRISE\", \"GERANTDECOMMERCE\", \"GERANTDESOCIETE\", \"GERANTDESOCIETECOMMERCIALE\", \"GERANTDESOCIETEDESERVICES\", \"GERANTDESOCIETESERVICES\", \"GERANTENTREPRISE\", \"GERANTSOCIETE\", \"GERANTSOCIETECOMMERCIALE\", \"GERANTSOCIETEDESERVICES\", \"GERANTSOCIETESERVICES\", \"GERANTE\", \"GERANTECOMMERCE\", \"GERANTED'ENTREPRISE\", \"GERANTEDENTREPRISE\", \"GERANTEDECOMMERCE\", \"GERANTEDESOCIETE\", \"GERANTEDESOCIETECOMMERCIALE\", \"GERANTEDESOCIETEDESERVICES\", \"GERANTEDESOCIETESERVICES\", \"GERANTEENTREPRISE\", \"GERANTESOCIETE\", \"GERANTESOCIETECOMMERCIALE\", \"GERANTESOCIETESERVICES\", \"GERANTESOCIETEDESERVICES\", \"GESTIONNAIRE\", \"GROSSISTE\", \"INGENIEUR\", \"INGENIEURCONSEIL\", \"INGENIEUR-CONSEIL\", \"INGENIEURE\", \"INGENIEURECONSEIL\", \"INGENIEURE-CONSEIL\", \"INSPECTEUR\", \"INSPECTRICE\", \"INTERIMAIRE\", \"INTERMITTENT\", \"INTERMITTENTE\", \"INTERMITTENTDUSPECTACLE\", \"INTERMITTENTEDUSPECTACLE\", \"INTERMITTENTSPECTACLE\", \"INTERMITTENTESPECTACLE\", \"JOBDETE\", \"JOBD'ETE\", \"JOBETE\", \"JOBSDETE\", \"JOBSD'ETE\", \"JOBSETE\", \"LAPOSTE\", \"LIEUTENANT\", \"LIEUTENANTE\", \"LIVREUR\", \"LIVREUSE\", \"MANAGER\", \"MANAGERDEQUIPE\", \"MANAGERD'EQUIPE\", \"MANAGEREQUIPE\", \"MANDATAIRE\", \"MANOEUVRE\", \"MANEUVRE\", \"MANŒUVRE\", \"MARCHAND\", \"MARCHANDAMBULANT\", \"MARCHANDE\", \"MARCHANDEAMBULANTE\", \"MARIN\", \"MATELOT\", \"MECANICIEN\", \"MECANICIENNE\", \"MEDECIN\", \"MEDIATEUR\", \"MEDIATRICE\", \"MENUISIER\", \"MENUISIERE\", \"MILITAIRE\", \"MILITAIREDECARRIERE\", \"MONITEUR\", \"MONITRICE\", \"MONTEUR\", \"MONTEUSE\", \"NAVIGATEUR\", \"NAVIGATRICE\", \"NEGOCIANT\", \"NEGOCIANTE\", \"OFFICIER\", \"OFFICIERE\", \"OPERATEUR\", \"OPERATRICE\", \"OUVRIER\", \"OUVRIERAGRICOLE\", \"OUVRIERAUTOMOBILE\", \"OUVRIERBATIMENT\", \"OUVRIERCONSTRUCTION\", \"OUVRIERD'ENTRETIEN\", \"OUVRIERDENTRETIEN\", \"OUVRIERD'USINE\", \"OUVRIERDUSINE\", \"OUVRIERDANSLINDUSTRIE\", \"OUVRIERDANSLINDUSTRIEAUTOMOBILE\", \"OUVRIERDANSL'INDUSTRIE\", \"OUVRIERDANSL'INDUSTRIEAUTOMOBILE\", \"OUVRIERDANSINDUSTRIE\", \"OUVRIERDANSINDUSTRIEAUTOMOBILE\", \"OUVRIERDEFABRICATION\", \"OUVRIERDELINDUSTRIE\", \"OUVRIERDELINDUSTRIEAUTOMOBILE\", \"OUVRIERDEL'INDUSTRIE\", \"OUVRIERDEL'INDUSTRIEAUTOMOBILE\", \"OUVRIERDEPRODUCTION\", \"OUVRIERDUBATIMENT\", \"OUVRIERENTRETIEN\", \"OUVRIERENBATIMENT\", \"OUVRIERENCONSTRUCTION\", \"OUVRIERENUSINE\", \"OUVRIERFABRICATION\", \"OUVRIERINDUSTRIE\", \"OUVRIERINDUSTRIEAUTOMOBILE\", \"OUVRIERPOLYVALENT\", \"OUVRIERPRODUCTION\", \"OUVRIERUSINE\", \"OUVRIERE\", \"OUVRIEREAGRICOLE\", \"OUVRIEREAUTOMOBILE\", \"OUVRIEREBATIMENT\", \"OUVRIERECONSTRUCTION\", \"OUVRIERED'ENTRETIEN\", \"OUVRIEREDENTRETIEN\", \"OUVRIERED'USINE\", \"OUVRIEREDUSINE\", \"OUVRIEREDANSLINDUSTRIE\", \"OUVRIEREDANSLINDUSTRIEAUTOMOBILE\", \"OUVRIEREDANSL'INDUSTRIE\", \"OUVRIEREDANSL'INDUSTRIEAUTOMOBILE\", \"OUVRIEREDANSINDUSTRIE\", \"OUVRIEREDANSINDUSTRIEAUTOMOBILE\", \"OUVRIEREDEFABRICATION\", \"OUVRIEREDELINDUSTRIE\", \"OUVRIEREDELINDUSTRIEAUTOMOBILE\", \"OUVRIEREDEL'INDUSTRIE\", \"OUVRIEREDEL'INDUSTRIEAUTOMOBILE\", \"OUVRIEREDEPRODUCTION\", \"OUVRIEREDUBATIMENT\", \"OUVRIEREENTRETIEN\", \"OUVRIEREENBATIMENT\", \"OUVRIEREENCONSTRUCTION\", \"OUVRIEREENUSINE\", \"OUVRIEREFABRICATION\", \"OUVRIEREINDUSTRIE\", \"OUVRIEREINDUSTRIEAUTOMOBILE\", \"OUVRIEREPOLYVALENTE\", \"OUVRIEREPRODUCTION\", \"OUVRIEREUSINE\", \"PDG\", \"PEINTRE\", \"PETITBOULOTDETE\", \"PETITBOULOTD'ETE\", \"PETITBOULOTETE\", \"PETITSBOULOTSDETE\", \"PETITSBOULOTSD'ETE\", \"PETITSBOULOTSDIVERS\", \"PETITSBOULOTSETE\", \"PETITJOBDETE\", \"PETITJOBD'ETE\", \"PETITJOBETE\", \"PETITSJOBSDETE\", \"PETITSJOBSD'ETE\", \"PETITSJOBSETE\", \"PILOTE\", \"PILOTEDELIGNE\", \"POLICIER\", \"POLICIERE\", \"POLYVALENT\", \"POLYVALENTE\", \"POSTE\", \"PREPARATEUR\", \"PREPARATRICE\", \"PRESIDENT\", \"PRESIDENTE\", \"PRODUCTEUR\", \"PRODUCTRICE\", \"PROFESSEUR\", \"PROFESSEURE\", \"PYROTECHNICIEN\", \"PYROTECHNICIENNE\", \"RECEVEUR\", \"RECEVEUSE\", \"REDACTEUR\", \"REDACTRICE\", \"REGISSEUR\", \"REGISSEUSE\", \"REPARATEUR\", \"REPARATRICE\", \"REPRESENTANT\", \"REPRESENTANTCOMMERCE\", \"REPRESENTANTDECOMMERCE\", \"REPRESENTANTE\", \"REPRESENTANTECOMMERCE\", \"REPRESENTANTEDECOMMERCE\", \"RESPONSABLE\", \"RESPONSABLEAGENCE\", \"RESPONSABLEDAGENCE\", \"RESPONSABLEDEXPLOITATION\", \"RESPONSABLED'AGENCE\", \"RESPONSABLED'EXPLOITATION\", \"RESPONSABLEDESAV\", \"RESPONSABLEDESECTEUR\", \"RESPONSABLEDESERVICEAPRESVENTE\", \"RESPONSABLEDESERVICEAPRES-VENTE\", \"RESPONSABLEDESSERVICESTECHNIQUES\", \"RESPONSABLEEXPLOITATION\", \"RESPONSABLESAV\", \"RESPONSABLESECTEUR\", \"RESPONSABLESERVICEAPRESVENTE\", \"RESPONSABLESERVICEAPRESVENTE(SAV)\", \"RESPONSABLESERVICEAPRES-VENTE\", \"RESPONSABLESERVICEAPRES-VENTE(SAV)\", \"RESPONSABLESERVICESAPRESVENTE\", \"RESPONSABLESERVICESAPRESVENTE(SAV)\", \"RESPONSABLESERVICESAPRES-VENTE\", \"RESPONSABLESERVICESAPRES-VENTE(SAV)\", \"RESPONSABLESERVICESTECHNIQUES\", \"RESPONSABLETECHNIQUE\", \"RESTAURATEUR\", \"RESTAURATRICE\", \"SAISONNIER\", \"SAISONNIERE\", \"SALARIE\", \"SALARIEE\", \"SERVICECIVIQUE\", \"STAGIAIRE\", \"SURVEILLANT\", \"SURVEILLANTE\", \"TAILLEUR\", \"TAILLEUSE\", \"TECHNICIEN\", \"TECHNICIENDEXPLOITATION\", \"TECHNICIENDINSTALLATION\", \"TECHNICIENDINTERVENTION\", \"TECHNICIEND'EXPLOITATION\", \"TECHNICIEND'INSTALLATION\", \"TECHNICIEND'INTERVENTION\", \"TECHNICIENDEMAINTENANCE\", \"TECHNICIENEXPLOITATION\", \"TECHNICIENINSTALLATION\", \"TECHNICIENINTERVENTION\", \"TECHNICIENMAINTENANCE\", \"TECHNICIENSAV\", \"TECHNICIENSERVICEAPRESVENTE\", \"TECHNICIENSERVICEAPRESVENTESAV\", \"TECHNICIENTERRITORIAL\", \"TECHNICIENNE\", \"TECHNICIENNEDEXPLOITATION\", \"TECHNICIENNEDINSTALLATION\", \"TECHNICIENNEDINTERVENTION\", \"TECHNICIENNED'EXPLOITATION\", \"TECHNICIENNED'INSTALLATION\", \"TECHNICIENNED'INTERVENTION\", \"TECHNICIENNEDEMAINTENANCE\", \"TECHNICIENNEEXPLOITATION\", \"TECHNICIENNEINSTALLATION\", \"TECHNICIENNEINTERVENTION\", \"TECHNICIENNEMAINTENANCE\", \"TECHNICIENNESAV\", \"TECHNICIENNESERVICEAPRESVENTE\", \"TECHNICIENNESERVICEAPRESVENTESAV\", \"TECHNICIENNETERRITORIALE\", \"TECHNICOCOMMERCIAL\", \"TECHNICOCOMMERCIALE\", \"TECHNICO-COMMERCIAL\", \"TECHNICO-COMMERCIALE\", \"TECHNICOCOMMERCIAL\", \"TECHNICOCOMMERCIALE\", \"TEMPORAIRE\", \"VCM\", \"VENDEUR\", \"VENDEURCONSEIL\", \"VENDEURCONSEILMAGASIN\", \"VENDEUSE\", \"VENDEUSECONSEIL\", \"VENDEUSECONSEILMAGASIN\", \"VRP\"}", + "type": "VTL" + }, + "bindingDependencies": [ + "PROFESSIONCLAIR_NORM", + "PROFESSIONCLAIR" + ] + }, + { + "variableType": "COLLECTED", + "name": "RESIDENCE" + }, + { + "variableType": "COLLECTED", + "name": "POLITES" + }, + { + "variableType": "COLLECTED", + "name": "DEBUT" + }, + { + "variableType": "COLLECTED", + "name": "NBHABT" + }, + { + "variableType": "COLLECTED", + "name": "PRESAKO" + }, + { + "variableType": "COLLECTED", + "name": "DIPLOME" + }, + { + "variableType": "COLLECTED", + "name": "ETUDE" + }, + { + "variableType": "COLLECTED", + "name": "COUPLE" + }, + { + "variableType": "COLLECTED", + "name": "ETAMATRI" + }, + { + "variableType": "COLLECTED", + "name": "PACS" + }, + { + "variableType": "COLLECTED", + "name": "LNAIS" + }, + { + "variableType": "COLLECTED", + "name": "DEPNAIS" + }, + { + "variableType": "COLLECTED", + "name": "PAYSNAIS" + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N1" + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N2" + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N3" + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N4" + }, + { + "variableType": "COLLECTED", + "name": "NATIO2N" + }, + { + "variableType": "COLLECTED", + "name": "NET" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX1" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX2" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX3" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX4" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX5" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB1" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB2" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB3" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB4" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB5" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEB6" + }, + { + "variableType": "COLLECTED", + "name": "NUSEWEB" + }, + { + "variableType": "COLLECTED", + "name": "USEWEB" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX1" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX2" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX3" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX4" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX5" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX6" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX7" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX8" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX9" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX10" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX11" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX12" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX13" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX14" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX15" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX16" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX17" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX18" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX19" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX20" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX21" + }, + { + "variableType": "COLLECTED", + "name": "EDUPROX1" + }, + { + "variableType": "COLLECTED", + "name": "EDUPROX2" + }, + { + "variableType": "COLLECTED", + "name": "EDUPROX3" + }, + { + "variableType": "COLLECTED", + "name": "EDUPROX4" + }, + { + "variableType": "COLLECTED", + "name": "OBJEDUX1" + }, + { + "variableType": "COLLECTED", + "name": "OBJEDUX2" + }, + { + "variableType": "COLLECTED", + "name": "OBJEDUX3" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX1" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX2" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX3" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX4" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX5" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX6" + }, + { + "variableType": "COLLECTED", + "name": "F_SKILLS" + }, + { + "variableType": "COLLECTED", + "name": "REGIST" + }, + { + "variableType": "COLLECTED", + "name": "SUPREGIST" + }, + { + "variableType": "COLLECTED", + "name": "PBREGIST" + }, + { + "variableType": "COLLECTED", + "name": "ADMX1" + }, + { + "variableType": "COLLECTED", + "name": "ADMX2" + }, + { + "variableType": "COLLECTED", + "name": "ADMX3" + }, + { + "variableType": "COLLECTED", + "name": "ADMX4" + }, + { + "variableType": "COLLECTED", + "name": "IMPADM" + }, + { + "variableType": "COLLECTED", + "name": "RDVADM" + }, + { + "variableType": "COLLECTED", + "name": "MESADM" + }, + { + "variableType": "COLLECTED", + "name": "DECLADM" + }, + { + "variableType": "COLLECTED", + "name": "RAIADMX1" + }, + { + "variableType": "COLLECTED", + "name": "RAIADMX2" + }, + { + "variableType": "COLLECTED", + "name": "RAIADMX3" + }, + { + "variableType": "COLLECTED", + "name": "RAIADMX4" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX1" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX2" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX3" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX4" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX5" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX1" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX2" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX3" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX4" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX5" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX6" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX1" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX2" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX3" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX4" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX5" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX1" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX2" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX3" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX4" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX5" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX6" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX7" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX8" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX9" + }, + { + "variableType": "COLLECTED", + "name": "F_AUTADM" + }, + { + "variableType": "COLLECTED", + "name": "DATECOM" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX1" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX2" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX3" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX4" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX5" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX6" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX7" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX8" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX9" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX10" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX11" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX12" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX13" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX14" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX15" + }, + { + "variableType": "COLLECTED", + "name": "ABACHAX1" + }, + { + "variableType": "COLLECTED", + "name": "ABACHAX2" + }, + { + "variableType": "COLLECTED", + "name": "ABACHAX3" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX1" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX2" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX3" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX4" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX5" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX6" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX7" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX1" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX2" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX3" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX4" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX5" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX6" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX7" + }, + { + "variableType": "COLLECTED", + "name": "FINANCEX1" + }, + { + "variableType": "COLLECTED", + "name": "FINANCEX2" + }, + { + "variableType": "COLLECTED", + "name": "FINANCEX3" + }, + { + "variableType": "COLLECTED", + "name": "FINANCEX4" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX1" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX2" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX3" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX4" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX5" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX1" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX2" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX3" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX4" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX5" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX6" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX7" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX8" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX9" + }, + { + "variableType": "COLLECTED", + "name": "TVIOTX1" + }, + { + "variableType": "COLLECTED", + "name": "TVIOTX2" + }, + { + "variableType": "COLLECTED", + "name": "TVIOTX3" + }, + { + "variableType": "COLLECTED", + "name": "TVIOTX4" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX1" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX2" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX3" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX4" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX5" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX1" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX2" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX3" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX4" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX5" + }, + { + "variableType": "COLLECTED", + "name": "GREENA" + }, + { + "variableType": "COLLECTED", + "name": "GREENB" + }, + { + "variableType": "COLLECTED", + "name": "GREENC" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX1" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX2" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX3" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX4" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX5" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX6" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX7" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX8" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX9" + }, + { + "variableType": "COLLECTED", + "name": "F_FIXE" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX1" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX2" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX3" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX4" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX5" + }, + { + "variableType": "COLLECTED", + "name": "F_SMARTPHONEX1" + }, + { + "variableType": "COLLECTED", + "name": "F_SMARTPHONEX2" + }, + { + "variableType": "COLLECTED", + "name": "F_SMARTPHONEX3" + }, + { + "variableType": "COLLECTED", + "name": "F_DURSMART" + }, + { + "variableType": "COLLECTED", + "name": "F_ETASMART" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX1" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX2" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX3" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX4" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX5" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX6" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX7" + }, + { + "variableType": "COLLECTED", + "name": "F_FRESEC" + }, + { + "variableType": "COLLECTED", + "name": "F_FREWEC" + }, + { + "variableType": "COLLECTED", + "name": "F_SATISVIE" + }, + { + "variableType": "COLLECTED", + "name": "F_SATISSANTE" + }, + { + "variableType": "COLLECTED", + "name": "F_TELECONX1" + }, + { + "variableType": "COLLECTED", + "name": "F_TELECONX2" + }, + { + "variableType": "COLLECTED", + "name": "F_TELECONX3" + }, + { + "variableType": "COLLECTED", + "name": "F_TELECONX4" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX1" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX2" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX3" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX4" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX5" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX6" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX7" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX8" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX9" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX10" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX1" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX2" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX3" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX4" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX5" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX6" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX7" + }, + { + "variableType": "COLLECTED", + "name": "SITUAEU" + }, + { + "variableType": "COLLECTED", + "name": "TRAVAIL" + }, + { + "variableType": "COLLECTED", + "name": "ACTIVANTE" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONLISTE" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONCLAIR" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONCLAIRP" + }, + { + "variableType": "COLLECTED", + "name": "STCPUB" + }, + { + "variableType": "COLLECTED", + "name": "ENCADR" + }, + { + "variableType": "COLLECTED", + "name": "POSITION_PUBLIC" + }, + { + "variableType": "COLLECTED", + "name": "POSITION_PRIVE" + }, + { + "variableType": "COLLECTED", + "name": "ACTILIB" + }, + { + "variableType": "COLLECTED", + "name": "NBSAL" + }, + { + "variableType": "COLLECTED", + "name": "CONTRAT" + }, + { + "variableType": "COLLECTED", + "name": "DUREE_EMP" + }, + { + "variableType": "COLLECTED", + "name": "SANTE" + }, + { + "variableType": "COLLECTED", + "name": "REVENU" + }, + { + "variableType": "COLLECTED", + "name": "TRANCHREVENU" + }, + { + "variableType": "COLLECTED", + "name": "COMMENT_QE" + }, + { + "values": { + "PREVIOUS": [], + "COLLECTED": [], + "FORCED": [], + "EDITED": [], + "INPUTED": [] + }, + "name": "PRENOM_TEL", + "variableType": "COLLECTED" + }, + { + "values": { + "PREVIOUS": [], + "COLLECTED": [], + "FORCED": [], + "EDITED": [], + "INPUTED": [] + }, + "name": "SEXE_TEL", + "variableType": "COLLECTED" + }, + { + "values": { + "PREVIOUS": [], + "COLLECTED": [], + "FORCED": [], + "EDITED": [], + "INPUTED": [] + }, + "name": "DATENAIS_TEL", + "variableType": "COLLECTED" + }, + { + "values": { + "PREVIOUS": [], + "COLLECTED": [], + "FORCED": [], + "EDITED": [], + "INPUTED": [] + }, + "name": "PASSER", + "variableType": "COLLECTED" + }, + { + "values": { + "PREVIOUS": [], + "COLLECTED": [], + "FORCED": [], + "EDITED": [], + "INPUTED": [] + }, + "name": "IS_KISH", + "variableType": "COLLECTED" + }, + { + "variableType": "COLLECTED", + "name": "RESIDENCE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "POLITES_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DEBUT_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NBHABT_MISSING" + }, + { + "name": "PRENOM_TEL_MISSING", + "variableType": "COLLECTED" + }, + { + "name": "SEXE_TEL_MISSING", + "variableType": "COLLECTED" + }, + { + "name": "DATENAIS_TEL_MISSING", + "variableType": "COLLECTED" + }, + { + "name": "PASSER_MISSING", + "variableType": "COLLECTED" + }, + { + "name": "IS_KISH_MISSING", + "variableType": "COLLECTED" + }, + { + "variableType": "COLLECTED", + "name": "PRESAKO_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DIPLOME_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ETUDE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "COUPLE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ETAMATRI_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PACS_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "LNAIS_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DEPNAIS_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PAYSNAIS_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NATIO1N_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NATIO2N_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NET_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_DEBITX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_HDEBX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NUSEWEB_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "USEWEB_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PRATINTXX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "EDUPROX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "OBJEDUX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_IMPROVEX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_SKILLS_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "REGIST_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "SUPREGIST_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PBREGIST_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "IMPADM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "RDVADM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "MESADM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DECLADM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "RAIADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DEMADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PROADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_AIDADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_RENADMX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_AUTADM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DATECOM_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ACHATXX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ABACHAX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "SERACHAX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PAYACHAX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "FINANCEX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "HOMEIOTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "RAISIOTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "TVIOTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "AUTIOTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PBIOTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "GREENA_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "GREENB_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "GREENC_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "CARGREENX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_FIXE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_ORDIX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_SMARTPHONEX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_DURSMART_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_ETASMART_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_RAISMARTX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_FRESEC_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_FREWEC_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_SATISVIE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_SATISSANTE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_TELECONX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_TELEOUIXX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "F_TELENONX_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "SITUAEU_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "TRAVAIL_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ACTIVANTE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONLISTE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONCLAIR_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "PROFESSIONCLAIRP_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "STCPUB_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ENCADR_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "POSITION_PUBLIC_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "POSITION_PRIVE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "ACTILIB_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "NBSAL_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "CONTRAT_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "DUREE_EMP_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "SANTE_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "REVENU_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "TRANCHREVENU_MISSING" + }, + { + "variableType": "COLLECTED", + "name": "COMMENT_QE_MISSING" + } + ], + "cleaning": { + "RESIDENCE": { + "POLITES": "(nvl(RESIDENCE, \" \")=\"2\")", + "DEBUT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "NBHABT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "PRESAKO": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "DIPLOME": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "ETUDE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (DIPLOME = \"1\" or DIPLOME = \"2\" or DIPLOME = \"3\")", + "COUPLE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "ETAMATRI": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "PACS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (ETAMATRI = \"1\" or ETAMATRI = \"3\" or ETAMATRI = \"4\")", + "LNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "DEPNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS=\"1\")", + "PAYSNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS = \"2\")", + "NATIO1N1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO2N": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NATIO1N3, false))", + "NET": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_DEBITX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "NUSEWEB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "USEWEB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX16": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX17": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX18": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX19": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX20": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX21": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "F_IMPROVEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_SKILLS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "REGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "SUPREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\")", + "PBREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))", + "ADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "IMPADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RDVADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "MESADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DECLADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DEMADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "F_AIDADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))", + "DATECOM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ACHATXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "FINANCEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "HOMEIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "TVIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "GREENA": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "F_FIXE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_DURSMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_ETASMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_FRESEC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_FREWEC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SATISVIE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SATISSANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELEOUIXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELENONX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "SITUAEU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "TRAVAIL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\")", + "ACTIVANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\") and (TRAVAIL = \"2\" or nvl(TRAVAIL, \" \") = \" \")", + "PROFESSIONLISTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "STCPUB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "ACTILIB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "DUREE_EMP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "SANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "REVENU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "TRANCHREVENU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (isnull(REVENU) = true)", + "PRENOM_TEL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "SEXE_TEL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "DATENAIS_TEL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "PASSER": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\"))", + "IS_KISH": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (NB_POTENTIAL_KISH >1)" + }, + "PRESAKO": { + "DIPLOME": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "ETUDE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (DIPLOME = \"1\" or DIPLOME = \"2\" or DIPLOME = \"3\")", + "COUPLE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "ETAMATRI": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "PACS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (ETAMATRI = \"1\" or ETAMATRI = \"3\" or ETAMATRI = \"4\")", + "LNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "DEPNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS=\"1\")", + "PAYSNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS = \"2\")", + "NATIO1N1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO1N4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "NATIO2N": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NATIO1N3, false))", + "NET": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_DEBITX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "NUSEWEB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "USEWEB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX16": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX17": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX18": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX19": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX20": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX21": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "F_IMPROVEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_SKILLS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "REGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "SUPREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\")", + "PBREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))", + "ADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "IMPADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RDVADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "MESADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DECLADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DEMADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "F_AIDADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AIDADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_RENADMX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))", + "DATECOM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ACHATXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "FINANCEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "HOMEIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "TVIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "GREENA": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "F_FIXE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_ORDIX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SMARTPHONEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_DURSMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_ETASMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_FRESEC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_FREWEC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SATISVIE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_SATISSANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELECONX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "F_TELEOUIXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELENONX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "SITUAEU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "TRAVAIL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\")", + "ACTIVANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\") and (TRAVAIL = \"2\" or nvl(TRAVAIL, \" \") = \" \")", + "PROFESSIONLISTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "STCPUB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "ACTILIB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "DUREE_EMP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "SANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "REVENU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\")", + "TRANCHREVENU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (isnull(REVENU) = true)" + }, + "DIPLOME": { + "ETUDE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (DIPLOME = \"1\" or DIPLOME = \"2\" or DIPLOME = \"3\")" + }, + "ETAMATRI": { + "PACS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (ETAMATRI = \"1\" or ETAMATRI = \"3\" or ETAMATRI = \"4\")" + }, + "LNAIS": { + "DEPNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS=\"1\")", + "PAYSNAIS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (LNAIS = \"2\")" + }, + "NATIO1N3": { + "NATIO2N": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NATIO1N3, false))" + }, + "NET": { + "F_DEBITX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_DEBITX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\")", + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))" + }, + "F_DEBITX4": { + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))" + }, + "F_DEBITX1": { + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))" + }, + "F_DEBITX2": { + "F_HDEB1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))", + "F_HDEB6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NET = \"1\") and ((nvl(F_DEBITX1, false) = false) and ((nvl(F_DEBITX2,false) = true) or nvl(F_DEBITX4, false) = true)))" + }, + "NUSEWEB": { + "USEWEB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX16": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX17": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX18": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX19": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX20": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "PRATINTXX21": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "EDUPROX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "F_IMPROVEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_IMPROVEX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "F_SKILLS": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "REGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\")", + "SUPREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\")", + "PBREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))", + "ADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "IMPADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RDVADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "MESADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DECLADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "RAIADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "DEMADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "DATECOM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "ACHATXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "FINANCEX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "FINANCEX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\"))", + "HOMEIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "HOMEIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "TVIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "TVIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "AUTIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "GREENA": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "GREENC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")", + "CARGREENX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\")" + }, + "EDUPROX1": { + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))" + }, + "EDUPROX2": { + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))" + }, + "EDUPROX3": { + "OBJEDUX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))", + "OBJEDUX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and ((nvl(EDUPROX1 , false) = true) or (nvl(EDUPROX2 , false) = true) or (nvl(EDUPROX3 , false) = true))" + }, + "REGIST": { + "SUPREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\")", + "PBREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))" + }, + "SUPREGIST": { + "PBREGIST": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(NUSEWEB ,\" \") = \"1\") and (REGIST =\"1\") and (nvl(SUPREGIST , \" \")=\"1\"))" + }, + "RAIADMX4": { + "DEMADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)", + "DEMADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (nvl(RAIADMX4, false) = true)" + }, + "IMPADM": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "RAIADMX1": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "RAIADMX2": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "DECLADM": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "MESADM": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "ADMX1": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "ADMX2": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "ADMX3": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "RDVADM": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "RAIADMX3": { + "PROADMX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))", + "PROADMX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and ((nvl(ADMX1, false) or nvl(ADMX2, false) or nvl(ADMX3, false) or nvl(IMPADM, \" \") = \"1\" or nvl(RDVADM, \" \")=\"1\" or nvl(MESADM, \" \") = \"1\" or nvl(DECLADM , \" \") =\"1\" or nvl(RAIADMX1, false) or nvl(RAIADMX2, false) or nvl(RAIADMX3, false) ))" + }, + "F_RENADMX1": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX2": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX3": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX4": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX5": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX6": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX7": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "F_RENADMX8": { + "F_AUTADM": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(F_RENADMX1, false) or nvl(F_RENADMX2, false) or nvl(F_RENADMX3, false) or nvl(F_RENADMX4, false) or nvl(F_RENADMX5, false) or nvl(F_RENADMX6, false) or nvl(F_RENADMX7, false) or nvl(F_RENADMX8, false)))" + }, + "DATECOM": { + "ACHATXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX11": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX12": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX13": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX14": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ACHATXX15": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "ABACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "SERACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")", + "PAYACHAX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((NUSEWEB = \"1\" or NUSEWEB =\"2\")) and (DATECOM = \"1\")" + }, + "HOMEIOTX1": { + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "HOMEIOTX2": { + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "HOMEIOTX3": { + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "HOMEIOTX4": { + "RAISIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "RAISIOTX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) = false) and (nvl(HOMEIOTX2, false) = false) and (nvl(HOMEIOTX3, false) = false) and (nvl(HOMEIOTX4, false) = false))", + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "AUTIOTX1": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "AUTIOTX2": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "AUTIOTX3": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "AUTIOTX4": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "TVIOTX3": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "TVIOTX1": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "TVIOTX2": { + "PBIOTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))", + "PBIOTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (NUSEWEB = \"1\") and ((nvl(HOMEIOTX1, false) or nvl(HOMEIOTX2, false) or nvl(HOMEIOTX3, false) or nvl(HOMEIOTX4, false) or nvl(TVIOTX1, false) or nvl(TVIOTX2, false) or nvl(TVIOTX3, false) or nvl(AUTIOTX1, false) or nvl(AUTIOTX2, false) or nvl(AUTIOTX3, false) or nvl(AUTIOTX4, false)))" + }, + "F_SMARTPHONEX1": { + "F_DURSMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_ETASMART": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)", + "F_RAISMARTX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (F_SMARTPHONEX1 = true)" + }, + "F_TELECONX1": { + "F_TELEOUIXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))" + }, + "F_TELECONX2": { + "F_TELEOUIXX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX8": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX9": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))", + "F_TELEOUIXX10": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX1, false) or nvl(F_TELECONX2, false))" + }, + "F_TELECONX3": { + "F_TELENONX1": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX2": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX3": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX4": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX5": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX6": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))", + "F_TELENONX7": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(F_TELECONX3, false))" + }, + "SITUAEU": { + "TRAVAIL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\")", + "ACTIVANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\") and (TRAVAIL = \"2\" or nvl(TRAVAIL, \" \") = \" \")", + "PROFESSIONLISTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "STCPUB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "ACTILIB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "DUREE_EMP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))" + }, + "TRAVAIL": { + "ACTIVANTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (nvl(SITUAEU , \" \") = \"2\" or nvl(SITUAEU , \" \") = \"3\" or nvl(SITUAEU , \" \") = \"4\" or nvl(SITUAEU , \" \") = \"5\" or nvl(SITUAEU , \" \") = \"6\" or nvl(SITUAEU , \" \") = \"7\") and (TRAVAIL = \"2\" or nvl(TRAVAIL, \" \") = \" \")", + "PROFESSIONLISTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "STCPUB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "ACTILIB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "DUREE_EMP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))" + }, + "ACTIVANTE": { + "PROFESSIONLISTE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")", + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)", + "STCPUB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "ACTILIB": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")", + "DUREE_EMP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\"))" + }, + "PROFESSIONLISTE": { + "PROFESSIONCLAIR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(PROFESSIONLISTE, \"9999\") = \"9999\")" + }, + "PROFESSIONCLAIR": { + "PROFESSIONCLAIRP": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (PROFESSIONCLAIR_FLOUS)" + }, + "STCPUB": { + "ENCADR": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") =\"3\")", + "POSITION_PUBLIC": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\")", + "POSITION_PRIVE": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"3\")", + "NBSAL": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"1\")", + "CONTRAT": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and ((nvl(SITUAEU, \" \") = \"1\" or nvl(TRAVAIL, \" \") = \"1\" or nvl(ACTIVANTE, \" \") = \"1\")) and (nvl(STCPUB, \" \") = \"2\" or nvl(STCPUB, \" \") = \"3\" or nvl(STCPUB, \" \") = \"4\")" + }, + "REVENU": { + "TRANCHREVENU": "((nvl(RESIDENCE, \"9\") = \"1\" or nvl(RESIDENCE, \"9\")=\"9\")) and (PRESAKO = \"1\") and (isnull(REVENU) = true)" + } + }, + "missingBlock": { + "RESIDENCE_MISSING": [ + "RESIDENCE" + ], + "RESIDENCE": [ + "RESIDENCE_MISSING" + ], + "POLITES_MISSING": [ + "POLITES" + ], + "POLITES": [ + "POLITES_MISSING" + ], + "DEBUT_MISSING": [ + "DEBUT" + ], + "DEBUT": [ + "DEBUT_MISSING" + ], + "NBHABT_MISSING": [ + "NBHABT" + ], + "NBHABT": [ + "NBHABT_MISSING" + ], + "PRESAKO_MISSING": [ + "PRESAKO" + ], + "PRESAKO": [ + "PRESAKO_MISSING" + ], + "DIPLOME_MISSING": [ + "DIPLOME" + ], + "DIPLOME": [ + "DIPLOME_MISSING" + ], + "ETUDE_MISSING": [ + "ETUDE" + ], + "ETUDE": [ + "ETUDE_MISSING" + ], + "COUPLE_MISSING": [ + "COUPLE" + ], + "COUPLE": [ + "COUPLE_MISSING" + ], + "ETAMATRI_MISSING": [ + "ETAMATRI" + ], + "ETAMATRI": [ + "ETAMATRI_MISSING" + ], + "PACS_MISSING": [ + "PACS" + ], + "PACS": [ + "PACS_MISSING" + ], + "LNAIS_MISSING": [ + "LNAIS" + ], + "LNAIS": [ + "LNAIS_MISSING" + ], + "DEPNAIS_MISSING": [ + "DEPNAIS" + ], + "DEPNAIS": [ + "DEPNAIS_MISSING" + ], + "PAYSNAIS_MISSING": [ + "PAYSNAIS" + ], + "PAYSNAIS": [ + "PAYSNAIS_MISSING" + ], + "NATIO1N_MISSING": [ + "NATIO1N1", + "NATIO1N2", + "NATIO1N3", + "NATIO1N4" + ], + "NATIO1N1": [ + "NATIO1N_MISSING" + ], + "NATIO1N2": [ + "NATIO1N_MISSING" + ], + "NATIO1N3": [ + "NATIO1N_MISSING" + ], + "NATIO1N4": [ + "NATIO1N_MISSING" + ], + "NATIO2N_MISSING": [ + "NATIO2N" + ], + "NATIO2N": [ + "NATIO2N_MISSING" + ], + "NET_MISSING": [ + "NET" + ], + "NET": [ + "NET_MISSING" + ], + "F_DEBITX_MISSING": [ + "F_DEBITX1", + "F_DEBITX2", + "F_DEBITX3", + "F_DEBITX4", + "F_DEBITX5" + ], + "F_DEBITX1": [ + "F_DEBITX_MISSING" + ], + "F_DEBITX2": [ + "F_DEBITX_MISSING" + ], + "F_DEBITX3": [ + "F_DEBITX_MISSING" + ], + "F_DEBITX4": [ + "F_DEBITX_MISSING" + ], + "F_DEBITX5": [ + "F_DEBITX_MISSING" + ], + "F_HDEBX_MISSING": [ + "F_HDEB1", + "F_HDEB2", + "F_HDEB3", + "F_HDEB4", + "F_HDEB5", + "F_HDEB6" + ], + "F_HDEB1": [ + "F_HDEBX_MISSING" + ], + "F_HDEB2": [ + "F_HDEBX_MISSING" + ], + "F_HDEB3": [ + "F_HDEBX_MISSING" + ], + "F_HDEB4": [ + "F_HDEBX_MISSING" + ], + "F_HDEB5": [ + "F_HDEBX_MISSING" + ], + "F_HDEB6": [ + "F_HDEBX_MISSING" + ], + "NUSEWEB_MISSING": [ + "NUSEWEB" + ], + "NUSEWEB": [ + "NUSEWEB_MISSING" + ], + "USEWEB_MISSING": [ + "USEWEB" + ], + "USEWEB": [ + "USEWEB_MISSING" + ], + "PRATINTXX_MISSING": [ + "PRATINTXX1", + "PRATINTXX2", + "PRATINTXX3", + "PRATINTXX4", + "PRATINTXX5", + "PRATINTXX6", + "PRATINTXX7", + "PRATINTXX8", + "PRATINTXX9", + "PRATINTXX10", + "PRATINTXX11", + "PRATINTXX12", + "PRATINTXX13", + "PRATINTXX14", + "PRATINTXX15", + "PRATINTXX16", + "PRATINTXX17", + "PRATINTXX18", + "PRATINTXX19", + "PRATINTXX20", + "PRATINTXX21" + ], + "PRATINTXX1": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX2": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX3": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX4": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX5": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX6": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX7": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX8": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX9": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX10": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX11": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX12": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX13": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX14": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX15": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX16": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX17": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX18": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX19": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX20": [ + "PRATINTXX_MISSING" + ], + "PRATINTXX21": [ + "PRATINTXX_MISSING" + ], + "EDUPROX_MISSING": [ + "EDUPROX1", + "EDUPROX2", + "EDUPROX3", + "EDUPROX4" + ], + "EDUPROX1": [ + "EDUPROX_MISSING" + ], + "EDUPROX2": [ + "EDUPROX_MISSING" + ], + "EDUPROX3": [ + "EDUPROX_MISSING" + ], + "EDUPROX4": [ + "EDUPROX_MISSING" + ], + "OBJEDUX_MISSING": [ + "OBJEDUX1", + "OBJEDUX2", + "OBJEDUX3" + ], + "OBJEDUX1": [ + "OBJEDUX_MISSING" + ], + "OBJEDUX2": [ + "OBJEDUX_MISSING" + ], + "OBJEDUX3": [ + "OBJEDUX_MISSING" + ], + "F_IMPROVEX_MISSING": [ + "F_IMPROVEX1", + "F_IMPROVEX2", + "F_IMPROVEX3", + "F_IMPROVEX4", + "F_IMPROVEX5", + "F_IMPROVEX6" + ], + "F_IMPROVEX1": [ + "F_IMPROVEX_MISSING" + ], + "F_IMPROVEX2": [ + "F_IMPROVEX_MISSING" + ], + "F_IMPROVEX3": [ + "F_IMPROVEX_MISSING" + ], + "F_IMPROVEX4": [ + "F_IMPROVEX_MISSING" + ], + "F_IMPROVEX5": [ + "F_IMPROVEX_MISSING" + ], + "F_IMPROVEX6": [ + "F_IMPROVEX_MISSING" + ], + "F_SKILLS_MISSING": [ + "F_SKILLS" + ], + "F_SKILLS": [ + "F_SKILLS_MISSING" + ], + "REGIST_MISSING": [ + "REGIST" + ], + "REGIST": [ + "REGIST_MISSING" + ], + "SUPREGIST_MISSING": [ + "SUPREGIST" + ], + "SUPREGIST": [ + "SUPREGIST_MISSING" + ], + "PBREGIST_MISSING": [ + "PBREGIST" + ], + "PBREGIST": [ + "PBREGIST_MISSING" + ], + "ADMX_MISSING": [ + "ADMX1", + "ADMX2", + "ADMX3", + "ADMX4" + ], + "ADMX1": [ + "ADMX_MISSING" + ], + "ADMX2": [ + "ADMX_MISSING" + ], + "ADMX3": [ + "ADMX_MISSING" + ], + "ADMX4": [ + "ADMX_MISSING" + ], + "IMPADM_MISSING": [ + "IMPADM" + ], + "IMPADM": [ + "IMPADM_MISSING" + ], + "RDVADM_MISSING": [ + "RDVADM" + ], + "RDVADM": [ + "RDVADM_MISSING" + ], + "MESADM_MISSING": [ + "MESADM" + ], + "MESADM": [ + "MESADM_MISSING" + ], + "DECLADM_MISSING": [ + "DECLADM" + ], + "DECLADM": [ + "DECLADM_MISSING" + ], + "RAIADMX_MISSING": [ + "RAIADMX1", + "RAIADMX2", + "RAIADMX3", + "RAIADMX4" + ], + "RAIADMX1": [ + "RAIADMX_MISSING" + ], + "RAIADMX2": [ + "RAIADMX_MISSING" + ], + "RAIADMX3": [ + "RAIADMX_MISSING" + ], + "RAIADMX4": [ + "RAIADMX_MISSING" + ], + "DEMADMX_MISSING": [ + "DEMADMX1", + "DEMADMX2", + "DEMADMX3", + "DEMADMX4", + "DEMADMX5" + ], + "DEMADMX1": [ + "DEMADMX_MISSING" + ], + "DEMADMX2": [ + "DEMADMX_MISSING" + ], + "DEMADMX3": [ + "DEMADMX_MISSING" + ], + "DEMADMX4": [ + "DEMADMX_MISSING" + ], + "DEMADMX5": [ + "DEMADMX_MISSING" + ], + "PROADMX_MISSING": [ + "PROADMX1", + "PROADMX2", + "PROADMX3", + "PROADMX4", + "PROADMX5", + "PROADMX6" + ], + "PROADMX1": [ + "PROADMX_MISSING" + ], + "PROADMX2": [ + "PROADMX_MISSING" + ], + "PROADMX3": [ + "PROADMX_MISSING" + ], + "PROADMX4": [ + "PROADMX_MISSING" + ], + "PROADMX5": [ + "PROADMX_MISSING" + ], + "PROADMX6": [ + "PROADMX_MISSING" + ], + "F_AIDADMX_MISSING": [ + "F_AIDADMX1", + "F_AIDADMX2", + "F_AIDADMX3", + "F_AIDADMX4", + "F_AIDADMX5" + ], + "F_AIDADMX1": [ + "F_AIDADMX_MISSING" + ], + "F_AIDADMX2": [ + "F_AIDADMX_MISSING" + ], + "F_AIDADMX3": [ + "F_AIDADMX_MISSING" + ], + "F_AIDADMX4": [ + "F_AIDADMX_MISSING" + ], + "F_AIDADMX5": [ + "F_AIDADMX_MISSING" + ], + "F_RENADMX_MISSING": [ + "F_RENADMX1", + "F_RENADMX2", + "F_RENADMX3", + "F_RENADMX4", + "F_RENADMX5", + "F_RENADMX6", + "F_RENADMX7", + "F_RENADMX8", + "F_RENADMX9" + ], + "F_RENADMX1": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX2": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX3": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX4": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX5": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX6": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX7": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX8": [ + "F_RENADMX_MISSING" + ], + "F_RENADMX9": [ + "F_RENADMX_MISSING" + ], + "F_AUTADM_MISSING": [ + "F_AUTADM" + ], + "F_AUTADM": [ + "F_AUTADM_MISSING" + ], + "DATECOM_MISSING": [ + "DATECOM" + ], + "DATECOM": [ + "DATECOM_MISSING" + ], + "ACHATXX_MISSING": [ + "ACHATXX1", + "ACHATXX2", + "ACHATXX3", + "ACHATXX4", + "ACHATXX5", + "ACHATXX6", + "ACHATXX7", + "ACHATXX8", + "ACHATXX9", + "ACHATXX10", + "ACHATXX11", + "ACHATXX12", + "ACHATXX13", + "ACHATXX14", + "ACHATXX15" + ], + "ACHATXX1": [ + "ACHATXX_MISSING" + ], + "ACHATXX2": [ + "ACHATXX_MISSING" + ], + "ACHATXX3": [ + "ACHATXX_MISSING" + ], + "ACHATXX4": [ + "ACHATXX_MISSING" + ], + "ACHATXX5": [ + "ACHATXX_MISSING" + ], + "ACHATXX6": [ + "ACHATXX_MISSING" + ], + "ACHATXX7": [ + "ACHATXX_MISSING" + ], + "ACHATXX8": [ + "ACHATXX_MISSING" + ], + "ACHATXX9": [ + "ACHATXX_MISSING" + ], + "ACHATXX10": [ + "ACHATXX_MISSING" + ], + "ACHATXX11": [ + "ACHATXX_MISSING" + ], + "ACHATXX12": [ + "ACHATXX_MISSING" + ], + "ACHATXX13": [ + "ACHATXX_MISSING" + ], + "ACHATXX14": [ + "ACHATXX_MISSING" + ], + "ACHATXX15": [ + "ACHATXX_MISSING" + ], + "ABACHAX_MISSING": [ + "ABACHAX1", + "ABACHAX2", + "ABACHAX3" + ], + "ABACHAX1": [ + "ABACHAX_MISSING" + ], + "ABACHAX2": [ + "ABACHAX_MISSING" + ], + "ABACHAX3": [ + "ABACHAX_MISSING" + ], + "SERACHAX_MISSING": [ + "SERACHAX1", + "SERACHAX2", + "SERACHAX3", + "SERACHAX4", + "SERACHAX5", + "SERACHAX6", + "SERACHAX7" + ], + "SERACHAX1": [ + "SERACHAX_MISSING" + ], + "SERACHAX2": [ + "SERACHAX_MISSING" + ], + "SERACHAX3": [ + "SERACHAX_MISSING" + ], + "SERACHAX4": [ + "SERACHAX_MISSING" + ], + "SERACHAX5": [ + "SERACHAX_MISSING" + ], + "SERACHAX6": [ + "SERACHAX_MISSING" + ], + "SERACHAX7": [ + "SERACHAX_MISSING" + ], + "PAYACHAX_MISSING": [ + "PAYACHAX1", + "PAYACHAX2", + "PAYACHAX3", + "PAYACHAX4", + "PAYACHAX5", + "PAYACHAX6", + "PAYACHAX7" + ], + "PAYACHAX1": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX2": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX3": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX4": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX5": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX6": [ + "PAYACHAX_MISSING" + ], + "PAYACHAX7": [ + "PAYACHAX_MISSING" + ], + "FINANCEX_MISSING": [ + "FINANCEX1", + "FINANCEX2", + "FINANCEX3", + "FINANCEX4" + ], + "FINANCEX1": [ + "FINANCEX_MISSING" + ], + "FINANCEX2": [ + "FINANCEX_MISSING" + ], + "FINANCEX3": [ + "FINANCEX_MISSING" + ], + "FINANCEX4": [ + "FINANCEX_MISSING" + ], + "HOMEIOTX_MISSING": [ + "HOMEIOTX1", + "HOMEIOTX2", + "HOMEIOTX3", + "HOMEIOTX4", + "HOMEIOTX5" + ], + "HOMEIOTX1": [ + "HOMEIOTX_MISSING" + ], + "HOMEIOTX2": [ + "HOMEIOTX_MISSING" + ], + "HOMEIOTX3": [ + "HOMEIOTX_MISSING" + ], + "HOMEIOTX4": [ + "HOMEIOTX_MISSING" + ], + "HOMEIOTX5": [ + "HOMEIOTX_MISSING" + ], + "RAISIOTX_MISSING": [ + "RAISIOTX1", + "RAISIOTX2", + "RAISIOTX3", + "RAISIOTX4", + "RAISIOTX5", + "RAISIOTX6", + "RAISIOTX7", + "RAISIOTX8", + "RAISIOTX9" + ], + "RAISIOTX1": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX2": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX3": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX4": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX5": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX6": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX7": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX8": [ + "RAISIOTX_MISSING" + ], + "RAISIOTX9": [ + "RAISIOTX_MISSING" + ], + "TVIOTX_MISSING": [ + "TVIOTX1", + "TVIOTX2", + "TVIOTX3", + "TVIOTX4" + ], + "TVIOTX1": [ + "TVIOTX_MISSING" + ], + "TVIOTX2": [ + "TVIOTX_MISSING" + ], + "TVIOTX3": [ + "TVIOTX_MISSING" + ], + "TVIOTX4": [ + "TVIOTX_MISSING" + ], + "AUTIOTX_MISSING": [ + "AUTIOTX1", + "AUTIOTX2", + "AUTIOTX3", + "AUTIOTX4", + "AUTIOTX5" + ], + "AUTIOTX1": [ + "AUTIOTX_MISSING" + ], + "AUTIOTX2": [ + "AUTIOTX_MISSING" + ], + "AUTIOTX3": [ + "AUTIOTX_MISSING" + ], + "AUTIOTX4": [ + "AUTIOTX_MISSING" + ], + "AUTIOTX5": [ + "AUTIOTX_MISSING" + ], + "PBIOTX_MISSING": [ + "PBIOTX1", + "PBIOTX2", + "PBIOTX3", + "PBIOTX4", + "PBIOTX5" + ], + "PBIOTX1": [ + "PBIOTX_MISSING" + ], + "PBIOTX2": [ + "PBIOTX_MISSING" + ], + "PBIOTX3": [ + "PBIOTX_MISSING" + ], + "PBIOTX4": [ + "PBIOTX_MISSING" + ], + "PBIOTX5": [ + "PBIOTX_MISSING" + ], + "GREENA_MISSING": [ + "GREENA" + ], + "GREENA": [ + "GREENA_MISSING" + ], + "GREENB_MISSING": [ + "GREENB" + ], + "GREENB": [ + "GREENB_MISSING" + ], + "GREENC_MISSING": [ + "GREENC" + ], + "GREENC": [ + "GREENC_MISSING" + ], + "CARGREENX_MISSING": [ + "CARGREENX1", + "CARGREENX2", + "CARGREENX3", + "CARGREENX4", + "CARGREENX5", + "CARGREENX6", + "CARGREENX7", + "CARGREENX8", + "CARGREENX9" + ], + "CARGREENX1": [ + "CARGREENX_MISSING" + ], + "CARGREENX2": [ + "CARGREENX_MISSING" + ], + "CARGREENX3": [ + "CARGREENX_MISSING" + ], + "CARGREENX4": [ + "CARGREENX_MISSING" + ], + "CARGREENX5": [ + "CARGREENX_MISSING" + ], + "CARGREENX6": [ + "CARGREENX_MISSING" + ], + "CARGREENX7": [ + "CARGREENX_MISSING" + ], + "CARGREENX8": [ + "CARGREENX_MISSING" + ], + "CARGREENX9": [ + "CARGREENX_MISSING" + ], + "F_FIXE_MISSING": [ + "F_FIXE" + ], + "F_FIXE": [ + "F_FIXE_MISSING" + ], + "F_ORDIX_MISSING": [ + "F_ORDIX1", + "F_ORDIX2", + "F_ORDIX3", + "F_ORDIX4", + "F_ORDIX5" + ], + "F_ORDIX1": [ + "F_ORDIX_MISSING" + ], + "F_ORDIX2": [ + "F_ORDIX_MISSING" + ], + "F_ORDIX3": [ + "F_ORDIX_MISSING" + ], + "F_ORDIX4": [ + "F_ORDIX_MISSING" + ], + "F_ORDIX5": [ + "F_ORDIX_MISSING" + ], + "F_SMARTPHONEX_MISSING": [ + "F_SMARTPHONEX1", + "F_SMARTPHONEX2", + "F_SMARTPHONEX3" + ], + "F_SMARTPHONEX1": [ + "F_SMARTPHONEX_MISSING" + ], + "F_SMARTPHONEX2": [ + "F_SMARTPHONEX_MISSING" + ], + "F_SMARTPHONEX3": [ + "F_SMARTPHONEX_MISSING" + ], + "F_DURSMART_MISSING": [ + "F_DURSMART" + ], + "F_DURSMART": [ + "F_DURSMART_MISSING" + ], + "F_ETASMART_MISSING": [ + "F_ETASMART" + ], + "F_ETASMART": [ + "F_ETASMART_MISSING" + ], + "F_RAISMARTX_MISSING": [ + "F_RAISMARTX1", + "F_RAISMARTX2", + "F_RAISMARTX3", + "F_RAISMARTX4", + "F_RAISMARTX5", + "F_RAISMARTX6", + "F_RAISMARTX7" + ], + "F_RAISMARTX1": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX2": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX3": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX4": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX5": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX6": [ + "F_RAISMARTX_MISSING" + ], + "F_RAISMARTX7": [ + "F_RAISMARTX_MISSING" + ], + "F_FRESEC_MISSING": [ + "F_FRESEC" + ], + "F_FRESEC": [ + "F_FRESEC_MISSING" + ], + "F_FREWEC_MISSING": [ + "F_FREWEC" + ], + "F_FREWEC": [ + "F_FREWEC_MISSING" + ], + "F_SATISVIE_MISSING": [ + "F_SATISVIE" + ], + "F_SATISVIE": [ + "F_SATISVIE_MISSING" + ], + "F_SATISSANTE_MISSING": [ + "F_SATISSANTE" + ], + "F_SATISSANTE": [ + "F_SATISSANTE_MISSING" + ], + "F_TELECONX_MISSING": [ + "F_TELECONX1", + "F_TELECONX2", + "F_TELECONX3", + "F_TELECONX4" + ], + "F_TELECONX1": [ + "F_TELECONX_MISSING" + ], + "F_TELECONX2": [ + "F_TELECONX_MISSING" + ], + "F_TELECONX3": [ + "F_TELECONX_MISSING" + ], + "F_TELECONX4": [ + "F_TELECONX_MISSING" + ], + "F_TELEOUIXX_MISSING": [ + "F_TELEOUIXX1", + "F_TELEOUIXX2", + "F_TELEOUIXX3", + "F_TELEOUIXX4", + "F_TELEOUIXX5", + "F_TELEOUIXX6", + "F_TELEOUIXX7", + "F_TELEOUIXX8", + "F_TELEOUIXX9", + "F_TELEOUIXX10" + ], + "F_TELEOUIXX1": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX2": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX3": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX4": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX5": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX6": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX7": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX8": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX9": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELEOUIXX10": [ + "F_TELEOUIXX_MISSING" + ], + "F_TELENONX_MISSING": [ + "F_TELENONX1", + "F_TELENONX2", + "F_TELENONX3", + "F_TELENONX4", + "F_TELENONX5", + "F_TELENONX6", + "F_TELENONX7" + ], + "F_TELENONX1": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX2": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX3": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX4": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX5": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX6": [ + "F_TELENONX_MISSING" + ], + "F_TELENONX7": [ + "F_TELENONX_MISSING" + ], + "SITUAEU_MISSING": [ + "SITUAEU" + ], + "SITUAEU": [ + "SITUAEU_MISSING" + ], + "TRAVAIL_MISSING": [ + "TRAVAIL" + ], + "TRAVAIL": [ + "TRAVAIL_MISSING" + ], + "ACTIVANTE_MISSING": [ + "ACTIVANTE" + ], + "ACTIVANTE": [ + "ACTIVANTE_MISSING" + ], + "PROFESSIONLISTE_MISSING": [ + "PROFESSIONLISTE" + ], + "PROFESSIONLISTE": [ + "PROFESSIONLISTE_MISSING" + ], + "PROFESSIONCLAIR_MISSING": [ + "PROFESSIONCLAIR" + ], + "PROFESSIONCLAIR": [ + "PROFESSIONCLAIR_MISSING" + ], + "PROFESSIONCLAIRP_MISSING": [ + "PROFESSIONCLAIRP" + ], + "PROFESSIONCLAIRP": [ + "PROFESSIONCLAIRP_MISSING" + ], + "STCPUB_MISSING": [ + "STCPUB" + ], + "STCPUB": [ + "STCPUB_MISSING" + ], + "ENCADR_MISSING": [ + "ENCADR" + ], + "ENCADR": [ + "ENCADR_MISSING" + ], + "POSITION_PUBLIC_MISSING": [ + "POSITION_PUBLIC" + ], + "POSITION_PUBLIC": [ + "POSITION_PUBLIC_MISSING" + ], + "POSITION_PRIVE_MISSING": [ + "POSITION_PRIVE" + ], + "POSITION_PRIVE": [ + "POSITION_PRIVE_MISSING" + ], + "ACTILIB_MISSING": [ + "ACTILIB" + ], + "ACTILIB": [ + "ACTILIB_MISSING" + ], + "NBSAL_MISSING": [ + "NBSAL" + ], + "NBSAL": [ + "NBSAL_MISSING" + ], + "CONTRAT_MISSING": [ + "CONTRAT" + ], + "CONTRAT": [ + "CONTRAT_MISSING" + ], + "DUREE_EMP_MISSING": [ + "DUREE_EMP" + ], + "DUREE_EMP": [ + "DUREE_EMP_MISSING" + ], + "SANTE_MISSING": [ + "SANTE" + ], + "SANTE": [ + "SANTE_MISSING" + ], + "REVENU_MISSING": [ + "REVENU" + ], + "REVENU": [ + "REVENU_MISSING" + ], + "TRANCHREVENU_MISSING": [ + "TRANCHREVENU" + ], + "TRANCHREVENU": [ + "TRANCHREVENU_MISSING" + ], + "COMMENT_QE_MISSING": [ + "COMMENT_QE" + ], + "COMMENT_QE": [ + "COMMENT_QE_MISSING" + ], + "PRENOM_TEL_MISSING": [ + "PRENOM_TEL" + ], + "PRENOM_TEL": [ + "PRENOM_TEL_MISSING" + ], + "SEXE_TEL_MISSING": [ + "SEXE_TEL" + ], + "SEXE_TEL": [ + "SEXE_TEL_MISSING" + ], + "DATENAIS_TEL_MISSING": [ + "DATENAIS_TEL" + ], + "DATENAIS_TEL": [ + "DATENAIS_TEL_MISSING" + ], + "PASSER_MISSING": [ + "PASSER" + ], + "PASSER": [ + "PASSER_MISSING" + ], + "IS_KISH_MISSING": [ + "IS_KISH" + ], + "IS_KISH": [ + "IS_KISH_MISSING" + ] + }, + "resizing": { + "NBHABT": { + "size": "cast(NBHABT, integer)", + "variables": [ + "PRENOM_TEL" + ] + }, + "PRENOM_TEL": { + "size": "count(PRENOM_TEL)", + "variables": [ + "PASSER", + "SEXE_TEL", + "DATENAIS_TEL", + "IS_KISH" + ] + } + } +} \ No newline at end of file From 7ccf7cdd8a6e433887d74c394d44ec3bc4ad5171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 17 Apr 2024 15:55:35 +0200 Subject: [PATCH 07/13] Model of Table changed with Lunatic version 2.3+ --- .../fr/insee/kraftwerk/core/metadata/LunaticReader.java | 6 +++--- .../fr/insee/kraftwerk/core/metadata/LunaticReaderTest.java | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index bedf780e..9ae06899 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -320,7 +320,7 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou iterateOnComponentsToFindResponses(primaryComponent, variables, metadataModel, group); break; case ComponentLunatic.TABLE: - iterateOnTableBody(primaryComponent, group, variables, metadataModel); + iterateOnTableBody(primaryComponent, group, variables, metadataModel, isLunaticV2); break; case null: break; @@ -329,10 +329,10 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou addMissingVariable(primaryComponent, group, variables, metadataModel); } - private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { + private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { // In we case of a table component we have to iterate on the body components to find the responses // The body is a nested array of arrays - JsonNode body = primaryComponent.get("body"); + JsonNode body = isLunaticV2 ? primaryComponent.get("body") : primaryComponent.get("cells"); for(JsonNode arr : body){ if (arr.isArray()){ for (JsonNode cell : arr){ diff --git a/kraftwerk-core/src/test/java/fr/insee/kraftwerk/core/metadata/LunaticReaderTest.java b/kraftwerk-core/src/test/java/fr/insee/kraftwerk/core/metadata/LunaticReaderTest.java index 01871af3..fce0af37 100644 --- a/kraftwerk-core/src/test/java/fr/insee/kraftwerk/core/metadata/LunaticReaderTest.java +++ b/kraftwerk-core/src/test/java/fr/insee/kraftwerk/core/metadata/LunaticReaderTest.java @@ -59,8 +59,9 @@ void readVariablesFromLogX21WebLunaticFile() { // assertNotNull(variables); - assertEquals(11,variables.getGroupsCount()); + assertEquals(2,variables.getGroupsCount()); assertEquals(683, variables.getVariables().getVariables().size()); } + } From 847110a3ea3fbc912766cb9eb79342d91f0b2fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 17 Apr 2024 16:09:50 +0200 Subject: [PATCH 08/13] Sonar fixes --- .../core/metadata/LunaticReader.java | 44 +++++++++++-------- 1 file changed, 25 insertions(+), 19 deletions(-) diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index 9ae06899..9fcb10a9 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -27,6 +27,7 @@ public class LunaticReader { private static final String VALUE = "value"; private static final String LABEL = "label"; private static final String MISSING_RESPONSE = "missingResponse"; + private static final String LUNATIC_MODEL_VERSION= "lunaticModelVersion"; private LunaticReader() { throw new IllegalStateException("Utility class"); @@ -42,7 +43,7 @@ private LunaticReader() { public static CalculatedVariables getCalculatedFromLunatic(Path lunaticFile) { try { JsonNode rootNode = JsonFileReader.read(lunaticFile); - String lunaticModelVersion = rootNode.get("lunaticModelVersion").asText(); + String lunaticModelVersion = rootNode.get(LUNATIC_MODEL_VERSION).asText(); boolean isLunaticV2 = compareVersions(lunaticModelVersion, "2.3.0") > 0; CalculatedVariables calculatedVariables = new CalculatedVariables(); @@ -119,7 +120,7 @@ public static List getFilterResultFromLunatic(Path lunaticFile) { public static String getLunaticModelVersion(Path lunaticFile){ try { JsonNode rootNode = JsonFileReader.read(lunaticFile); - return rootNode.get("lunaticModelVersion").toString(); + return rootNode.get(LUNATIC_MODEL_VERSION).toString(); } catch (IOException e) { log.error(EXCEPTION_MESSAGE + lunaticFile); @@ -143,7 +144,7 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { variablesNode.forEach(newVar -> variables.add(newVar.get("name").asText())); // Root group is created in VariablesMap constructor MetadataModel metadataModel = new MetadataModel(); - metadataModel.putSpecVersions(SpecType.LUNATIC,rootNode.get("lunaticModelVersion").asText()); + metadataModel.putSpecVersions(SpecType.LUNATIC,rootNode.get(LUNATIC_MODEL_VERSION).asText()); Group rootGroup = metadataModel.getRootGroup(); iterateOnComponents(rootNode, variables, metadataModel, rootGroup); @@ -297,22 +298,7 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou variables.remove(variableName); break; case ComponentLunatic.CHECKBOX_GROUP: - JsonNode responses = primaryComponent.get("responses"); - List responsesName= new ArrayList<>(); - for (JsonNode response : responses){ - responsesName.add(getVariableName(response)); - } - String questionName = findLongestCommonPrefix(responsesName); - for (JsonNode response : responses){ - variableName = getVariableName(response); - McqVariable mcqVariable = new McqVariable(variableName, group, VariableType.BOOLEAN); - if (isLunaticV2) mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); - if (!isLunaticV2) mcqVariable.setText(response.get(LABEL).asText()); - mcqVariable.setInQuestionGrid(true); - mcqVariable.setQuestionItemName(questionName); - metadataModel.getVariables().putVariable(mcqVariable); - variables.remove(variableName); - } + processCheckboxGroup(primaryComponent, group, variables, metadataModel, isLunaticV2); break; case ComponentLunatic.PAIRWISE_LINKS: // In we case of a pairwiseLinks component we have to iterate on the components to find the responses @@ -329,6 +315,26 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou addMissingVariable(primaryComponent, group, variables, metadataModel); } + private static void processCheckboxGroup(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { + String variableName; + JsonNode responses = primaryComponent.get("responses"); + List responsesName= new ArrayList<>(); + for (JsonNode response : responses){ + responsesName.add(getVariableName(response)); + } + String questionName = findLongestCommonPrefix(responsesName); + for (JsonNode response : responses){ + variableName = getVariableName(response); + McqVariable mcqVariable = new McqVariable(variableName, group, VariableType.BOOLEAN); + if (isLunaticV2) mcqVariable.setText(response.get(LABEL).get(VALUE).asText()); + if (!isLunaticV2) mcqVariable.setText(response.get(LABEL).asText()); + mcqVariable.setInQuestionGrid(true); + mcqVariable.setQuestionItemName(questionName); + metadataModel.getVariables().putVariable(mcqVariable); + variables.remove(variableName); + } + } + private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { // In we case of a table component we have to iterate on the body components to find the responses // The body is a nested array of arrays From e56a355bfa22f687b899c27980022d080f0af50b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Wed, 17 Apr 2024 17:22:18 +0200 Subject: [PATCH 09/13] Add documentation to LunaticReader --- .../core/metadata/LunaticReader.java | 114 ++++++++++++------ 1 file changed, 77 insertions(+), 37 deletions(-) diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index 9fcb10a9..972d1535 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -4,8 +4,6 @@ import fr.insee.kraftwerk.core.Constants; import fr.insee.kraftwerk.core.metadata.CalculatedVariables.CalculatedVariable; import fr.insee.kraftwerk.core.utils.JsonFileReader; -import lombok.Getter; -import lombok.Setter; import lombok.extern.log4j.Log4j2; import java.io.IOException; @@ -171,10 +169,10 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { /** * This method iterates on an array of components to extract the variables present in loops and get their group. - * @param rootNode - * @param variables - * @param metadataModel - * @param parentGroup + * @param rootNode : node containing the components we want to iterate on + * @param variables : variables list to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + * @param parentGroup : group of rootNode */ private static void iterateOnComponents(JsonNode rootNode, List variables, MetadataModel metadataModel, Group parentGroup) { JsonNode componentsNode = rootNode.get(COMPONENTS); @@ -195,10 +193,10 @@ private static void iterateOnComponents(JsonNode rootNode, List variable /** * This method processes the primary loop and creates a group with the name of the first response - * @param variables - * @param metadataModel - * @param parentGroup - * @param component + * @param variables : variables list to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + * @param parentGroup : parent group of the loop + * @param component : loop component */ private static void processPrimaryLoop(List variables, MetadataModel metadataModel, Group parentGroup, JsonNode component) { JsonNode primaryComponents = component.get(COMPONENTS); @@ -214,11 +212,11 @@ private static void processPrimaryLoop(List variables, MetadataModel met /** * This method processes the loop depending on variables and creates a group with the name of loop dependencies - * @param variables - * @param metadataModel - * @param parentGroup - * @param component - * @return + * @param variables : variables list to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + * @param parentGroup : parent group of the loop + * @param component : loop component + * @return the group corresponding to the loop */ private static Group processDependingLoop(List variables, MetadataModel metadataModel, Group parentGroup, JsonNode component) { JsonNode loopDependencies = component.get("loopDependencies"); @@ -244,18 +242,18 @@ private static String getFirstResponseName(JsonNode components){ /** * Adds variables to the metadata model (it infers type of variables from the component type) - * Compatible with Lunatic v3+ + * Checks Lunatic version to adapt to the different ways of writing the JSON * - * @param primaryComponent - * @param group - * @param variables - * @param metadataModel + * @param primaryComponent : a component of the questionnaire + * @param group : the group to which the variables belong + * @param variables : list of variables to be completed + * @param metadataModel : metadata model of the questionnaire to be completed */ private static void addResponsesAndMissing(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { //We read the name of the collected variables in response(s) //And we deduce the variable type by looking at the component that encapsulate the variable ComponentLunatic componentType = ComponentLunatic.fromJsonName(primaryComponent.get(COMPONENT_TYPE).asText()); - String variableName=""; + String variableName; boolean isLunaticV2 = compareVersions(metadataModel.getSpecVersions().get(SpecType.LUNATIC), "2.3.0") > 0; switch(componentType){ case ComponentLunatic.DATE_PICKER, ComponentLunatic.CHECKBOX_BOOLEAN, ComponentLunatic.INPUT, ComponentLunatic.TEXT_AREA, ComponentLunatic.SUGGESTER: @@ -302,7 +300,7 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou break; case ComponentLunatic.PAIRWISE_LINKS: // In we case of a pairwiseLinks component we have to iterate on the components to find the responses - // It is a nested component but we treat differently than the loops because it does not create a new level of information + // It is a nested component, but we treat it differently than the loops because it does not create a new level of information iterateOnComponentsToFindResponses(primaryComponent, variables, metadataModel, group); break; case ComponentLunatic.TABLE: @@ -315,9 +313,17 @@ private static void addResponsesAndMissing(JsonNode primaryComponent, Group grou addMissingVariable(primaryComponent, group, variables, metadataModel); } - private static void processCheckboxGroup(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { + /** + * Process a checkbox group to create a boolean variable for each response + * @param checkboxComponent : component representing a checkbox group + * @param group : group to which the variables belong + * @param variables : list of variables to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + * @param isLunaticV2 : true if the Lunatic version is 2.3 or higher + */ + private static void processCheckboxGroup(JsonNode checkboxComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { String variableName; - JsonNode responses = primaryComponent.get("responses"); + JsonNode responses = checkboxComponent.get("responses"); List responsesName= new ArrayList<>(); for (JsonNode response : responses){ responsesName.add(getVariableName(response)); @@ -335,10 +341,19 @@ private static void processCheckboxGroup(JsonNode primaryComponent, Group group, } } - private static void iterateOnTableBody(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { + /** + * Iterate on the components in the body of a table to find the responses + * @param tableComponent : component representing a table + * @param group : group to which the variables belong + * @param variables : list of variables to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + * @param isLunaticV2 : true if the Lunatic version is 2.3 or higher + */ + private static void iterateOnTableBody(JsonNode tableComponent, Group group, List variables, MetadataModel metadataModel, boolean isLunaticV2) { // In we case of a table component we have to iterate on the body components to find the responses // The body is a nested array of arrays - JsonNode body = isLunaticV2 ? primaryComponent.get("body") : primaryComponent.get("cells"); + // In Lunatic 2.2 and lower the body is called cells + JsonNode body = isLunaticV2 ? tableComponent.get("body") : tableComponent.get("cells"); for(JsonNode arr : body){ if (arr.isArray()){ for (JsonNode cell : arr){ @@ -350,14 +365,26 @@ private static void iterateOnTableBody(JsonNode primaryComponent, Group group, L } } - private static void addMissingVariable(JsonNode primaryComponent, Group group, List variables, MetadataModel metadataModel) { - if (primaryComponent.has(MISSING_RESPONSE)){ - String missingVariable = primaryComponent.get(MISSING_RESPONSE).get("name").asText(); + /** + * Add the missing variable defined in the component if present + * @param component : a questionnaire component + * @param group : group to which the variables belong + * @param variables : list of variables to be completed + * @param metadataModel : metadata model of the questionnaire to be completed + */ + private static void addMissingVariable(JsonNode component, Group group, List variables, MetadataModel metadataModel) { + if (component.has(MISSING_RESPONSE)){ + String missingVariable = component.get(MISSING_RESPONSE).get("name").asText(); metadataModel.getVariables().putVariable(new Variable(missingVariable, group, VariableType.STRING)); variables.remove(missingVariable); } } + /** + * Get the name of the variable collected by a component + * @param component : a questionnaire component + * @return the name of the variable + */ private static String getVariableName(JsonNode component) { return component.get(RESPONSE).get("name").asText(); } @@ -395,33 +422,46 @@ public static String getQuestionnaireModelId(Path lunaticFile) { } } - public static String findLongestCommonPrefix(List strs) { - int minLength = strs.getFirst().length(); - for(String str : strs){ + /** + * Find the common part of a list of strings that differs only at the end + * + * @param similarStrings : list of strings + * @return the common prefix + */ + public static String findLongestCommonPrefix(List similarStrings) { + int minLength = similarStrings.getFirst().length(); + for(String str : similarStrings){ if (str.length() Date: Wed, 17 Apr 2024 17:37:16 +0200 Subject: [PATCH 10/13] Fix tests cucumber --- .../test/java/cucumber/functional_tests/MainDefinitions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java b/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java index da0621e4..09643491 100644 --- a/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java +++ b/kraftwerk-functional-tests/src/test/java/cucumber/functional_tests/MainDefinitions.java @@ -104,7 +104,7 @@ public void initialize_with_specific_input(String inputFileName) throws Kraftwer @When("Step 1 : We initialize metadata model with lunatic specification only") public void initialize_metadata_model_with_lunatic() throws KraftwerkException { - MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,false, "defaultDirectory"); + MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,false, "defaultDirectory", 419430400L); mp.init(); userInputsFile=mp.getUserInputsFile(); metadataModelMap=mp.getMetadataModels(); @@ -112,7 +112,7 @@ public void initialize_metadata_model_with_lunatic() throws KraftwerkException { @When("Step 1 : We initialize metadata model with DDI specification only") public void initialize_metadata_model_with_DDI() throws KraftwerkException { - MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,true, "defaultDirectory"); + MainProcessing mp = new MainProcessing(inDirectory.toString(), false,false,true, "defaultDirectory", 419430400L); mp.init(); userInputsFile=mp.getUserInputsFile(); metadataModelMap=mp.getMetadataModels(); From b8728f7a093ea86e14738c2e8938d07147ebc6f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Fri, 19 Apr 2024 10:06:20 +0200 Subject: [PATCH 11/13] Create empty files to see folders in tests --- .../functional_tests/in/SAMPLETEST-METADATA/data/empty_data.xml | 0 .../in/SAMPLETEST-METADATA/paradata/empty_paradata.xml | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/data/empty_data.xml create mode 100644 kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.xml diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/data/empty_data.xml b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/data/empty_data.xml new file mode 100644 index 00000000..e69de29b diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.xml b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.xml new file mode 100644 index 00000000..e69de29b From 4c2aa99f3b38dafd328fe65209fe80cbc3dec96d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Fri, 19 Apr 2024 10:07:06 +0200 Subject: [PATCH 12/13] Change xml to json --- .../paradata/{empty_paradata.xml => empty_paradata.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/{empty_paradata.xml => empty_paradata.json} (100%) diff --git a/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.xml b/kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.json similarity index 100% rename from kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.xml rename to kraftwerk-functional-tests/src/test/resources/functional_tests/in/SAMPLETEST-METADATA/paradata/empty_paradata.json From a5f3dfccc379eba1b6c52302173f98ee06dc40f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Henninger?= Date: Fri, 24 May 2024 10:40:41 +0200 Subject: [PATCH 13/13] Remove useless block of code --- .../fr/insee/kraftwerk/core/metadata/LunaticReader.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java index 972d1535..142de0f2 100644 --- a/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java +++ b/kraftwerk-core/src/main/java/fr/insee/kraftwerk/core/metadata/LunaticReader.java @@ -146,12 +146,6 @@ public static MetadataModel getMetadataFromLunatic(Path lunaticFile) { Group rootGroup = metadataModel.getRootGroup(); iterateOnComponents(rootNode, variables, metadataModel, rootGroup); - //Case of FILTER_RESULT - List filterResultsVariables = variables.stream().filter(variable -> variable.startsWith(FILTER_RESULT_PREFIX)).toList(); - filterResultsVariables.forEach(filterVar -> { - - }); - // We iterate on root components to identify variables belonging to root group JsonNode rootComponents = rootNode.get(COMPONENTS); for (JsonNode comp : rootComponents) {