diff --git a/pom.xml b/pom.xml index 525aa2e5..303bee7d 100644 --- a/pom.xml +++ b/pom.xml @@ -138,6 +138,12 @@ ${cucumber.version} test + + io.cucumber + cucumber-spring + ${cucumber.version} + test + diff --git a/qodana.yaml b/qodana.yaml new file mode 100644 index 00000000..34dc3363 --- /dev/null +++ b/qodana.yaml @@ -0,0 +1,31 @@ +#-------------------------------------------------------------------------------# +# Qodana analysis is configured by qodana.yaml file # +# https://www.jetbrains.com/help/qodana/qodana-yaml.html # +#-------------------------------------------------------------------------------# +version: "1.0" + +#Specify inspection profile for code analysis +profile: + name: qodana.starter + +#Enable inspections +#include: +# - name: + +#Disable inspections +#exclude: +# - name: +# paths: +# - + +projectJDK: 21 #(Applied in CI/CD pipeline) + +#Execute shell command before Qodana execution (Applied in CI/CD pipeline) +#bootstrap: sh ./prepare-qodana.sh + +#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline) +#plugins: +# - id: #(plugin id can be found at https://plugins.jetbrains.com) + +#Specify Qodana linter for analysis (Applied in CI/CD pipeline) +linter: jetbrains/qodana-jvm-community:latest diff --git a/src/main/java/fr/insee/genesis/Constants.java b/src/main/java/fr/insee/genesis/Constants.java index e4913b28..80cda3a5 100644 --- a/src/main/java/fr/insee/genesis/Constants.java +++ b/src/main/java/fr/insee/genesis/Constants.java @@ -10,11 +10,13 @@ public class Constants { "(^([0-9]|[0-2][0-9]|3[0-1])[\\-\\/]([0-9]|1[0-2]|0[1-9])[\\-\\/]([0-9]{4})$)"; public static final String FILTER_RESULT_PREFIX = "FILTER_RESULT_"; public static final String MISSING_SUFFIX = "_MISSING"; + public static final String MONGODB_LUNATIC_RAWDATA_COLLECTION_NAME = "lunaticjsondata"; private static final String[] ENO_VARIABLES = {"COMMENT_QE","COMMENT_UE","HEURE_REMPL","MIN_REMPL"}; public static final String MONGODB_SCHEDULE_COLLECTION_NAME = "schedules"; public static final String LOOP_NAME_PREFIX = "BOUCLE"; public static final String MONGODB_RESPONSE_COLLECTION_NAME = "responses"; + public static final String MONGODB_VARIABLETYPE_COLLECTION_NAME = "variabletypes"; public static final String VOLUMETRY_FOLDER_NAME = "genesis_volumetries"; public static final String VOLUMETRY_FILE_SUFFIX = "_VOLUMETRY"; public static final String VOLUMETRY_FILE_DATE_FORMAT = "yyyy_MM_dd"; diff --git a/src/main/java/fr/insee/genesis/configuration/Config.java b/src/main/java/fr/insee/genesis/configuration/Config.java index f3e83444..15d51174 100644 --- a/src/main/java/fr/insee/genesis/configuration/Config.java +++ b/src/main/java/fr/insee/genesis/configuration/Config.java @@ -2,12 +2,14 @@ import lombok.Getter; import org.springframework.beans.factory.annotation.Value; +import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Configuration; import java.nio.file.Path; @Configuration @Getter +@EnableCaching public class Config { /******************************************************/ diff --git a/src/main/java/fr/insee/genesis/controller/dto/rawdata/LunaticJsonRawDataUnprocessedDto.java b/src/main/java/fr/insee/genesis/controller/dto/rawdata/LunaticJsonRawDataUnprocessedDto.java new file mode 100644 index 00000000..8e1012a7 --- /dev/null +++ b/src/main/java/fr/insee/genesis/controller/dto/rawdata/LunaticJsonRawDataUnprocessedDto.java @@ -0,0 +1,6 @@ +package fr.insee.genesis.controller.dto.rawdata; + +import lombok.Builder; + +@Builder +public record LunaticJsonRawDataUnprocessedDto(String campaignId, String interrogationId){} \ No newline at end of file diff --git a/src/main/java/fr/insee/genesis/controller/rest/responses/RawResponseController.java b/src/main/java/fr/insee/genesis/controller/rest/responses/RawResponseController.java new file mode 100644 index 00000000..cae19d16 --- /dev/null +++ b/src/main/java/fr/insee/genesis/controller/rest/responses/RawResponseController.java @@ -0,0 +1,152 @@ +package fr.insee.genesis.controller.rest.responses; + +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.controller.dto.rawdata.LunaticJsonRawDataUnprocessedDto; +import fr.insee.genesis.controller.services.MetadataService; +import fr.insee.genesis.controller.utils.ControllerUtils; +import fr.insee.genesis.domain.model.surveyunit.DataState; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; +import fr.insee.genesis.domain.ports.api.LunaticJsonRawDataApiPort; +import fr.insee.genesis.domain.service.surveyunit.SurveyUnitQualityService; +import fr.insee.genesis.domain.service.surveyunit.SurveyUnitService; +import fr.insee.genesis.exceptions.GenesisError; +import fr.insee.genesis.exceptions.GenesisException; +import fr.insee.genesis.infrastructure.utils.FileUtils; +import io.swagger.v3.oas.annotations.Operation; +import lombok.extern.slf4j.Slf4j; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; + +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +@Slf4j +@Controller +@RequestMapping(path = "/responses/raw" ) +public class RawResponseController { + + private static final String SUCCESS_MESSAGE = "Interrogation %s saved"; + private final LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort; + private final ControllerUtils controllerUtils; + private final MetadataService metadataService; + private final SurveyUnitService surveyUnitService; + private final SurveyUnitQualityService surveyUnitQualityService; + private final FileUtils fileUtils; + + public RawResponseController(LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort, ControllerUtils controllerUtils, MetadataService metadataService, SurveyUnitService surveyUnitService, SurveyUnitQualityService surveyUnitQualityService, FileUtils fileUtils) { + this.lunaticJsonRawDataApiPort = lunaticJsonRawDataApiPort; + this.controllerUtils = controllerUtils; + this.metadataService = metadataService; + this.surveyUnitService = surveyUnitService; + this.surveyUnitQualityService = surveyUnitQualityService; + this.fileUtils = fileUtils; + } + + @Operation(summary = "Save lunatic json data from one interrogation in Genesis Database") + @PutMapping(path = "/lunatic-json/save") + public ResponseEntity saveRawResponsesFromJsonBody( + @RequestParam("campaignName") String campaignName, + @RequestParam("questionnaireId") String questionnaireId, + @RequestParam("interrogationId") String interrogationId, + @RequestParam(value = "surveyUnitId", required = false) String idUE, + @RequestParam(value = "mode") Mode modeSpecified, + @RequestBody Map dataJson + ) { + log.info("Try to save interrogationId {} for campaign {}",interrogationId,campaignName); + LunaticJsonRawDataModel rawData = LunaticJsonRawDataModel.builder() + .campaignId(campaignName) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .idUE(idUE) + .mode(modeSpecified) + .data(dataJson) + .recordDate(LocalDateTime.now()) + .build(); + try { + lunaticJsonRawDataApiPort.save(rawData); + } catch (Exception e){ + return ResponseEntity.status(500).body("Unexpected error"); + } + log.info("Data saved for interrogationId {} and campaign {}",interrogationId, campaignName); + // Collect platform prefer code 201 in case of success + return ResponseEntity.status(201).body(String.format(SUCCESS_MESSAGE,interrogationId)); + } + + //GET unprocessed + @Operation(summary = "Get campaign id and interrogationId from all unprocessed raw json data") + @GetMapping(path = "/lunatic-json/get/unprocessed") + public ResponseEntity> getUnproccessedJsonRawData(){ + log.info("Try to get unprocessed raw JSON datas..."); + return ResponseEntity.ok(lunaticJsonRawDataApiPort.getUnprocessedDataIds()); + } + + //PROCESS + @Operation(summary = "Process raw data of a campaign") + @PostMapping(path = "/lunatic-json/process") + public ResponseEntity processJsonRawData( + @RequestParam("campaignName") String campaignName, + @RequestParam("questionnaireId") String questionnaireId, + @RequestBody List interrogationIdList + ){ + log.info("Try to process raw JSON datas for campaign {} and {} interrogationIds", campaignName, interrogationIdList.size()); + + int dataCount = 0; + int forcedDataCount = 0; + List errors = new ArrayList<>(); + + try { + List modesList = controllerUtils.getModesList(campaignName, null); + for (Mode mode : modesList) { + //Load and save metadatas into database, throw exception if none + VariablesMap variablesMap = metadataService.readMetadatas(campaignName, mode.getModeName(), fileUtils, + errors); + if (variablesMap == null) { + throw new GenesisException(400, + "Error during metadata parsing for mode %s :%n%s" + .formatted(mode, errors.getLast().getMessage()) + ); + } + + List rawData = lunaticJsonRawDataApiPort.getRawData(campaignName,mode,interrogationIdList); + //Save converted data + List surveyUnitModels = lunaticJsonRawDataApiPort.convertRawData( + rawData, + variablesMap + ); + + surveyUnitQualityService.verifySurveyUnits(surveyUnitModels, variablesMap); + surveyUnitService.saveSurveyUnits(surveyUnitModels); + + //Update process dates + lunaticJsonRawDataApiPort.updateProcessDates(surveyUnitModels); + + //Save metadatas + //TODO Enable when mapping problem solved for get metadatas step + //variableTypeApiPort.saveMetadatas(campaignName, questionnaireId, mode, variablesMap); + + //Increment data count + dataCount += surveyUnitModels.size(); + forcedDataCount += surveyUnitModels.stream().filter( + surveyUnitModel -> surveyUnitModel.getState().equals(DataState.FORCED) + ).toList().size(); + } + return forcedDataCount == 0 ? + ResponseEntity.ok("%d document(s) processed".formatted(dataCount)) + : ResponseEntity.ok("%d document(s) processed, including %d FORCED after data verification" + .formatted(dataCount, forcedDataCount)); + }catch (GenesisException e){ //TODO replace with spring exception handler + return ResponseEntity.status(e.getStatus()).body(e.getMessage()); + } + } + +} diff --git a/src/main/java/fr/insee/genesis/controller/rest/responses/ResponseController.java b/src/main/java/fr/insee/genesis/controller/rest/responses/ResponseController.java index 82c39352..c69c1860 100644 --- a/src/main/java/fr/insee/genesis/controller/rest/responses/ResponseController.java +++ b/src/main/java/fr/insee/genesis/controller/rest/responses/ResponseController.java @@ -1,17 +1,17 @@ package fr.insee.genesis.controller.rest.responses; -import com.fasterxml.jackson.core.JsonProcessingException; import fr.insee.bpm.exceptions.MetadataParserException; import fr.insee.bpm.metadata.model.VariablesMap; import fr.insee.bpm.metadata.reader.ddi.DDIReader; import fr.insee.bpm.metadata.reader.lunatic.LunaticReader; import fr.insee.genesis.Constants; import fr.insee.genesis.controller.adapter.LunaticXmlAdapter; -import fr.insee.genesis.controller.dto.SurveyUnitDto; -import fr.insee.genesis.controller.dto.SurveyUnitQualityToolDto; import fr.insee.genesis.controller.dto.InterrogationId; +import fr.insee.genesis.controller.dto.SurveyUnitDto; import fr.insee.genesis.controller.dto.SurveyUnitInputDto; +import fr.insee.genesis.controller.dto.SurveyUnitQualityToolDto; import fr.insee.genesis.controller.dto.SurveyUnitSimplified; +import fr.insee.genesis.controller.services.MetadataService; import fr.insee.genesis.controller.sources.xml.LunaticXmlCampaign; import fr.insee.genesis.controller.sources.xml.LunaticXmlDataParser; import fr.insee.genesis.controller.sources.xml.LunaticXmlDataSequentialParser; @@ -22,8 +22,6 @@ import fr.insee.genesis.domain.model.surveyunit.Mode; import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; import fr.insee.genesis.domain.model.surveyunit.VariableModel; -import fr.insee.genesis.domain.ports.api.LunaticJsonRawDataApiPort; -import fr.insee.genesis.domain.ports.api.LunaticXmlRawDataApiPort; import fr.insee.genesis.domain.ports.api.SurveyUnitApiPort; import fr.insee.genesis.domain.service.surveyunit.SurveyUnitQualityService; import fr.insee.genesis.exceptions.GenesisError; @@ -64,36 +62,31 @@ @Tag(name = "Response services", description = "A **response** is considered the entire set of data associated with an interrogation (survey unit x questionnaireId). \n\n These data may have different state (collected, edited, external, ...) ") @Slf4j public class ResponseController { - - private static final String DDI_REGEX = "ddi[\\w,\\s-]+\\.xml"; - public static final String S_S = "%s/%s"; + public static final String PATH_FORMAT = "%s/%s"; private static final String CAMPAIGN_ERROR = "Error for campaign {}: {}"; private static final String SUCCESS_MESSAGE = "Data saved"; private static final String SUCCESS_NO_DATA_MESSAGE = "No data has been saved"; private final SurveyUnitApiPort surveyUnitService; private final SurveyUnitQualityService surveyUnitQualityService; - private final LunaticXmlRawDataApiPort lunaticXmlRawDataApiPort; - private final LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort; private final FileUtils fileUtils; private final ControllerUtils controllerUtils; private final AuthUtils authUtils; + private final MetadataService metadataService; public ResponseController(SurveyUnitApiPort surveyUnitService, SurveyUnitQualityService surveyUnitQualityService, - LunaticXmlRawDataApiPort lunaticXmlRawDataApiPort, - LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort, FileUtils fileUtils, ControllerUtils controllerUtils, - AuthUtils authUtils + AuthUtils authUtils, + MetadataService metadataService ) { this.surveyUnitService = surveyUnitService; this.surveyUnitQualityService = surveyUnitQualityService; - this.lunaticXmlRawDataApiPort = lunaticXmlRawDataApiPort; - this.lunaticJsonRawDataApiPort = lunaticJsonRawDataApiPort; this.fileUtils = fileUtils; this.controllerUtils = controllerUtils; this.authUtils = authUtils; + this.metadataService = metadataService; } //SAVE @@ -125,7 +118,7 @@ public ResponseEntity saveResponsesFromXmlFile(@RequestParam("pathLunati log.info(String.format("Try to read Xml file : %s", xmlFile)); Path filepath = Paths.get(xmlFile); - if (filepath.toFile().length() / 1024 / 1024 <= Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL) { + if (getFileSizeInMB(filepath) <= Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL) { return processXmlFileWithMemory(filepath, modeSpecified, variablesMap); } return processXmlFileSequentially(filepath, modeSpecified, variablesMap); @@ -134,8 +127,7 @@ public ResponseEntity saveResponsesFromXmlFile(@RequestParam("pathLunati @Operation(summary = "Save multiple files to Genesis Database from the campaign root folder") @PutMapping(path = "/lunatic-xml/save-folder") public ResponseEntity saveResponsesFromXmlCampaignFolder(@RequestParam("campaignName") String campaignName, - @RequestParam(value = "mode", required = false) Mode modeSpecified, - @RequestParam(value = "withDDI", defaultValue = "true") boolean withDDI + @RequestParam(value = "mode", required = false) Mode modeSpecified )throws Exception { List errors = new ArrayList<>(); boolean isAnyDataSaved = false; @@ -145,7 +137,7 @@ public ResponseEntity saveResponsesFromXmlCampaignFolder(@RequestParam(" List modesList = controllerUtils.getModesList(campaignName, modeSpecified); for (Mode currentMode : modesList) { try { - processCampaignWithMode(campaignName, currentMode, errors, null, withDDI); + processCampaignWithMode(campaignName, currentMode, errors, null); isAnyDataSaved = true; }catch (NoDataException nde){ //Don't stop if NoDataError thrown @@ -162,62 +154,6 @@ public ResponseEntity saveResponsesFromXmlCampaignFolder(@RequestParam(" return ResponseEntity.internalServerError().body(errors.getFirst().getMessage()); } - @Operation(summary = "Save one file of raw responses to Genesis Database, passing its path as a parameter") - @PutMapping(path = "/lunatic-xml/raw/save-one") - public ResponseEntity saveRawResponsesFromXmlFile(@RequestParam("pathLunaticXml") String xmlFile, - @RequestParam(value = "mode") Mode modeSpecified - )throws Exception { - log.info(String.format("Try to read Xml file : %s", xmlFile)); - Path filepath = Paths.get(xmlFile); - - return processRawXmlFile(filepath, modeSpecified); - } - - @Operation(summary = "Save multiple raw files to Genesis Database from the campaign root folder") - @PutMapping(path = "/lunatic-xml/raw/save-folder") - public ResponseEntity saveRawResponsesFromXmlCampaignFolder(@RequestParam("campaignName") String campaignName, - @RequestParam(value = "mode", required = false) Mode modeSpecified - )throws Exception { - boolean isAnyDataSaved = false; - - log.info("Try to import raw lunatic XML data for campaign: {}", campaignName); - - List modesList = controllerUtils.getModesList(campaignName, modeSpecified); - for (Mode currentMode : modesList) { - try { - processRawCampaignWithMode(campaignName, currentMode, null); - isAnyDataSaved = true; - }catch (NoDataException nde){ - //Don't stop if NoDataError thrown - log.warn(nde.getMessage()); - }catch (Exception e){ - log.error(CAMPAIGN_ERROR, campaignName, e.toString()); - return ResponseEntity.status(500).body(e.getMessage()); - } - } - - return ResponseEntity.ok(getSuccessMessage(isAnyDataSaved)); - } - - //JSON - @Operation(summary = "Save lunatic json data to Genesis Database from the campaign root folder") - @PutMapping(path = "/lunatic-json/raw/save") - public ResponseEntity saveRawResponsesFromJsonBody( - @RequestParam("campaignName") String campaignName, - @RequestParam(value = "mode", required = false) Mode modeSpecified, - @RequestBody String dataJson - ) { - log.info("Try to import raw lunatic JSON data for campaign: {}", campaignName); - try { - lunaticJsonRawDataApiPort.saveData(campaignName, dataJson, modeSpecified); - }catch (JsonProcessingException jpe){ - log.error(jpe.toString()); - return ResponseEntity.badRequest().body("Invalid JSON synthax"); - } - log.info("Data saved for {}", campaignName); - return ResponseEntity.ok(SUCCESS_MESSAGE); - } - //SAVE ALL @Operation(summary = "Save all files to Genesis Database (differential data folder only), regardless of the campaign") @@ -253,7 +189,6 @@ public ResponseEntity saveResponsesFromAllCampaignFolders(){ return ResponseEntity.status(209).body("Data saved with " + errors.size() + " errors"); } - //DELETE @Operation(summary = "Delete all responses associated with a questionnaire") @@ -377,10 +312,12 @@ public ResponseEntity saveEditedVariables( //Parse metadata //Try to look for DDI first, if no DDI found looks for lunatic components List errors = new ArrayList<>(); - VariablesMap variablesMap = readMetadatas(surveyUnitInputDto.getCampaignId(), surveyUnitInputDto.getMode(), errors, true); + VariablesMap variablesMap = metadataService.readMetadatas(surveyUnitInputDto.getCampaignId(), + surveyUnitInputDto.getMode().getModeName(), fileUtils, errors); if(variablesMap == null){ log.warn("Can't find DDI, trying with lunatic..."); - variablesMap = readMetadatas(surveyUnitInputDto.getCampaignId(), surveyUnitInputDto.getMode(), errors, false); + variablesMap = metadataService.readMetadatas(surveyUnitInputDto.getCampaignId(), + surveyUnitInputDto.getMode().getModeName(), fileUtils, errors); if(variablesMap == null){ return ResponseEntity.status(404).body(errors.getLast().getMessage()); } @@ -422,152 +359,67 @@ public ResponseEntity saveEditedVariables( } //Utilities - - /** - * Checks if DDI is present for a campaign and mode or not and processes it accordingly - * @param campaignName name of campaign - * @param currentMode mode of collected data - * @param errors error list to fill - */ - private void processCampaignWithMode(String campaignName, Mode currentMode, List errors, String rootDataFolder) throws GenesisException, - SAXException, XMLStreamException, NoDataException { - try { - fileUtils.findFile(String.format(S_S, fileUtils.getSpecFolder(campaignName),currentMode), DDI_REGEX); - //DDI if DDI file found - processCampaignWithMode(campaignName, currentMode, errors, rootDataFolder, true); - }catch (RuntimeException re){ - //Lunatic if no DDI - log.info("No DDI File found for {}, {} mode. Will try to use Lunatic...", campaignName, - currentMode.getModeName()); - try{ - processCampaignWithMode(campaignName, currentMode, errors, rootDataFolder, false); - } catch (IOException | ParserConfigurationException e) { - throw new GenesisException(500, e.toString()); - } - }catch (IOException | ParserConfigurationException e){ - log.error(e.toString()); - throw new GenesisException(500, e.toString()); - } - } - - /** * Process a campaign with a specific mode * @param campaignName name of campaign * @param mode mode of collected data * @param errors error list to fill - * @param withDDI true if it uses DDI, false if Lunatic */ - private void processCampaignWithMode(String campaignName, Mode mode, List errors, String rootDataFolder, boolean withDDI) + private void processCampaignWithMode(String campaignName, Mode mode, List errors, String rootDataFolder) throws IOException, ParserConfigurationException, SAXException, XMLStreamException, NoDataException { - log.info("Try to import data for mode : {}", mode.getModeName()); + log.info("Starting data import for mode: {}", mode.getModeName()); String dataFolder = rootDataFolder == null ? fileUtils.getDataFolder(campaignName, mode.getFolder(), null) : fileUtils.getDataFolder(campaignName, mode.getFolder(), rootDataFolder); List dataFiles = fileUtils.listFiles(dataFolder); - log.info("Numbers of files to load in folder {} : {}", dataFolder, dataFiles.size()); + log.info("Number of files to load in folder {} : {}", dataFolder, dataFiles.size()); if (dataFiles.isEmpty()) { throw new NoDataException("No data file found in folder %s".formatted(dataFolder)); } - VariablesMap variablesMap = readMetadatas(campaignName, mode, errors, withDDI); + VariablesMap variablesMap = metadataService.readMetadatas(campaignName, mode.getModeName(), fileUtils, errors); if (variablesMap == null){ return; } //For each XML data file for (String fileName : dataFiles.stream().filter(s -> s.endsWith(".xml")).toList()) { - String filepathString = String.format(S_S, dataFolder, fileName); - Path filepath = Paths.get(filepathString); - //Check if file not in done folder, delete if true - if(isDataFileInDoneFolder(filepath, campaignName, mode.getFolder())){ - log.warn("File {} already exists in DONE folder ! Deleting...", fileName); - Files.deleteIfExists(filepath); - continue; //Go to next file - } - //Read file - log.info("Try to read Xml file : {}", fileName); - ResponseEntity response; - if (filepath.toFile().length() / 1024 / 1024 <= Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL) { - response = processXmlFileWithMemory(filepath, mode, variablesMap); - } else { - response = processXmlFileSequentially(filepath, mode, variablesMap); - } - log.debug("File {} saved", fileName); - if (response.getStatusCode() == HttpStatus.OK) { - fileUtils.moveDataFile(campaignName, mode.getFolder(), - filepath); - //Sonar is annoying when there is more than 1 continue - } else { - log.error("Error {} on file {} : {}", response.getStatusCode(), fileName, response.getBody()); - } + processOneXmlFileForCampaign(campaignName, mode, fileName, dataFolder, variablesMap); } } - private void processRawCampaignWithMode(String campaignName, - Mode mode, - String rootDataFolder - ) throws IOException, ParserConfigurationException, SAXException, NoDataException { - log.info("Try to import data for mode : {}", mode.getModeName()); - String dataFolder = rootDataFolder == null ? - fileUtils.getDataFolder(campaignName, mode.getFolder(), null) - : fileUtils.getDataFolder(campaignName, mode.getFolder(), rootDataFolder); - List dataFiles = fileUtils.listFiles(dataFolder); - log.info("Numbers of files to load in folder {} : {}", dataFolder, dataFiles.size()); - if (dataFiles.isEmpty()) { - throw new NoDataException("No data file found in folder %s".formatted(dataFolder)); + private void processOneXmlFileForCampaign(String campaignName, + Mode mode, + String fileName, + String dataFolder, + VariablesMap variablesMap) throws IOException, ParserConfigurationException, SAXException, XMLStreamException { + String filepathString = String.format(PATH_FORMAT, dataFolder, fileName); + Path filepath = Paths.get(filepathString); + //Check if file not in done folder, delete if true + if(isDataFileInDoneFolder(filepath, campaignName, mode.getFolder())){ + log.warn("File {} already exists in DONE folder ! Deleting...", fileName); + Files.deleteIfExists(filepath); + return; } - - //For each XML data file - for (String fileName : dataFiles.stream().filter(s -> s.endsWith(".xml")).toList()) { - String filepathString = String.format(S_S, dataFolder, fileName); - Path filepath = Paths.get(filepathString); - //Check if file not in done folder, delete if true - if(isDataFileInDoneFolder(filepath, campaignName, mode.getFolder())){ - log.warn("File {} already exists in DONE folder ! Deleting...", fileName); - Files.deleteIfExists(filepath); - return; - } - //Read file - log.info("Try to read Xml file : {}", fileName); - ResponseEntity response = processRawXmlFile(filepath, mode); - - log.debug("File {} saved", fileName); - if(response.getStatusCode() == HttpStatus.OK){ - fileUtils.moveDataFile(campaignName, mode.getFolder(), filepath); - return; - } - log.error("Error on file {}", fileName); + //Read file + log.info("Try to read Xml file : {}", fileName); + ResponseEntity response; + if (getFileSizeInMB(filepath) <= Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL) { + response = processXmlFileWithMemory(filepath, mode, variablesMap); + } else { + response = processXmlFileSequentially(filepath, mode, variablesMap); } + log.debug("File {} saved", fileName); + if (response.getStatusCode() == HttpStatus.OK) { + fileUtils.moveDataFile(campaignName, mode.getFolder(),filepath); + return; + } + log.error("Error {} on file {} : {}", response.getStatusCode(), fileName, response.getBody()); + } - private VariablesMap readMetadatas(String campaignName, Mode mode, List errors, boolean withDDI) { - VariablesMap variablesMap; - if(withDDI){ - //Read DDI - try { - Path ddiFilePath = fileUtils.findFile(String.format(S_S, fileUtils.getSpecFolder(campaignName), - mode.getModeName()), DDI_REGEX); - variablesMap = DDIReader.getMetadataFromDDI(ddiFilePath.toUri().toURL().toString(), - new FileInputStream(ddiFilePath.toString())).getVariables(); - } catch (Exception e) { - log.error(e.toString()); - errors.add(new GenesisError(e.toString())); - return null; - } - return variablesMap; - } - //Read Lunatic - try { - Path lunaticFilePath = fileUtils.findFile(String.format(S_S, fileUtils.getSpecFolder(campaignName), - mode.getModeName()), "lunatic[\\w," + "\\s-]+\\.json"); - variablesMap = LunaticReader.getMetadataFromLunatic(new FileInputStream(lunaticFilePath.toString())).getVariables(); - } catch (Exception e) { - log.error(e.toString()); - errors.add(new GenesisError(e.toString())); - return null; - } - return variablesMap; + private static long getFileSizeInMB(Path filepath) { + return filepath.toFile().length() / 1024 / 1024; } private boolean isDataFileInDoneFolder(Path filepath, String campaignName, String modeFolder) { @@ -599,31 +451,10 @@ private ResponseEntity processXmlFileWithMemory(Path filepath, Mode mode return ResponseEntity.ok().build(); } - private ResponseEntity processRawXmlFile(Path filepath, Mode modeSpecified) throws IOException, - ParserConfigurationException, SAXException { - LunaticXmlCampaign campaign; - // DOM method - LunaticXmlDataParser parser = new LunaticXmlDataParser(); - try { - campaign = parser.parseDataFile(filepath); - } catch (GenesisException e) { - log.error(e.toString()); - return ResponseEntity.status(e.getStatus()).body(e.getMessage()); - } - - log.debug("Begin saving raw xml data file {}", filepath); - lunaticXmlRawDataApiPort.saveData(campaign, modeSpecified); - log.debug(SUCCESS_MESSAGE); - - - log.info("File {} processed" , filepath.getFileName()); - return ResponseEntity.ok().build(); - } - private ResponseEntity processXmlFileSequentially(Path filepath, Mode modeSpecified, VariablesMap variablesMap) throws IOException, XMLStreamException { LunaticXmlCampaign campaign; //Sequential method - log.warn("File size > " + Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL + "MB! Parsing XML file using sequential method..."); + log.warn("File size > {} MB! Parsing XML file using sequential method...", Constants.MAX_FILE_SIZE_UNTIL_SEQUENTIAL); try (final InputStream stream = new FileInputStream(filepath.toFile())) { LunaticXmlDataSequentialParser parser = new LunaticXmlDataSequentialParser(filepath, stream); int suCount = 0; diff --git a/src/main/java/fr/insee/genesis/controller/services/MetadataService.java b/src/main/java/fr/insee/genesis/controller/services/MetadataService.java new file mode 100644 index 00000000..5b1bb695 --- /dev/null +++ b/src/main/java/fr/insee/genesis/controller/services/MetadataService.java @@ -0,0 +1,83 @@ +package fr.insee.genesis.controller.services; + +import fr.insee.bpm.exceptions.MetadataParserException; +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.bpm.metadata.reader.ddi.DDIReader; +import fr.insee.bpm.metadata.reader.lunatic.LunaticReader; +import fr.insee.genesis.exceptions.GenesisError; +import fr.insee.genesis.infrastructure.utils.FileUtils; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +import java.io.FileInputStream; +import java.io.IOException; +import java.nio.file.Path; +import java.util.List; +@Slf4j +@Service +public class MetadataService { + + private static final String DDI_FILE_PATTERN = "ddi[\\w,\\s-]+\\.xml"; + private static final String LUNATIC_FILE_PATTERN = "lunatic[\\w,\\s-]+\\.json"; + + /** + * Parse metadata file, either DDI or Lunatic, depending on the withDDI flag. + * + * @param metadataFilePath path to the metadata file + * @param withDDI true for DDI parsing, false for Lunatic parsing + * @return VariablesMap or null if an error occurs + */ + public VariablesMap parseMetadata(String metadataFilePath, boolean withDDI) { + try { + log.info("Try to read {} file: {}", withDDI ? "DDI" : "Lunatic", metadataFilePath); + if (withDDI) { + return DDIReader.getMetadataFromDDI( + Path.of(metadataFilePath).toFile().toURI().toURL().toString(), + new FileInputStream(metadataFilePath)).getVariables(); + } else { + return LunaticReader.getMetadataFromLunatic( + new FileInputStream(metadataFilePath)).getVariables(); + } + } catch (MetadataParserException | IOException e) { + log.error("Error reading metadata file", e); + return null; + } + } + + /** + * By folder defined by campaignName + * Attempt to parse DDI metadata first; if it fails, fall back to Lunatic parsing. + * + * @param campaignName name of the campaign + * @param modeName mode associated with the data + * @param fileUtils utility for file operations + * @param errors list to populate with errors + * @return VariablesMap or null if parsing fails + */ + public VariablesMap readMetadatas(String campaignName, String modeName, FileUtils fileUtils, List errors) { + + Path ddiFilePath; + VariablesMap variablesMap = null; + try { + ddiFilePath = fileUtils.findFile(String.format("%s/%s", fileUtils.getSpecFolder(campaignName), modeName), DDI_FILE_PATTERN); + variablesMap = parseMetadata(ddiFilePath.toString(), true); + + } catch (RuntimeException e) { + //DDI file not found and already log - Go to next step + } catch (IOException e) { + log.warn("No DDI File found for {}, {} mode. Will try to use Lunatic...", campaignName, modeName); + } + if(variablesMap == null ){ + log.warn("DDI not found or error occurred. Trying Lunatic metadata...for {}, {} mode", campaignName, modeName); + try { + Path lunaticFilePath = fileUtils.findFile(String.format("%s/%s", fileUtils.getSpecFolder(campaignName), modeName), LUNATIC_FILE_PATTERN); + return parseMetadata(lunaticFilePath.toString(), false); + } catch (Exception ex) { + log.error("Error reading Lunatic metadata file", ex); + errors.add(new GenesisError(ex.toString())); + return null; + } + } + return variablesMap; + } +} \ No newline at end of file diff --git a/src/main/java/fr/insee/genesis/controller/utils/ControllerUtils.java b/src/main/java/fr/insee/genesis/controller/utils/ControllerUtils.java index 4ee68063..39f25f0e 100644 --- a/src/main/java/fr/insee/genesis/controller/utils/ControllerUtils.java +++ b/src/main/java/fr/insee/genesis/controller/utils/ControllerUtils.java @@ -21,10 +21,17 @@ public ControllerUtils(FileUtils fileUtils) { this.fileUtils = fileUtils; } + + /** + * If a mode is specified, we treat only this mode. + * If no mode is specified, we treat all modes in the campaign. + * If no mode is specified and no specs are found, we return an error + * @param campaign campaign id to get modes + * @param modeSpecified a Mode to use, null if we want all modes available + * @return a list with the mode in modeSpecified or all modes if null + * @throws GenesisException if error in specs structure + */ public List getModesList(String campaign, Mode modeSpecified) throws GenesisException { - // If a mode is specified, we treat only this mode. - // If no mode is specified, we treat all modes in the campaign. - // If no node is specified and no specs are found, we return an error if (modeSpecified != null){ return Collections.singletonList(modeSpecified); } diff --git a/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonDataModel.java b/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonDataModel.java deleted file mode 100644 index d7faa038..00000000 --- a/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonDataModel.java +++ /dev/null @@ -1,18 +0,0 @@ -package fr.insee.genesis.domain.model.surveyunit.rawdata; - -import fr.insee.genesis.domain.model.surveyunit.Mode; -import lombok.Builder; -import org.bson.types.ObjectId; - -import java.time.LocalDateTime; - - -@Builder -public record LunaticJsonDataModel( - ObjectId id, - String campaignId, - Mode mode, - String dataJson, - LocalDateTime recordDate, - LocalDateTime processDate -){} diff --git a/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonRawDataModel.java b/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonRawDataModel.java new file mode 100644 index 00000000..d5519b51 --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticJsonRawDataModel.java @@ -0,0 +1,21 @@ +package fr.insee.genesis.domain.model.surveyunit.rawdata; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import lombok.Builder; +import org.bson.types.ObjectId; + +import java.time.LocalDateTime; +import java.util.Map; + +@Builder +public record LunaticJsonRawDataModel( + ObjectId id, + String campaignId, + String questionnaireId, + String interrogationId, + String idUE, + Mode mode, + Map data, + LocalDateTime recordDate, + LocalDateTime processDate +){} diff --git a/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticXmlDataModel.java b/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticXmlDataModel.java deleted file mode 100644 index 12819049..00000000 --- a/src/main/java/fr/insee/genesis/domain/model/surveyunit/rawdata/LunaticXmlDataModel.java +++ /dev/null @@ -1,17 +0,0 @@ -package fr.insee.genesis.domain.model.surveyunit.rawdata; - -import fr.insee.genesis.controller.sources.xml.LunaticXmlCampaign; -import fr.insee.genesis.domain.model.surveyunit.Mode; -import lombok.Builder; -import org.bson.types.ObjectId; - -import java.time.LocalDateTime; - -@Builder -public record LunaticXmlDataModel( - ObjectId id, - Mode mode, - LunaticXmlCampaign data, - LocalDateTime recordDate, - LocalDateTime processDate -){} diff --git a/src/main/java/fr/insee/genesis/domain/model/variabletype/VariableTypeModel.java b/src/main/java/fr/insee/genesis/domain/model/variabletype/VariableTypeModel.java new file mode 100644 index 00000000..c0e79a4d --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/model/variabletype/VariableTypeModel.java @@ -0,0 +1,13 @@ +package fr.insee.genesis.domain.model.variabletype; + +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import lombok.Builder; + +@Builder +public record VariableTypeModel ( + String campaignId, + String questionnaireId, + Mode mode, + VariablesMap variablesMap +){} diff --git a/src/main/java/fr/insee/genesis/domain/ports/api/LunaticJsonRawDataApiPort.java b/src/main/java/fr/insee/genesis/domain/ports/api/LunaticJsonRawDataApiPort.java index 1180e34f..38d05f7d 100644 --- a/src/main/java/fr/insee/genesis/domain/ports/api/LunaticJsonRawDataApiPort.java +++ b/src/main/java/fr/insee/genesis/domain/ports/api/LunaticJsonRawDataApiPort.java @@ -1,8 +1,24 @@ package fr.insee.genesis.domain.ports.api; -import com.fasterxml.jackson.core.JsonProcessingException; +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.controller.dto.rawdata.LunaticJsonRawDataUnprocessedDto; import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; + +import java.util.List; public interface LunaticJsonRawDataApiPort { - void saveData(String campaignName, String dataJson, Mode mode) throws JsonProcessingException; + + void save(LunaticJsonRawDataModel rawData); + List getRawData(String campaignName, Mode mode, List interrogationIdList); + List convertRawData(List rawData, VariablesMap variablesMap); + List getUnprocessedDataIds(); + List parseRawData( + String campaignName, + Mode mode, + List interrogationIdList, + VariablesMap variablesMap + ); + void updateProcessDates(List surveyUnitModels); } diff --git a/src/main/java/fr/insee/genesis/domain/ports/api/VariableTypeApiPort.java b/src/main/java/fr/insee/genesis/domain/ports/api/VariableTypeApiPort.java new file mode 100644 index 00000000..17220bfe --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/ports/api/VariableTypeApiPort.java @@ -0,0 +1,8 @@ +package fr.insee.genesis.domain.ports.api; + +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.domain.model.surveyunit.Mode; + +public interface VariableTypeApiPort { + void saveMetadatas(String campaignId, String questionnaireId, Mode mode, VariablesMap variablesMap); +} diff --git a/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonPersistancePort.java b/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonPersistancePort.java deleted file mode 100644 index 5885ff34..00000000 --- a/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonPersistancePort.java +++ /dev/null @@ -1,7 +0,0 @@ -package fr.insee.genesis.domain.ports.spi; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonDataModel; - -public interface LunaticJsonPersistancePort { - void save(LunaticJsonDataModel lunaticJsonDataModel); -} diff --git a/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonRawDataPersistencePort.java b/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonRawDataPersistencePort.java new file mode 100644 index 00000000..f5a40e3f --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticJsonRawDataPersistencePort.java @@ -0,0 +1,16 @@ +package fr.insee.genesis.domain.ports.spi; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; + +import java.util.List; +import java.util.Set; + +public interface LunaticJsonRawDataPersistencePort { + + void save(LunaticJsonRawDataModel rawData); + List findRawData(String campaignName, Mode mode, List interrogationIdList); + List getAllUnprocessedData(); + void updateProcessDates(String campaignId, Set interrogationIds); + +} diff --git a/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticXmlPersistancePort.java b/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticXmlPersistancePort.java deleted file mode 100644 index 1fc6a11c..00000000 --- a/src/main/java/fr/insee/genesis/domain/ports/spi/LunaticXmlPersistancePort.java +++ /dev/null @@ -1,9 +0,0 @@ -package fr.insee.genesis.domain.ports.spi; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticXmlDataModel; - -import java.util.List; - -public interface LunaticXmlPersistancePort { - void save(LunaticXmlDataModel lunaticXmlDataModels); -} diff --git a/src/main/java/fr/insee/genesis/domain/ports/spi/SchedulePersistencePort.java b/src/main/java/fr/insee/genesis/domain/ports/spi/SchedulePersistencePort.java index 8e3f8570..f226f227 100644 --- a/src/main/java/fr/insee/genesis/domain/ports/spi/SchedulePersistencePort.java +++ b/src/main/java/fr/insee/genesis/domain/ports/spi/SchedulePersistencePort.java @@ -16,5 +16,5 @@ public interface SchedulePersistencePort { long countSchedules(); - public List removeExpiredSchedules(ScheduleModel scheduleModel); + List removeExpiredSchedules(ScheduleModel scheduleModel); } diff --git a/src/main/java/fr/insee/genesis/domain/ports/spi/VariableTypePersistancePort.java b/src/main/java/fr/insee/genesis/domain/ports/spi/VariableTypePersistancePort.java new file mode 100644 index 00000000..3c2e3639 --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/ports/spi/VariableTypePersistancePort.java @@ -0,0 +1,12 @@ +package fr.insee.genesis.domain.ports.spi; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.variabletype.VariableTypeModel; +import fr.insee.genesis.infrastructure.document.variabletype.VariableTypeDocument; +import org.springframework.cache.annotation.Cacheable; + +public interface VariableTypePersistancePort { + void save(VariableTypeModel variableTypeModel); + @Cacheable("variableTypes") + VariableTypeDocument find(String campaignId, String questionnaireId, Mode mode); +} diff --git a/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataService.java b/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataService.java index febdf9ce..0821b197 100644 --- a/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataService.java +++ b/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataService.java @@ -1,53 +1,378 @@ package fr.insee.genesis.domain.service.rawdata; -import com.fasterxml.jackson.core.JacksonException; -import com.fasterxml.jackson.core.JsonParseException; -import com.fasterxml.jackson.databind.DeserializationFeature; -import com.fasterxml.jackson.databind.ObjectMapper; +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.controller.dto.rawdata.LunaticJsonRawDataUnprocessedDto; +import fr.insee.genesis.domain.model.surveyunit.DataState; import fr.insee.genesis.domain.model.surveyunit.Mode; -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonDataModel; +import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; import fr.insee.genesis.domain.ports.api.LunaticJsonRawDataApiPort; -import fr.insee.genesis.domain.ports.spi.LunaticJsonPersistancePort; +import fr.insee.genesis.domain.ports.spi.LunaticJsonRawDataPersistencePort; +import fr.insee.genesis.domain.utils.JsonUtils; +import fr.insee.genesis.exceptions.GenesisException; +import fr.insee.genesis.infrastructure.mappers.LunaticJsonRawDataDocumentMapper; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Service; import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; @Service +@Slf4j public class LunaticJsonRawDataService implements LunaticJsonRawDataApiPort { - @Qualifier("lunaticJsonMongoAdapter") - private final LunaticJsonPersistancePort lunaticJsonPersistancePort; + + @Qualifier("lunaticJsonMongoAdapterNew") + private final LunaticJsonRawDataPersistencePort lunaticJsonRawDataPersistencePort; @Autowired - public LunaticJsonRawDataService(LunaticJsonPersistancePort lunaticJsonPersistancePort) { - this.lunaticJsonPersistancePort = lunaticJsonPersistancePort; + public LunaticJsonRawDataService(LunaticJsonRawDataPersistencePort lunaticJsonRawDataNewPersistencePort) { + this.lunaticJsonRawDataPersistencePort = lunaticJsonRawDataNewPersistencePort; + } + + @Override + public void save(LunaticJsonRawDataModel rawData) { + lunaticJsonRawDataPersistencePort.save(rawData); + } + + @Override + public List getRawData(String campaignName, Mode mode, List interrogationIdList) { + return lunaticJsonRawDataPersistencePort.findRawData(campaignName, mode, interrogationIdList); + } + + @Override + public List convertRawData(List rawDataList, VariablesMap variablesMap) { + //WIP + /* + //Convert to genesis model + List surveyUnitModels = new ArrayList<>(); + //For each possible data state (we receive COLLECTED or EDITED) + for(DataState dataState : List.of(DataState.COLLECTED,DataState.EDITED)){ + for (LunaticJsonRawDataModel rawData : rawDataList) { + SurveyUnitModel surveyUnitModel = SurveyUnitModel.builder() + .campaignId(rawData.campaignId()) + .questionnaireId(rawData.questionnaireId()) + .mode(rawData.mode()) + .interrogationId(rawData.interrogationId()) + .state(dataState) + .fileDate(rawData.recordDate()) + .recordDate(LocalDateTime.now()) + .collectedVariables(new ArrayList<>()) + .externalVariables(new ArrayList<>()) + .build(); + + //Data collected variables conversion + processRawDataCollectedVariables(rawData, surveyUnitModel, dataState, variablesMap); + + //External variables conversion into COLLECTED document + if(dataState.equals(DataState.COLLECTED)){ + processRawDataExtractedVariables(rawData, surveyUnitModel, variablesMap); + } + + if(!surveyUnitModel.getCollectedVariables().isEmpty() + || !surveyUnitModel.getExternalVariables().isEmpty() + ){ + surveyUnitModels.add(surveyUnitModel); + } + } + } + + return surveyUnitModels; + + */ + return List.of(); + } + + @Override + public List getUnprocessedDataIds() { + List dtos = new ArrayList<>(); + + for (LunaticJsonRawDataModel dataModel : lunaticJsonRawDataPersistencePort.getAllUnprocessedData()) { + dtos.add(LunaticJsonRawDataUnprocessedDto.builder() + .campaignId(dataModel.campaignId()) + .interrogationId(dataModel.interrogationId()) + .build() + ); + } + return dtos; + } + + @Override + public List parseRawData( + String campaignName, + Mode mode, + List interrogationIdList, + VariablesMap variablesMap + ) { + /*//Get concerned raw data + List rawDataList = LunaticJsonDocumentMapper.INSTANCE.listDocumentToListModel( + lunaticJsonRawDataPersistancePort.findRawData(campaignName, mode, interrogationIdList) + ); + //Convert to genesis model + List surveyUnitModels = new ArrayList<>(); + + //For each possible data state + for(DataState dataState : getRawDataStates(rawDataList)){ + for (LunaticJsonRawDataModel rawData : rawDataList) { + SurveyUnitModel surveyUnitModel = SurveyUnitModel.builder() + .campaignId(campaignName) + .questionnaireId(rawData.questionnaireId()) + .mode(rawData.mode()) + .interrogationId(rawData.interrogationId()) + .state(dataState) + .fileDate(rawData.recordDate()) + .recordDate(LocalDateTime.now()) + .collectedVariables(new ArrayList<>()) + .externalVariables(new ArrayList<>()) + .build(); + + //Data collected variables conversion + processRawDataCollectedVariables(rawData, surveyUnitModel, dataState, variablesMap); + + //External variables conversion into COLLECTED document + if(dataState.equals(DataState.COLLECTED)){ + processRawDataExtractedVariables(rawData, surveyUnitModel, variablesMap); + } + + if(!surveyUnitModel.getCollectedVariables().isEmpty() + || !surveyUnitModel.getExternalVariables().isEmpty() + ){ + surveyUnitModels.add(surveyUnitModel); + } + } + } + + return surveyUnitModels;*/ + return List.of(); + } + + /*private static void processRawDataExtractedVariables( + LunaticJsonRawDataModel srcRawData, + SurveyUnitModel dstSurveyUnitModel, + VariablesMap variablesMap + ) { + for(Map.Entry externalVariableEntry + : srcRawData.data().externalVariables().entrySet()){ + //Value + if(externalVariableEntry.getValue().value() != null){ + VariableModel externalVariableModel = VariableModel.builder() + .varId(externalVariableEntry.getKey()) + .value(externalVariableEntry.getValue().value()) + .scope(getIdLoop(variablesMap, externalVariableEntry.getKey())) + .iteration(1) + .parentId(GroupUtils.getParentGroupName(externalVariableEntry.getKey(), variablesMap)) + .build(); + + dstSurveyUnitModel.getExternalVariables().add(externalVariableModel); + continue; + } + //Array of values + if(externalVariableEntry.getValue().valuesArray() != null){ + int iteration = 1; + for(String value : externalVariableEntry.getValue().valuesArray()) { + VariableModel externalVariableModel = VariableModel.builder() + .varId(externalVariableEntry.getKey()) + .value(value) + .scope(getIdLoop(variablesMap, externalVariableEntry.getKey())) + .iteration(iteration) + .parentId(GroupUtils.getParentGroupName(externalVariableEntry.getKey(), + variablesMap)) + .build(); + + dstSurveyUnitModel.getExternalVariables().add(externalVariableModel); + iteration++; + } + } + } + }*/ + + private void processRawDataCollectedVariables( + LunaticJsonRawDataModel srcRawData, + SurveyUnitModel dstSurveyUnitModel, + DataState dataState, + VariablesMap variablesMap + ) { + // WIP + /* + Map collectedMap = (Map) srcRawData.data().get("COLLECTED"); + if (!collectedMap.isEmpty()){ + for(Map.Entry collectedVariable : collectedMap.entrySet()) { + + //Skip if collected variable does not have state + if(!JsonUtils.asMap(collectedVariable.getValue()).containsKey(dataState.toString())){ + continue; + } + + //Value + if (JsonUtils.asMap(collectedVariable.getValue()).get(dataState.toString()) != null) { + VariableModel collectedVariableModel = VariableModel.builder() + .varId(collectedVariable.getKey()) + .value(collectedVariable.getValue().collectedVariableByStateMap().get(dataState).value()) + .scope(getIdLoop(variablesMap, collectedVariable.getKey())) + .iteration(1) + .parentId(GroupUtils.getParentGroupName(collectedVariable.getKey(), variablesMap)) + .build(); + dstSurveyUnitModel.getCollectedVariables().add(collectedVariableModel); + } + + //Array of values + if(collectedVariable.getValue().collectedVariableByStateMap().get(dataState).valuesArray() != null) { + int iteration = 1; + for (String value : + collectedVariable.getValue().collectedVariableByStateMap().get(dataState).valuesArray()) { + VariableModel collectedVariableModel = VariableModel.builder() + .varId(collectedVariable.getKey()) + .value(value) + .scope(getIdLoop(variablesMap, collectedVariable.getKey())) + .iteration(iteration) + .parentId(GroupUtils.getParentGroupName(collectedVariable.getKey(), variablesMap)) + .build(); + dstSurveyUnitModel.getCollectedVariables().add(collectedVariableModel); + iteration++; + } + } + } + }*/ } + + /*private static String getIdLoop(VariablesMap variablesMap, String variableName) { + if (variablesMap.getVariable(variableName) == null) { + log.warn("Variable {} not present in metadatas, assigning to {}", variableName, Constants.ROOT_GROUP_NAME); + return Constants.ROOT_GROUP_NAME; + } + return variablesMap.getVariable(variableName).getGroupName(); + }*/ + @Override - public void saveData(String campaignName, String dataJson, Mode mode) throws JsonParseException { - if(!isJsonValid(dataJson)){ - throw new JsonParseException("Invalid JSON synthax"); + public void updateProcessDates(List surveyUnitModels) { + Set campaignIds = new HashSet<>(); + for (SurveyUnitModel surveyUnitModel : surveyUnitModels) { + campaignIds.add(surveyUnitModel.getCampaignId()); } - LunaticJsonDataModel lunaticJsonDataModel = LunaticJsonDataModel.builder() - .campaignId(campaignName) - .mode(mode) - .dataJson(dataJson) - .recordDate(LocalDateTime.now()) - .build(); - lunaticJsonPersistancePort.save(lunaticJsonDataModel); + for (String campaignId : campaignIds) { + Set interrogationIds = new HashSet<>(); + for (SurveyUnitModel surveyUnitModel : + surveyUnitModels.stream().filter( + surveyUnitModel -> surveyUnitModel.getCampaignId().equals(campaignId) + ).toList()) { + interrogationIds.add(surveyUnitModel.getInterrogationId()); + } + lunaticJsonRawDataPersistencePort.updateProcessDates(campaignId, interrogationIds); + } } + /* + *//** + * Parse collected variables from raw data JSON + * @param rootNode root JSON node of input raw data + * @return a map of collected variables with the name of the variable as key + * @throws GenesisException if any problem during parsing + *//* + private Map getCollectedVariablesFromJson(JsonNode rootNode) throws GenesisException { + Map lunaticJsonRawDataCollectedVariables = new HashMap<>(); - private boolean isJsonValid(String json) { - ObjectMapper mapper = new ObjectMapper() - .enable(DeserializationFeature.FAIL_ON_TRAILING_TOKENS); - try { - mapper.readTree(json); - } catch (JacksonException e) { - return false; + if(!rootNode.has(LunaticJsonRawDataVariableType.COLLECTED.getJsonNodeName())){ + return lunaticJsonRawDataCollectedVariables; } - return true; + + Iterator> variables = + rootNode.get(LunaticJsonRawDataVariableType.COLLECTED.getJsonNodeName()).fields(); + while (variables.hasNext()) { + Map.Entry variableNode = variables.next(); + LunaticJsonRawDataCollectedVariable lunaticJsonRawDataCollectedVariable = + LunaticJsonRawDataCollectedVariable.builder() + .collectedVariableByStateMap(new EnumMap<>(DataState.class)) + .build(); + Iterator> states = + variableNode.getValue().fields(); + + if(!states.hasNext()){ + throw new GenesisException(400, "Invalid JSON structure: Variable %s does not have any state (%s)" + .formatted(variableNode.getKey(), Arrays.stream(DataState.values()).toList())); + } + + while (states.hasNext()){ + Map.Entry stateNode = states.next(); + + DataState dataState; + //Check if data state (ex: COLLECTED) is in enum + try{ + dataState = DataState.valueOf(stateNode.getKey()); + }catch (IllegalArgumentException e){ + throw new GenesisException(400, "Invalid JSON : Data state %s contained in variable %s is not supported" + .formatted(stateNode.getKey(), variableNode.getKey())); + } + + //Parse values + LunaticJsonRawDataVariable lunaticJsonRawDataVariable; + if (stateNode.getValue().isArray()) { + //If is array of values + lunaticJsonRawDataVariable = LunaticJsonRawDataVariable.builder() + .valuesArray(new ArrayList<>()) + .build(); + for (JsonNode valueNode : stateNode.getValue()) { + lunaticJsonRawDataVariable.valuesArray().add(valueNode.asText()); + } + } else { + //If only 1 value + lunaticJsonRawDataVariable = LunaticJsonRawDataVariable.builder() + .value(stateNode.getValue().asText()) + .build(); + } + lunaticJsonRawDataCollectedVariable.collectedVariableByStateMap().put(dataState, lunaticJsonRawDataVariable); + } + lunaticJsonRawDataCollectedVariables.put(variableNode.getKey(), lunaticJsonRawDataCollectedVariable); + } + return lunaticJsonRawDataCollectedVariables; } + + *//** + * Parse other than collected variables from raw data JSON + * These variables are defined by the lack of state (COLLECTED, EDITED...) in their structure + * @param rootNode root JSON node of input raw data + * @return a map of variables with the name of the variable as key + * @throws GenesisException if any problem during parsing + *//* + private Map getOtherVariablesFromJson( + JsonNode rootNode, + //Don't mind the warning, we expect only EXTERNAL for now but this method is open for another types + LunaticJsonRawDataVariableType variableType + ) { + + if (!rootNode.has(variableType.getJsonNodeName())) { + return new HashMap<>(); + } + + //Parse from json + Map lunaticJsonRawDataVariables = new HashMap<>(); + Iterator> variables = rootNode.get(variableType.getJsonNodeName()).fields(); + while (variables.hasNext()) { + Map.Entry variableNode = variables.next(); + LunaticJsonRawDataVariable lunaticJsonRawDataVariable; + if (variableNode.getValue().isArray()) { + //If is array of values + lunaticJsonRawDataVariable = LunaticJsonRawDataVariable.builder() + .valuesArray(new ArrayList<>()) + .build(); + for (JsonNode valueNode : variableNode.getValue()) { + lunaticJsonRawDataVariable.valuesArray().add(valueNode.asText()); + } + lunaticJsonRawDataVariables.put(variableNode.getKey(), lunaticJsonRawDataVariable); + } else { + //If only 1 value + lunaticJsonRawDataVariable = LunaticJsonRawDataVariable.builder() + .value(variableNode.getValue().asText()) + .build(); + } + lunaticJsonRawDataVariables.put(variableNode.getKey(), lunaticJsonRawDataVariable); + } + return lunaticJsonRawDataVariables; + }*/ } diff --git a/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticXmlRawDataService.java b/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticXmlRawDataService.java deleted file mode 100644 index a1696737..00000000 --- a/src/main/java/fr/insee/genesis/domain/service/rawdata/LunaticXmlRawDataService.java +++ /dev/null @@ -1,34 +0,0 @@ -package fr.insee.genesis.domain.service.rawdata; - -import fr.insee.genesis.controller.sources.xml.LunaticXmlCampaign; -import fr.insee.genesis.domain.model.surveyunit.Mode; -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticXmlDataModel; -import fr.insee.genesis.domain.ports.api.LunaticXmlRawDataApiPort; -import fr.insee.genesis.domain.ports.spi.LunaticXmlPersistancePort; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.stereotype.Service; - -import java.time.LocalDateTime; - -@Service -public class LunaticXmlRawDataService implements LunaticXmlRawDataApiPort { - @Qualifier("lunaticXmlMongoAdapter") - private final LunaticXmlPersistancePort lunaticXmlPersistancePort; - - @Autowired - public LunaticXmlRawDataService(LunaticXmlPersistancePort lunaticXmlPersistancePort) { - this.lunaticXmlPersistancePort = lunaticXmlPersistancePort; - } - - @Override - public void saveData(LunaticXmlCampaign campaign, Mode mode) { - LunaticXmlDataModel lunaticXmlDataModel = LunaticXmlDataModel.builder() - .mode(mode) - .data(campaign) - .recordDate(LocalDateTime.now()) - .build(); - - lunaticXmlPersistancePort.save(lunaticXmlDataModel); - } -} diff --git a/src/main/java/fr/insee/genesis/domain/service/surveyunit/SurveyUnitService.java b/src/main/java/fr/insee/genesis/domain/service/surveyunit/SurveyUnitService.java index 0d345f5c..a6359e26 100644 --- a/src/main/java/fr/insee/genesis/domain/service/surveyunit/SurveyUnitService.java +++ b/src/main/java/fr/insee/genesis/domain/service/surveyunit/SurveyUnitService.java @@ -330,7 +330,7 @@ private void extractVariables(SurveyUnitModel surveyUnitModel, collectedVariableMap.put(loopIdTuple, variableDto); } //Extract variable state - if (!collectedVariable.value().isEmpty() && isMostRecentForSameState(surveyUnitModel, variableDto)) { + if (isMostRecentForSameState(surveyUnitModel, variableDto)) { variableDto.getVariableStateDtoList().add( VariableStateDto.builder() .state(surveyUnitModel.getState()) @@ -360,7 +360,7 @@ private void extractVariables(SurveyUnitModel surveyUnitModel, externalVariableMap.put(loopIdTuple, variableDto); } //Extract variable state - if(!externalVariable.value().isEmpty() && isMostRecentForSameState(surveyUnitModel, variableDto)){ + if(isMostRecentForSameState(surveyUnitModel, variableDto)){ variableDto.getVariableStateDtoList().add( VariableStateDto.builder() .state(surveyUnitModel.getState()) diff --git a/src/main/java/fr/insee/genesis/domain/service/variabletype/VariableTypeService.java b/src/main/java/fr/insee/genesis/domain/service/variabletype/VariableTypeService.java new file mode 100644 index 00000000..52ed64f9 --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/service/variabletype/VariableTypeService.java @@ -0,0 +1,39 @@ +package fr.insee.genesis.domain.service.variabletype; + +import fr.insee.bpm.metadata.model.Variable; +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.variabletype.VariableTypeModel; +import fr.insee.genesis.domain.ports.api.VariableTypeApiPort; +import fr.insee.genesis.domain.ports.spi.VariableTypePersistancePort; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.stereotype.Service; + +@Service +public class VariableTypeService implements VariableTypeApiPort { + @Qualifier("variableTypeMongoAdapter") + private final VariableTypePersistancePort variableTypePersistancePort; + + @Autowired + public VariableTypeService(VariableTypePersistancePort variableTypePersistancePort) { + this.variableTypePersistancePort = variableTypePersistancePort; + } + + @Override + public void saveMetadatas(String campaignId, String questionnaireId, Mode mode, VariablesMap variablesMap) { + VariableTypeModel variableTypeModel = VariableTypeModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .mode(mode) + .variablesMap(new VariablesMap()) + .build(); + + for(String variableName : variablesMap.getVariables().keySet()){ + Variable bpmVariable = variablesMap.getVariable(variableName); + variableTypeModel.variablesMap().putVariable(bpmVariable); + } + + variableTypePersistancePort.save(variableTypeModel); + } +} diff --git a/src/main/java/fr/insee/genesis/domain/utils/GroupUtils.java b/src/main/java/fr/insee/genesis/domain/utils/GroupUtils.java index 56b5e064..07ed2f72 100644 --- a/src/main/java/fr/insee/genesis/domain/utils/GroupUtils.java +++ b/src/main/java/fr/insee/genesis/domain/utils/GroupUtils.java @@ -64,22 +64,15 @@ public static String getParentGroupName(String variableName, VariablesMap variab } private static String getRelatedVariableName(String variableName, VariablesMap variablesMap) { - Variable variable = variablesMap.getVariable(variableName); - if ( variable == null ) { - if(variablesMap.hasVariable(removePrefixOrSuffix(variableName, Constants.FILTER_RESULT_PREFIX))) - { - return removePrefixOrSuffix(variableName, Constants.FILTER_RESULT_PREFIX); - } - if(variablesMap.hasVariable(removePrefixOrSuffix(variableName, Constants.MISSING_SUFFIX)) - ){ - return removePrefixOrSuffix(variableName, Constants.MISSING_SUFFIX); - } - return null; + if(variablesMap.hasVariable(removePrefixOrSuffix(variableName, Constants.FILTER_RESULT_PREFIX))) + { + return removePrefixOrSuffix(variableName, Constants.FILTER_RESULT_PREFIX); } - if (variable.getGroup().isRoot()) { - return null; + if(variablesMap.hasVariable(removePrefixOrSuffix(variableName, Constants.MISSING_SUFFIX)) + ){ + return removePrefixOrSuffix(variableName, Constants.MISSING_SUFFIX); } - return variable.getGroup().getParentName(); + return null; } private static String removePrefixOrSuffix(String variableName, String pattern) { diff --git a/src/main/java/fr/insee/genesis/domain/utils/JsonUtils.java b/src/main/java/fr/insee/genesis/domain/utils/JsonUtils.java new file mode 100644 index 00000000..aa87f27a --- /dev/null +++ b/src/main/java/fr/insee/genesis/domain/utils/JsonUtils.java @@ -0,0 +1,24 @@ +package fr.insee.genesis.domain.utils; + +import com.fasterxml.jackson.databind.ObjectMapper; + +import java.util.List; +import java.util.Map; + +public class JsonUtils { + private static final ObjectMapper objectMapper = new ObjectMapper(); + + public static Map jsonToMap(String json) throws Exception { + return objectMapper.readValue(json, Map.class); + } + + @SuppressWarnings("unchecked") + public static Map asMap(Object obj) { + return (Map) obj; + } + + @SuppressWarnings("unchecked") + public static List asStringList(Object obj){ + return (List) obj; + } +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonMongoAdapter.java b/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonMongoAdapter.java deleted file mode 100644 index 29e1f893..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonMongoAdapter.java +++ /dev/null @@ -1,31 +0,0 @@ -package fr.insee.genesis.infrastructure.adapter; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonDataModel; -import fr.insee.genesis.domain.ports.spi.LunaticJsonPersistancePort; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonDataDocument; -import fr.insee.genesis.infrastructure.mappers.LunaticJsonDocumentMapper; -import fr.insee.genesis.infrastructure.repository.LunaticJsonMongoDBRepository; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.stereotype.Service; - -@Slf4j -@Service -@Qualifier("lunaticJsonMongoAdapter") -public class LunaticJsonMongoAdapter implements LunaticJsonPersistancePort { - - private final LunaticJsonMongoDBRepository lunaticJsonMongoDBRepository; - - @Autowired - public LunaticJsonMongoAdapter(LunaticJsonMongoDBRepository lunaticJsonMongoDBRepository) { - this.lunaticJsonMongoDBRepository = lunaticJsonMongoDBRepository; - } - - @Override - public void save(LunaticJsonDataModel lunaticJsonDataModel) { - LunaticJsonDataDocument document = LunaticJsonDocumentMapper.INSTANCE - .modelToDocument(lunaticJsonDataModel); - lunaticJsonMongoDBRepository.insert(document); - } -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonRawDataMongoAdapter.java b/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonRawDataMongoAdapter.java new file mode 100644 index 00000000..133c5a03 --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticJsonRawDataMongoAdapter.java @@ -0,0 +1,59 @@ +package fr.insee.genesis.infrastructure.adapter; + +import fr.insee.genesis.Constants; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; +import fr.insee.genesis.domain.ports.spi.LunaticJsonRawDataPersistencePort; +import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonRawDataDocument; +import fr.insee.genesis.infrastructure.mappers.LunaticJsonRawDataDocumentMapper; +import fr.insee.genesis.infrastructure.repository.LunaticJsonMongoDBRepository; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.data.mongodb.core.query.Criteria; +import org.springframework.data.mongodb.core.query.Query; +import org.springframework.data.mongodb.core.query.Update; +import org.springframework.stereotype.Service; + +import java.time.LocalDateTime; +import java.util.List; +import java.util.Set; + +@Slf4j +@Service +@Qualifier("lunaticJsonMongoAdapter") +public class LunaticJsonRawDataMongoAdapter implements LunaticJsonRawDataPersistencePort { + private final LunaticJsonMongoDBRepository repository; + private final MongoTemplate mongoTemplate; + + public LunaticJsonRawDataMongoAdapter(LunaticJsonMongoDBRepository repository, MongoTemplate mongoTemplate) { + this.repository = repository; + this.mongoTemplate = mongoTemplate; + } + + @Override + public void save(LunaticJsonRawDataModel rawData) { + LunaticJsonRawDataDocument doc = LunaticJsonRawDataDocumentMapper.INSTANCE.modelToDocument(rawData); + repository.insert(doc); + } + + @Override + public List getAllUnprocessedData() { + return LunaticJsonRawDataDocumentMapper.INSTANCE.listDocumentToListModel(repository.findByNullProcessDate()); + } + + @Override + public List findRawData(String campaignName, Mode mode, List interrogationIdList) { + List rawDataDocs = repository.findModesByCampaignIdAndByModeAndinterrogationIdIninterrogationIdList(campaignName, mode, interrogationIdList); + return LunaticJsonRawDataDocumentMapper.INSTANCE.listDocumentToListModel(rawDataDocs); + } + + @Override + public void updateProcessDates(String campaignId, Set interrogationIds) { + mongoTemplate.updateMulti( + Query.query(Criteria.where("campaignId").is(campaignId).and("interrogationId").in(interrogationIds)) + , new Update().set("processDate", LocalDateTime.now()) + , Constants.MONGODB_LUNATIC_RAWDATA_COLLECTION_NAME + ); + } +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticXmlMongoAdapter.java b/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticXmlMongoAdapter.java deleted file mode 100644 index 14c02073..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/adapter/LunaticXmlMongoAdapter.java +++ /dev/null @@ -1,32 +0,0 @@ -package fr.insee.genesis.infrastructure.adapter; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticXmlDataModel; -import fr.insee.genesis.domain.ports.spi.LunaticXmlPersistancePort; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticXmlDataDocument; -import fr.insee.genesis.infrastructure.mappers.LunaticXmlDocumentMapper; -import fr.insee.genesis.infrastructure.repository.LunaticXmlMongoDBRepository; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.data.mongodb.core.MongoTemplate; -import org.springframework.stereotype.Service; - -@Slf4j -@Service -@Qualifier("lunaticXmlMongoAdapter") -public class LunaticXmlMongoAdapter implements LunaticXmlPersistancePort { - - private final LunaticXmlMongoDBRepository mongoRepository; - - @Autowired - public LunaticXmlMongoAdapter(LunaticXmlMongoDBRepository mongoRepository) { - this.mongoRepository = mongoRepository; - } - - @Override - public void save(LunaticXmlDataModel lunaticXmlDataModel) { - LunaticXmlDataDocument document = LunaticXmlDocumentMapper.INSTANCE - .modelToDocument(lunaticXmlDataModel); - mongoRepository.insert(document); - } -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitMongoAdapter.java b/src/main/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitMongoAdapter.java index 7e253214..c031fe83 100644 --- a/src/main/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitMongoAdapter.java +++ b/src/main/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitMongoAdapter.java @@ -27,8 +27,8 @@ @Qualifier("surveyUnitMongoAdapter") public class SurveyUnitMongoAdapter implements SurveyUnitPersistencePort { - private SurveyUnitMongoDBRepository mongoRepository; - private MongoTemplate mongoTemplate; + private final SurveyUnitMongoDBRepository mongoRepository; + private final MongoTemplate mongoTemplate; @Autowired public SurveyUnitMongoAdapter(SurveyUnitMongoDBRepository mongoRepository, MongoTemplate mongoTemplate) { @@ -57,7 +57,6 @@ public List findByInterrogationId(String questionnaireId) { @Override public List findByInterrogationIdsAndQuestionnaireId(List questionnaireIds, String questionnaireId) { List surveyUnits= new ArrayList<>(); - // TODO: 18-10-2023 : find a way to do this in one query questionnaireIds.forEach(su -> { List docs = mongoRepository.findByInterrogationIdAndQuestionnaireId(su.getInterrogationId(), questionnaireId); surveyUnits.addAll(docs); diff --git a/src/main/java/fr/insee/genesis/infrastructure/adapter/VariableTypeMongoAdapter.java b/src/main/java/fr/insee/genesis/infrastructure/adapter/VariableTypeMongoAdapter.java new file mode 100644 index 00000000..55ac040d --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/adapter/VariableTypeMongoAdapter.java @@ -0,0 +1,42 @@ +package fr.insee.genesis.infrastructure.adapter; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.variabletype.VariableTypeModel; +import fr.insee.genesis.domain.ports.spi.VariableTypePersistancePort; +import fr.insee.genesis.infrastructure.document.variabletype.VariableTypeDocument; +import fr.insee.genesis.infrastructure.mappers.VariableTypeDocumentMapper; +import fr.insee.genesis.infrastructure.repository.VariableTypeMongoDBRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.data.mongodb.core.FindAndReplaceOptions; +import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.data.mongodb.core.query.Criteria; +import org.springframework.data.mongodb.core.query.Query; +import org.springframework.stereotype.Service; + +@Service +@Qualifier("variableTypeMongoAdapter") +public class VariableTypeMongoAdapter implements VariableTypePersistancePort { + private final VariableTypeMongoDBRepository variableTypeMongoDBRepository; + private final MongoTemplate mongoTemplate; + + @Autowired + public VariableTypeMongoAdapter(VariableTypeMongoDBRepository variableTypeMongoDBRepository, MongoTemplate mongoTemplate) { + this.variableTypeMongoDBRepository = variableTypeMongoDBRepository; + this.mongoTemplate = mongoTemplate; + } + + @Override + public void save(VariableTypeModel variableTypeModel) { + mongoTemplate.update(VariableTypeDocument.class) + .matching(Query.query(Criteria.where("campaignId").is(variableTypeModel.campaignId()))) + .replaceWith(VariableTypeDocumentMapper.INSTANCE.modelToDocument(variableTypeModel)) + .withOptions(FindAndReplaceOptions.options().upsert()) + .findAndReplace(); + } + + @Override + public VariableTypeDocument find(String campaignId, String questionnaireId, Mode mode) { + return variableTypeMongoDBRepository.findFirstByCampaignIdQuestionnaireIdMode(campaignId, questionnaireId, mode); + } +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonDataDocument.java b/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonDataDocument.java deleted file mode 100644 index e063fbb4..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonDataDocument.java +++ /dev/null @@ -1,26 +0,0 @@ -package fr.insee.genesis.infrastructure.document.rawdata; - -import fr.insee.genesis.domain.model.surveyunit.Mode; -import lombok.AllArgsConstructor; -import lombok.Data; -import lombok.NoArgsConstructor; -import org.bson.types.ObjectId; -import org.springframework.data.annotation.Id; -import org.springframework.data.mongodb.core.mapping.Document; - -import java.time.LocalDateTime; -import java.util.Map; - -@Data -@NoArgsConstructor -@AllArgsConstructor -@Document(collection = "lunaticjsondata") -public class LunaticJsonDataDocument { - @Id - private ObjectId id; - private String campaignId; - private Mode mode; - private Map data; - private LocalDateTime recordDate; - private LocalDateTime processDate; -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonRawDataDocument.java b/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonRawDataDocument.java new file mode 100644 index 00000000..a0fd12be --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticJsonRawDataDocument.java @@ -0,0 +1,25 @@ +package fr.insee.genesis.infrastructure.document.rawdata; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import lombok.Builder; +import org.bson.types.ObjectId; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.time.LocalDateTime; +import java.util.Map; + +@Builder +@Document(collection = "lunaticjsondata") +public record LunaticJsonRawDataDocument( + @Id + ObjectId id, + String campaignId, + String questionnaireId, + String interrogationId, + String idUE, + Mode mode, + Map data, + LocalDateTime recordDate, + LocalDateTime processDate +){} \ No newline at end of file diff --git a/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticXmlDataDocument.java b/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticXmlDataDocument.java deleted file mode 100644 index 7ea6b29c..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/document/rawdata/LunaticXmlDataDocument.java +++ /dev/null @@ -1,25 +0,0 @@ -package fr.insee.genesis.infrastructure.document.rawdata; - -import fr.insee.genesis.controller.sources.xml.LunaticXmlCampaign; -import fr.insee.genesis.domain.model.surveyunit.Mode; -import lombok.AllArgsConstructor; -import lombok.Data; -import lombok.NoArgsConstructor; -import org.bson.types.ObjectId; -import org.springframework.data.annotation.Id; -import org.springframework.data.mongodb.core.mapping.Document; - -import java.time.LocalDateTime; - -@Data -@NoArgsConstructor -@AllArgsConstructor -@Document(collection = "lunaticxmldata") -public class LunaticXmlDataDocument { - @Id - private ObjectId id; - private LunaticXmlCampaign lunaticXmlData; - private Mode mode; - private LocalDateTime recordDate; - private LocalDateTime processDate; -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/document/variabletype/VariableTypeDocument.java b/src/main/java/fr/insee/genesis/infrastructure/document/variabletype/VariableTypeDocument.java new file mode 100644 index 00000000..5fb3cc6a --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/document/variabletype/VariableTypeDocument.java @@ -0,0 +1,16 @@ +package fr.insee.genesis.infrastructure.document.variabletype; + +import fr.insee.bpm.metadata.model.VariablesMap; +import fr.insee.genesis.Constants; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import lombok.Data; +import org.springframework.data.mongodb.core.mapping.Document; + +@Data +@Document(collection = Constants.MONGODB_VARIABLETYPE_COLLECTION_NAME) +public class VariableTypeDocument { + private String campaignId; + private String questionnaireId; + private Mode mode; + private VariablesMap variablesMap; +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonDocumentMapper.java b/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonDocumentMapper.java deleted file mode 100644 index 1600c013..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonDocumentMapper.java +++ /dev/null @@ -1,42 +0,0 @@ -package fr.insee.genesis.infrastructure.mappers; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.core.type.TypeReference; -import com.fasterxml.jackson.databind.ObjectMapper; -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonDataModel; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonDataDocument; -import org.mapstruct.Mapper; -import org.mapstruct.Mapping; -import org.mapstruct.Named; -import org.mapstruct.factory.Mappers; - -import java.util.List; -import java.util.Map; - -@Mapper(componentModel = "spring") -public interface LunaticJsonDocumentMapper { - LunaticJsonDocumentMapper INSTANCE = Mappers.getMapper(LunaticJsonDocumentMapper.class); - - @Mapping(source = "data", target = "dataJson", qualifiedByName = "fromMapToJson") - LunaticJsonDataModel documentToModel(LunaticJsonDataDocument lunaticJsonDataDocument); - - @Mapping(source = "dataJson", target = "data", qualifiedByName = "fromJsonToMap") - LunaticJsonDataDocument modelToDocument(LunaticJsonDataModel lunaticJsonDataModel); - - List listDocumentToListModel(List lunaticJsonDataDocuments); - - List listModelToListDocument(List lunaticJsonDataModels); - - - @Named(value = "fromJsonToMap") - default Map fromJsonToMap(String dataJson) throws JsonProcessingException { - ObjectMapper objectMapper = new ObjectMapper(); - return objectMapper.readValue(dataJson, new TypeReference<>(){}); - } - - @Named(value = "fromMapToJson") - default String fromMapToJson(Map dataMap) throws JsonProcessingException { - ObjectMapper objectMapper = new ObjectMapper(); - return objectMapper.writeValueAsString(dataMap); - } -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonRawDataDocumentMapper.java b/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonRawDataDocumentMapper.java new file mode 100644 index 00000000..348833f5 --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticJsonRawDataDocumentMapper.java @@ -0,0 +1,22 @@ +package fr.insee.genesis.infrastructure.mappers; + +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; +import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonRawDataDocument; +import org.mapstruct.Mapper; +import org.mapstruct.factory.Mappers; + +import java.util.List; + +@Mapper +public interface LunaticJsonRawDataDocumentMapper { + + LunaticJsonRawDataDocumentMapper INSTANCE = Mappers.getMapper(LunaticJsonRawDataDocumentMapper.class); + + LunaticJsonRawDataModel documentToModel(LunaticJsonRawDataDocument rawDataDoc); + + LunaticJsonRawDataDocument modelToDocument(LunaticJsonRawDataModel rawDataModel); + + List listDocumentToListModel(List rawDataDocumentList); + + List listModelToListDocument(List rawDataModelList); +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticXmlDocumentMapper.java b/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticXmlDocumentMapper.java deleted file mode 100644 index 77972382..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/mappers/LunaticXmlDocumentMapper.java +++ /dev/null @@ -1,25 +0,0 @@ -package fr.insee.genesis.infrastructure.mappers; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticXmlDataModel; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticXmlDataDocument; -import org.mapstruct.Mapper; -import org.mapstruct.Mapping; -import org.mapstruct.factory.Mappers; - -import java.util.List; - -@Mapper -public interface LunaticXmlDocumentMapper { - LunaticXmlDocumentMapper INSTANCE = Mappers.getMapper(LunaticXmlDocumentMapper.class); - - @Mapping(source = "lunaticXmlData", target = "data") - LunaticXmlDataModel documentToModel(LunaticXmlDataDocument lunaticXmlDataDocument); - - @Mapping(source = "data", target = "lunaticXmlData") - LunaticXmlDataDocument modelToDocument(LunaticXmlDataModel lunaticXmlDataModel); - - List listDocumentToListModel(List lunaticXmlDataDocuments); - - List listModelToListDocument(List lunaticXmlDataModels); - -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/mappers/VariableTypeDocumentMapper.java b/src/main/java/fr/insee/genesis/infrastructure/mappers/VariableTypeDocumentMapper.java new file mode 100644 index 00000000..ed8cdecb --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/mappers/VariableTypeDocumentMapper.java @@ -0,0 +1,21 @@ +package fr.insee.genesis.infrastructure.mappers; + +import fr.insee.genesis.domain.model.variabletype.VariableTypeModel; +import fr.insee.genesis.infrastructure.document.variabletype.VariableTypeDocument; +import org.mapstruct.Mapper; +import org.mapstruct.factory.Mappers; + +import java.util.List; + +@Mapper(componentModel = "spring") +public interface VariableTypeDocumentMapper { + VariableTypeDocumentMapper INSTANCE = Mappers.getMapper(VariableTypeDocumentMapper.class); + + VariableTypeModel documentToModel(VariableTypeDocument variableTypeDocument); + + VariableTypeDocument modelToDocument(VariableTypeModel variableTypeModel); + + List listDocumentToListModel(List variableTypeDocuments); + + List listModelToListDocument(List variableTypeModels); +} diff --git a/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticJsonMongoDBRepository.java b/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticJsonMongoDBRepository.java index a668ad0c..45eb1f3f 100644 --- a/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticJsonMongoDBRepository.java +++ b/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticJsonMongoDBRepository.java @@ -1,9 +1,20 @@ package fr.insee.genesis.infrastructure.repository; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonDataDocument; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonRawDataDocument; import org.springframework.data.mongodb.repository.MongoRepository; +import org.springframework.data.mongodb.repository.Query; import org.springframework.stereotype.Repository; +import java.util.List; + @Repository -public interface LunaticJsonMongoDBRepository extends MongoRepository { +public interface LunaticJsonMongoDBRepository extends MongoRepository { + + @Query("{\"processDate\" : null}") + List findByNullProcessDate(); + @Query(value = "{ 'campaignId' : ?0 }", fields = "{ 'mode' : 1 }") + List findModesByCampaignId(String campaignId); + @Query(value = "{ 'campaignId' : ?0, 'mode' : ?1, 'interrogationId': {$in: ?2} }") + List findModesByCampaignIdAndByModeAndinterrogationIdIninterrogationIdList(String campaignName, Mode mode, List interrogationIdList); } diff --git a/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticXmlMongoDBRepository.java b/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticXmlMongoDBRepository.java deleted file mode 100644 index ecdcc4c5..00000000 --- a/src/main/java/fr/insee/genesis/infrastructure/repository/LunaticXmlMongoDBRepository.java +++ /dev/null @@ -1,9 +0,0 @@ -package fr.insee.genesis.infrastructure.repository; - -import fr.insee.genesis.infrastructure.document.rawdata.LunaticXmlDataDocument; -import org.springframework.data.mongodb.repository.MongoRepository; -import org.springframework.stereotype.Repository; - -@Repository -public interface LunaticXmlMongoDBRepository extends MongoRepository { -} diff --git a/src/main/java/fr/insee/genesis/infrastructure/repository/VariableTypeMongoDBRepository.java b/src/main/java/fr/insee/genesis/infrastructure/repository/VariableTypeMongoDBRepository.java new file mode 100644 index 00000000..ac6141c8 --- /dev/null +++ b/src/main/java/fr/insee/genesis/infrastructure/repository/VariableTypeMongoDBRepository.java @@ -0,0 +1,15 @@ +package fr.insee.genesis.infrastructure.repository; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.infrastructure.document.variabletype.VariableTypeDocument; +import org.springframework.cache.annotation.Cacheable; +import org.springframework.data.mongodb.repository.MongoRepository; +import org.springframework.data.mongodb.repository.Query; +import org.springframework.stereotype.Repository; + +@Repository +public interface VariableTypeMongoDBRepository extends MongoRepository { + + @Query(value = "{ 'campaignId' : ?0 , 'questionnaireId' : ?1 , 'mode' : ?2 }") + VariableTypeDocument findFirstByCampaignIdQuestionnaireIdMode(String campaignId, String questionnaireId, Mode mode); +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index d39d50f8..14d5b311 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -6,7 +6,10 @@ spring.profiles.active=local #-------------------------------------------------------------------------- # Global configuration #-------------------------------------------------------------------------- -fr.insee.genesis.authentication = OIDC +fr.insee.genesis.authentication = NONE + #NONE = No authentication required (By default for LOCAL and DEV) + #OIDC = Keycloack authentication (PROD, override by Puppet/ConfigMap) +logging.level.org.springframework.security=DEBUG #-------------------------------------------------------------------------- # Configuration for springdoc / swagger diff --git a/src/test/java/RunCucumberTest.java b/src/test/java/RunCucumberTest.java deleted file mode 100644 index f452ce29..00000000 --- a/src/test/java/RunCucumberTest.java +++ /dev/null @@ -1,9 +0,0 @@ -import io.cucumber.junit.Cucumber; -import io.cucumber.junit.CucumberOptions; -import org.junit.runner.RunWith; - -@RunWith(Cucumber.class) -@CucumberOptions(plugin = {"pretty"}, glue = "cucumber.functional_tests" -) -public class RunCucumberTest { -} \ No newline at end of file diff --git a/src/test/java/cucumber/config/CucumberSpringConfiguration.java b/src/test/java/cucumber/config/CucumberSpringConfiguration.java new file mode 100644 index 00000000..e32f2a7d --- /dev/null +++ b/src/test/java/cucumber/config/CucumberSpringConfiguration.java @@ -0,0 +1,12 @@ +package cucumber.config; + + +import fr.insee.genesis.GenesisApi; +import io.cucumber.spring.CucumberContextConfiguration; +import org.springframework.boot.test.context.SpringBootTest; + +@CucumberContextConfiguration +@SpringBootTest(classes = GenesisApi.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +public class CucumberSpringConfiguration { +} + diff --git a/src/test/java/cucumber/functional_tests/MainDefinitions.java b/src/test/java/cucumber/functional_tests/MainDefinitions.java index fdff7189..3e902de2 100644 --- a/src/test/java/cucumber/functional_tests/MainDefinitions.java +++ b/src/test/java/cucumber/functional_tests/MainDefinitions.java @@ -10,6 +10,7 @@ import fr.insee.genesis.controller.dto.VariableQualityToolDto; import fr.insee.genesis.controller.dto.VariableStateDto; import fr.insee.genesis.controller.rest.responses.ResponseController; +import fr.insee.genesis.controller.services.MetadataService; import fr.insee.genesis.controller.sources.xml.LunaticXmlCampaign; import fr.insee.genesis.controller.sources.xml.LunaticXmlDataParser; import fr.insee.genesis.controller.sources.xml.LunaticXmlSurveyUnit; @@ -19,15 +20,11 @@ import fr.insee.genesis.domain.model.surveyunit.Mode; import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; import fr.insee.genesis.domain.model.surveyunit.VariableModel; -import fr.insee.genesis.domain.service.rawdata.LunaticJsonRawDataService; -import fr.insee.genesis.domain.service.rawdata.LunaticXmlRawDataService; import fr.insee.genesis.domain.service.surveyunit.SurveyUnitQualityService; import fr.insee.genesis.domain.service.surveyunit.SurveyUnitService; import fr.insee.genesis.exceptions.GenesisException; import fr.insee.genesis.infrastructure.utils.FileUtils; import fr.insee.genesis.stubs.ConfigStub; -import fr.insee.genesis.stubs.LunaticJsonPersistanceStub; -import fr.insee.genesis.stubs.LunaticXmlPersistanceStub; import fr.insee.genesis.stubs.SurveyUnitPersistencePortStub; import io.cucumber.java.After; import io.cucumber.java.Before; @@ -64,11 +61,10 @@ public class MainDefinitions { ResponseController responseController = new ResponseController( new SurveyUnitService(surveyUnitPersistence), surveyUnitQualityService, - new LunaticXmlRawDataService(new LunaticXmlPersistanceStub()), - new LunaticJsonRawDataService(new LunaticJsonPersistanceStub()), new FileUtils(config), new ControllerUtils(new FileUtils(config)), - new AuthUtils(config) + new AuthUtils(config), + new MetadataService() ); List surveyUnitModels; @@ -123,7 +119,7 @@ public void get_models(String fileName, String ddiName) throws IOException, Pars @When("We save data from that directory") public void get_su_models_from_folder() throws Exception { - responseController.saveResponsesFromXmlCampaignFolder(this.inDirectory.getFileName().toString(), null, true); + responseController.saveResponsesFromXmlCampaignFolder(this.inDirectory.getFileName().toString(), null); } @When("We delete that directory") @@ -200,11 +196,12 @@ public void check_survey_unit_model_content(String dataState, String interrogati @Then("For collected variable {string} in survey unit {string} we should have {string} and scope {string} for " + "iteration {int}") - public void check_collected_variable_content_in_mongo(String collectedVariableName, - String interrogationId, - String expectedValue, - String expectedLoopId, - Integer iteration + public void check_collected_variable_content_in_mongo( + String collectedVariableName, + String interrogationId, + String expectedValue, + String expectedScope, + Integer iteration ) { //Get SurveyUnitModel List concernedSurveyUnitModels = surveyUnitPersistence.getMongoStub().stream().filter(surveyUnitModel -> @@ -219,7 +216,7 @@ public void check_collected_variable_content_in_mongo(String collectedVariableNa List concernedCollectedVariables = surveyUnitModel.getCollectedVariables().stream().filter(variableModel -> variableModel.varId().equals(collectedVariableName) - && Objects.equals(variableModel.scope(), expectedLoopId) + && Objects.equals(variableModel.scope(), expectedScope) && variableModel.iteration().equals(iteration) ).toList(); Assertions.assertThat(concernedCollectedVariables).hasSize(1); @@ -232,12 +229,13 @@ public void check_collected_variable_content_in_mongo(String collectedVariableNa @Then("For external variable {string} in survey unit {string} we should have {string} and scope {string} for " + "iteration {int}") - public void check_external_variable_content_in_mongo(String externalVariableName, - String interrogationId, - String expectedValue, - String expectedLoopId, - Integer iteration - ) { + public void check_external_variable_content_in_mongo( + String externalVariableName, + String interrogationId, + String expectedValue, + String expectedScope, + Integer iteration + ) { //Get SurveyUnitModel List concernedSurveyUnitModels = surveyUnitPersistence.getMongoStub().stream().filter(surveyUnitModel -> surveyUnitModel.getState().equals(DataState.COLLECTED) @@ -251,7 +249,7 @@ public void check_external_variable_content_in_mongo(String externalVariableName List concernedExternalVariables = surveyUnitModel.getExternalVariables().stream().filter(variableModel -> variableModel.varId().equals(externalVariableName) - && Objects.equals(variableModel.scope(), expectedLoopId) + && Objects.equals(variableModel.scope(), expectedScope) && variableModel.iteration().equals(iteration) ).toList(); Assertions.assertThat(concernedExternalVariables).hasSize(1); diff --git a/src/test/java/cucumber/functional_tests/RawDataDefinitions.java b/src/test/java/cucumber/functional_tests/RawDataDefinitions.java new file mode 100644 index 00000000..72fc399b --- /dev/null +++ b/src/test/java/cucumber/functional_tests/RawDataDefinitions.java @@ -0,0 +1,115 @@ +package cucumber.functional_tests; + +import fr.insee.genesis.TestConstants; +import fr.insee.genesis.configuration.Config; +import fr.insee.genesis.controller.rest.responses.RawResponseController; +import fr.insee.genesis.controller.services.MetadataService; +import fr.insee.genesis.controller.utils.ControllerUtils; +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.ports.api.LunaticJsonRawDataApiPort; +import fr.insee.genesis.domain.service.rawdata.LunaticJsonRawDataService; +import fr.insee.genesis.domain.service.surveyunit.SurveyUnitQualityService; +import fr.insee.genesis.domain.service.surveyunit.SurveyUnitService; +import fr.insee.genesis.infrastructure.utils.FileUtils; +import fr.insee.genesis.stubs.ConfigStub; +import fr.insee.genesis.stubs.LunaticJsonRawDataPersistanceStub; +import fr.insee.genesis.stubs.SurveyUnitPersistencePortStub; +import io.cucumber.java.Before; +import io.cucumber.java.en.Given; +import io.cucumber.java.en.Then; +import io.cucumber.java.en.When; +import lombok.extern.slf4j.Slf4j; +import org.assertj.core.api.Assertions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.web.client.TestRestTemplate; +import org.springframework.boot.test.web.server.LocalServerPort; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +@Slf4j +public class RawDataDefinitions { + + + @LocalServerPort + private int port; + + private String BASE_URL; + @Autowired + private TestRestTemplate rest; + + LunaticJsonRawDataPersistanceStub lunaticJsonRawDataPersistanceStub = new LunaticJsonRawDataPersistanceStub(); + LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort = new LunaticJsonRawDataService(lunaticJsonRawDataPersistanceStub); + Config config = new ConfigStub(); + FileUtils fileUtils = new FileUtils(config); + SurveyUnitPersistencePortStub surveyUnitPersistencePortStub = new SurveyUnitPersistencePortStub(); + SurveyUnitQualityService surveyUnitQualityService = new SurveyUnitQualityService(); + RawResponseController rawResponseController = new RawResponseController( + lunaticJsonRawDataApiPort, + new ControllerUtils(fileUtils), + new MetadataService(), + new SurveyUnitService(surveyUnitPersistencePortStub), + surveyUnitQualityService, + fileUtils + ); + Path rawDataFilePath; + String rawJsonData; + ResponseEntity response; + int nbRawSaved = 0; + + @Before + public void init(){ + this.lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + log.info("rest autowired : {}", rest.getRootUri()); + BASE_URL = "http://localhost:" + port + "/"; + } + + @Given("We have raw data file in {string}") + public void set_input_file(String rawDataFile) throws IOException { + this.rawDataFilePath = Path.of(TestConstants.TEST_RESOURCES_DIRECTORY,rawDataFile); + rawJsonData = Files.readString(rawDataFilePath); + } + + @When("We save that raw data for web campaign {string}, questionnaire {string}, interrogation {string}") + public void save_raw_data(String campaignId, String questionnaireId, String interrogationId) throws IOException { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + + String url = String.format("%sresponses/raw/lunatic-json/save?campaignName=%s&questionnaireId=%s&interrogationId=%s&surveyUnitId=%s&mode=%s", + BASE_URL, + campaignId, + questionnaireId, + interrogationId, + null, + Mode.WEB + ); + + HttpEntity requestEntity = new HttpEntity<>(rawJsonData.trim(), headers); + try { + response = rest.exchange(url, HttpMethod.PUT, requestEntity, String.class); + if(response.getStatusCode().is2xxSuccessful()){nbRawSaved++;} + } catch (Exception e) { + response = new ResponseEntity<>("Unexpected error", HttpStatus.INTERNAL_SERVER_ERROR); + } + + } + + @Then("We should have {int} raw data document") + public void check_document_count(int expectedCount){ + Assertions.assertThat(nbRawSaved).isEqualTo(expectedCount); + } + + + @Then("We should have {int} status code") + public void check_response_status_code(int expectedStatusCode){ + Assertions.assertThat(response.getStatusCode().value()).isEqualTo(expectedStatusCode); + } + +} diff --git a/src/test/java/fr/insee/genesis/RunCucumberTest.java b/src/test/java/fr/insee/genesis/RunCucumberTest.java new file mode 100644 index 00000000..559d71cc --- /dev/null +++ b/src/test/java/fr/insee/genesis/RunCucumberTest.java @@ -0,0 +1,16 @@ +package fr.insee.genesis; + +import io.cucumber.junit.Cucumber; +import io.cucumber.junit.CucumberOptions; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; + +@RunWith(Cucumber.class) +@SpringBootTest(classes = GenesisApi.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@CucumberOptions( + features = "src/test/resources/fr/insee/genesis/features", + glue = {"cucumber.functional_tests", "cucumber.config"}, + plugin = {"pretty"} +) +public class RunCucumberTest { +} \ No newline at end of file diff --git a/src/test/java/fr/insee/genesis/controller/rest/responses/RawResponseControllerTest.java b/src/test/java/fr/insee/genesis/controller/rest/responses/RawResponseControllerTest.java new file mode 100644 index 00000000..4d74e379 --- /dev/null +++ b/src/test/java/fr/insee/genesis/controller/rest/responses/RawResponseControllerTest.java @@ -0,0 +1,184 @@ +package fr.insee.genesis.controller.rest.responses; + + +class RawResponseControllerTest { +/* private final FileUtils fileUtils = new FileUtils(new ConfigStub()); + private final LunaticJsonRawDataPersistanceStub lunaticJsonRawDataPersistanceStub = new LunaticJsonRawDataPersistanceStub(); + private final LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort = new LunaticJsonRawDataService(lunaticJsonRawDataPersistanceStub); + private final SurveyUnitPersistencePortStub surveyUnitPersistencePortStub = new SurveyUnitPersistencePortStub(); + private final RawResponseController rawResponseController = new RawResponseController( + lunaticJsonRawDataApiPort, + new ControllerUtils(fileUtils), + new MetadataService(), + new SurveyUnitService(surveyUnitPersistencePortStub), + new SurveyUnitQualityService(), + fileUtils + ); + + + @Test + void saveJsonRawDataFromStringTest(){ + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "testIdQuest"; + String interrogationId = "testinterrogationId"; + + //WHEN + ResponseEntity response = rawResponseController.saveRawResponsesFromJsonBody( + campaignId + , questionnaireId + , interrogationId + , null + , Mode.WEB + , "{\"COLLECTED\": {\"testdata\": {\"COLLECTED\": [\"test\"]}}}" + ); + + //THEN + Assertions.assertThat(response.getStatusCode().is2xxSuccessful()).isTrue(); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).isNotEmpty().hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isNotNull().isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isNotNull().isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isNotNull().isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().mode()).isEqualTo(Mode.WEB); + + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().collectedVariables().get( + "testdata")).isNotNull(); + Object value = lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().collectedVariables().get( + "testdata").get(DataState.COLLECTED); + Assertions.assertThat(value).isNotNull(); + Assertions.assertThat(value).isInstanceOf(List.class); + List list = (List) value; + Assertions.assertThat(list).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().recordDate()).isNotNull(); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().processDate()).isNull(); + } + + @Test + void getUnprocessedDataTest(){ + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST1"; + String interrogationId = "testinterrogationId1"; + addJsonRawDataDocumentToStub(campaignId, interrogationId, null); + + //WHEN + List dtos = rawResponseController.getUnproccessedJsonRawData().getBody(); + + //THEN + Assertions.assertThat(dtos).isNotNull().isNotEmpty().hasSize(1); + Assertions.assertThat(dtos.getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(dtos.getFirst().interrogationId()).isEqualTo(interrogationId); + } + + @Test + void getUnprocessedDataTest_processDate_present(){ + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST2"; + String interrogationId = "testinterrogationId2"; + addJsonRawDataDocumentToStub(campaignId, interrogationId, LocalDateTime.now()); + + //WHEN + List dtos = rawResponseController.getUnproccessedJsonRawData().getBody(); + + //THEN + Assertions.assertThat(dtos).isNotNull().isEmpty(); + } + + //raw data process + //json + @Test + void processJsonRawDataTest() { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + surveyUnitPersistencePortStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v2"; + String questionnaireId = campaignId + "_quest"; + String interrogationId = "testinterrogationId1"; + String varName = "AVIS_MAIL"; + String varValue = "TEST"; + addJsonRawDataDocumentToStub(campaignId, questionnaireId, interrogationId, null, varName, varValue); + + List interrogationIdList = new ArrayList<>(); + interrogationIdList.add(interrogationId); + + //WHEN + rawResponseController.processJsonRawData(campaignId, questionnaireId, interrogationIdList); + + + //THEN + //Genesis model survey unit created successfully + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub()).isNotNull().isNotEmpty().hasSize(1); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst()).isNotNull(); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getCampaignId()).isEqualTo(campaignId); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getQuestionnaireId()).isNotNull().isEqualTo(questionnaireId); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getMode()).isNotNull().isEqualTo(Mode.WEB); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getInterrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getFileDate()).isNotNull(); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getRecordDate()).isNotNull(); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getCollectedVariables()).isNotNull().isNotEmpty().hasSize(1); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getCollectedVariables().getFirst()).isNotNull(); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getCollectedVariables().getFirst().varId()).isNotNull().isEqualTo(varName); + Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub().getFirst().getCollectedVariables().getFirst().value()).isNotNull().isEqualTo(varValue); + + //Process date check + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().processDate()).isNotNull(); + + //Var/type check + // TODO Enable when mapping problem solved for get metadatas step + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub()).isNotNull().isNotEmpty().hasSize(1); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getCampaignId()).isEqualTo + // (campaignId); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getQuestionnaireId()).isEqualTo + // (questionnaireId); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getMode()).isEqualTo(Mode.WEB); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getVariablesMap()).isNotNull(); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getVariablesMap().getVariables + // ()).isNotNull().isNotEmpty().containsKey(varName); + //Assertions.assertThat(variableTypePersistanceStub.getMongoStub().getFirst().getVariablesMap().getVariables + // ().get(varName).getType()).isEqualTo(VariableType.STRING); + } + + + //Utils + private void addJsonRawDataDocumentToStub(String campaignId, String interrogationId, + LocalDateTime processDate) { + LunaticJsonDataDocument lunaticJsonDataDocument = LunaticJsonDataDocument.builder() + .campaignId(campaignId) + .mode(Mode.WEB) + .interrogationId(interrogationId) + .recordDate(LocalDateTime.now()) + .processDate(processDate) + .build(); + + lunaticJsonRawDataPersistanceStub.getMongoStub().add(lunaticJsonDataDocument); + } + private void addJsonRawDataDocumentToStub(String campaignId, String questionnaireId, String interrogationId, + LocalDateTime processDate, + String variableName, String variableValue) { + //COLLECTED + LunaticJsonRawDataDocument lunaticJsonRawDataDoc = LunaticJsonRawDataDocument.builder() + .collectedVariables(new HashMap<>()) + .externalVariables(new HashMap<>()) + .build(); + + lunaticJsonRawDataDoc.collectedVariables().put(variableName,new HashMap<>()); + lunaticJsonRawDataDoc.collectedVariables().get(variableName).put(DataState.COLLECTED,variableValue); + + //EXTERNAL + lunaticJsonRawDataDoc.externalVariables().put(variableName+"_EXTERNAL",variableValue+"_EXTERNAL"); + + LunaticJsonDataDocument lunaticJsonDataDocument = LunaticJsonDataDocument.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .mode(Mode.WEB) + .interrogationId(interrogationId) + .recordDate(LocalDateTime.now()) + .processDate(processDate) + .data(lunaticJsonRawDataDoc) + .build(); + + lunaticJsonRawDataPersistanceStub.getMongoStub().add(lunaticJsonDataDocument); + }*/ +} diff --git a/src/test/java/fr/insee/genesis/controller/rest/responses/ResponseControllerTest.java b/src/test/java/fr/insee/genesis/controller/rest/responses/ResponseControllerTest.java index acb89dd1..dd867fdf 100644 --- a/src/test/java/fr/insee/genesis/controller/rest/responses/ResponseControllerTest.java +++ b/src/test/java/fr/insee/genesis/controller/rest/responses/ResponseControllerTest.java @@ -10,22 +10,18 @@ import fr.insee.genesis.controller.dto.VariableInputDto; import fr.insee.genesis.controller.dto.VariableQualityToolDto; import fr.insee.genesis.controller.dto.VariableStateInputDto; +import fr.insee.genesis.controller.services.MetadataService; import fr.insee.genesis.controller.utils.AuthUtils; import fr.insee.genesis.controller.utils.ControllerUtils; import fr.insee.genesis.domain.model.surveyunit.DataState; import fr.insee.genesis.domain.model.surveyunit.Mode; import fr.insee.genesis.domain.model.surveyunit.SurveyUnitModel; -import fr.insee.genesis.domain.ports.api.LunaticJsonRawDataApiPort; -import fr.insee.genesis.domain.ports.api.LunaticXmlRawDataApiPort; import fr.insee.genesis.domain.ports.api.SurveyUnitApiPort; -import fr.insee.genesis.domain.service.rawdata.LunaticJsonRawDataService; -import fr.insee.genesis.domain.service.rawdata.LunaticXmlRawDataService; import fr.insee.genesis.domain.service.surveyunit.SurveyUnitQualityService; import fr.insee.genesis.domain.service.surveyunit.SurveyUnitService; import fr.insee.genesis.infrastructure.utils.FileUtils; import fr.insee.genesis.stubs.ConfigStub; -import fr.insee.genesis.stubs.LunaticJsonPersistanceStub; -import fr.insee.genesis.stubs.LunaticXmlPersistanceStub; +import fr.insee.genesis.stubs.LunaticJsonRawDataPersistanceStub; import fr.insee.genesis.stubs.SurveyUnitPersistencePortStub; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.BeforeAll; @@ -48,8 +44,8 @@ class ResponseControllerTest { //Given static ResponseController responseControllerStatic; static SurveyUnitPersistencePortStub surveyUnitPersistencePortStub; - static LunaticXmlPersistanceStub lunaticXmlPersistanceStub; - static LunaticJsonPersistanceStub lunaticJsonPersistanceStub; + static LunaticJsonRawDataPersistanceStub lunaticJsonPersistanceStub; + static List interrogationIdList; //Constants static final String DEFAULT_INTERROGATION_ID = "TESTINTERROGATIONID"; @@ -62,22 +58,16 @@ static void init() { surveyUnitPersistencePortStub = new SurveyUnitPersistencePortStub(); SurveyUnitApiPort surveyUnitApiPort = new SurveyUnitService(surveyUnitPersistencePortStub); - lunaticXmlPersistanceStub = new LunaticXmlPersistanceStub(); - LunaticXmlRawDataApiPort lunaticXmlRawDataApiPort = new LunaticXmlRawDataService(lunaticXmlPersistanceStub); - - lunaticJsonPersistanceStub = new LunaticJsonPersistanceStub(); - LunaticJsonRawDataApiPort lunaticJsonRawDataApiPort = new LunaticJsonRawDataService(lunaticJsonPersistanceStub); - Config config = new ConfigStub(); FileUtils fileUtils = new FileUtils(config); + responseControllerStatic = new ResponseController( surveyUnitApiPort , new SurveyUnitQualityService() - , lunaticXmlRawDataApiPort - , lunaticJsonRawDataApiPort , fileUtils , new ControllerUtils(fileUtils) , new AuthUtils(config) + , new MetadataService() ); interrogationIdList = new ArrayList<>(); @@ -121,7 +111,6 @@ void saveResponsesFromXmlCampaignFolderTest() throws Exception { responseControllerStatic.saveResponsesFromXmlCampaignFolder( "SAMPLETEST-PARADATA-v1" , Mode.WEB - , true ); Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub()).isNotEmpty(); @@ -134,67 +123,10 @@ void saveResponsesFromXmlCampaignFolderTest_noData() throws Exception { responseControllerStatic.saveResponsesFromXmlCampaignFolder( "TESTNODATA" , Mode.WEB - , true ); Assertions.assertThat(surveyUnitPersistencePortStub.getMongoStub()).isEmpty(); } - - //Raw data - //xml - @Test - void saveXmlRawDataFromFileTest() throws Exception { - lunaticXmlPersistanceStub.getMongoStub().clear(); - - responseControllerStatic.saveRawResponsesFromXmlFile( - Path.of(TestConstants.TEST_RESOURCES_DIRECTORY, "IN/WEB/SAMPLETEST-PARADATA-v1/reponse-platine/data.complete.validated.STPDv1.20231122164209.xml").toString() - , Mode.WEB - ); - - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub()).isNotEmpty(); - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub().getFirst().getRecordDate()).isNotNull(); - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub().getFirst().getProcessDate()).isNull(); - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub().getFirst().getLunaticXmlData()).isNotNull(); - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub().getFirst().getLunaticXmlData().getSurveyUnits()).isNotNull().isNotEmpty(); - - - } - - @Test - void saveXmlRawDataFromFolderTest() throws Exception { - lunaticXmlPersistanceStub.getMongoStub().clear(); - - responseControllerStatic.saveRawResponsesFromXmlCampaignFolder( - "SAMPLETEST-PARADATA-v1" - , Mode.WEB - ); - - Assertions.assertThat(lunaticXmlPersistanceStub.getMongoStub()).isNotEmpty(); - } - - //json - @Test - void saveJsonRawDataFromStringTest(){ - lunaticJsonPersistanceStub.getMongoStub().clear(); - String campaignId = "SAMPLETEST-PARADATA-v1"; - - responseControllerStatic.saveRawResponsesFromJsonBody( - campaignId - , Mode.WEB - , "{\"testdata\": \"test\"}" - ); - - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub()).isNotEmpty(); - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getCampaignId()).isNotNull().isEqualTo(campaignId); - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getMode()).isEqualTo(Mode.WEB); - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getData().get("testdata")).isNotNull(); - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getData().get("testdata")).isNotNull().isEqualTo("test"); - - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getRecordDate()).isNotNull(); - Assertions.assertThat(lunaticJsonPersistanceStub.getMongoStub().getFirst().getProcessDate()).isNull(); - - } - //All data @Test void saveResponsesFromAllCampaignFoldersTests(){ @@ -429,7 +361,6 @@ void saveEditedTest() { .collectedVariables(newVariables) .build(); - //WHEN responseControllerStatic.saveEditedVariables(surveyUnitInputDto); diff --git a/src/test/java/fr/insee/genesis/domain/service/SurveyUnitServiceTest.java b/src/test/java/fr/insee/genesis/domain/service/SurveyUnitServiceTest.java index 1fdae738..aa274847 100644 --- a/src/test/java/fr/insee/genesis/domain/service/SurveyUnitServiceTest.java +++ b/src/test/java/fr/insee/genesis/domain/service/SurveyUnitServiceTest.java @@ -20,9 +20,6 @@ import java.util.List; class SurveyUnitServiceTest { - - - //Given static SurveyUnitService surveyUnitServiceStatic; @@ -495,6 +492,32 @@ void findLatestByIdAndByQuestionnaireIdPerretTest_null_externalVariables(){ .isTrue(); } + @Test + void findLatestValuesByStateByIdAndByQuestionnaireId_should_return_empty_values_too(){ + //Given + addAdditionnalSurveyUnitModelToMongoStub(DataState.FORCED, + "", + "", + LocalDateTime.of(2025,2,2,0,0,0), + LocalDateTime.of(2025,2,2,0,0,0) + ); + + //When + SurveyUnitDto surveyUnitDto = surveyUnitServiceStatic.findLatestValuesByStateByIdAndByQuestionnaireId( + DEFAULT_INTERROGATION_ID, + DEFAULT_QUESTIONNAIRE_ID + ); + List variableDtos = surveyUnitDto.getCollectedVariables().stream().filter( + variableDto -> variableDto.getVariableName().equals("TESTVARID") + && variableDto.getIteration() == 1 + ).toList(); + //THEN + Assertions.assertThat(variableDtos).isNotEmpty(); + Assertions.assertThat(variableDtos.getFirst().getVariableStateDtoList()).hasSize(2); + Assertions.assertThat(variableDtos.getFirst().getVariableStateDtoList().getFirst().getValue()).isEmpty(); + + } + private void addAdditionnalSurveyUnitModelToMongoStub(){ List externalVariableList = new ArrayList<>(); VariableModel externalVariableModel = VariableModel.builder() diff --git a/src/test/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataServiceTest.java b/src/test/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataServiceTest.java index 742f4515..6ef2c9ac 100644 --- a/src/test/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataServiceTest.java +++ b/src/test/java/fr/insee/genesis/domain/service/rawdata/LunaticJsonRawDataServiceTest.java @@ -1,26 +1,273 @@ package fr.insee.genesis.domain.service.rawdata; -import com.fasterxml.jackson.core.JsonParseException; +import fr.insee.genesis.domain.model.surveyunit.DataState; import fr.insee.genesis.domain.model.surveyunit.Mode; -import fr.insee.genesis.stubs.LunaticJsonPersistanceStub; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; +import fr.insee.genesis.stubs.LunaticJsonRawDataPersistanceStub; +import fr.insee.genesis.domain.utils.JsonUtils; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.Test; +import java.util.List; +import java.util.Map; + class LunaticJsonRawDataServiceTest { - LunaticJsonPersistanceStub lunaticJsonPersistanceStub = new LunaticJsonPersistanceStub(); - LunaticJsonRawDataService lunaticJsonRawDataService = new LunaticJsonRawDataService(lunaticJsonPersistanceStub); + LunaticJsonRawDataPersistanceStub lunaticJsonRawDataPersistanceStub = new LunaticJsonRawDataPersistanceStub(); + LunaticJsonRawDataService lunaticJsonRawDataService = new LunaticJsonRawDataService(lunaticJsonRawDataPersistanceStub); @Test - void saveDataTest_Invalid(){ - lunaticJsonPersistanceStub.getMongoStub().clear(); + void saveDataTest_valid_only_collected_array() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"COLLECTED\": {\"TESTVAR\": {\"COLLECTED\": [\"test\"]}}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); - Assertions.assertThatThrownBy(() -> { - lunaticJsonRawDataService.saveData( - campaignId - ,"{\"testdata\": \"ERROR" - , Mode.WEB - ); - }).isInstanceOf(JsonParseException.class); + // We retrieve and cast the Map "COLLECTED" + Map collectedData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")); + Assertions.assertThat(collectedData).isNotNull().hasSize(1); + Assertions.assertThat(collectedData).containsOnlyKeys("TESTVAR"); + + // We retrieve and cast the Map "TESTVAR" + Map testVarMap = JsonUtils.asMap(collectedData.get("TESTVAR")); + Assertions.assertThat(testVarMap).isNotNull().hasSize(1).containsKey(DataState.COLLECTED.toString()); + + // We retrieve and cast the List "COLLECTED" + List collectedList = JsonUtils.asStringList(testVarMap.get(DataState.COLLECTED.toString())); + Assertions.assertThat(collectedList).isNotNull().isInstanceOf(List.class).containsExactly("test"); + + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")).isNull(); } + + @Test + void saveDataTest_valid_only_collected_value() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"COLLECTED\": {\"TESTVAR\": {\"COLLECTED\": \"test\"}}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); + + Map collectedData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")); + Assertions.assertThat(collectedData).isNotNull().hasSize(1); + Assertions.assertThat(collectedData).containsOnlyKeys("TESTVAR"); + + Map testVarMap = JsonUtils.asMap(collectedData.get("TESTVAR"));; + Assertions.assertThat(testVarMap).isNotNull().hasSize(1).containsKey(DataState.COLLECTED.toString()); + Assertions.assertThat(testVarMap.get(DataState.COLLECTED.toString())).isNotNull().isEqualTo("test"); + Assertions.assertThat(testVarMap.get(DataState.COLLECTED.toString())).isInstanceOf(String.class); + + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")).isNull(); + } + + @Test + void saveDataTest_valid_only_external_array() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"EXTERNAL\": {\"TESTVAR_EXT\": [\"test\"]}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); + + Map externalData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")); + Assertions.assertThat(externalData).isNotNull().hasSize(1); + Assertions.assertThat(externalData).containsOnlyKeys("TESTVAR_EXT"); + + Object extVarValue = externalData.get("TESTVAR_EXT"); + Assertions.assertThat(extVarValue).isNotNull().isInstanceOf(List.class); + List extValCast = JsonUtils.asStringList(extVarValue); + Assertions.assertThat(extValCast).containsExactly("test"); + + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")).isNull(); + } + + @Test + void saveDataTest_valid_only_external_value() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"EXTERNAL\": {\"TESTVAR_EXT\": \"test\"}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); + + Map externalData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")); + Assertions.assertThat(externalData).isNotNull().hasSize(1); + Assertions.assertThat(externalData).containsOnlyKeys("TESTVAR_EXT"); + + + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isNotNull().isEqualTo("test"); + + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isInstanceOf(String.class); + + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")).isNull(); + } + + @Test + void saveDataTest_valid_both_only_collected_datastate() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"EXTERNAL\": {\"TESTVAR_EXT\": \"test_ext\"}, " + + "\"COLLECTED\": {\"TESTVAR\": {\"COLLECTED\": [\"test\"]}}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); + + Map externalData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")); + Assertions.assertThat(externalData).isNotNull().hasSize(1); + Assertions.assertThat(externalData).containsOnlyKeys("TESTVAR_EXT"); + + //External variable + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isNotNull().isEqualTo("test_ext"); + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isInstanceOf(String.class); + + //Collected variable + Map collectedData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")); + Assertions.assertThat(collectedData).isNotNull().hasSize(1); + Assertions.assertThat(collectedData).containsOnlyKeys("TESTVAR"); + Map colVarValue = JsonUtils.asMap(collectedData.get("TESTVAR")); + Assertions.assertThat(colVarValue).containsOnlyKeys(DataState.COLLECTED.toString()); + Assertions.assertThat(colVarValue.get(DataState.COLLECTED.toString())).isNotNull(); + Assertions.assertThat(colVarValue.get(DataState.COLLECTED.toString())).isInstanceOf(List.class); + List colVarCast = JsonUtils.asStringList(colVarValue.get(DataState.COLLECTED.toString())); + Assertions.assertThat(colVarCast).containsExactly("test"); + } + + @Test + void saveDataTest_valid_both_multiple_datastate() throws Exception { + //GIVEN + lunaticJsonRawDataPersistanceStub.getMongoStub().clear(); + String campaignId = "SAMPLETEST-PARADATA-v1"; + String questionnaireId = "TESTIDQUEST"; + String interrogationId = "TESTinterrogationId"; + String json = "{\"EXTERNAL\": {\"TESTVAR_EXT\": \"test_ext\"}, " + + "\"COLLECTED\": {\"TESTVAR\": {\"COLLECTED\": [\"test\"], \"EDITED\": [\"test_ed\"]}}}"; + + LunaticJsonRawDataModel rawDataModel = LunaticJsonRawDataModel.builder() + .campaignId(campaignId) + .questionnaireId(questionnaireId) + .interrogationId(interrogationId) + .data(JsonUtils.jsonToMap(json)) + .mode(Mode.WEB) + .build(); + + //WHEN + lunaticJsonRawDataService.save(rawDataModel); + + //THEN + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub()).hasSize(1); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().campaignId()).isEqualTo(campaignId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().questionnaireId()).isEqualTo(questionnaireId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().interrogationId()).isEqualTo(interrogationId); + Assertions.assertThat(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data()).isNotNull(); + + Map externalData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("EXTERNAL")); + Assertions.assertThat(externalData).isNotNull().hasSize(1); + Assertions.assertThat(externalData).containsOnlyKeys("TESTVAR_EXT"); + + //External variables + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isNotNull().isEqualTo("test_ext"); + Assertions.assertThat(externalData.get("TESTVAR_EXT")).isInstanceOf(String.class); + + //Collected variables + Map collectedData = JsonUtils.asMap(lunaticJsonRawDataPersistanceStub.getMongoStub().getFirst().data().get("COLLECTED")); + Assertions.assertThat(collectedData).isNotNull().hasSize(1); + Assertions.assertThat(collectedData).containsOnlyKeys("TESTVAR"); + Map colVar = JsonUtils.asMap(collectedData.get("TESTVAR")); + Assertions.assertThat(colVar).containsOnlyKeys(DataState.COLLECTED.toString(), DataState.EDITED.toString()); + Assertions.assertThat(colVar.get(DataState.COLLECTED.toString())).isNotNull(); + Assertions.assertThat(JsonUtils.asStringList(colVar.get(DataState.COLLECTED.toString()))).containsExactly("test"); + Assertions.assertThat(colVar.get(DataState.EDITED.toString())).isNotNull(); + Assertions.assertThat(JsonUtils.asStringList(colVar.get(DataState.EDITED.toString()))).containsExactly("test_ed"); + Assertions.assertThat(colVar.get(DataState.COLLECTED.toString())).isInstanceOf(List.class); + Assertions.assertThat(colVar.get(DataState.EDITED.toString())).isInstanceOf(List.class); + } + } \ No newline at end of file diff --git a/src/test/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitModelMongoAdapterTest.java b/src/test/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitModelMongoAdapterTest.java index cb16e07e..3aa5dbd1 100644 --- a/src/test/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitModelMongoAdapterTest.java +++ b/src/test/java/fr/insee/genesis/infrastructure/adapter/SurveyUnitModelMongoAdapterTest.java @@ -10,7 +10,7 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.InjectMocks; -import org.mockito.Mock; +import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoExtension; import java.time.LocalDateTime; @@ -23,9 +23,8 @@ @ExtendWith(MockitoExtension.class) class SurveyUnitModelMongoAdapterTest { - - @Mock - static SurveyUnitMongoDBRepository mongoRepository; + + static SurveyUnitMongoDBRepository mongoRepository = Mockito.mock(SurveyUnitMongoDBRepository.class); @InjectMocks static SurveyUnitMongoAdapter surveyUnitMongoAdapter; diff --git a/src/test/java/fr/insee/genesis/stubs/LunaticJsonPersistanceStub.java b/src/test/java/fr/insee/genesis/stubs/LunaticJsonPersistanceStub.java deleted file mode 100644 index 56c32eed..00000000 --- a/src/test/java/fr/insee/genesis/stubs/LunaticJsonPersistanceStub.java +++ /dev/null @@ -1,20 +0,0 @@ -package fr.insee.genesis.stubs; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonDataModel; -import fr.insee.genesis.domain.ports.spi.LunaticJsonPersistancePort; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonDataDocument; -import fr.insee.genesis.infrastructure.mappers.LunaticJsonDocumentMapper; -import lombok.Getter; - -import java.util.ArrayList; -import java.util.List; - -@Getter -public class LunaticJsonPersistanceStub implements LunaticJsonPersistancePort { - List mongoStub = new ArrayList<>(); - - @Override - public void save(LunaticJsonDataModel lunaticJsonDataModel) { - mongoStub.add(LunaticJsonDocumentMapper.INSTANCE.modelToDocument(lunaticJsonDataModel)); - } -} diff --git a/src/test/java/fr/insee/genesis/stubs/LunaticJsonRawDataPersistanceStub.java b/src/test/java/fr/insee/genesis/stubs/LunaticJsonRawDataPersistanceStub.java new file mode 100644 index 00000000..3215f3d9 --- /dev/null +++ b/src/test/java/fr/insee/genesis/stubs/LunaticJsonRawDataPersistanceStub.java @@ -0,0 +1,70 @@ +package fr.insee.genesis.stubs; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticJsonRawDataModel; +import fr.insee.genesis.domain.ports.spi.LunaticJsonRawDataPersistencePort; +import fr.insee.genesis.infrastructure.document.rawdata.LunaticJsonRawDataDocument; +import fr.insee.genesis.infrastructure.mappers.LunaticJsonRawDataDocumentMapper; +import lombok.Getter; + +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.List; +import java.util.Set; + +@Getter +public class LunaticJsonRawDataPersistanceStub implements LunaticJsonRawDataPersistencePort { + List mongoStub = new ArrayList<>(); + + @Override + public void save(LunaticJsonRawDataModel lunaticJsonRawDataModel) { + mongoStub.add(LunaticJsonRawDataDocumentMapper.INSTANCE.modelToDocument(lunaticJsonRawDataModel)); + } + + @Override + public List getAllUnprocessedData() { + return LunaticJsonRawDataDocumentMapper.INSTANCE.listDocumentToListModel( + mongoStub.stream().filter( + lunaticJsonDataDocument -> lunaticJsonDataDocument.processDate() == null + ) + .toList() + ); + } + + @Override + public List findRawData(String campaignName, Mode mode, List interrogationIdList) { + List docs = mongoStub.stream().filter(lunaticJsonRawDataDocument -> + lunaticJsonRawDataDocument.campaignId().equals(campaignName) + && lunaticJsonRawDataDocument.mode().equals(mode) + && interrogationIdList.contains(lunaticJsonRawDataDocument.interrogationId()) + ).toList(); + return LunaticJsonRawDataDocumentMapper.INSTANCE.listDocumentToListModel(docs); + } + + + @Override + public void updateProcessDates(String campaignId, Set interrogationIds) { + for(LunaticJsonRawDataDocument document : mongoStub.stream().filter( + lunaticJsonDataDocument -> lunaticJsonDataDocument.campaignId().equals(campaignId) + && interrogationIds.contains(lunaticJsonDataDocument.interrogationId()) + ).toList() + ){ + LunaticJsonRawDataDocument newDocument = LunaticJsonRawDataDocument.builder() + .id(document.id()) + .campaignId(document.campaignId()) + .questionnaireId(document.questionnaireId()) + .interrogationId(document.interrogationId()) + .mode(document.mode()) + .data(document.data()) + .processDate(LocalDateTime.now()) + .recordDate(document.recordDate()) + .build(); + + mongoStub.removeIf(( + lunaticJsonDataDocument -> lunaticJsonDataDocument.campaignId().equals(campaignId) + && interrogationIds.contains(lunaticJsonDataDocument.interrogationId()))); + + mongoStub.add(newDocument); + } + } +} diff --git a/src/test/java/fr/insee/genesis/stubs/LunaticXmlPersistanceStub.java b/src/test/java/fr/insee/genesis/stubs/LunaticXmlPersistanceStub.java deleted file mode 100644 index 15b1296d..00000000 --- a/src/test/java/fr/insee/genesis/stubs/LunaticXmlPersistanceStub.java +++ /dev/null @@ -1,20 +0,0 @@ -package fr.insee.genesis.stubs; - -import fr.insee.genesis.domain.model.surveyunit.rawdata.LunaticXmlDataModel; -import fr.insee.genesis.domain.ports.spi.LunaticXmlPersistancePort; -import fr.insee.genesis.infrastructure.document.rawdata.LunaticXmlDataDocument; -import fr.insee.genesis.infrastructure.mappers.LunaticXmlDocumentMapper; -import lombok.Getter; - -import java.util.ArrayList; -import java.util.List; - -@Getter -public class LunaticXmlPersistanceStub implements LunaticXmlPersistancePort { - List mongoStub = new ArrayList<>(); - - @Override - public void save(LunaticXmlDataModel lunaticXmlDataModel) { - mongoStub.add(LunaticXmlDocumentMapper.INSTANCE.modelToDocument(lunaticXmlDataModel)); - } -} diff --git a/src/test/java/fr/insee/genesis/stubs/VariableTypePersistanceStub.java b/src/test/java/fr/insee/genesis/stubs/VariableTypePersistanceStub.java new file mode 100644 index 00000000..e15220b4 --- /dev/null +++ b/src/test/java/fr/insee/genesis/stubs/VariableTypePersistanceStub.java @@ -0,0 +1,30 @@ +package fr.insee.genesis.stubs; + +import fr.insee.genesis.domain.model.surveyunit.Mode; +import fr.insee.genesis.domain.model.variabletype.VariableTypeModel; +import fr.insee.genesis.domain.ports.spi.VariableTypePersistancePort; +import fr.insee.genesis.infrastructure.document.variabletype.VariableTypeDocument; +import fr.insee.genesis.infrastructure.mappers.VariableTypeDocumentMapper; +import lombok.Getter; + +import java.util.ArrayList; +import java.util.List; + +@Getter +public class VariableTypePersistanceStub implements VariableTypePersistancePort { + List mongoStub = new ArrayList<>(); + + @Override + public void save(VariableTypeModel variableTypeModel) { + mongoStub.add(VariableTypeDocumentMapper.INSTANCE.modelToDocument(variableTypeModel)); + } + + @Override + public VariableTypeDocument find(String campaignId, String questionnaireId, Mode mode) { + return mongoStub.stream().filter(variableTypeDocument -> + variableTypeDocument.getCampaignId().equals(campaignId) + && variableTypeDocument.getQuestionnaireId().equals(questionnaireId) + && variableTypeDocument.getMode().equals(mode) + ).toList().getFirst(); + } +} diff --git a/src/test/resources/features/do_we_extract_data.feature b/src/test/resources/fr/insee/genesis/features/do_we_extract_data.feature similarity index 100% rename from src/test/resources/features/do_we_extract_data.feature rename to src/test/resources/fr/insee/genesis/features/do_we_extract_data.feature diff --git a/src/test/resources/fr/insee/genesis/features/do_we_process_raw_data.feature b/src/test/resources/fr/insee/genesis/features/do_we_process_raw_data.feature new file mode 100644 index 00000000..1ff4b2de --- /dev/null +++ b/src/test/resources/fr/insee/genesis/features/do_we_process_raw_data.feature @@ -0,0 +1,10 @@ +#Feature: Raw data processing +# Scenario Outline: Raw data processing +# Given We have raw data file in "" +# When We save that raw data for web campaign "", questionnaire "", interrogation "" +# When We process raw data for campaign "", questionnaire "" and interrogation "" +# Then For collected variable "" in survey unit "" we should have "" for iteration 1 +# And For external variable "" in survey unit "" we should have "" for iteration 1 +# Examples: +# | JsonFile | CampaignId | QuestionnaireId | InterrogationId | CollectedVariableName | ExpectedCollectedValue | ExternalVariableName | ExpectedExternalValue | +# | raw_data/rawdatasample.json | RAWDATATESTCAMPAIGN | TESTQUEST | TESTUE00001 | PRENOM_PAR1 | Farid | RPPRENOM | Robert | \ No newline at end of file diff --git a/src/test/resources/features/do_we_save_data.feature b/src/test/resources/fr/insee/genesis/features/do_we_save_data.feature similarity index 100% rename from src/test/resources/features/do_we_save_data.feature rename to src/test/resources/fr/insee/genesis/features/do_we_save_data.feature diff --git a/src/test/resources/features/do_we_save_loops.feature b/src/test/resources/fr/insee/genesis/features/do_we_save_loops.feature similarity index 100% rename from src/test/resources/features/do_we_save_loops.feature rename to src/test/resources/fr/insee/genesis/features/do_we_save_loops.feature diff --git a/src/test/resources/fr/insee/genesis/features/do_we_save_raw_data.feature b/src/test/resources/fr/insee/genesis/features/do_we_save_raw_data.feature new file mode 100644 index 00000000..37252e61 --- /dev/null +++ b/src/test/resources/fr/insee/genesis/features/do_we_save_raw_data.feature @@ -0,0 +1,14 @@ +Feature: Do we save raw data in genesis + Scenario Outline: Correct JSON raw data import volumetry + Given We have raw data file in "" + When We save that raw data for web campaign "", questionnaire "", interrogation "" + Then We should have status code + And We should have raw data document + Examples: + | JsonFile | CampaignId | QuestionnaireId | InterrogationId | ExpectedStatusCode | ExpectedDocumentCount | + | raw_data/rawdatasample.json | TESTCAMPAIGN | TESTQUEST | TESTUE00001 | 201 | 1 | + | raw_data/rawdatasample_syntax_error.json | TESTCAMPAIGN | TESTQUEST | TESTUE00001 | 400 | 0 | + | raw_data/invalidData_but_correctJson.json | TESTCAMPAIGN | TESTQUEST | TESTUE00001 | 201 | 1 | + + + diff --git a/src/test/resources/raw_data/invalidData_but_correctJson.json b/src/test/resources/raw_data/invalidData_but_correctJson.json new file mode 100644 index 00000000..2c08ecca --- /dev/null +++ b/src/test/resources/raw_data/invalidData_but_correctJson.json @@ -0,0 +1,71 @@ +{ + "company": { + "name": "TechCorp", + "founded": 2005, + "isActive": true, + "departments": [ + { + "name": "Engineering", + "employees": [ + { + "id": 101, + "name": "Alice Johnson", + "role": "Software Engineer", + "skills": ["Java", "Spring Boot", "Docker"], + "salary": 75000.50, + "hireDate": "2018-06-15T08:30:00Z" + }, + { + "id": 102, + "name": "Bob Smith", + "role": "DevOps Engineer", + "skills": ["AWS", "Kubernetes", "Terraform"], + "salary": 82000.75, + "hireDate": "2019-09-20T10:15:00Z" + } + ] + }, + { + "name": "Marketing", + "employees": [ + { + "id": 201, + "name": "Carol White", + "role": "Marketing Manager", + "skills": ["SEO", "Google Ads", "Content Strategy"], + "salary": 68000.00, + "hireDate": "2017-03-12T09:45:00Z" + } + ] + } + ], + "offices": [ + { + "location": "New York", + "address": { + "street": "123 5th Avenue", + "city": "New York", + "zip": "10001", + "country": "USA" + }, + "phone": "+1-212-555-1234" + }, + { + "location": "San Francisco", + "address": { + "street": "456 Market Street", + "city": "San Francisco", + "zip": "94103", + "country": "USA" + }, + "phone": "+1-415-555-5678" + } + ], + "financials": { + "revenue": 12500000.99, + "expenses": 7400000.75, + "profit": 5099999.24, + "currency": "USD" + } + } +} diff --git a/src/test/resources/raw_data/rawdatasample.json b/src/test/resources/raw_data/rawdatasample.json new file mode 100644 index 00000000..100efe7b --- /dev/null +++ b/src/test/resources/raw_data/rawdatasample.json @@ -0,0 +1,3531 @@ +{ + "EXTERNAL": { + "RPPRENOM": [ + "Robert" + ], + "RPNAIPAR1": [ + "4" + ], + "RPNAIPAR2": [ + "4" + ], + "RPNBQUEST": "1", + "RPSEXCONJ": [ + null + ], + "RPSEXPAR1": [ + null + ], + "RPSEXPAR2": [ + null + ], + "RPANAISENQ": [ + "2006" + ], + "RPJNAISENQ": [ + "30" + ], + "RPMNAISENQ": [ + "05" + ], + "RPPNAIPAR1": [ + "" + ], + "RPPNAIPAR2": [ + "" + ], + "TYPE_QUEST": "2", + "RPANAISCONJ": [ + null + ], + "RPANAISPAR1": [ + null + ], + "RPANAISPAR2": [ + null + ], + "RPTYPEQUEST": "femmes", + "RPPRENOMCONJ": [ + null + ], + "RPPRENOMPAR1": [ + null + ], + "RPPRENOMPAR2": [ + null + ], + "RPLISTEPRENOMS": "Robert" + }, + "COLLECTED": { + "ENF": { + "COLLECTED": [ + "2" + ] + }, + "MARI": { + "COLLECTED": [ + null + ] + }, + "PACS": { + "COLLECTED": [ + null + ] + }, + "NBENF": { + "COLLECTED": [ + null + ] + }, + "AUT_U2": { + "COLLECTED": [ + null + ] + }, + "COUPLE": { + "COLLECTED": [ + "4" + ] + }, + "FINETU": { + "COLLECTED": [ + "2" + ] + }, + "HEBERG": { + "COLLECTED": [ + "2" + ] + }, + "MINEUR": { + "COLLECTED": [ + null + ] + }, + "SEPARE": { + "COLLECTED": [ + null + ] + }, + "VECU_C": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S": { + "COLLECTED": [ + null + ] + }, + "ANNEE_U": { + "COLLECTED": [ + null + ] + }, + "DNAI_CF": { + "COLLECTED": [ + null + ] + }, + "DNAI_CH": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C": { + "COLLECTED": [ + null + ] + }, + "FR_PAR1": { + "COLLECTED": [ + null + ] + }, + "FR_PAR2": { + "COLLECTED": [ + null + ] + }, + "MARI_U1": { + "COLLECTED": [ + null + ] + }, + "MARI_U2": { + "COLLECTED": [ + null + ] + }, + "PACS_U1": { + "COLLECTED": [ + null + ] + }, + "PACS_U2": { + "COLLECTED": [ + null + ] + }, + "PNAI_CF": { + "COLLECTED": [ + null + ] + }, + "PNAI_CH": { + "COLLECTED": [ + null + ] + }, + "POSTENQ": { + "COLLECTED": [ + "2" + ] + }, + "SEXE_CF": { + "COLLECTED": [ + null + ] + }, + "SEXE_CH": { + "COLLECTED": [ + null + ] + }, + "TRAVACT": { + "COLLECTED": [ + "2" + ] + }, + "ANNEE_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_U2": { + "COLLECTED": [ + null + ] + }, + "CBENFAIL": { + "COLLECTED": [ + null + ] + }, + "CBENFLOG": { + "COLLECTED": [ + null + ] + }, + "COM_PAR1": { + "COLLECTED": [ + null + ] + }, + "COM_PAR2": { + "COLLECTED": [ + null + ] + }, + "DEP_PAR1": { + "COLLECTED": [ + null + ] + }, + "DEP_PAR2": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "NBENFLOG": { + "COLLECTED": [ + null + ] + }, + "PAY_PAR1": { + "COLLECTED": [ + null + ] + }, + "PAY_PAR2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_C": { + "COLLECTED": [ + null + ] + }, + "PRENOM_X": { + "COLLECTED": [ + null + ] + }, + "PROF_C2F": { + "COLLECTED": [ + null + ] + }, + "PROF_C2H": { + "COLLECTED": [ + null + ] + }, + "PROF_CF1": { + "COLLECTED": [ + null + ] + }, + "PROF_CF2": { + "COLLECTED": [ + null + ] + }, + "PROF_CH1": { + "COLLECTED": [ + null + ] + }, + "PROF_CH2": { + "COLLECTED": [ + null + ] + }, + "SEXE_U1F": { + "COLLECTED": [ + null + ] + }, + "SEXE_U1H": { + "COLLECTED": [ + null + ] + }, + "SEXE_U2F": { + "COLLECTED": [ + null + ] + }, + "SEXE_U2H": { + "COLLECTED": [ + null + ] + }, + "VIV_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "VIV_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "ANAI_PAR1": { + "COLLECTED": [ + "1984" + ] + }, + "ANAI_PAR2": { + "COLLECTED": [ + "1986" + ] + }, + "AUT_UNION": { + "COLLECTED": [ + null + ] + }, + "DATNAIS_C": { + "COLLECTED": [ + null + ] + }, + "DATNAIS_X": { + "COLLECTED": [ + null + ] + }, + "DEJATRAV1": { + "COLLECTED": [ + null + ] + }, + "DEJATRAV2": { + "COLLECTED": [ + "2" + ] + }, + "ETAB_PAR1": { + "COLLECTED": [ + null + ] + }, + "ETAB_PAR2": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR2B": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES": { + "COLLECTED": [ + 2 + ] + }, + "NB_SOEURS": { + "COLLECTED": [ + 2 + ] + }, + "PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "PNAI_PAR1": { + "COLLECTED": [ + null + ] + }, + "PNAI_PAR2": { + "COLLECTED": [ + "EUR" + ] + }, + "PRENOM_U1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_U2": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_CH": { + "COLLECTED": [ + null + ] + }, + "SEPARE_U1": { + "COLLECTED": [ + null + ] + }, + "SEPARE_U2": { + "COLLECTED": [ + null + ] + }, + "SEXE_PAR1": { + "COLLECTED": [ + "2" + ] + }, + "SEXE_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "STATUT_CF": { + "COLLECTED": [ + null + ] + }, + "STATUT_CH": { + "COLLECTED": [ + null + ] + }, + "TRAV_CF_C": { + "COLLECTED": [ + null + ] + }, + "TRAV_CF_P": { + "COLLECTED": [ + null + ] + }, + "TRAV_CH_C": { + "COLLECTED": [ + null + ] + }, + "TRAV_CH_P": { + "COLLECTED": [ + null + ] + }, + "TRAV_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "TRAV_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "AGE_FINEMP": { + "COLLECTED": [ + null + ] + }, + "AGE_FINETU": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D_U2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S_U2": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C_U1": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C_U2": { + "COLLECTED": [ + null + ] + }, + "EXIST_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "FR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR2A1": { + "COLLECTED": [ + true + ] + }, + "LOG_PAR2A2": { + "COLLECTED": [ + true + ] + }, + "LOG_PAR2A3": { + "COLLECTED": [ + null + ] + }, + "NATIO_PAR1": { + "COLLECTED": [ + "4" + ] + }, + "NATIO_PAR2": { + "COLLECTED": [ + "4" + ] + }, + "NBENF_ADOP": { + "COLLECTED": [ + null + ] + }, + "PRENOM_FIN": { + "COLLECTED": [ + "1" + ] + }, + "PROF_PAR1F": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR1H": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR2F": { + "COLLECTED": [ + "1085" + ] + }, + "PROF_PAR2H": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_CH": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_CH": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE1": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE2": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE3": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE4": { + "COLLECTED": [ + null + ] + }, + "VAL_PRENOM": { + "COLLECTED": [ + "1" + ] + }, + "VECU_PLACE": { + "COLLECTED": [ + null + ] + }, + "AGE_EMPLOI1": { + "COLLECTED": [ + null + ] + }, + "AIDE_RECUE1": { + "COLLECTED": [ + true + ] + }, + "AIDE_RECUE2": { + "COLLECTED": [ + null + ] + }, + "AIDE_RECUE3": { + "COLLECTED": [ + true + ] + }, + "AIDE_RECUE4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV1": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV2": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV3": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENF": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_CF": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_CH": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NBENFAIL_UN": { + "COLLECTED": [ + null + ] + }, + "NBENFLOG_UN": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_TEL": { + "COLLECTED": [ + null + ] + }, + "PRENOM_PAR1": { + "COLLECTED": [ + "Farid" + ] + }, + "PRENOM_PAR2": { + "COLLECTED": [ + "Violette" + ] + }, + "PRENOM_PROX": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR1_2": { + "COLLECTED": [ + "agent" + ] + }, + "PROF_PAR2_2": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_PAR1": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_PAR2": { + "COLLECTED": [ + null + ] + }, + "STATUT_PAR1": { + "COLLECTED": [ + "3" + ] + }, + "STATUT_PAR2": { + "COLLECTED": [ + "3" + ] + }, + "VAL_ANNAISS": { + "COLLECTED": [ + "1" + ] + }, + "AG_PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT1": { + "COLLECTED": [ + true + ] + }, + "AIDE_APPORT2": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT3": { + "COLLECTED": [ + true + ] + }, + "AIDE_APPORT4": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "ANNEE_FINEMP": { + "COLLECTED": [ + null + ] + }, + "ANNEE_FINETU": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PAR1": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR1": { + "COLLECTED": [ + "0376" + ] + }, + "LANGUE1_PAR2": { + "COLLECTED": [ + "0376" + ] + }, + "LANGUE2_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_U2": { + "COLLECTED": [ + null + ] + }, + "NB_AUT_UNION": { + "COLLECTED": [ + null + ] + }, + "NB_PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_MAIL": { + "COLLECTED": [ + null + ] + }, + "PROX_VIE_CJT": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "SAL_ENT_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "SAL_IND_PAR1": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_PAR2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "AG_DEP_PARENT": { + "COLLECTED": [ + 0 + ] + }, + "ANNEE_DC_PAR1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_DC_PAR2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_EMPLOI1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI_U2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS_U2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR1E": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE2_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR2E": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE2_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1E": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2E": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1E": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2E": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "LIEUNAIS_PAR2": { + "COLLECTED": [ + "2" + ] + }, + "NBENF_ADOP_UN": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES_VIV": { + "COLLECTED": [ + 2 + ] + }, + "NB_SOEURS_VIV": { + "COLLECTED": [ + 2 + ] + }, + "POSTENQ_CONT1": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_CONT2": { + "COLLECTED": [ + null + ] + }, + "PRECIS_VIECJT": { + "COLLECTED": [ + null + ] + }, + "PROX_EGO_PAR1": { + "COLLECTED": [ + null + ] + }, + "PROX_EGO_PAR2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PAR1": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENTOUE": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE1_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOUE": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOUE": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_VENU_C": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES_VIV1": { + "COLLECTED": [ + null + ] + }, + "NB_SOEURS_VIV1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PROX_FRAT_PAR1": { + "COLLECTED": [ + "2" + ] + }, + "PROX_FRAT_PAR2": { + "COLLECTED": [ + null + ] + }, + "RAISON_VIE_CJT": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE1": { + "COLLECTED": [ + true + ] + }, + "VECU_JEUNESSE2": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE3": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE4": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE5": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE6": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C1": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C2": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C3": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C4": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_VENU_C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1D2": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_APP_1DD": { + "COLLECTED": [ + "Frère et soeur" + ] + }, + "QUI_AID_APP_2A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3D2": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_APP_3DD": { + "COLLECTED": [ + "Frères et soeur" + ] + }, + "QUI_AID_APP_4A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1D1": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_REC_1D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3D1": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_REC_3D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3DD": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_VENU_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_VENU_U2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF1": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF2": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF3": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF4": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C1_VENU_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C1_VENU_U2": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF1": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF2": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF3": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF4": { + "COLLECTED": [ + null + ] + } + } +} \ No newline at end of file diff --git a/src/test/resources/raw_data/rawdatasample_syntax_error.json b/src/test/resources/raw_data/rawdatasample_syntax_error.json new file mode 100644 index 00000000..1115884d --- /dev/null +++ b/src/test/resources/raw_data/rawdatasample_syntax_error.json @@ -0,0 +1,3528 @@ +{ + "EXTERNAL": { + "RPPRENOM": [ + "Robert" + ], + "RPNAIPAR1": [ + "4" + ], + "RPNAIPAR2": [ + "4" + ], + "RPNBQUEST": "1", + "RPSEXCONJ": [ + null + ], + "RPSEXPAR1": [ + null + ], + "RPSEXPAR2": [ + null + ], + "RP + + + Tout cassé + + + + + + IPAR2": [ + "" + ], + "TYPE_QUEST": "2", + "RPANAISCONJ": [ + null + ], + "RPANAISPAR1": [ + null + ], + "RPANAISPAR2": [ + null + ], + "RPTYPEQUEST": "femmes", + "RPPRENOMCONJ": [ + null + ], + "RPPRENOMPAR1": [ + null + ], + "RPPRENOMPAR2": [ + null + ], + "RPLISTEPRENOMS": "Robert" + }, + "COLLECTED": { + "ENF": { + "COLLECTED": [ + "2" + ] + }, + "MARI": { + "COLLECTED": [ + null + ] + }, + "PACS": { + "COLLECTED": [ + null + ] + }, + "NBENF": { + "COLLECTED": [ + null + ] + }, + "AUT_U2": { + "COLLECTED": [ + null + ] + }, + "COUPLE": { + "COLLECTED": [ + "4" + ] + }, + "FINETU": { + "COLLECTED": [ + "2" + ] + }, + "HEBERG": { + "COLLECTED": [ + "2" + ] + }, + "MINEUR": { + "COLLECTED": [ + null + ] + }, + "SEPARE": { + "COLLECTED": [ + null + ] + }, + "VECU_C": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S": { + "COLLECTED": [ + null + ] + }, + "ANNEE_U": { + "COLLECTED": [ + null + ] + }, + "DNAI_CF": { + "COLLECTED": [ + null + ] + }, + "DNAI_CH": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C": { + "COLLECTED": [ + null + ] + }, + "FR_PAR1": { + "COLLECTED": [ + null + ] + }, + "FR_PAR2": { + "COLLECTED": [ + null + ] + }, + "MARI_U1": { + "COLLECTED": [ + null + ] + }, + "MARI_U2": { + "COLLECTED": [ + null + ] + }, + "PACS_U1": { + "COLLECTED": [ + null + ] + }, + "PACS_U2": { + "COLLECTED": [ + null + ] + }, + "PNAI_CF": { + "COLLECTED": [ + null + ] + }, + "PNAI_CH": { + "COLLECTED": [ + null + ] + }, + "POSTENQ": { + "COLLECTED": [ + "2" + ] + }, + "SEXE_CF": { + "COLLECTED": [ + null + ] + }, + "SEXE_CH": { + "COLLECTED": [ + null + ] + }, + "TRAVACT": { + "COLLECTED": [ + "2" + ] + }, + "ANNEE_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_U2": { + "COLLECTED": [ + null + ] + }, + "CBENFAIL": { + "COLLECTED": [ + null + ] + }, + "CBENFLOG": { + "COLLECTED": [ + null + ] + }, + "COM_PAR1": { + "COLLECTED": [ + null + ] + }, + "COM_PAR2": { + "COLLECTED": [ + null + ] + }, + "DEP_PAR1": { + "COLLECTED": [ + null + ] + }, + "DEP_PAR2": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "NBENFLOG": { + "COLLECTED": [ + null + ] + }, + "PAY_PAR1": { + "COLLECTED": [ + null + ] + }, + "PAY_PAR2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_C": { + "COLLECTED": [ + null + ] + }, + "PRENOM_X": { + "COLLECTED": [ + null + ] + }, + "PROF_C2F": { + "COLLECTED": [ + null + ] + }, + "PROF_C2H": { + "COLLECTED": [ + null + ] + }, + "PROF_CF1": { + "COLLECTED": [ + null + ] + }, + "PROF_CF2": { + "COLLECTED": [ + null + ] + }, + "PROF_CH1": { + "COLLECTED": [ + null + ] + }, + "PROF_CH2": { + "COLLECTED": [ + null + ] + }, + "SEXE_U1F": { + "COLLECTED": [ + null + ] + }, + "SEXE_U1H": { + "COLLECTED": [ + null + ] + }, + "SEXE_U2F": { + "COLLECTED": [ + null + ] + }, + "SEXE_U2H": { + "COLLECTED": [ + null + ] + }, + "VIV_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "VIV_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "ANAI_PAR1": { + "COLLECTED": [ + "1984" + ] + }, + "ANAI_PAR2": { + "COLLECTED": [ + "1986" + ] + }, + "AUT_UNION": { + "COLLECTED": [ + null + ] + }, + "DATNAIS_C": { + "COLLECTED": [ + null + ] + }, + "DATNAIS_X": { + "COLLECTED": [ + null + ] + }, + "DEJATRAV1": { + "COLLECTED": [ + null + ] + }, + "DEJATRAV2": { + "COLLECTED": [ + "2" + ] + }, + "ETAB_PAR1": { + "COLLECTED": [ + null + ] + }, + "ETAB_PAR2": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR2B": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES": { + "COLLECTED": [ + 2 + ] + }, + "NB_SOEURS": { + "COLLECTED": [ + 2 + ] + }, + "PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "PNAI_PAR1": { + "COLLECTED": [ + null + ] + }, + "PNAI_PAR2": { + "COLLECTED": [ + "EUR" + ] + }, + "PRENOM_U1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_U2": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_CH": { + "COLLECTED": [ + null + ] + }, + "SEPARE_U1": { + "COLLECTED": [ + null + ] + }, + "SEPARE_U2": { + "COLLECTED": [ + null + ] + }, + "SEXE_PAR1": { + "COLLECTED": [ + "2" + ] + }, + "SEXE_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "STATUT_CF": { + "COLLECTED": [ + null + ] + }, + "STATUT_CH": { + "COLLECTED": [ + null + ] + }, + "TRAV_CF_C": { + "COLLECTED": [ + null + ] + }, + "TRAV_CF_P": { + "COLLECTED": [ + null + ] + }, + "TRAV_CH_C": { + "COLLECTED": [ + null + ] + }, + "TRAV_CH_P": { + "COLLECTED": [ + null + ] + }, + "TRAV_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "TRAV_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "AGE_FINEMP": { + "COLLECTED": [ + null + ] + }, + "AGE_FINETU": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_D_U2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_S_U2": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DC_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C_U1": { + "COLLECTED": [ + null + ] + }, + "ENFAV_C_U2": { + "COLLECTED": [ + null + ] + }, + "EXIST_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "FR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "FR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "LOG_PAR2A1": { + "COLLECTED": [ + true + ] + }, + "LOG_PAR2A2": { + "COLLECTED": [ + true + ] + }, + "LOG_PAR2A3": { + "COLLECTED": [ + null + ] + }, + "NATIO_PAR1": { + "COLLECTED": [ + "4" + ] + }, + "NATIO_PAR2": { + "COLLECTED": [ + "4" + ] + }, + "NBENF_ADOP": { + "COLLECTED": [ + null + ] + }, + "PRENOM_FIN": { + "COLLECTED": [ + "1" + ] + }, + "PROF_PAR1F": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR1H": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR2F": { + "COLLECTED": [ + "1085" + ] + }, + "PROF_PAR2H": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_CH": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_CF": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_CH": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE1": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE2": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE3": { + "COLLECTED": [ + null + ] + }, + "TYP_PLACE4": { + "COLLECTED": [ + null + ] + }, + "VAL_PRENOM": { + "COLLECTED": [ + "1" + ] + }, + "VECU_PLACE": { + "COLLECTED": [ + null + ] + }, + "AGE_EMPLOI1": { + "COLLECTED": [ + null + ] + }, + "AIDE_RECUE1": { + "COLLECTED": [ + true + ] + }, + "AIDE_RECUE2": { + "COLLECTED": [ + null + ] + }, + "AIDE_RECUE3": { + "COLLECTED": [ + true + ] + }, + "AIDE_RECUE4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ASE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "COM_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DEP_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV1": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV2": { + "COLLECTED": [ + null + ] + }, + "INTER_TRAV3": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENF": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENF": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_CF": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_CH": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "LOG_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NBENFAIL_UN": { + "COLLECTED": [ + null + ] + }, + "NBENFLOG_UN": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PAY_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_TEL": { + "COLLECTED": [ + null + ] + }, + "PRENOM_PAR1": { + "COLLECTED": [ + "Farid" + ] + }, + "PRENOM_PAR2": { + "COLLECTED": [ + "Violette" + ] + }, + "PRENOM_PROX": { + "COLLECTED": [ + null + ] + }, + "PROF_PAR1_2": { + "COLLECTED": [ + "agent" + ] + }, + "PROF_PAR2_2": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_PAR1": { + "COLLECTED": [ + null + ] + }, + "SAL_FP_PAR2": { + "COLLECTED": [ + null + ] + }, + "STATUT_PAR1": { + "COLLECTED": [ + "3" + ] + }, + "STATUT_PAR2": { + "COLLECTED": [ + "3" + ] + }, + "VAL_ANNAISS": { + "COLLECTED": [ + "1" + ] + }, + "AG_PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT1": { + "COLLECTED": [ + true + ] + }, + "AIDE_APPORT2": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT3": { + "COLLECTED": [ + true + ] + }, + "AIDE_APPORT4": { + "COLLECTED": [ + null + ] + }, + "AIDE_APPORT5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ANAI_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "ANNEE_FINEMP": { + "COLLECTED": [ + null + ] + }, + "ANNEE_FINETU": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "DORT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PAR1": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR1": { + "COLLECTED": [ + "0376" + ] + }, + "LANGUE1_PAR2": { + "COLLECTED": [ + "0376" + ] + }, + "LANGUE2_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENFE": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_ENFL": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_U2": { + "COLLECTED": [ + null + ] + }, + "NB_AUT_UNION": { + "COLLECTED": [ + null + ] + }, + "NB_PETIT_ENF": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_MAIL": { + "COLLECTED": [ + null + ] + }, + "PROX_VIE_CJT": { + "COLLECTED": [ + null + ] + }, + "SAL_ENT_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "SAL_ENT_PAR2": { + "COLLECTED": [ + "1" + ] + }, + "SAL_IND_PAR1": { + "COLLECTED": [ + null + ] + }, + "SAL_IND_PAR2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SEXE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ADOPT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AG_DC_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "AG_DEP_PARENT": { + "COLLECTED": [ + 0 + ] + }, + "ANNEE_DC_PAR1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_DC_PAR2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_EMPLOI1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_MARI_U2": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS_U1": { + "COLLECTED": [ + null + ] + }, + "ANNEE_PACS_U2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR1E": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE2_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_PAR2E": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE2_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOU": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1E": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2E": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1E": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR1L": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2E": { + "COLLECTED": [ + null + ] + }, + "LANGUE4_PAR2L": { + "COLLECTED": [ + null + ] + }, + "LIEUNAIS_PAR1": { + "COLLECTED": [ + "1" + ] + }, + "LIEUNAIS_PAR2": { + "COLLECTED": [ + "2" + ] + }, + "NBENF_ADOP_UN": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES_VIV": { + "COLLECTED": [ + 2 + ] + }, + "NB_SOEURS_VIV": { + "COLLECTED": [ + 2 + ] + }, + "POSTENQ_CONT1": { + "COLLECTED": [ + null + ] + }, + "POSTENQ_CONT2": { + "COLLECTED": [ + null + ] + }, + "PRECIS_VIECJT": { + "COLLECTED": [ + null + ] + }, + "PROX_EGO_PAR1": { + "COLLECTED": [ + null + ] + }, + "PROX_EGO_PAR2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "RESID_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SANTE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PAR1": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PAR2": { + "COLLECTED": [ + null + ] + }, + "LANGUE1_ENTOUE": { + "COLLECTED": [ + "2" + ] + }, + "LANGUE1_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOUE": { + "COLLECTED": [ + null + ] + }, + "LANGUE2_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOUE": { + "COLLECTED": [ + null + ] + }, + "LANGUE3_ENTOUL": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_VENU_C": { + "COLLECTED": [ + null + ] + }, + "NB_FRERES_VIV1": { + "COLLECTED": [ + null + ] + }, + "NB_SOEURS_VIV1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PRENOM_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PROX_FRAT_PAR1": { + "COLLECTED": [ + "2" + ] + }, + "PROX_FRAT_PAR2": { + "COLLECTED": [ + null + ] + }, + "RAISON_VIE_CJT": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE1": { + "COLLECTED": [ + true + ] + }, + "VECU_JEUNESSE2": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE3": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE4": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE5": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE6": { + "COLLECTED": [ + null + ] + }, + "VECU_JEUNESSE7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "ANADOPT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AUT_PAR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C1": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C2": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C3": { + "COLLECTED": [ + null + ] + }, + "ENF21_AUTPAR_C4": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_VENU_C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_1D2": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_APP_1DD": { + "COLLECTED": [ + "Frère et soeur" + ] + }, + "QUI_AID_APP_2A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_2DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_3D2": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_APP_3DD": { + "COLLECTED": [ + "Frères et soeur" + ] + }, + "QUI_AID_APP_4A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_APP_4DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1D1": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_REC_1D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_1DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2D1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_2DD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3A4": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3AD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3B3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3BD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C1": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3C3": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3CD": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3D1": { + "COLLECTED": [ + true + ] + }, + "QUI_AID_REC_3D2": { + "COLLECTED": [ + null + ] + }, + "QUI_AID_REC_3DD": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "NEFRANCE_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "AG_DEPART_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_VENU_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C_VENU_U2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FR_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF1": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF2": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF3": { + "COLLECTED": [ + null + ] + }, + "FREQ_VU_PETIT_ENF4": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C1_VENU_U1": { + "COLLECTED": [ + null + ] + }, + "NBENFAV_C1_VENU_U2": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_COM_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_DEP_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_PAY_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VIT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_DORT_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_FREQ_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "PARENT_VECU_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL1": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL2": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL3": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL4": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL5": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL6": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL7": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFAIL8": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG1": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG2": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG3": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG4": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG5": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG6": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG7": { + "COLLECTED": [ + null + ] + }, + "SEP_AUT_PAR_ENFLOG8": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF1": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF2": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF3": { + "COLLECTED": [ + null + ] + }, + "FREQ_CONT_PETIT_ENF4": { + "COLLECTED": [ + null + ] + } + } +} \ No newline at end of file diff --git a/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/DDI_FAM2025X01.xml b/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/DDI_FAM2025X01.xml new file mode 100644 index 00000000..235e6212 --- /dev/null +++ b/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/DDI_FAM2025X01.xml @@ -0,0 +1,175086 @@ + + + fr.insee + INSEE-m4754kes + 1 + + + Enquête Familles 2025 + + + + fr.insee + RessourcePackage-m4754kes + 1 + + fr.insee + InterviewerInstructionScheme-m4754kes + 1 + + A définir + + + fr.insee + lq0sf9ks + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "**Attention** : il est _très important_ pour la suite du questionnaire de répondre à cette question." + + + + + fr.insee + l473latk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + ly4bzjcl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + ly4bp25d + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "**Attention** : il est _très important_ pour la suite du questionnaire de répondre à cette question." + + + + + fr.insee + ly4blyt6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwq9wijq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue." + + + + + fr.insee + ly4cuvn6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lywy061z-OL + 1 + + loop.instanceLabel + + + + ¤ltd23kmk-GOP¤ + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + lywy061z-OD + 1 + + loop.instanceDescription + + + + if nvl(¤ly4cuvn6-QOP-ly4d6z4v¤,"")="1" then (nvl(¤ltd23kmk-GOP¤,"cette personne") || " est mineur(e) donc n'est pas interrogé(e)") else "Informations sur " || nvl(¤ltd23kmk-GOP¤,"cette personne") + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + ly4cuvn6-QOP-ly4d6z4v + 1 + OutParameter + + + + + + fr.insee + lywy061z-CI-0-II-0 + 1 + + warning + + + + "Attention, vous devez remplir le questionnaire de " || ¤ltd23kmk-GOP¤ + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l2sstox3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Vous allez remplir le questionnaire de l'enquête Familles de "|| nvl(¤ltd23kmk-GOP¤,"cette personne") || "." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + kwq9y19w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l0qkj23a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyye1a7t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l34fbn76 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || (nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur")) || ", quelques questions sur votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "conjoint(e) actuel(le) pour étudier la diversité des couples." +else "dernier(ère) conjoint(e), pour étudier la diversité des couples.") + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + + fr.insee + l34grb6h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + lv2hty76 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤kwq9y19w-QOP-kwq9xmzm¤="3" then "Indiquez une année approximative si vous ne savez pas précisément." else "" + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + + fr.insee + kwqa0ism-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue." + + + + + fr.insee + kwqabjga-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pa18h0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4o59ei7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5rn9i + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l0quikkt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5lb2p + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4o57595-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywou64-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m0gppl9e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5bu87 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + lldoqdme + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + l43zea6v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l0quphwx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lpsjaaiu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille." + + + + + fr.insee + lpsj90yi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgt315z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgt75zv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llde3pgg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldp0f22 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + lldpi629-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldpcfe1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + lldp8203-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldp3of6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + lldpejfa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m0gqs0nr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m0gr51no-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4qu3r4l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + lldp9mst + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + lldqd2sd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + llmhdvun-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lpsj3626 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille." + + + + + fr.insee + lpsiiaoa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llmhi6fd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llnh2qpm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27ezxol + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur votre " || if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤ ="2") then " vie en couple actuelle pour mesurer par exemple la durée des couples ou savoir comment et quand les couples formalisent leur union (mariage, pacs)." +else " dernière période de vie en couple pour connaître la durée des couples ou savoir combien de personnes se remettent en couple après une séparation ou le décès de leur conjoint(e)." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + + fr.insee + l27dlmvl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dlmvl-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dlmvl-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de mise en couple antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + + + fr.insee + l27dlmvl-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dlmvl-CI-4-II-4 + 1 + + warning + + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqa4zjf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l0qu7e2g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l0qu7e2g-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qu7e2g-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qu7e2g-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qu7e2g-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de pacs antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qujqzn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l0qul94p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l0qul94p-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qul94p-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qul94p-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qul94p-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de mariage antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l0qul94p-CI-5-II-5 + 1 + + warning + + + + "Vous avez indiqué une année de mariage antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l5kszr2f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dzhpw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dzhpw-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dzhpw-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de séparation antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + + + fr.insee + l27dzhpw-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l155mqhc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l155mqhc-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l155mqhc-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l155mqhc-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l155mqhc-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l155mqhc-CI-5-II-5 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l8lz0355-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + ly5u0pb7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur les enfants de votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") || ". +Ces informations sont essentielles pour répondre à des questions comme ''Comment se reforment les couples après avoir eu des enfants d’une précédente union ?''." + + + + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + + + + fr.insee + l43u9qqf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43u4x96-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5jnmvs2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liiz5sj3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l43why6c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l43why6c-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + l484uyl9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles s’il y a plusieurs enfants." + + + + + fr.insee + l43xg8do-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43xg8do-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher ''Non'' et une autre réponse." + + + + + fr.insee + lldrbrp9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions désormais sur vos précédentes périodes de vie en couple pour mesurer par exemple la fréquence des ruptures ou la durée entre deux périodes de vie en couple." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l15131wu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43x1amr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + m17k46xb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", décrivons votre première période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage), jalon important du passage à l'âge adulte." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + kwqa53jx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4p8skko-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldenssh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l34fzu5m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l34fzu5m-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de première mise en couple postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l34fzu5m-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de première mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l34fzu5m-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre date de naissance et celle de votre première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dlnmq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dns8a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dns8a-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de premier pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dns8a-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dns8a-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de premier pacs antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dns8a-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de premier pacs postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l27duust-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27e50tv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27e50tv-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-4-II-4 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-5-II-5 + 1 + + warning + + + + "Vous avez indiqué une année de premier mariage postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e50tv-CI-6-II-6 + 1 + + warning + + + + "Vous avez indiqué une année de premier mariage postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l5ktf1wn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l27dzhzv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27dzhzv-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de première séparation antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27dzhzv-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de première séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e0qyq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l27e0qyq-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e0qyq-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e0qyq-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l27e0qyq-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + lzts7qyr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur les éventuels enfants de votre " || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "premier conjoint " else "première conjointe ") || nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"") || ", pour comprendre comment se reforment les couples après avoir eu des enfants d'une précédente union." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + + + + fr.insee + l4cjg2rp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4cja8pm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ilbb89-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liiz9el9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l4o5x7yq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4o5x7yq-CI-1-II-1 + 1 + + warning + + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + + + fr.insee + m17k9qbw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", nous allons maintenant décrire, si vous le souhaitez, une autre période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage)." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l9il0i0h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ilcol6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l9ikne2h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lldetngg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikn3ea-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikn3ea-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikn3ea-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikn3ea-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikn3ea-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de mise en couple de cette autre union postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l9il24ft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikxoxa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikxoxa-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikxoxa-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikxoxa-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle du pacs de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikxoxa-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de pacs de cette autre union postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikvx4n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9iklcix-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9iklcix-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l9iklcix-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + + fr.insee + l9iklcix-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l9iklcix-CI-4-II-4 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle du mariage de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + l9iklcix-CI-5-II-5 + 1 + + warning + + + + "Vous avez indiqué une année du mariage de cette autre union postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikqlwv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikze1y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikze1y-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikze1y-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikmjqm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l9ikmjqm-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikmjqm-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikmjqm-CI-3-II-3 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de pacs de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + l9ikmjqm-CI-4-II-4 + 1 + + warning + + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mariage de cette autre union. Est-ce que vous confirmez ?" + + + + + fr.insee + ly7b5h1s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur les éventuels enfants de votre autre " || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "conjoint " else "conjointe ") || nvl(¤l9ilcol6-QOP-l9il24xt¤,"") || ", pour comprendre comment se reforment les couples après avoir eu des enfants d'une précédente union." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + + + + fr.insee + l9ikxndo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l9ikuqoe-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l9ikekzu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + liizbc3w + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l9iks078-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l9iks078-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants venus vivre avec vous ne peut pas être supérieur au nombre total d'enfants." + + + + + fr.insee + l34i0o62 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur vos enfants (y compris adoptés), qu’ils vivent avec vous ou non." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + lzsfgijs + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ne comptez pas vos beaux-enfants, même si vous les avez élevés." + + + + + fr.insee + kwqigxtx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqi5zsm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l1gkeq97-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7rlwtef + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun n'a été adopté, notez 0." + + + + + fr.insee + l7rlim3p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l7rlim3p-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants adoptés ne peut pas être supérieur au nombre total d'enfants." + + + + + fr.insee + laiambix + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lumogysw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lw52ifu3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvuztgu9 + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + l445u9x8-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumstcob-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lumnxb5k-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw53s36h + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw543f35-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsq0y7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lumnyjae-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw549g86 + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw547oxc-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsq00h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4idom4o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lcr3vb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4lcr3vb-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants qui vivent avec vous est supérieur au nombre total d'enfants que vous avez déclaré. Est-ce que vous confirmez ?" + + + + + fr.insee + ltd0h1g7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfzig7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4lfzig7-CI-1-II-1 + 1 + + warning + + + + "Le nombre d'enfants vivant dans le logement, vivant ailleurs ou décédés est différent du nombre total d'enfants. Est-ce que vous confirmez ?" + + + + + fr.insee + l446p7s5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + (if (cast(¤l4lcr3vb-QOP-l4lcyzfy¤,integer)=1 or ¤l4idom4o-QOP-l4idkl19¤ ="1") then "Décrivons votre enfant qui vit avec vous, même une petite partie du temps seulement." else "Commençons par décrire votre premier enfant qui vit avec vous, même une petite partie du temps seulement.") +|| (if cast(¤l4lcr3vb-QOP-l4lcyzfy¤, integer)>8 then " Décrivez seulement les 8 plus âgés." else "") + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + + + + fr.insee + l446nede-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + kwqjk80w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqjmq2o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqjmq2o-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqjmq2o-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4qth2nf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtls9o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3teph7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3ts84i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv3ts84i-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3ts84i-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3ts84i-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6lxfn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ((¤lv3teph7-QOP-lv3ti529¤ ="1") or (¤l1gkeq97-QOP-l7rlttxu¤ ="1" and ¤l4idom4o-QOP-l4idkl19¤="1")) then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + OutParameter + + + + + + fr.insee + kwqjol7e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paxo23 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4iaicn8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37btc9s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4parilg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4papcwn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pav1bd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbeb5v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pavrnh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ez78st-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4iain70-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqk3gx2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6ydnyh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqjmy9d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gia5uh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgn6d99-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4i9118b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4i8zu5m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia7rxn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4ia7rxn-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4ia7rxn-CI-2-II-2 + 1 + + warning + + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + + + fr.insee + l4qtdwhq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtpg9f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3u5cvk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3ule5a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv3ule5a-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3ule5a-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3ule5a-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6ogjx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv3u5cvk-QOP-lv3ugypu¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + OutParameter + + + + + + fr.insee + l4iano52-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pavsqb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqjmujx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bupmw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4pasuts-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pakgkw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pannoa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbep5s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pbc5wa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4idgpbr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4486unb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia5o28-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6yjh65-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4idgqx9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ia7y0p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgneyls-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld0ziw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lcp4co-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld3y0j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4ld3y0j-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4ld3y0j-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4qthko2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qty53i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3uun9e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3v5m6c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv3v5m6c-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3v5m6c-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3v5m6c-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b689zo + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv3uun9e-QOP-lv3uqxkh¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + OutParameter + + + + + + fr.insee + l4lct7cb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pawrpv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4ld827i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bqfyk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4pavp6y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb2s4u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pat7vx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbgztm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pb77tv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld15su-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld0zmv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ld0jea-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y9flo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lde13h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lcuoke-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgnpugy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lec0rk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lefdoh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4le9rs3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4le9rs3-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4le9rs3-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4qty3sm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtvt71-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3w60ed-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv3w2pql-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv3w2pql-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3w2pql-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv3w2pql-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6ndrj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv3w60ed-QOP-lv3w0zkt¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + OutParameter + + + + + + fr.insee + l4ler7fu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paro0f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lemegm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bsr91 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4paz6m4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paqxkg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4payjff-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pbe5ur + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pbax4x-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4letwtq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4letk9j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lekh2t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y7rno-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lexatl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lec2qz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgnp3j5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4leulqw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lem0yg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lffj1f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lffj1f-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lffj1f-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4qu07sd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4qtm8di-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv5dkuad-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv5db081-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv5db081-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv5db081-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv5db081-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6p61g + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv5dkuad-QOP-lv5db7oh¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + OutParameter + + + + + + fr.insee + l4lfye1g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4papqg4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lfoek4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37blclw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4paw4ax-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb0t6z + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pauqgi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pb68fn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4pb234a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n262ck-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfr4qa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfvape-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6yfjnf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg25av-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfclty-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgo5arn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2umnw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n2e1mr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2lctv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n2lctv-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n2lctv-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n2r8je + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n2gmuq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6b9lq6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6bv1fo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6bv1fo-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6bv1fo-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6bv1fo-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6ao2k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6b9lq6-QOP-lv6bjv1b¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + OutParameter + + + + + + fr.insee + l8n2ilpb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2g2zx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n1zy7o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37brd8c + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8n1u6yt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n24jzh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n2awb0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2b8s7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n20r8i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lfnqiq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n29jww-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n1p0yj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y7ni0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n1u2kg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2hdgw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgnrib2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3pb4f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n3mik2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3jmk8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n3jmk8-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n3jmk8-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n38zes + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n36fv3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6ecg0i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6eqkwn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6eqkwn-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6eqkwn-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6eqkwn-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6mw7k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6ecg0i-QOP-lv6efjal¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + OutParameter + + + + + + fr.insee + l8n3ff6s-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n32k1l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n3b7uo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bexmr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8n3485v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3j9rq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n3fzap-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2z0lq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n3burz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n32xk9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2x7q4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3ary8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6y542q-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n2t39d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + l8n3bp4o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgp60q8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n4cayp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8n406m9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3tya0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8n3tya0-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n3tya0-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8n3xl10 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n3vr8b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6evuvu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6ev10t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6ev10t-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6ev10t-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6ev10t-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6ir1k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6evuvu-QOP-lv6f0zo8¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + OutParameter + + + + + + fr.insee + l8n427a2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3m622 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8n41hvu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bhseb + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8n3tbmd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3q2xj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n41c78-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3kcnq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8n40r7t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3fpp7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3xb0z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3tjlw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + la6v947r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3ocd5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8n3uqr2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgp89uy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l447etvc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + (if (cast(¤l4lfzig7-QOP-l4lgbag5¤,integer)=1 or ¤ltd0h1g7-QOP-ltd0m6q3¤="1") then "Décrivons votre enfant qui ne vit pas avec vous ou qui est décédé(e)." else "Commençons par décrire votre premier enfant qui ne vit pas avec vous ou qui est décédé(e).") +|| (if cast(¤l4lfzig7-QOP-l4lgbag5¤, integer)>8 then " Décrivez seulement les 8 plus âgés." else "") + + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + + + + fr.insee + l4idug6p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + kwqix1j5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqj561a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqj561a-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqj561a-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4p9roph + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4cjlk0i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6fvjdh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6fuaur-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6fuaur-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6fuaur-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6fuaur-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6qqes + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ((¤lv6fvjdh-QOP-lv6g0yf3¤ ="1") or (¤l1gkeq97-QOP-l7rlttxu¤ ="1" and ¤ltd0h1g7-QOP-ltd0m6q3¤ ="1")) then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + OutParameter + + + + + + fr.insee + l4cjivdg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8lzt19v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4485tkr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2eizvoe + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if (¤kwqix1j5-QOP-kwqixdic¤="1" or isnull(¤kwqix1j5-QOP-kwqixdic¤)) then "cet enfant" else "cette enfant") else ¤l4idug6p-QOP-l4idueaa¤) || (" est") || (if (¤kwqix1j5-QOP-kwqixdic¤ = "1" or nvl(¤kwqix1j5-QOP-kwqixdic¤,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + + + + fr.insee + kwqkh05l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + kwqkh05l-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqk3ki3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + kwqk3ki3-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqkmusz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6xcya + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqjp9yr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bjupt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4onsq99-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paafoh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4onskib-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4panc40 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4onsf7y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqk3a58-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l44849iu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqj7xh6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o74e6d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gknpsx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gi8vrf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgpkb6t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg1tus-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lgd8bs-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgjbi8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgjbi8-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lgjbi8-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4p9xwnx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgtwy7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6g9dow-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6gdru6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6gdru6-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gdru6-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gdru6-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6qizr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6g9dow-QOP-lv6ga8kn¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + OutParameter + + + + + + fr.insee + l4lgqbdk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8lzthqx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh1bvw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh6w99 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if (¤l4lgd8bs-QOP-l4lg3zcd¤="1" or isnull(¤l4lgd8bs-QOP-l4lg3zcd¤)) then "cet enfant" else "cette enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || (" est") || (if (SEXE_ENFAIL2 = "1" or nvl(SEXE_ENFAIL2,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + + + + fr.insee + l4lhc03p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhc03p-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lhkbmw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhkbmw-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4liqyis-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6wbee + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj22ar-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bxvdy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4oo2unu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paergi + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo8gk0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4padk5u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4ooebmj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4liztyl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lk1w8p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljkmaj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o73m0u-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmxke4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljj44i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgpi52w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg3j5g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lg6nx5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgenh5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgenh5-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lgenh5-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4pa7lpq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lh0q7i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6g0wv2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6gixgd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6gixgd-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gixgd-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gixgd-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6idi8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6g0wv2-QOP-lv6gf0ty¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + OutParameter + + + + + + fr.insee + l4lgysxq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m0bu1o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh0ofl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh8af1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if (¤l4lg6nx5-QOP-l4lg6j08¤="1" or isnull(¤l4lg6nx5-QOP-l4lg6j08¤)) then "cet enfant" else "cette enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || (" est") || (if (SEXE_ENFAIL3 = "1" or nvl(SEXE_ENFAIL3,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + + + + fr.insee + l4lhbuxg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhbuxg-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lhdubm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhdubm-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lirpfm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai71v9g + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj2cqg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bf2u0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4oo41j6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paa00m + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo03nq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pac47a + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4ooe2gj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljddzv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmjzwd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljm6cp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7gt0n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmszob-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljg7fn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgq4efl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lg5t9v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lg3wub-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgfphb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgfphb-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lgfphb-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4paawvf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgr9ny-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6h7uqn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6gsj3o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6gsj3o-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gsj3o-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6gsj3o-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6nlan + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6h7uqn-QOP-lv6h5p0j¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + OutParameter + + + + + + fr.insee + l4lgo4yb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m03w7m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh1a42-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh0mk3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if (¤l4lg3wub-QOP-l4lg3510¤="1" or isnull(¤l4lg3wub-QOP-l4lg3510¤)) then "cet enfant" else "cette enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || (" est") || (if (SEXE_ENFAIL4 = "1" or nvl(SEXE_ENFAIL4,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + + + + fr.insee + l4lhbfxh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhbfxh-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lho0e2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lho0e2-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lj5kv6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai71ft1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lj0iea-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37btifk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4onwhrf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4pa6ogq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo4x1t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paauej + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo1817-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lixcs2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lms9a0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljmpiu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7jdze-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmvah7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljjvig-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgpyw4o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgayon-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l4lgep4c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lgp1ft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l4lgp1ft-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lgp1ft-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l4pabnh2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lgnphx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6h7z1u-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6hzzia-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6hzzia-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6hzzia-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6hzzia-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6st8x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6h7z1u-QOP-lv6h9n3d¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + OutParameter + + + + + + fr.insee + l4lh672z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8m0ld6c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lhcdf6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lh2kwz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if (¤l4lgep4c-QOP-l4lg9rqy¤="1" or isnull(¤l4lgep4c-QOP-l4lg9rqy¤)) then "cet enfant" else "cette enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || (" est") || (if (SEXE_ENFAIL5 = "1" or nvl(SEXE_ENFAIL5,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + + + + fr.insee + l4lh8c72-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lh8c72-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lhn614-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l4lhn614-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l4lj98cz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai73fre + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l4lijtvo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bjdsq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4oo41q4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paeclu + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo7lwi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4paiwz0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4oo5bj9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lizygc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lmc52p-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljxer7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o7vzru-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lms6u4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4ljcdar-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgq0pjg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oign0h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8oi92w4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oi7q9f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8oi7q9f-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8oi7q9f-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8oifpiy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8oientz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6i7gwi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6imul3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6imul3-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6imul3-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6imul3-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6ylje + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6i7gwi-QOP-lv6ierbo¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + OutParameter + + + + + + fr.insee + l8oidc2m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oib75g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ohus0v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ohgdgh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if (¤l8oi92w4-QOP-l8oihhrs¤="1" or isnull(¤l8oi92w4-QOP-l8oihhrs¤)) then "cet enfant" else "cette enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || (" est") || (if (SEXE_ENFAIL6 = "1" or nvl(SEXE_ENFAIL6,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + + + + fr.insee + l8ohrpn7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ohrpn7-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ohwpt9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ohwpt9-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8oh46rn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai78xq9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8ogysyp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bq99r + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8ogqig3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ogoo1k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8ogp9jo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ogttr2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8ogpnbn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + l8ogukpt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ob0dk4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oarkxm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oaqbj5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oanpzw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oasgat-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + fr.insee + lvgqbpim-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ok9kmj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8okbmv3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okh65e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8okh65e-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8okh65e-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ok97f5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8okc5z9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6hwis8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6kasxf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6kasxf-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6kasxf-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6kasxf-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6vlgi + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6hwis8-QOP-lv6i7g5p¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + OutParameter + + + + + + fr.insee + l8okdoof-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ok0d4y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ok0acp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ojoix6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if (¤l8okbmv3-QOP-l8ok3iy5¤="1" or isnull(¤l8okbmv3-QOP-l8ok3iy5¤)) then "cet enfant" else "cette enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || (" est") || (if (SEXE_ENFAIL7 = "1" or nvl(SEXE_ENFAIL7,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + + + + fr.insee + l8ojs3vl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ojs3vl-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ojuhud-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ojuhud-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ojmjws-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai6ugn5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8oj98gw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bxb48 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8ojczfv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ojdq5t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8ojb4ub-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj5v82 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8ojif3m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oja1pz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oiinpy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oj67fo-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oiu9ax-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oicj6e-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oizp0r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgq4gkg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8olci32-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l8olbhxj-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ol9xy3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l8ol9xy3-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ol9xy3-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l8okzirz + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8ola1mr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6igxed-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6khz5j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + lv6khz5j-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6khz5j-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6khz5j-CI-3-II-3 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + + + fr.insee + m0b6z62i + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤lv6igxed-QOP-lv6i2nr4¤="1" then "L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique." else "" + + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + OutParameter + + + + + + fr.insee + l8okz45l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ol369l-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8ole120-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oktakr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Notez 0 si "|| (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if (¤l8olbhxj-QOP-l8ol8o60¤="1" or isnull(¤l8olbhxj-QOP-l8ol8o60¤)) then "cet enfant" else "cette enfant") else ¤l8olci32-QOP-l8oln1gt¤) || (" est") || (if (SEXE_ENFAIL8 = "1" or nvl(SEXE_ENFAIL8,"") = "") then " décédé" else " décédée") || (" avant un an.") + + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + + + + fr.insee + l8olcd8n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8olcd8n-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8ol84b7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l8ol84b7-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l8okx7cd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai7cpw5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l8okpxv8-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bww1o + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l8okjfla-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okk3ew + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8okue2t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okt75e + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l8okxgwv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oksuft-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okked6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okkkef-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okfvhy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8okioqc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l8oklb21-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lvgq7nb7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + + + fr.insee + l1f65cp9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur vos éventuels petits-enfants, pour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s)." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l1f6a3qv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f6dz1j-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante au bon déroulement du questionnaire. Merci d'indiquer le nombre attendu." + + + + + fr.insee + l1f62ww0 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "S'il/elle a moins d'un an, notez 0." + + + + + fr.insee + l1f69ivh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l1f69ivh-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre âge et celui de votre petit-enfant ou l'aîné(e) de vos petits-enfants. Est-ce que vous confirmez ?" + + + + + fr.insee + l1g3k3v5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Plusieurs réponses possibles si vous avez plusieurs petits-enfants." else "" + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + + fr.insee + l1g3hka7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g3h5xf + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "" || if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Plusieurs réponses possibles si vous avez plusieurs petits-enfants." else "" + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + + fr.insee + l1f4yrno-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g898c1 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur les aides apportées ou reçues de votre famille (vivant ou non avec vous) et sur votre entourage, pour connaître les solidarités familiales." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l1g850jr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1g87t8t-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g87t8t-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher ''Non'' et une autre réponse." + + + + + fr.insee + l1ggjolj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1ggssgl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwjdktjr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7u9156 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7u5rox-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwjdh5hg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7tyeij + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7tzp47-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwjdliqx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7uhfpt + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7u3zby-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwjdck88 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1ggq5nj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1ggm06b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci de d'indiquer votre choix." + + + + + fr.insee + lwjdzn52 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7vvhgi + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7vzo64-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwje7875 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine…" + + + + + fr.insee + lwjdyva5 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté." + + + + + fr.insee + lwje51m9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7wa2u6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7w4b79-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwje21i9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7vyoea + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7w7lh9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkqu2zn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1ggjqp6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1ggtznr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkqvnxv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7w6t91 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7w2d1u-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkr2tjx + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7wcsbh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7w9t0f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkqvrmr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7wjiyq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7w2fuz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkqx8lw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l4lfdg0x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l4lf0y9m-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwkr69jj + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7wrt9b + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7wj733-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwolw517 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7wuhf2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7wk34s-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwom2yel + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7wrgir + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7wj3l9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwom8msv + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1g8hmv7 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1g8o84g-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g8o84g-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher ''Non'' et une autre réponse." + + + + + fr.insee + l1ggnslo + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1ggpjd7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwolyqrn + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7yee2v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7yo1jt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomheib + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7yl9zk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7y7vqk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomfh9p + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7y7t67 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7yq0ti-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwom7phy + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1gglc9h + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1ggp8js-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomh51o + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7ysi78 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7yq329-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomc7zr + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7yyleh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7yo7oh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomfoi3 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7yn7me + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7ypwx5-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwomf48x + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1ggm7zg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l1gh36ky-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwonnp1n + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7z069s + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7yqyln-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwontn65 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7z8p6k + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7z0jkp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwonw0e2 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + lw7yy5nw + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + lw7z13d4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lwonyr58 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine... +Plusieurs réponses possibles." + + + + + fr.insee + l1g8apw2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw7ok0js + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lumpggg9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l43tgurz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw54qysp + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw54iesv-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsh65o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lump9kgk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw54rnpa + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw54raav-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsobo2-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4r7fofh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur vos parents, en vie ou non (père, mère, personnes que vous considérez comme tels), pour connaître votre histoire familiale." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l0wezuxl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", commençons par décrire votre parent le plus âgé, encore en vie ou non (père, mère ou personne que vous considérez comme tel)." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l2kjnm8k-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l6c4w3ax + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + l2kjy49o-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l2kjy49o-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l2kjy49o-CI-2-II-2 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + + + fr.insee + l2kkvar7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywp1vk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyodc4o8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + lyod84wr-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kk539f-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyocgyi4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o5gqap + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + l4qzje64 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + l45cjoj7-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l2kjshy4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lpsjtgha + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille." + + + + + fr.insee + lpsjlk6w-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgo5n7b-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgqspnh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + laiaq49f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lumppr7y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l447j7cx-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6dxulv + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6don31-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsnsej-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lumptzfb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6dp4zm + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6dyxml-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsdl5a-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lumptuhp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6eje0w + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6ecsey-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumswm4d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l2kjzugb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyfjla01 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + l2kkd59n-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + l2kkd59n-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l2kkd59n-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l2kk4snz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai78qvl + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + l2kkb4xa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bjnw8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4onhpvd-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o88r3u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4o7ufzl-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o8fj6f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4o8eale-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ezkqes-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kkeqsz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kk296y-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4lojzxg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43yap7r-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l5axrwsa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + las2uh3c + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", décrivez maintenant votre autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel)." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l27ijusa-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu." + + + + + fr.insee + l6c4ofs8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + kwqfufye-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqfufye-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqfufye-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l27ig4yy-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyoc66rt-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyodrjfm + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + lyod9pq3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqfhhge-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l7ywxphs-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o51lf6 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + l4qzsxov + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de profession recherché et sélectionnez-le dans la liste. +Si vous ne le trouvez pas, passez à la question suivante. +Saisissez bien la dernière profession connue." + + + + + fr.insee + l444t31z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + kwqfto3c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lptlri1y + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille." + + + + + fr.insee + lptlrxcc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgosp3i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llgrqyqg-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + laiap5v8 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lums0dcm-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l444xjux-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6evsck + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6eh4up-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsfeeu-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lums26pp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6f4k4x + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6euv9i-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumsp0o4-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + lumrz70d-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lw6enpw6 + 1 + + help + + + + "Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. +Si vous ne le trouvez pas, passez à la question suivante." + + + + + fr.insee + lw6er2dw-CI-0-II-0 + 1 + + warning + + + + "Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger." + + + + + fr.insee + lumso5hv-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + kwqhjfzk-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyfjyqfg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Indiquez une année approximative si vous ne savez pas précisément." + + + + + fr.insee + kwqg35i9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue." + + + + + fr.insee + kwqg35i9-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + kwqg35i9-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + lley7g7u + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + kwqgffvw-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + kwqgffvw-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher ''Ailleurs'' et une autre réponse." + + + + + fr.insee + lab6xfk9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lai7elua + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Prenez en compte les frontières actuelles." + + + + + fr.insee + kwqgawqp-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + m37bku4y + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez la commune recherchée et sélectionnez-la dans la liste." + + + + + fr.insee + l4onk34z-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o87prg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le département recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4o8co0c-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4o8fiwd + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Saisissez le pays recherché et sélectionnez-le dans la liste." + + + + + fr.insee + l4o8dk7q-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l2kkc8s9-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1gl4054-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1ezkbsf-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l445itcb-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4cjeqc0-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + llf2bmj4 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions sur votre enfance et votre parcours de vie." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + l8m20psg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucun, notez 0." + + + + + fr.insee + l473kp51-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ikk5zq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l4740wd1-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l4740wd1-CI-1-II-1 + 1 + + warning + + + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + + + fr.insee + l8m2azyh + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si aucune, notez 0." + + + + + fr.insee + l4742c2v-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l5ikyrbc-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l473w273-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse." + + + + + fr.insee + l473w273-CI-1-II-1 + 1 + + warning + + + + "Le nombre de soeurs vivantes ne peut pas être supérieur au nombre total de soeurs." + + + + + fr.insee + l1f5lf8v + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ne comptez pas la pension ou l'internat comme un départ. +Indiquez 99 ans si vous n'êtes jamais parti" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || "." + + + + + fr.insee + l1f5th3i-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + l1f5th3i-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge de départ de chez vos parents supérieur à votre âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l1f693hk + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Décrivez toutes les situations que vous avez connues." + + + + + fr.insee + l1f61fa3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43ttd47-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l43u116f + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles." + + + + + fr.insee + l43u439h-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1f65zkh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g3mygg + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quelques questions pour finir sur vos études et votre vie professionnelle, afin de connaître la chronologie des événements entre la mise en couple, l'arrivée des enfants, la fin des études ou la date du premier emploi." + + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + + + + fr.insee + lletj5dq + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si vous êtes en reprise d'études après une interruption d'un an ou plus, répondez ''Oui''. +Si vous êtes en année de césure ou en reprise d'études après une interruption de moins d'un an, répondez ''Non''." + + + + + fr.insee + l1g3unwh-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lv6l5ubb + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si vous avez repris vos études après plus d'un an d'interruption, indiquez la date de votre premier arrêt. +Si vous préférez donner l'âge plutôt que l'année, passez à la question suivante." + + + + + fr.insee + l1g3yk6q-CI-0-II-0 + 1 + + warning + + + + "Vous avez indiqué une année de fin d'études antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l1g3yk6q-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et votre année de fin d'études. Est-ce que vous confirmez ?" + + + + + fr.insee + m21m8r1b + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si vous avez repris vos études après plus d'un an d'interruption, indiquez votre âge lors de votre premier arrêt." + + + + + fr.insee + lv6kuuw3-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + lv6kuuw3-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge de fin d'études supérieur à votre âge. Est-ce que vous confirmez ?" + + + + + fr.insee + l445x7tq-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g7pgbn-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lumnhjfi-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + lyfjaey7 + 1 + + instruction + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si vous préférez donner l'âge plutôt que l'année, passez à la question suivante." + + + + + fr.insee + l1g4pid1-CI-0-II-0 + 1 + + warning + + + + "Vous avez indiqué une année de premier emploi antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l1g4pid1-CI-1-II-1 + 1 + + warning + + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier emploi. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6l9f59-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + lv6l9f59-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge de premier emploi supérieur à votre âge. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6mopqc + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Si vous préférez donner l'âge plutôt que l'année, passez à la question suivante." + + + + + fr.insee + l1g7iu0j-CI-0-II-0 + 1 + + warning + + + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + + fr.insee + l1g7iu0j-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de premier emploi. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6m34hz-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu." + + + + + fr.insee + lv6m34hz-CI-1-II-1 + 1 + + warning + + + + "Vous avez indiqué un âge de cessation d'activité supérieur à votre âge. Est-ce que vous confirmez ?" + + + + + fr.insee + lv6m34hz-CI-2-II-2 + 1 + + warning + + + + "Vous avez indiqué un âge de cessation d'activité inférieur à votre âge de premier emploi. Est-ce que vous confirmez ?" + + + + + fr.insee + m167ldst + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + if ¤TYPE_QUEST¤="2" then ("Ne comptez pas le congé maternité comme une interruption. +Plusieurs réponses possibles.") else "Plusieurs réponses possibles." + + + + + fr.insee + l1g7vwo6-CI-0-II-0 + 1 + + warning + + + + "Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix." + + + + + fr.insee + l1g7vwo6-CI-1-II-1 + 1 + + warning + + + + "Vous ne pouvez pas cocher la première réponse et une autre réponse." + + + + + fr.insee + m0ksxw7d + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Ces entretiens seront réalisés dans le respect du secret statistique." + + + + + fr.insee + m0ksxt5t + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Plusieurs réponses possibles. +Vos coordonnées ne seront utilisées que pour cet entretien et ne seront transmises à aucun tiers." + + + + + fr.insee + m0ksxrza + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Votre adresse mail ne sera utilisée que pour vous contacter dans le cadre de cet entretien et ne sera transmise à aucun tiers." + + + + + fr.insee + m0ksqayr-CI-0-II-0 + 1 + + warning + + + + "L'adresse que vous avez renseignée n'est pas une adresse électronique valide. Merci de la corriger." + + + + + fr.insee + m0kta94l + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Votre(Vos) numéro(s) de téléphone ne sera(seront) utilisé(s) que pour vous contacter dans le cadre de cet entretien et ne sera(seront) transmis à aucun tiers." + + + + + fr.insee + lagud3o9 + 1 + + help + + + SelfAdministeredQuestionnaire.WebBased + + + + "Vous avez terminé de répondre au questionnaire et nous vous en remercions. +Pour que votre réponse soit prise en compte, n'oubliez pas de cliquer sur ''Continuer'' pour accéder à la validation finale de votre questionnaire." + + + + + + fr.insee + ControlConstructScheme-m4754kes + 1 + + fr.insee + Sequence-m4754kes + 1 + + Enquête Familles 2025 + + template + + fr.insee + l473bp2x + 1 + Sequence + + + fr.insee + lywy061z + 1 + Sequence + + + fr.insee + l4ctrkzx + 1 + Sequence + + + + fr.insee + l473bp2x + 1 + + REPONDANT + + + "La/les personne(s) concernée(s) par l'enquête" + + module + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lywyuxtl + 1 + + DESCRIPTION + + + "Cette enquête concerne " || ¤RPPRENOM¤ + + submodule + + fr.insee + l473latk-QC + 1 + QuestionConstruct + + + fr.insee + l473latk-CI-0 + 1 + ComputationItem + + + fr.insee + ly4cb0ve + 1 + IfThenElse + + + fr.insee + ly4blyt6-QC + 1 + QuestionConstruct + + + fr.insee + ly4blyt6-CI-0 + 1 + ComputationItem + + + fr.insee + ly4cg6t0 + 1 + IfThenElse + + + fr.insee + ly4g6m44 + 1 + IfThenElse + + + + fr.insee + kwq9l9z1 + 1 + + INFO + + + "Informations concernant " || nvl(¤ltd23kmk-GOP¤,"cette personne") + + + fr.insee + l2sstox3 + 1 + Instruction + + module + + fr.insee + kwq9y19w-QC + 1 + QuestionConstruct + + + fr.insee + kwq9y19w-CI-0 + 1 + ComputationItem + + + fr.insee + l151hcqh + 1 + IfThenElse + + + fr.insee + li359fnd + 1 + IfThenElse + + + fr.insee + lyye1226 + 1 + IfThenElse + + + + fr.insee + kwqaaqd3 + 1 + + CONJOINT + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") + + + fr.insee + l34fbn76 + 1 + Instruction + + module + + fr.insee + l34grb6h-QC + 1 + QuestionConstruct + + + fr.insee + l34grb6h-CI-0 + 1 + ComputationItem + + + fr.insee + l154t9l0 + 1 + Sequence + + + fr.insee + l27f5twb + 1 + Sequence + + + fr.insee + ljmotpyk + 1 + Sequence + + + + fr.insee + l154t9l0 + 1 + + DESCRIPTION_C + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") + + submodule + + fr.insee + kwqa0ism-QC + 1 + QuestionConstruct + + + fr.insee + kwqa0ism-CI-0 + 1 + ComputationItem + + + fr.insee + llde8dw2 + 1 + IfThenElse + + + fr.insee + lldq4gfz + 1 + IfThenElse + + + + fr.insee + l27f5twb + 1 + + VIECOUPLE + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", les étapes de votre" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then " dernière" else "") || " vie en couple " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "actuelle " else " ") + + + fr.insee + l27ezxol + 1 + Instruction + + submodule + + fr.insee + l27dlmvl-QC + 1 + QuestionConstruct + + + fr.insee + l27dlmvl-CI-0 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-1 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-2 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-3 + 1 + ComputationItem + + + fr.insee + l27dlmvl-CI-4 + 1 + ComputationItem + + + fr.insee + kwqa4zjf-QC + 1 + QuestionConstruct + + + fr.insee + kwqa4zjf-CI-0 + 1 + ComputationItem + + + fr.insee + l27e5a64 + 1 + IfThenElse + + + fr.insee + l0qujqzn-QC + 1 + QuestionConstruct + + + fr.insee + l0qujqzn-CI-0 + 1 + ComputationItem + + + fr.insee + l27dwvi6 + 1 + IfThenElse + + + fr.insee + l27f7ctt + 1 + IfThenElse + + + fr.insee + m155d1hl + 1 + IfThenElse + + + + fr.insee + ljmotpyk + 1 + + ENFANTCOUPLE + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", les enfants de votre" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " conjoint(e) actuel(le) " else " dernier(ère) conjoint(e) ") || nvl(¤l34grb6h-QOP-l34guyz9¤,"") + + + fr.insee + ly5u0pb7 + 1 + Instruction + + submodule + + fr.insee + l43u9qqf-QC + 1 + QuestionConstruct + + + fr.insee + l43u9qqf-CI-0 + 1 + ComputationItem + + + fr.insee + liiz3gaj + 1 + IfThenElse + + + fr.insee + liiyov5q + 1 + IfThenElse + + + + fr.insee + lldr8qge + 1 + + PERIODES_COUPLE + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", vos précédentes périodes de vie en couple" + + + fr.insee + lldrbrp9 + 1 + Instruction + + module + + fr.insee + l15131wu-QC + 1 + QuestionConstruct + + + fr.insee + l15131wu-CI-0 + 1 + ComputationItem + + + fr.insee + m0b4cyvo + 1 + IfThenElse + + + + fr.insee + m17k80xk + 1 + + VIECOUPLE1 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre première période de vie en couple" + + + fr.insee + m17k46xb + 1 + Instruction + + module + + fr.insee + kwqa53jx-QC + 1 + QuestionConstruct + + + fr.insee + kwqa53jx-CI-0 + 1 + ComputationItem + + + fr.insee + lldegcfi + 1 + IfThenElse + + + fr.insee + lldeh60s + 1 + IfThenElse + + + fr.insee + l34fzu5m-QC + 1 + QuestionConstruct + + + fr.insee + l34fzu5m-CI-0 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-1 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-2 + 1 + ComputationItem + + + fr.insee + l34fzu5m-CI-3 + 1 + ComputationItem + + + fr.insee + l27dlnmq-QC + 1 + QuestionConstruct + + + fr.insee + l27dlnmq-CI-0 + 1 + ComputationItem + + + fr.insee + l27dvgfz + 1 + IfThenElse + + + fr.insee + l27duust-QC + 1 + QuestionConstruct + + + fr.insee + l27duust-CI-0 + 1 + ComputationItem + + + fr.insee + l27e9z6f + 1 + IfThenElse + + + fr.insee + l5ktf1wn-QC + 1 + QuestionConstruct + + + fr.insee + l5ktf1wn-CI-0 + 1 + ComputationItem + + + fr.insee + l27dyrt7 + 1 + IfThenElse + + + fr.insee + l27egeg1 + 1 + IfThenElse + + + fr.insee + m17u0lwv + 1 + IfThenElse + + + + fr.insee + ly7a1b7g + 1 + + ENFANT_U1 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", les enfants de votre " || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "premier conjoint " else "première conjointe ") || nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"") + + + fr.insee + lzts7qyr + 1 + Instruction + + submodule + + fr.insee + l4cjg2rp-QC + 1 + QuestionConstruct + + + fr.insee + l4cjg2rp-CI-0 + 1 + ComputationItem + + + fr.insee + l4cjjud7 + 1 + IfThenElse + + + + fr.insee + m17k1dbo + 1 + + VIECOUPLE2 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", une autre période de vie en couple" + + + fr.insee + m17k9qbw + 1 + Instruction + + module + + fr.insee + l9il0i0h-QC + 1 + QuestionConstruct + + + fr.insee + l9il0i0h-CI-0 + 1 + ComputationItem + + + fr.insee + l9r6arh1 + 1 + IfThenElse + + + fr.insee + lzsfd56s + 1 + IfThenElse + + + + fr.insee + ly7ayc3i + 1 + + ENFANT_U2 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", les enfants de votre autre " || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "conjoint " else "conjointe ") || nvl(¤l9ilcol6-QOP-l9il24xt¤,"") + + + fr.insee + ly7b5h1s + 1 + Instruction + + submodule + + fr.insee + l9ikxndo-QC + 1 + QuestionConstruct + + + fr.insee + l9ikxndo-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikyhx5 + 1 + IfThenElse + + + + fr.insee + kwqi91j9 + 1 + + ENFANTS + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", vos enfants qui vivent avec vous ou non" + + + fr.insee + l34i0o62 + 1 + Instruction + + module + + fr.insee + ljmulh27 + 1 + Sequence + + + fr.insee + l4qswa5h + 1 + IfThenElse + + + fr.insee + l4nw2vbq + 1 + IfThenElse + + + fr.insee + l4le5g6d + 1 + IfThenElse + + + fr.insee + l4lf1r7t + 1 + IfThenElse + + + fr.insee + l4lg777d + 1 + IfThenElse + + + fr.insee + l8n313zq + 1 + IfThenElse + + + fr.insee + l8n3phvb + 1 + IfThenElse + + + fr.insee + l8n410d7 + 1 + IfThenElse + + + fr.insee + l4qsy750 + 1 + IfThenElse + + + fr.insee + l4lnzqvx + 1 + IfThenElse + + + fr.insee + l4loausq + 1 + IfThenElse + + + fr.insee + ljoexgb3 + 1 + IfThenElse + + + fr.insee + ljoet34y + 1 + IfThenElse + + + fr.insee + ljoevvfr + 1 + IfThenElse + + + fr.insee + ljofcoik + 1 + IfThenElse + + + fr.insee + ljof97j4 + 1 + IfThenElse + + + + fr.insee + ljmulh27 + 1 + + DESCRIPTION_ENF + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", description de vos enfants qui vivent avec vous ou non" + + submodule + + fr.insee + kwqigxtx-QC + 1 + QuestionConstruct + + + fr.insee + kwqigxtx-CI-0 + 1 + ComputationItem + + + fr.insee + kwqijmkn + 1 + IfThenElse + + + + fr.insee + l446h6js + 1 + + VOSENFLOG1 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre " || (if (¤l4lcr3vb-QOP-l4lcyzfy¤=1 or isnull(¤l4lcr3vb-QOP-l4lcyzfy¤) or ¤l4idom4o-QOP-l4idkl19¤="1" ) then "enfant" else "premier enfant") || " qui vit avec vous, même une petite partie du temps seulement" + + + fr.insee + l446p7s5 + 1 + Instruction + + submodule + + fr.insee + l446nede-QC + 1 + QuestionConstruct + + + fr.insee + l446nede-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjk80w-QC + 1 + QuestionConstruct + + + fr.insee + kwqjk80w-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmq2o-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-CI-1 + 1 + ComputationItem + + + fr.insee + kwqjmq2o-CI-2 + 1 + ComputationItem + + + fr.insee + l4qtls9o-QC + 1 + QuestionConstruct + + + fr.insee + l4qtls9o-CI-0 + 1 + ComputationItem + + + fr.insee + lv3u6ier + 1 + IfThenElse + + + fr.insee + lv5d123c + 1 + IfThenElse + + + fr.insee + kwqjol7e-QC + 1 + QuestionConstruct + + + fr.insee + kwqjol7e-CI-0 + 1 + ComputationItem + + + fr.insee + l4471oef + 1 + IfThenElse + + + fr.insee + l1gia5uh-QC + 1 + QuestionConstruct + + + fr.insee + l1gia5uh-CI-0 + 1 + ComputationItem + + + fr.insee + lvgn6d99-QC + 1 + QuestionConstruct + + + fr.insee + lvgn6d99-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmv0rhg + 1 + + VOSENFLOG2 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l4i9118b-QC + 1 + QuestionConstruct + + + fr.insee + l4i9118b-CI-0 + 1 + ComputationItem + + + fr.insee + l4i8zu5m-QC + 1 + QuestionConstruct + + + fr.insee + l4i8zu5m-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-QC + 1 + QuestionConstruct + + + fr.insee + l4ia7rxn-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-CI-1 + 1 + ComputationItem + + + fr.insee + l4ia7rxn-CI-2 + 1 + ComputationItem + + + fr.insee + l4qtpg9f-QC + 1 + QuestionConstruct + + + fr.insee + l4qtpg9f-CI-0 + 1 + ComputationItem + + + fr.insee + lv3us8vl + 1 + IfThenElse + + + fr.insee + l4iano52-QC + 1 + QuestionConstruct + + + fr.insee + l4iano52-CI-0 + 1 + ComputationItem + + + fr.insee + l4idm31n + 1 + IfThenElse + + + fr.insee + l4ia7y0p-QC + 1 + QuestionConstruct + + + fr.insee + l4ia7y0p-CI-0 + 1 + ComputationItem + + + fr.insee + lvgneyls-QC + 1 + QuestionConstruct + + + fr.insee + lvgneyls-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmvg6vc + 1 + + VOSENFLOG3 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre troisième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l4ld0ziw-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0ziw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lcp4co-QC + 1 + QuestionConstruct + + + fr.insee + l4lcp4co-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-QC + 1 + QuestionConstruct + + + fr.insee + l4ld3y0j-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-CI-1 + 1 + ComputationItem + + + fr.insee + l4ld3y0j-CI-2 + 1 + ComputationItem + + + fr.insee + l4qty53i-QC + 1 + QuestionConstruct + + + fr.insee + l4qty53i-CI-0 + 1 + ComputationItem + + + fr.insee + lv3vglpr + 1 + IfThenElse + + + fr.insee + l4lct7cb-QC + 1 + QuestionConstruct + + + fr.insee + l4lct7cb-CI-0 + 1 + ComputationItem + + + fr.insee + l4ldkvn7 + 1 + IfThenElse + + + fr.insee + l4lcuoke-QC + 1 + QuestionConstruct + + + fr.insee + l4lcuoke-CI-0 + 1 + ComputationItem + + + fr.insee + lvgnpugy-QC + 1 + QuestionConstruct + + + fr.insee + lvgnpugy-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmv7iyw + 1 + + VOSENFLOG4 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l4lec0rk-QC + 1 + QuestionConstruct + + + fr.insee + l4lec0rk-CI-0 + 1 + ComputationItem + + + fr.insee + l4lefdoh-QC + 1 + QuestionConstruct + + + fr.insee + l4lefdoh-CI-0 + 1 + ComputationItem + + + fr.insee + l4le9rs3-QC + 1 + QuestionConstruct + + + fr.insee + l4le9rs3-CI-0 + 1 + ComputationItem + + + fr.insee + l4le9rs3-CI-1 + 1 + ComputationItem + + + fr.insee + l4le9rs3-CI-2 + 1 + ComputationItem + + + fr.insee + l4qtvt71-QC + 1 + QuestionConstruct + + + fr.insee + l4qtvt71-CI-0 + 1 + ComputationItem + + + fr.insee + lv3w7y6g + 1 + IfThenElse + + + fr.insee + l4ler7fu-QC + 1 + QuestionConstruct + + + fr.insee + l4ler7fu-CI-0 + 1 + ComputationItem + + + fr.insee + l4leyz4g + 1 + IfThenElse + + + fr.insee + l4lec2qz-QC + 1 + QuestionConstruct + + + fr.insee + l4lec2qz-CI-0 + 1 + ComputationItem + + + fr.insee + lvgnp3j5-QC + 1 + QuestionConstruct + + + fr.insee + lvgnp3j5-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmv5mgh + 1 + + VOSENFLOG5 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l4leulqw-QC + 1 + QuestionConstruct + + + fr.insee + l4leulqw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lem0yg-QC + 1 + QuestionConstruct + + + fr.insee + l4lem0yg-CI-0 + 1 + ComputationItem + + + fr.insee + l4lffj1f-QC + 1 + QuestionConstruct + + + fr.insee + l4lffj1f-CI-0 + 1 + ComputationItem + + + fr.insee + l4lffj1f-CI-1 + 1 + ComputationItem + + + fr.insee + l4lffj1f-CI-2 + 1 + ComputationItem + + + fr.insee + l4qtm8di-QC + 1 + QuestionConstruct + + + fr.insee + l4qtm8di-CI-0 + 1 + ComputationItem + + + fr.insee + lv5dje1f + 1 + IfThenElse + + + fr.insee + l4lfye1g-QC + 1 + QuestionConstruct + + + fr.insee + l4lfye1g-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg52ne + 1 + IfThenElse + + + fr.insee + l4lfclty-QC + 1 + QuestionConstruct + + + fr.insee + l4lfclty-CI-0 + 1 + ComputationItem + + + fr.insee + lvgo5arn-QC + 1 + QuestionConstruct + + + fr.insee + lvgo5arn-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmvjhon + 1 + + VOSENFLOG6 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre sixième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l8n2umnw-QC + 1 + QuestionConstruct + + + fr.insee + l8n2umnw-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2e1mr-QC + 1 + QuestionConstruct + + + fr.insee + l8n2e1mr-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2lctv-QC + 1 + QuestionConstruct + + + fr.insee + l8n2lctv-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2lctv-CI-1 + 1 + ComputationItem + + + fr.insee + l8n2lctv-CI-2 + 1 + ComputationItem + + + fr.insee + l8n2gmuq-QC + 1 + QuestionConstruct + + + fr.insee + l8n2gmuq-CI-0 + 1 + ComputationItem + + + fr.insee + lv6e7cv1 + 1 + IfThenElse + + + fr.insee + l8n2ilpb-QC + 1 + QuestionConstruct + + + fr.insee + l8n2ilpb-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2b0y0 + 1 + IfThenElse + + + fr.insee + l8n2hdgw-QC + 1 + QuestionConstruct + + + fr.insee + l8n2hdgw-CI-0 + 1 + ComputationItem + + + fr.insee + lvgnrib2-QC + 1 + QuestionConstruct + + + fr.insee + lvgnrib2-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmvjzfz + 1 + + VOSENFLOG7 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre septième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l8n3pb4f-QC + 1 + QuestionConstruct + + + fr.insee + l8n3pb4f-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3mik2-QC + 1 + QuestionConstruct + + + fr.insee + l8n3mik2-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-QC + 1 + QuestionConstruct + + + fr.insee + l8n3jmk8-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-CI-1 + 1 + ComputationItem + + + fr.insee + l8n3jmk8-CI-2 + 1 + ComputationItem + + + fr.insee + l8n36fv3-QC + 1 + QuestionConstruct + + + fr.insee + l8n36fv3-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ewl7s + 1 + IfThenElse + + + fr.insee + l8n3ff6s-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ff6s-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3khpg + 1 + IfThenElse + + + fr.insee + l8n3bp4o-QC + 1 + QuestionConstruct + + + fr.insee + l8n3bp4o-CI-0 + 1 + ComputationItem + + + fr.insee + lvgp60q8-QC + 1 + QuestionConstruct + + + fr.insee + lvgp60q8-CI-0 + 1 + ComputationItem + + + + fr.insee + ljmvnzv4 + 1 + + VOSENFLOG8 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre huitième enfant qui vit avec vous, même une petite partie du temps seulement" + + submodule + + fr.insee + l8n4cayp-QC + 1 + QuestionConstruct + + + fr.insee + l8n4cayp-CI-0 + 1 + ComputationItem + + + fr.insee + l8n406m9-QC + 1 + QuestionConstruct + + + fr.insee + l8n406m9-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tya0-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tya0-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tya0-CI-1 + 1 + ComputationItem + + + fr.insee + l8n3tya0-CI-2 + 1 + ComputationItem + + + fr.insee + l8n3vr8b-QC + 1 + QuestionConstruct + + + fr.insee + l8n3vr8b-CI-0 + 1 + ComputationItem + + + fr.insee + lv6fau50 + 1 + IfThenElse + + + fr.insee + l8n427a2-QC + 1 + QuestionConstruct + + + fr.insee + l8n427a2-CI-0 + 1 + ComputationItem + + + fr.insee + l8n470rx + 1 + IfThenElse + + + fr.insee + l8n3uqr2-QC + 1 + QuestionConstruct + + + fr.insee + l8n3uqr2-CI-0 + 1 + ComputationItem + + + fr.insee + lvgp89uy-QC + 1 + QuestionConstruct + + + fr.insee + lvgp89uy-CI-0 + 1 + ComputationItem + + + + fr.insee + l447aq23 + 1 + + VOSENFAIL1 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre " || (if (¤l4lfzig7-QOP-l4lgbag5¤=1 or isnull(¤l4lfzig7-QOP-l4lgbag5¤) or ¤ltd0h1g7-QOP-ltd0m6q3¤="1" ) then "enfant" else "premier enfant") || " qui ne vit pas avec vous ou qui est décédé(e)" + + + fr.insee + l447etvc + 1 + Instruction + + submodule + + fr.insee + l4idug6p-QC + 1 + QuestionConstruct + + + fr.insee + l4idug6p-CI-0 + 1 + ComputationItem + + + fr.insee + kwqix1j5-QC + 1 + QuestionConstruct + + + fr.insee + kwqix1j5-CI-0 + 1 + ComputationItem + + + fr.insee + kwqj561a-QC + 1 + QuestionConstruct + + + fr.insee + kwqj561a-CI-0 + 1 + ComputationItem + + + fr.insee + kwqj561a-CI-1 + 1 + ComputationItem + + + fr.insee + kwqj561a-CI-2 + 1 + ComputationItem + + + fr.insee + l4cjlk0i-QC + 1 + QuestionConstruct + + + fr.insee + l4cjlk0i-CI-0 + 1 + ComputationItem + + + fr.insee + lv6g2rid + 1 + IfThenElse + + + fr.insee + lv6g9m57 + 1 + IfThenElse + + + fr.insee + l4cjivdg-QC + 1 + QuestionConstruct + + + fr.insee + l4cjivdg-CI-0 + 1 + ComputationItem + + + fr.insee + l8lzngsq + 1 + IfThenElse + + + fr.insee + l4485tkr-QC + 1 + QuestionConstruct + + + fr.insee + l4485tkr-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdinbs + 1 + IfThenElse + + + fr.insee + l448gpc1 + 1 + IfThenElse + + + fr.insee + l48e5rva + 1 + IfThenElse + + + + fr.insee + ljmwx9yl + 1 + + VOSENFAIL2 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre deuxième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l4lg1tus-QC + 1 + QuestionConstruct + + + fr.insee + l4lg1tus-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgd8bs-QC + 1 + QuestionConstruct + + + fr.insee + l4lgd8bs-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-QC + 1 + QuestionConstruct + + + fr.insee + l4lgjbi8-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgjbi8-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgtwy7-QC + 1 + QuestionConstruct + + + fr.insee + l4lgtwy7-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gbc7o + 1 + IfThenElse + + + fr.insee + l4lgqbdk-QC + 1 + QuestionConstruct + + + fr.insee + l4lgqbdk-CI-0 + 1 + ComputationItem + + + fr.insee + l8m0kidv + 1 + IfThenElse + + + fr.insee + l4lh1bvw-QC + 1 + QuestionConstruct + + + fr.insee + l4lh1bvw-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdovhd + 1 + IfThenElse + + + fr.insee + l4lnn260 + 1 + IfThenElse + + + fr.insee + l4lnyip6 + 1 + IfThenElse + + + + fr.insee + ljmwnjny + 1 + + VOSENFAIL3 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre troisième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l4lg3j5g-QC + 1 + QuestionConstruct + + + fr.insee + l4lg3j5g-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg6nx5-QC + 1 + QuestionConstruct + + + fr.insee + l4lg6nx5-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgenh5-QC + 1 + QuestionConstruct + + + fr.insee + l4lgenh5-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgenh5-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgenh5-CI-2 + 1 + ComputationItem + + + fr.insee + l4lh0q7i-QC + 1 + QuestionConstruct + + + fr.insee + l4lh0q7i-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gelnt + 1 + IfThenElse + + + fr.insee + l4lgysxq-QC + 1 + QuestionConstruct + + + fr.insee + l4lgysxq-CI-0 + 1 + ComputationItem + + + fr.insee + l8m0jyzr + 1 + IfThenElse + + + fr.insee + l4lh0ofl-QC + 1 + QuestionConstruct + + + fr.insee + l4lh0ofl-CI-0 + 1 + ComputationItem + + + fr.insee + l5jd8k6b + 1 + IfThenElse + + + fr.insee + l4lo0hmx + 1 + IfThenElse + + + fr.insee + l4lnxn2v + 1 + IfThenElse + + + + fr.insee + ljof3wlm + 1 + + VOSENFAIL4 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre quatrième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l4lg5t9v-QC + 1 + QuestionConstruct + + + fr.insee + l4lg5t9v-CI-0 + 1 + ComputationItem + + + fr.insee + l4lg3wub-QC + 1 + QuestionConstruct + + + fr.insee + l4lg3wub-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgfphb-QC + 1 + QuestionConstruct + + + fr.insee + l4lgfphb-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgfphb-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgfphb-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgr9ny-QC + 1 + QuestionConstruct + + + fr.insee + l4lgr9ny-CI-0 + 1 + ComputationItem + + + fr.insee + lv6heef5 + 1 + IfThenElse + + + fr.insee + l4lgo4yb-QC + 1 + QuestionConstruct + + + fr.insee + l4lgo4yb-CI-0 + 1 + ComputationItem + + + fr.insee + l8m04lnr + 1 + IfThenElse + + + fr.insee + l4lh1a42-QC + 1 + QuestionConstruct + + + fr.insee + l4lh1a42-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdq77k + 1 + IfThenElse + + + fr.insee + l4lnrwjq + 1 + IfThenElse + + + fr.insee + l4lnlsmv + 1 + IfThenElse + + + + fr.insee + ljof7iet + 1 + + VOSENFAIL5 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre cinquième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l4lgayon-QC + 1 + QuestionConstruct + + + fr.insee + l4lgayon-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgep4c-QC + 1 + QuestionConstruct + + + fr.insee + l4lgep4c-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-QC + 1 + QuestionConstruct + + + fr.insee + l4lgp1ft-CI-0 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-CI-1 + 1 + ComputationItem + + + fr.insee + l4lgp1ft-CI-2 + 1 + ComputationItem + + + fr.insee + l4lgnphx-QC + 1 + QuestionConstruct + + + fr.insee + l4lgnphx-CI-0 + 1 + ComputationItem + + + fr.insee + lv6hy9lz + 1 + IfThenElse + + + fr.insee + l4lh672z-QC + 1 + QuestionConstruct + + + fr.insee + l4lh672z-CI-0 + 1 + ComputationItem + + + fr.insee + l8m09ijs + 1 + IfThenElse + + + fr.insee + l4lhcdf6-QC + 1 + QuestionConstruct + + + fr.insee + l4lhcdf6-CI-0 + 1 + ComputationItem + + + fr.insee + l5jdpoid + 1 + IfThenElse + + + fr.insee + l4lnut2u + 1 + IfThenElse + + + fr.insee + l4lnsxgt + 1 + IfThenElse + + + + fr.insee + ljoezdxm + 1 + + VOSENFAIL6 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre sixième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l8oign0h-QC + 1 + QuestionConstruct + + + fr.insee + l8oign0h-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi92w4-QC + 1 + QuestionConstruct + + + fr.insee + l8oi92w4-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-QC + 1 + QuestionConstruct + + + fr.insee + l8oi7q9f-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-CI-1 + 1 + ComputationItem + + + fr.insee + l8oi7q9f-CI-2 + 1 + ComputationItem + + + fr.insee + l8oientz-QC + 1 + QuestionConstruct + + + fr.insee + l8oientz-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ig1u2 + 1 + IfThenElse + + + fr.insee + l8oidc2m-QC + 1 + QuestionConstruct + + + fr.insee + l8oidc2m-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi3stp + 1 + IfThenElse + + + fr.insee + l8ohus0v-QC + 1 + QuestionConstruct + + + fr.insee + l8ohus0v-CI-0 + 1 + ComputationItem + + + fr.insee + l8oi6q33 + 1 + IfThenElse + + + fr.insee + l8oi13y2 + 1 + IfThenElse + + + fr.insee + l8oh7dqr + 1 + IfThenElse + + + + fr.insee + ljof8bti + 1 + + VOSENFAIL7 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre septième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l8ok9kmj-QC + 1 + QuestionConstruct + + + fr.insee + l8ok9kmj-CI-0 + 1 + ComputationItem + + + fr.insee + l8okbmv3-QC + 1 + QuestionConstruct + + + fr.insee + l8okbmv3-CI-0 + 1 + ComputationItem + + + fr.insee + l8okh65e-QC + 1 + QuestionConstruct + + + fr.insee + l8okh65e-CI-0 + 1 + ComputationItem + + + fr.insee + l8okh65e-CI-1 + 1 + ComputationItem + + + fr.insee + l8okh65e-CI-2 + 1 + ComputationItem + + + fr.insee + l8okc5z9-QC + 1 + QuestionConstruct + + + fr.insee + l8okc5z9-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ify6l + 1 + IfThenElse + + + fr.insee + l8okdoof-QC + 1 + QuestionConstruct + + + fr.insee + l8okdoof-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojynib + 1 + IfThenElse + + + fr.insee + l8ok0acp-QC + 1 + QuestionConstruct + + + fr.insee + l8ok0acp-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojvs72 + 1 + IfThenElse + + + fr.insee + l8ojs17t + 1 + IfThenElse + + + fr.insee + l8ojrm6c + 1 + IfThenElse + + + + fr.insee + ljofiex8 + 1 + + VOSENFAIL8 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre huitième enfant qui ne vit pas avec vous ou qui est décédé(e)" + + submodule + + fr.insee + l8olci32-QC + 1 + QuestionConstruct + + + fr.insee + l8olci32-CI-0 + 1 + ComputationItem + + + fr.insee + l8olbhxj-QC + 1 + QuestionConstruct + + + fr.insee + l8olbhxj-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-QC + 1 + QuestionConstruct + + + fr.insee + l8ol9xy3-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-CI-1 + 1 + ComputationItem + + + fr.insee + l8ol9xy3-CI-2 + 1 + ComputationItem + + + fr.insee + l8ola1mr-QC + 1 + QuestionConstruct + + + fr.insee + l8ola1mr-CI-0 + 1 + ComputationItem + + + fr.insee + lv6i1rtq + 1 + IfThenElse + + + fr.insee + l8okz45l-QC + 1 + QuestionConstruct + + + fr.insee + l8okz45l-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol5p2y + 1 + IfThenElse + + + fr.insee + l8ole120-QC + 1 + QuestionConstruct + + + fr.insee + l8ole120-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol0eoi + 1 + IfThenElse + + + fr.insee + l8oky4d1 + 1 + IfThenElse + + + fr.insee + l8olrfxk + 1 + IfThenElse + + + + fr.insee + l1f6bztr + 1 + + PETITENF + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", vos petits-enfants" + + + fr.insee + l1f65cp9 + 1 + Instruction + + module + + fr.insee + l1f6a3qv-QC + 1 + QuestionConstruct + + + fr.insee + l1f6a3qv-CI-0 + 1 + ComputationItem + + + fr.insee + l1ghnjrp + 1 + IfThenElse + + + + fr.insee + l1g7w78w + 1 + + ENTOURAGE + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre famille (vivant ou non avec vous) et votre entourage" + + + fr.insee + l1g898c1 + 1 + Instruction + + module + + fr.insee + l1g87t8t-QC + 1 + QuestionConstruct + + + fr.insee + l1g87t8t-CI-0 + 1 + ComputationItem + + + fr.insee + l1g87t8t-CI-1 + 1 + ComputationItem + + + fr.insee + l1ggxm5j + 1 + IfThenElse + + + fr.insee + lwjde3bx + 1 + IfThenElse + + + fr.insee + lw7udebn + 1 + IfThenElse + + + fr.insee + lwjdhsic + 1 + IfThenElse + + + fr.insee + lw7u8ko8 + 1 + IfThenElse + + + fr.insee + lwjdql0k + 1 + IfThenElse + + + fr.insee + lw7umnyf + 1 + IfThenElse + + + fr.insee + lwjdj9xk + 1 + IfThenElse + + + fr.insee + lw7w0rtm + 1 + IfThenElse + + + fr.insee + lwjdvwcg + 1 + IfThenElse + + + fr.insee + lw7vxu2u + 1 + IfThenElse + + + fr.insee + lwjduugc + 1 + IfThenElse + + + fr.insee + lw7wigk7 + 1 + IfThenElse + + + fr.insee + lwjeagnr + 1 + IfThenElse + + + fr.insee + lw7why4g + 1 + IfThenElse + + + fr.insee + lwkqygde + 1 + IfThenElse + + + fr.insee + lw7wyl5z + 1 + IfThenElse + + + fr.insee + lwkqptgi + 1 + IfThenElse + + + fr.insee + lw7wk5hm + 1 + IfThenElse + + + fr.insee + lwkr6mgv + 1 + IfThenElse + + + fr.insee + lw7womnt + 1 + IfThenElse + + + fr.insee + lwkr2vd6 + 1 + IfThenElse + + + fr.insee + lw7wpyov + 1 + IfThenElse + + + fr.insee + lwkrcy39 + 1 + IfThenElse + + + fr.insee + lw7x67es + 1 + IfThenElse + + + fr.insee + lwkrefv2 + 1 + IfThenElse + + + fr.insee + lw7x8u6l + 1 + IfThenElse + + + fr.insee + lwoma713 + 1 + IfThenElse + + + fr.insee + lw7wpqge + 1 + IfThenElse + + + fr.insee + lwome1y1 + 1 + IfThenElse + + + fr.insee + lw7wt6by + 1 + IfThenElse + + + fr.insee + lwom61fq + 1 + IfThenElse + + + fr.insee + l1g8o84g-QC + 1 + QuestionConstruct + + + fr.insee + l1g8o84g-CI-0 + 1 + ComputationItem + + + fr.insee + l1g8o84g-CI-1 + 1 + ComputationItem + + + fr.insee + lw7ytqkl + 1 + IfThenElse + + + fr.insee + lwom23gj + 1 + IfThenElse + + + fr.insee + lw7yoyqf + 1 + IfThenElse + + + fr.insee + lwomau70 + 1 + IfThenElse + + + fr.insee + lw7yzxyk + 1 + IfThenElse + + + fr.insee + lwom4dzj + 1 + IfThenElse + + + fr.insee + lw7ym1c9 + 1 + IfThenElse + + + fr.insee + lwom7sp9 + 1 + IfThenElse + + + fr.insee + lw7z9uil + 1 + IfThenElse + + + fr.insee + lwom80dx + 1 + IfThenElse + + + fr.insee + lw7z09oi + 1 + IfThenElse + + + fr.insee + lwom7max + 1 + IfThenElse + + + fr.insee + lw7z5m0d + 1 + IfThenElse + + + fr.insee + lwomquur + 1 + IfThenElse + + + fr.insee + lw7zcrfb + 1 + IfThenElse + + + fr.insee + lwomfix1 + 1 + IfThenElse + + + fr.insee + lw7z7urw + 1 + IfThenElse + + + fr.insee + lwonoto4 + 1 + IfThenElse + + + fr.insee + lw7yy8x4 + 1 + IfThenElse + + + fr.insee + lwonp6tj + 1 + IfThenElse + + + fr.insee + lw7yzsaq + 1 + IfThenElse + + + fr.insee + lwonkt28 + 1 + IfThenElse + + + fr.insee + lw7z3bw7 + 1 + IfThenElse + + + fr.insee + lwonmevj + 1 + IfThenElse + + + fr.insee + l1g8apw2-QC + 1 + QuestionConstruct + + + fr.insee + l1g8apw2-CI-0 + 1 + ComputationItem + + + fr.insee + lw7oxhzk + 1 + IfThenElse + + + fr.insee + lmrqj2ni + 1 + IfThenElse + + + + fr.insee + kwqfdovw + 1 + + PARENTS + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", vos parents, encore en vie ou non (père, mère, personnes que vous considérez comme tels)" + + + fr.insee + l4r7fofh + 1 + Instruction + + module + + fr.insee + kwqf618x + 1 + Sequence + + + fr.insee + l5ayth8i + 1 + IfThenElse + + + + fr.insee + kwqf618x + 1 + + PARENT1 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre parent le plus âgé" + + + fr.insee + l0wezuxl + 1 + Instruction + + submodule + + fr.insee + l2kjnm8k-QC + 1 + QuestionConstruct + + + fr.insee + l2kjnm8k-CI-0 + 1 + ComputationItem + + + fr.insee + l2kjy49o-QC + 1 + QuestionConstruct + + + fr.insee + l2kjy49o-CI-0 + 1 + ComputationItem + + + fr.insee + l2kjy49o-CI-1 + 1 + ComputationItem + + + fr.insee + l2kjy49o-CI-2 + 1 + ComputationItem + + + fr.insee + l2kkvar7-QC + 1 + QuestionConstruct + + + fr.insee + l2kkvar7-CI-0 + 1 + ComputationItem + + + fr.insee + l4nwoi2w + 1 + IfThenElse + + + fr.insee + l2kk4seh-QC + 1 + QuestionConstruct + + + fr.insee + lumq5jmr + 1 + IfThenElse + + + fr.insee + lumpta83 + 1 + IfThenElse + + + fr.insee + lbpj1dh7 + 1 + IfThenElse + + + fr.insee + l5axrwsa-QC + 1 + QuestionConstruct + + + fr.insee + l5axrwsa-CI-0 + 1 + ComputationItem + + + + fr.insee + las2r756 + 1 + + PARENT2 + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre autre parent" + + + fr.insee + las2uh3c + 1 + Instruction + + submodule + + fr.insee + l27ijusa-QC + 1 + QuestionConstruct + + + fr.insee + l27ijusa-CI-0 + 1 + ComputationItem + + + fr.insee + kwqfufye-QC + 1 + QuestionConstruct + + + fr.insee + kwqfufye-CI-0 + 1 + ComputationItem + + + fr.insee + kwqfufye-CI-1 + 1 + ComputationItem + + + fr.insee + kwqfufye-CI-2 + 1 + ComputationItem + + + fr.insee + l27ig4yy-QC + 1 + QuestionConstruct + + + fr.insee + l27ig4yy-CI-0 + 1 + ComputationItem + + + fr.insee + l4o63304 + 1 + IfThenElse + + + fr.insee + l1ezgxe3-QC + 1 + QuestionConstruct + + + fr.insee + lumsa5jd + 1 + IfThenElse + + + fr.insee + lmrr3r3g + 1 + IfThenElse + + + fr.insee + lbpjirq3 + 1 + IfThenElse + + + + fr.insee + lij1g3gt + 1 + + PARCOURS + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", votre parcours de vie" + + + fr.insee + llf2bmj4 + 1 + Instruction + + module + + fr.insee + l473kp51-QC + 1 + QuestionConstruct + + + fr.insee + l473kp51-CI-0 + 1 + ComputationItem + + + fr.insee + lj2srd9e + 1 + IfThenElse + + + fr.insee + lj30clvl + 1 + IfThenElse + + + fr.insee + l4742c2v-QC + 1 + QuestionConstruct + + + fr.insee + l4742c2v-CI-0 + 1 + ComputationItem + + + fr.insee + lj41apen + 1 + IfThenElse + + + fr.insee + lj41lgft + 1 + IfThenElse + + + fr.insee + l1f5th3i-QC + 1 + QuestionConstruct + + + fr.insee + l1f5th3i-CI-0 + 1 + ComputationItem + + + fr.insee + l1f5th3i-CI-1 + 1 + ComputationItem + + + fr.insee + l1f61fa3-QC + 1 + QuestionConstruct + + + fr.insee + l1f61fa3-CI-0 + 1 + ComputationItem + + + fr.insee + m0qs39dd + 1 + IfThenElse + + + fr.insee + l43u5x89 + 1 + IfThenElse + + + fr.insee + l1f65zkh-QC + 1 + QuestionConstruct + + + fr.insee + l1f65zkh-CI-0 + 1 + ComputationItem + + + + fr.insee + l1g3yspz + 1 + + VIEPROF + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", vos études et votre vie professionnelle" + + + fr.insee + l1g3mygg + 1 + Instruction + + module + + fr.insee + l1g3unwh-QC + 1 + QuestionConstruct + + + fr.insee + l1g3unwh-CI-0 + 1 + ComputationItem + + + fr.insee + l1g432mc + 1 + IfThenElse + + + fr.insee + lv6l0h1a + 1 + IfThenElse + + + fr.insee + l445x7tq-QC + 1 + QuestionConstruct + + + fr.insee + l445x7tq-CI-0 + 1 + ComputationItem + + + fr.insee + l1g7w1v9 + 1 + IfThenElse + + + fr.insee + lumn8q99 + 1 + IfThenElse + + + fr.insee + lumnovay + 1 + IfThenElse + + + fr.insee + lv6l7iy2 + 1 + IfThenElse + + + fr.insee + l445riqu + 1 + IfThenElse + + + fr.insee + lv6mlnse + 1 + IfThenElse + + + fr.insee + m1689ydy + 1 + IfThenElse + + + fr.insee + ljwxkrnl-QC + 1 + QuestionConstruct + + + fr.insee + lamjvpmw + 1 + IfThenElse + + + fr.insee + m238oglc + 1 + IfThenElse + + + + fr.insee + l4ctrkzx + 1 + + FIN + + + Validation du questionnaire + + + fr.insee + lagud3o9 + 1 + Instruction + + module + + + fr.insee + lywy061z + 1 + + Questionnaire de chaque personne concernée par l'enquête + + + fr.insee + lywy061z-OL + 1 + Instruction + + + fr.insee + lywy061z-OD + 1 + Instruction + + roundabout + + fr.insee + lywy061z-TEST_RP + 1 + Loop + + + + fr.insee + l4idqt1t + 1 + + B_PRENOMREP + + + + vtl + + fr.insee + l4idqt1t-MIN-IP-1 + 1 + + RPNBQUEST + + + + + fr.insee + RPNBQUEST + 1 + InParameter + + + fr.insee + l4idqt1t-MIN-IP-1 + 1 + InParameter + + + l4idqt1t-MIN-IP-1 + + + + + vtl + + fr.insee + l4idqt1t-IP-1 + 1 + + RPNBQUEST + + + + + fr.insee + RPNBQUEST + 1 + InParameter + + + fr.insee + l4idqt1t-IP-1 + 1 + InParameter + + + l4idqt1t-IP-1 + + + + + vtl + 1 + + + + fr.insee + l4idqt1t-SEQ + 1 + Sequence + + + + fr.insee + l4idqt1t-SEQ + 1 + loopContent + + fr.insee + lywyuxtl + 1 + Sequence + + + + fr.insee + lywy061z-TEST_RP + 1 + + TEST_RP + + + fr.insee + lywy061z-TEST_RP-SEQ + 1 + Sequence + + + + fr.insee + lywy061z-TEST_RP-SEQ + 1 + loopContent + + fr.insee + kwq9l9z1 + 1 + Sequence + + + fr.insee + ly4ijke0 + 1 + IfThenElse + + + fr.insee + lldrb8le + 1 + IfThenElse + + + fr.insee + lldrik6o + 1 + IfThenElse + + + fr.insee + l9ikwy74 + 1 + IfThenElse + + + fr.insee + kwqi91j9 + 1 + Sequence + + + fr.insee + l8sqkubc + 1 + IfThenElse + + + fr.insee + l1g7w78w + 1 + Sequence + + + fr.insee + kwqfdovw + 1 + Sequence + + + fr.insee + lij1g3gt + 1 + Sequence + + + fr.insee + l1g3yspz + 1 + Sequence + + + fr.insee + lywy061z-CI-0 + 1 + ComputationItem + + + + fr.insee + ly4cb0ve + 1 + + A définir + + + Pas de validation du prénom ou NON + + hideable + + + vtl + + fr.insee + ly4cb0ve-IP-1 + 1 + + VAL_PRENOM + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + ly4cb0ve-IP-1 + 1 + InParameter + + + nvl(ly4cb0ve-IP-1,"") = "2" + + + + fr.insee + ly4cb0ve-THEN + 1 + Sequence + + + + fr.insee + ly4cb0ve-THEN + 1 + + + + filterContent + + fr.insee + ly4bzjcl-QC + 1 + QuestionConstruct + + + fr.insee + ly4bzjcl-CI-0 + 1 + ComputationItem + + + + fr.insee + ly4cg6t0 + 1 + + A définir + + + Si pas de validation de l'année de naissance ou réponse NON + + hideable + + + vtl + + fr.insee + ly4cg6t0-IP-1 + 1 + + VAL_ANNAISS + + + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + OutParameter + + + fr.insee + ly4cg6t0-IP-1 + 1 + InParameter + + + nvl(ly4cg6t0-IP-1,"") = "2" + + + + fr.insee + ly4cg6t0-THEN + 1 + Sequence + + + + fr.insee + ly4cg6t0-THEN + 1 + + + + filterContent + + fr.insee + kwq9wijq-QC + 1 + QuestionConstruct + + + fr.insee + kwq9wijq-CI-0 + 1 + ComputationItem + + + + fr.insee + ly4g6m44 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ly4g6m44-IP-1 + 1 + + ANAISS + + + + + fr.insee + ltd1nckz-GOP + 1 + OutParameter + + + fr.insee + ly4g6m44-IP-1 + 1 + InParameter + + + cast(ly4g6m44-IP-1,integer) >= 2008 + + + + fr.insee + ly4g6m44-THEN + 1 + Sequence + + + + fr.insee + ly4g6m44-THEN + 1 + + + + filterContent + + fr.insee + ly4cuvn6-QC + 1 + QuestionConstruct + + + fr.insee + ly4cuvn6-CI-0 + 1 + ComputationItem + + + + fr.insee + l151hcqh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l151hcqh-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l151hcqh-IP-1 + 1 + InParameter + + + l151hcqh-IP-1="2" + + + + fr.insee + l151hcqh-THEN + 1 + Sequence + + + + fr.insee + l151hcqh-THEN + 1 + + + + filterContent + + fr.insee + l0qkj23a-QC + 1 + QuestionConstruct + + + fr.insee + l0qkj23a-CI-0 + 1 + ComputationItem + + + + fr.insee + li359fnd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + li359fnd-IP-1 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + li359fnd-IP-1 + 1 + InParameter + + + li359fnd-IP-1 ="3" + + + + fr.insee + li359fnd-THEN + 1 + Sequence + + + + fr.insee + li359fnd-THEN + 1 + + + + filterContent + + fr.insee + li353rhu-QC + 1 + QuestionConstruct + + + + fr.insee + lyye1226 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lyye1226-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lyye1226-IP-1 + 1 + InParameter + + + lyye1226-IP-1="2" + + + + fr.insee + lyye1226-THEN + 1 + Sequence + + + + fr.insee + lyye1226-THEN + 1 + + + + filterContent + + fr.insee + lyye1a7t-QC + 1 + QuestionConstruct + + + fr.insee + lyye1a7t-CI-0 + 1 + ComputationItem + + + + fr.insee + ly4ijke0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ly4ijke0-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + ly4ijke0-IP-1 + 1 + InParameter + + + ly4ijke0-IP-1<>"4" and not(isnull(ly4ijke0-IP-1)) + + + + fr.insee + ly4ijke0-THEN + 1 + Sequence + + + + fr.insee + ly4ijke0-THEN + 1 + + + + filterContent + + fr.insee + kwqaaqd3 + 1 + Sequence + + + + fr.insee + llde8dw2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llde8dw2-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + llde8dw2-IP-1 + 1 + InParameter + + + llde8dw2-IP-1 ="1" + + + + fr.insee + llde8dw2-THEN + 1 + Sequence + + + + fr.insee + llde8dw2-THEN + 1 + + + + filterContent + + fr.insee + kwqabjga-QC + 1 + QuestionConstruct + + + fr.insee + kwqabjga-CI-0 + 1 + ComputationItem + + + fr.insee + l4omo6jm + 1 + IfThenElse + + + + fr.insee + l4omo6jm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4omo6jm-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l4omo6jm-IP-2 + 1 + + RPPRENOMCONJ + + + + fr.insee + l4omo6jm-IP-3 + 1 + + RPANAISCONJ + + + + fr.insee + l4omo6jm-IP-4 + 1 + + PRENOM_C + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l4omo6jm-IP-1 + 1 + InParameter + + + + + fr.insee + RPPRENOMCONJ + 1 + InParameter + + + fr.insee + l4omo6jm-IP-2 + 1 + InParameter + + + + + fr.insee + RPANAISCONJ + 1 + InParameter + + + fr.insee + l4omo6jm-IP-3 + 1 + InParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l4omo6jm-IP-4 + 1 + InParameter + + + isnull(l4omo6jm-IP-4) or isnull(l4omo6jm-IP-2) or replace(upper(l4omo6jm-IP-2)," ","") <> replace(upper(l4omo6jm-IP-4)," ","") or isnull(l4omo6jm-IP-3) or cast(l4omo6jm-IP-3,integer) <> cast(l4omo6jm-IP-1,integer) + + + + fr.insee + l4omo6jm-THEN + 1 + Sequence + + + + fr.insee + l4omo6jm-THEN + 1 + + + + filterContent + + fr.insee + l4o59ei7-QC + 1 + QuestionConstruct + + + fr.insee + l4o59ei7-CI-0 + 1 + ComputationItem + + + fr.insee + l4o5shrc + 1 + IfThenElse + + + fr.insee + l4o5o4tn + 1 + IfThenElse + + + fr.insee + m0gql7j6 + 1 + IfThenElse + + + fr.insee + m0gqexhj + 1 + IfThenElse + + + fr.insee + l7ywsts3 + 1 + IfThenElse + + + + fr.insee + l4o5shrc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o5shrc-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o5shrc-IP-1 + 1 + InParameter + + + l4o5shrc-IP-1 ="1" + + + + fr.insee + l4o5shrc-THEN + 1 + Sequence + + + + fr.insee + l4o5shrc-THEN + 1 + + + + filterContent + + fr.insee + l0quikkt-QC + 1 + QuestionConstruct + + + fr.insee + l0quikkt-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o5o4tn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o5o4tn-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o5o4tn-IP-1 + 1 + InParameter + + + l4o5o4tn-IP-1 ="2" + + + + fr.insee + l4o5o4tn-THEN + 1 + Sequence + + + + fr.insee + l4o5o4tn-THEN + 1 + + + + filterContent + + fr.insee + l4o57595-QC + 1 + QuestionConstruct + + + fr.insee + l4o57595-CI-0 + 1 + ComputationItem + + + + fr.insee + m0gql7j6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0gql7j6-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + m0gql7j6-IP-1 + 1 + InParameter + + + m0gql7j6-IP-1="1" or m0gql7j6-IP-1="2" + + + + fr.insee + m0gql7j6-THEN + 1 + Sequence + + + + fr.insee + m0gql7j6-THEN + 1 + + + + filterContent + + fr.insee + l7ywou64-QC + 1 + QuestionConstruct + + + fr.insee + l7ywou64-CI-0 + 1 + ComputationItem + + + + fr.insee + m0gqexhj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0gqexhj-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + m0gqexhj-IP-1 + 1 + InParameter + + + m0gqexhj-IP-1="3" + + + + fr.insee + m0gqexhj-THEN + 1 + Sequence + + + + fr.insee + m0gqexhj-THEN + 1 + + + + filterContent + + fr.insee + m0gppl9e-QC + 1 + QuestionConstruct + + + fr.insee + m0gppl9e-CI-0 + 1 + ComputationItem + + + + fr.insee + l7ywsts3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7ywsts3-IP-1 + 1 + + TRAV_CH_C + + + + fr.insee + l7ywsts3-IP-2 + 1 + + TRAV_CH_P + + + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywsts3-IP-1 + 1 + InParameter + + + + + fr.insee + m0gppl9e-QOP-m0gq7pno + 1 + OutParameter + + + fr.insee + l7ywsts3-IP-2 + 1 + InParameter + + + (l7ywsts3-IP-2 ="1" and isnull(l7ywsts3-IP-1)) or (isnull(l7ywsts3-IP-1) and isnull(l7ywsts3-IP-2)) or (l7ywsts3-IP-1 ="1" and isnull(l7ywsts3-IP-2)) + + + + fr.insee + l7ywsts3-THEN + 1 + Sequence + + + + fr.insee + l7ywsts3-THEN + 1 + + + + filterContent + + fr.insee + l4quhb14 + 1 + IfThenElse + + + fr.insee + lldp1sbe + 1 + IfThenElse + + + fr.insee + l4ctksvo + 1 + IfThenElse + + + fr.insee + l0quphwx-QC + 1 + QuestionConstruct + + + fr.insee + l0quphwx-CI-0 + 1 + ComputationItem + + + fr.insee + lpsjbbig + 1 + IfThenElse + + + fr.insee + llgsytoz + 1 + IfThenElse + + + fr.insee + llgswe0b + 1 + IfThenElse + + + + fr.insee + l4quhb14 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4quhb14-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + l4quhb14-IP-1 + 1 + InParameter + + + l4quhb14-IP-1 = "2" or isnull(l4quhb14-IP-1) + + + + fr.insee + l4quhb14-THEN + 1 + Sequence + + + + fr.insee + l4quhb14-THEN + 1 + + + + filterContent + + fr.insee + l0qudtd2-QC + 1 + QuestionConstruct + + + + fr.insee + lldp1sbe + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldp1sbe-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + lldp1sbe-IP-1 + 1 + InParameter + + + lldp1sbe-IP-1 ="1" + + + + fr.insee + lldp1sbe-THEN + 1 + Sequence + + + + fr.insee + lldp1sbe-THEN + 1 + + + + filterContent + + fr.insee + lldp4562-QC + 1 + QuestionConstruct + + + + fr.insee + l4ctksvo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ctksvo-IP-1 + 1 + + PROF_CH1 + + + + fr.insee + l4ctksvo-IP-2 + 1 + + PROF_CH2 + + + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l4ctksvo-IP-1 + 1 + InParameter + + + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + fr.insee + l4ctksvo-IP-2 + 1 + InParameter + + + isnull(l4ctksvo-IP-1) and isnull(l4ctksvo-IP-2) + + + + fr.insee + l4ctksvo-THEN + 1 + Sequence + + + + fr.insee + l4ctksvo-THEN + 1 + + + + filterContent + + fr.insee + l43zea6v-QC + 1 + QuestionConstruct + + + fr.insee + l43zea6v-CI-0 + 1 + ComputationItem + + + + fr.insee + lpsjbbig + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lpsjbbig-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + lpsjbbig-IP-1 + 1 + InParameter + + + lpsjbbig-IP-1 ="1" + + + + fr.insee + lpsjbbig-THEN + 1 + Sequence + + + + fr.insee + lpsjbbig-THEN + 1 + + + + filterContent + + fr.insee + lpsj90yi-QC + 1 + QuestionConstruct + + + fr.insee + lpsj90yi-CI-0 + 1 + ComputationItem + + + + fr.insee + llgsytoz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgsytoz-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + llgsytoz-IP-1 + 1 + InParameter + + + llgsytoz-IP-1 ="2" + + + + fr.insee + llgsytoz-THEN + 1 + Sequence + + + + fr.insee + llgsytoz-THEN + 1 + + + + filterContent + + fr.insee + llgt315z-QC + 1 + QuestionConstruct + + + fr.insee + llgt315z-CI-0 + 1 + ComputationItem + + + + fr.insee + llgswe0b + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgswe0b-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + llgswe0b-IP-1 + 1 + InParameter + + + llgswe0b-IP-1 ="3" + + + + fr.insee + llgswe0b-THEN + 1 + Sequence + + + + fr.insee + llgswe0b-THEN + 1 + + + + filterContent + + fr.insee + llgt75zv-QC + 1 + QuestionConstruct + + + fr.insee + llgt75zv-CI-0 + 1 + ComputationItem + + + + fr.insee + lldq4gfz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldq4gfz-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldq4gfz-IP-1 + 1 + InParameter + + + lldq4gfz-IP-1 ="2" + + + + fr.insee + lldq4gfz-THEN + 1 + Sequence + + + + fr.insee + lldq4gfz-THEN + 1 + + + + filterContent + + fr.insee + llde3pgg-QC + 1 + QuestionConstruct + + + fr.insee + llde3pgg-CI-0 + 1 + ComputationItem + + + fr.insee + lldqloqo + 1 + IfThenElse + + + + fr.insee + lldqloqo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldqloqo-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + lldqloqo-IP-2 + 1 + + RPPRENOMCONJ + + + + fr.insee + lldqloqo-IP-3 + 1 + + RPANAISCONJ + + + + fr.insee + lldqloqo-IP-4 + 1 + + PRENOM_C + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + lldqloqo-IP-1 + 1 + InParameter + + + + + fr.insee + RPPRENOMCONJ + 1 + InParameter + + + fr.insee + lldqloqo-IP-2 + 1 + InParameter + + + + + fr.insee + RPANAISCONJ + 1 + InParameter + + + fr.insee + lldqloqo-IP-3 + 1 + InParameter + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + lldqloqo-IP-4 + 1 + InParameter + + + isnull(lldqloqo-IP-4) or isnull(lldqloqo-IP-2) or replace(upper(lldqloqo-IP-2)," ","") <> replace(upper(lldqloqo-IP-4)," ","") or isnull(lldqloqo-IP-3) or cast(lldqloqo-IP-3,integer) <> cast(lldqloqo-IP-1,integer) + + + + fr.insee + lldqloqo-THEN + 1 + Sequence + + + + fr.insee + lldqloqo-THEN + 1 + + + + filterContent + + fr.insee + lldpi629-QC + 1 + QuestionConstruct + + + fr.insee + lldpi629-CI-0 + 1 + ComputationItem + + + fr.insee + lldpeoj3 + 1 + IfThenElse + + + fr.insee + lldpfko0 + 1 + IfThenElse + + + fr.insee + m0gqx7pj + 1 + IfThenElse + + + fr.insee + m0gqz2jz + 1 + IfThenElse + + + fr.insee + lldqafla + 1 + IfThenElse + + + + fr.insee + lldpeoj3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpeoj3-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpeoj3-IP-1 + 1 + InParameter + + + lldpeoj3-IP-1 ="1" + + + + fr.insee + lldpeoj3-THEN + 1 + Sequence + + + + fr.insee + lldpeoj3-THEN + 1 + + + + filterContent + + fr.insee + lldp8203-QC + 1 + QuestionConstruct + + + fr.insee + lldp8203-CI-0 + 1 + ComputationItem + + + + fr.insee + lldpfko0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpfko0-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpfko0-IP-1 + 1 + InParameter + + + lldpfko0-IP-1 ="2" + + + + fr.insee + lldpfko0-THEN + 1 + Sequence + + + + fr.insee + lldpfko0-THEN + 1 + + + + filterContent + + fr.insee + lldpejfa-QC + 1 + QuestionConstruct + + + fr.insee + lldpejfa-CI-0 + 1 + ComputationItem + + + + fr.insee + m0gqx7pj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0gqx7pj-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + m0gqx7pj-IP-1 + 1 + InParameter + + + m0gqx7pj-IP-1="1" or m0gqx7pj-IP-1="2" + + + + fr.insee + m0gqx7pj-THEN + 1 + Sequence + + + + fr.insee + m0gqx7pj-THEN + 1 + + + + filterContent + + fr.insee + m0gqs0nr-QC + 1 + QuestionConstruct + + + fr.insee + m0gqs0nr-CI-0 + 1 + ComputationItem + + + + fr.insee + m0gqz2jz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0gqz2jz-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + m0gqz2jz-IP-1 + 1 + InParameter + + + m0gqz2jz-IP-1="3" + + + + fr.insee + m0gqz2jz-THEN + 1 + Sequence + + + + fr.insee + m0gqz2jz-THEN + 1 + + + + filterContent + + fr.insee + m0gr51no-QC + 1 + QuestionConstruct + + + fr.insee + m0gr51no-CI-0 + 1 + ComputationItem + + + + fr.insee + lldqafla + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldqafla-IP-1 + 1 + + TRAV_CF_C + + + + fr.insee + lldqafla-IP-2 + 1 + + TRAV_CF_P + + + + + fr.insee + m0gqs0nr-QOP-m0gr1c1q + 1 + OutParameter + + + fr.insee + lldqafla-IP-1 + 1 + InParameter + + + + + fr.insee + m0gr51no-QOP-m0gr5mbj + 1 + OutParameter + + + fr.insee + lldqafla-IP-2 + 1 + InParameter + + + (lldqafla-IP-2 ="1" and isnull(lldqafla-IP-1)) or (isnull(lldqafla-IP-1) and isnull(lldqafla-IP-2)) or (lldqafla-IP-1 ="1" and isnull(lldqafla-IP-2)) + + + + fr.insee + lldqafla-THEN + 1 + Sequence + + + + fr.insee + lldqafla-THEN + 1 + + + + filterContent + + fr.insee + lldpn6nl + 1 + IfThenElse + + + fr.insee + lldprd4q + 1 + IfThenElse + + + fr.insee + lldq7c6i + 1 + IfThenElse + + + fr.insee + llmhdvun-QC + 1 + QuestionConstruct + + + fr.insee + llmhdvun-CI-0 + 1 + ComputationItem + + + fr.insee + lpsifl2v + 1 + IfThenElse + + + fr.insee + llnhls30 + 1 + IfThenElse + + + fr.insee + llnhb0i2 + 1 + IfThenElse + + + + fr.insee + lldpn6nl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldpn6nl-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + lldpn6nl-IP-1 + 1 + InParameter + + + lldpn6nl-IP-1 = "1" or isnull(lldpn6nl-IP-1) + + + + fr.insee + lldpn6nl-THEN + 1 + Sequence + + + + fr.insee + lldpn6nl-THEN + 1 + + + + filterContent + + fr.insee + l4quaxvt-QC + 1 + QuestionConstruct + + + + fr.insee + lldprd4q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldprd4q-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + lldprd4q-IP-1 + 1 + InParameter + + + lldprd4q-IP-1 = "2" + + + + fr.insee + lldprd4q-THEN + 1 + Sequence + + + + fr.insee + lldprd4q-THEN + 1 + + + + filterContent + + fr.insee + lldpqtrp-QC + 1 + QuestionConstruct + + + + fr.insee + lldq7c6i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldq7c6i-IP-1 + 1 + + PROF_CF1 + + + + fr.insee + lldq7c6i-IP-2 + 1 + + PROF_CF2 + + + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + fr.insee + lldq7c6i-IP-1 + 1 + InParameter + + + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldq7c6i-IP-2 + 1 + InParameter + + + isnull(lldq7c6i-IP-1) and isnull(lldq7c6i-IP-2) + + + + fr.insee + lldq7c6i-THEN + 1 + Sequence + + + + fr.insee + lldq7c6i-THEN + 1 + + + + filterContent + + fr.insee + lldqd2sd-QC + 1 + QuestionConstruct + + + fr.insee + lldqd2sd-CI-0 + 1 + ComputationItem + + + + fr.insee + lpsifl2v + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lpsifl2v-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + lpsifl2v-IP-1 + 1 + InParameter + + + lpsifl2v-IP-1 ="1" + + + + fr.insee + lpsifl2v-THEN + 1 + Sequence + + + + fr.insee + lpsifl2v-THEN + 1 + + + + filterContent + + fr.insee + lpsiiaoa-QC + 1 + QuestionConstruct + + + fr.insee + lpsiiaoa-CI-0 + 1 + ComputationItem + + + + fr.insee + llnhls30 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llnhls30-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llnhls30-IP-1 + 1 + InParameter + + + llnhls30-IP-1 ="2" + + + + fr.insee + llnhls30-THEN + 1 + Sequence + + + + fr.insee + llnhls30-THEN + 1 + + + + filterContent + + fr.insee + llmhi6fd-QC + 1 + QuestionConstruct + + + fr.insee + llmhi6fd-CI-0 + 1 + ComputationItem + + + + fr.insee + llnhb0i2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llnhb0i2-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llnhb0i2-IP-1 + 1 + InParameter + + + llnhb0i2-IP-1 ="3" + + + + fr.insee + llnhb0i2-THEN + 1 + Sequence + + + + fr.insee + llnhb0i2-THEN + 1 + + + + filterContent + + fr.insee + llnh2qpm-QC + 1 + QuestionConstruct + + + fr.insee + llnh2qpm-CI-0 + 1 + ComputationItem + + + + fr.insee + l27e5a64 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27e5a64-IP-1 + 1 + + PACS + + + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + l27e5a64-IP-1 + 1 + InParameter + + + l27e5a64-IP-1 ="1" + + + + fr.insee + l27e5a64-THEN + 1 + Sequence + + + + fr.insee + l27e5a64-THEN + 1 + + + + filterContent + + fr.insee + l0qu7e2g-QC + 1 + QuestionConstruct + + + fr.insee + l0qu7e2g-CI-0 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-1 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-2 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-3 + 1 + ComputationItem + + + fr.insee + l0qu7e2g-CI-4 + 1 + ComputationItem + + + + fr.insee + l27dwvi6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dwvi6-IP-1 + 1 + + MARI + + + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l27dwvi6-IP-1 + 1 + InParameter + + + l27dwvi6-IP-1 ="1" + + + + fr.insee + l27dwvi6-THEN + 1 + Sequence + + + + fr.insee + l27dwvi6-THEN + 1 + + + + filterContent + + fr.insee + l0qul94p-QC + 1 + QuestionConstruct + + + fr.insee + l0qul94p-CI-0 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-1 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-2 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-3 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-4 + 1 + ComputationItem + + + fr.insee + l0qul94p-CI-5 + 1 + ComputationItem + + + + fr.insee + l27f7ctt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27f7ctt-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l27f7ctt-IP-1 + 1 + InParameter + + + l27f7ctt-IP-1 ="3" + + + + fr.insee + l27f7ctt-THEN + 1 + Sequence + + + + fr.insee + l27f7ctt-THEN + 1 + + + + filterContent + + fr.insee + l5kszr2f-QC + 1 + QuestionConstruct + + + fr.insee + l5kszr2f-CI-0 + 1 + ComputationItem + + + fr.insee + l27dz4vc + 1 + IfThenElse + + + fr.insee + l27edzwf + 1 + IfThenElse + + + + fr.insee + l27dz4vc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dz4vc-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l27dz4vc-IP-1 + 1 + InParameter + + + l27dz4vc-IP-1 ="1" + + + + fr.insee + l27dz4vc-THEN + 1 + Sequence + + + + fr.insee + l27dz4vc-THEN + 1 + + + + filterContent + + fr.insee + l27dzhpw-QC + 1 + QuestionConstruct + + + fr.insee + l27dzhpw-CI-0 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-1 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-2 + 1 + ComputationItem + + + fr.insee + l27dzhpw-CI-3 + 1 + ComputationItem + + + + fr.insee + l27edzwf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27edzwf-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l27edzwf-IP-1 + 1 + InParameter + + + l27edzwf-IP-1 ="2" + + + + fr.insee + l27edzwf-THEN + 1 + Sequence + + + + fr.insee + l27edzwf-THEN + 1 + + + + filterContent + + fr.insee + l155mqhc-QC + 1 + QuestionConstruct + + + fr.insee + l155mqhc-CI-0 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-1 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-2 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-3 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-4 + 1 + ComputationItem + + + fr.insee + l155mqhc-CI-5 + 1 + ComputationItem + + + + fr.insee + m155d1hl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m155d1hl-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + m155d1hl-IP-1 + 1 + InParameter + + + m155d1hl-IP-1 ="3" + + + + fr.insee + m155d1hl-THEN + 1 + Sequence + + + + fr.insee + m155d1hl-THEN + 1 + + + + filterContent + + fr.insee + l8lz0355-QC + 1 + QuestionConstruct + + + fr.insee + l8lz0355-CI-0 + 1 + ComputationItem + + + + fr.insee + liiz3gaj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiz3gaj-IP-1 + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + liiz3gaj-IP-1 + 1 + InParameter + + + liiz3gaj-IP-1="1" + + + + fr.insee + liiz3gaj-THEN + 1 + Sequence + + + + fr.insee + liiz3gaj-THEN + 1 + + + + filterContent + + fr.insee + l43u4x96-QC + 1 + QuestionConstruct + + + fr.insee + l43u4x96-CI-0 + 1 + ComputationItem + + + fr.insee + liiyzeee + 1 + IfThenElse + + + fr.insee + liiz5r1r + 1 + IfThenElse + + + + fr.insee + liiyzeee + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiyzeee-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + liiyzeee-IP-1 + 1 + InParameter + + + liiyzeee-IP-1=1 + + + + fr.insee + liiyzeee-THEN + 1 + Sequence + + + + fr.insee + liiyzeee-THEN + 1 + + + + filterContent + + fr.insee + l5jnmvs2-QC + 1 + QuestionConstruct + + + fr.insee + l5jnmvs2-CI-0 + 1 + ComputationItem + + + + fr.insee + liiz5r1r + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiz5r1r-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + liiz5r1r-IP-1 + 1 + InParameter + + + liiz5r1r-IP-1 >1 or isnull(liiz5r1r-IP-1) + + + + fr.insee + liiz5r1r-THEN + 1 + Sequence + + + + fr.insee + liiz5r1r-THEN + 1 + + + + filterContent + + fr.insee + l43why6c-QC + 1 + QuestionConstruct + + + fr.insee + l43why6c-CI-0 + 1 + ComputationItem + + + fr.insee + l43why6c-CI-1 + 1 + ComputationItem + + + + fr.insee + liiyov5q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + liiyov5q-IP-1 + 1 + + COUPLE + + + + fr.insee + liiyov5q-IP-2 + 1 + + ENFAV_C + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + liiyov5q-IP-1 + 1 + InParameter + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + liiyov5q-IP-2 + 1 + InParameter + + + (liiyov5q-IP-1="1" or liiyov5q-IP-1="2") and liiyov5q-IP-2="1" + + + + fr.insee + liiyov5q-THEN + 1 + Sequence + + + + fr.insee + liiyov5q-THEN + 1 + + + + filterContent + + fr.insee + l43xg8do-QC + 1 + QuestionConstruct + + + fr.insee + l43xg8do-CI-0 + 1 + ComputationItem + + + fr.insee + l43xg8do-CI-1 + 1 + ComputationItem + + + + fr.insee + lldrb8le + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldrb8le-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lldrb8le-IP-1 + 1 + InParameter + + + (lldrb8le-IP-1="1" or lldrb8le-IP-1="2" or lldrb8le-IP-1="3") + + + + fr.insee + lldrb8le-THEN + 1 + Sequence + + + + fr.insee + lldrb8le-THEN + 1 + + + + filterContent + + fr.insee + lldr8qge + 1 + Sequence + + + + fr.insee + m0b4cyvo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0b4cyvo-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + m0b4cyvo-IP-1 + 1 + InParameter + + + m0b4cyvo-IP-1 = "1" + + + + fr.insee + m0b4cyvo-THEN + 1 + Sequence + + + + fr.insee + m0b4cyvo-THEN + 1 + + + + filterContent + + fr.insee + l43x1amr-QC + 1 + QuestionConstruct + + + fr.insee + l43x1amr-CI-0 + 1 + ComputationItem + + + + fr.insee + lldrik6o + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldrik6o-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + lldrik6o-IP-1 + 1 + InParameter + + + lldrik6o-IP-1 = "1" + + + + fr.insee + lldrik6o-THEN + 1 + Sequence + + + + fr.insee + lldrik6o-THEN + 1 + + + + filterContent + + fr.insee + m17k80xk + 1 + Sequence + + + + fr.insee + lldegcfi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldegcfi-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldegcfi-IP-1 + 1 + InParameter + + + lldegcfi-IP-1 ="1" + + + + fr.insee + lldegcfi-THEN + 1 + Sequence + + + + fr.insee + lldegcfi-THEN + 1 + + + + filterContent + + fr.insee + l4p8skko-QC + 1 + QuestionConstruct + + + fr.insee + l4p8skko-CI-0 + 1 + ComputationItem + + + + fr.insee + lldeh60s + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldeh60s-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldeh60s-IP-1 + 1 + InParameter + + + lldeh60s-IP-1 ="2" + + + + fr.insee + lldeh60s-THEN + 1 + Sequence + + + + fr.insee + lldeh60s-THEN + 1 + + + + filterContent + + fr.insee + lldenssh-QC + 1 + QuestionConstruct + + + fr.insee + lldenssh-CI-0 + 1 + ComputationItem + + + + fr.insee + l27dvgfz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dvgfz-IP-1 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dvgfz-IP-1 + 1 + InParameter + + + l27dvgfz-IP-1 ="1" + + + + fr.insee + l27dvgfz-THEN + 1 + Sequence + + + + fr.insee + l27dvgfz-THEN + 1 + + + + filterContent + + fr.insee + l27dns8a-QC + 1 + QuestionConstruct + + + fr.insee + l27dns8a-CI-0 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-1 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-2 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-3 + 1 + ComputationItem + + + fr.insee + l27dns8a-CI-4 + 1 + ComputationItem + + + + fr.insee + l27e9z6f + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27e9z6f-IP-1 + 1 + + MARI_U1 + + + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27e9z6f-IP-1 + 1 + InParameter + + + l27e9z6f-IP-1 ="1" + + + + fr.insee + l27e9z6f-THEN + 1 + Sequence + + + + fr.insee + l27e9z6f-THEN + 1 + + + + filterContent + + fr.insee + l27e50tv-QC + 1 + QuestionConstruct + + + fr.insee + l27e50tv-CI-0 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-1 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-2 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-3 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-4 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-5 + 1 + ComputationItem + + + fr.insee + l27e50tv-CI-6 + 1 + ComputationItem + + + + fr.insee + l27dyrt7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27dyrt7-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l27dyrt7-IP-1 + 1 + InParameter + + + l27dyrt7-IP-1 ="1" + + + + fr.insee + l27dyrt7-THEN + 1 + Sequence + + + + fr.insee + l27dyrt7-THEN + 1 + + + + filterContent + + fr.insee + l27dzhzv-QC + 1 + QuestionConstruct + + + fr.insee + l27dzhzv-CI-0 + 1 + ComputationItem + + + fr.insee + l27dzhzv-CI-1 + 1 + ComputationItem + + + fr.insee + l27dzhzv-CI-2 + 1 + ComputationItem + + + + fr.insee + l27egeg1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l27egeg1-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l27egeg1-IP-1 + 1 + InParameter + + + l27egeg1-IP-1 ="2" + + + + fr.insee + l27egeg1-THEN + 1 + Sequence + + + + fr.insee + l27egeg1-THEN + 1 + + + + filterContent + + fr.insee + l27e0qyq-QC + 1 + QuestionConstruct + + + fr.insee + l27e0qyq-CI-0 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-1 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-2 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-3 + 1 + ComputationItem + + + fr.insee + l27e0qyq-CI-4 + 1 + ComputationItem + + + + fr.insee + m17u0lwv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m17u0lwv-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + m17u0lwv-IP-1 + 1 + InParameter + + + m17u0lwv-IP-1 = "1" + + + + fr.insee + m17u0lwv-THEN + 1 + Sequence + + + + fr.insee + m17u0lwv-THEN + 1 + + + + filterContent + + fr.insee + ly7a1b7g + 1 + Sequence + + + + fr.insee + l4cjjud7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4cjjud7-IP-1 + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjjud7-IP-1 + 1 + InParameter + + + l4cjjud7-IP-1 ="1" + + + + fr.insee + l4cjjud7-THEN + 1 + Sequence + + + + fr.insee + l4cjjud7-THEN + 1 + + + + filterContent + + fr.insee + l4cja8pm-QC + 1 + QuestionConstruct + + + fr.insee + l4cja8pm-CI-0 + 1 + ComputationItem + + + fr.insee + l5jnvc09 + 1 + IfThenElse + + + fr.insee + l5jnfjf3 + 1 + IfThenElse + + + + fr.insee + l5jnvc09 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jnvc09-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l5jnvc09-IP-1 + 1 + InParameter + + + l5jnvc09-IP-1=1 + + + + fr.insee + l5jnvc09-THEN + 1 + Sequence + + + + fr.insee + l5jnvc09-THEN + 1 + + + + filterContent + + fr.insee + l5ilbb89-QC + 1 + QuestionConstruct + + + fr.insee + l5ilbb89-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jnfjf3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jnfjf3-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l5jnfjf3-IP-1 + 1 + InParameter + + + l5jnfjf3-IP-1 > 1 or isnull(l5jnfjf3-IP-1) + + + + fr.insee + l5jnfjf3-THEN + 1 + Sequence + + + + fr.insee + l5jnfjf3-THEN + 1 + + + + filterContent + + fr.insee + l4o5x7yq-QC + 1 + QuestionConstruct + + + fr.insee + l4o5x7yq-CI-0 + 1 + ComputationItem + + + fr.insee + l4o5x7yq-CI-1 + 1 + ComputationItem + + + + fr.insee + l9ikwy74 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9ikwy74-IP-1 + 1 + + AUT_UNION + + + + fr.insee + l9ikwy74-IP-2 + 1 + + NB_AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l9ikwy74-IP-1 + 1 + InParameter + + + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l9ikwy74-IP-2 + 1 + InParameter + + + (l9ikwy74-IP-1 = "1") and (l9ikwy74-IP-2 >= 2 or isnull(l9ikwy74-IP-2) ) + + + + fr.insee + l9ikwy74-THEN + 1 + Sequence + + + + fr.insee + l9ikwy74-THEN + 1 + + + + filterContent + + fr.insee + m17k1dbo + 1 + Sequence + + + + fr.insee + l9r6arh1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9r6arh1-IP-1 + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9r6arh1-IP-1 + 1 + InParameter + + + l9r6arh1-IP-1="1" + + + + fr.insee + l9r6arh1-THEN + 1 + Sequence + + + + fr.insee + l9r6arh1-THEN + 1 + + + + filterContent + + fr.insee + l9ilcol6-QC + 1 + QuestionConstruct + + + fr.insee + l9ilcol6-CI-0 + 1 + ComputationItem + + + fr.insee + lldeihal + 1 + IfThenElse + + + fr.insee + lldemu5v + 1 + IfThenElse + + + fr.insee + l9ikn3ea-QC + 1 + QuestionConstruct + + + fr.insee + l9ikn3ea-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-3 + 1 + ComputationItem + + + fr.insee + l9ikn3ea-CI-4 + 1 + ComputationItem + + + fr.insee + l9il24ft-QC + 1 + QuestionConstruct + + + fr.insee + l9il24ft-CI-0 + 1 + ComputationItem + + + fr.insee + l9il1c0q + 1 + IfThenElse + + + fr.insee + l9ikvx4n-QC + 1 + QuestionConstruct + + + fr.insee + l9ikvx4n-CI-0 + 1 + ComputationItem + + + fr.insee + l9il00d3 + 1 + IfThenElse + + + fr.insee + l9ikqlwv-QC + 1 + QuestionConstruct + + + fr.insee + l9ikqlwv-CI-0 + 1 + ComputationItem + + + fr.insee + l9il2aqb + 1 + IfThenElse + + + fr.insee + l9il0rmm + 1 + IfThenElse + + + + fr.insee + lldeihal + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldeihal-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldeihal-IP-1 + 1 + InParameter + + + lldeihal-IP-1 ="1" + + + + fr.insee + lldeihal-THEN + 1 + Sequence + + + + fr.insee + lldeihal-THEN + 1 + + + + filterContent + + fr.insee + l9ikne2h-QC + 1 + QuestionConstruct + + + fr.insee + l9ikne2h-CI-0 + 1 + ComputationItem + + + + fr.insee + lldemu5v + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lldemu5v-IP-1 + 1 + + TYPE_QUEST + + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + lldemu5v-IP-1 + 1 + InParameter + + + lldemu5v-IP-1 ="2" + + + + fr.insee + lldemu5v-THEN + 1 + Sequence + + + + fr.insee + lldemu5v-THEN + 1 + + + + filterContent + + fr.insee + lldetngg-QC + 1 + QuestionConstruct + + + fr.insee + lldetngg-CI-0 + 1 + ComputationItem + + + + fr.insee + l9il1c0q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il1c0q-IP-1 + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il1c0q-IP-1 + 1 + InParameter + + + l9il1c0q-IP-1 ="1" + + + + fr.insee + l9il1c0q-THEN + 1 + Sequence + + + + fr.insee + l9il1c0q-THEN + 1 + + + + filterContent + + fr.insee + l9ikxoxa-QC + 1 + QuestionConstruct + + + fr.insee + l9ikxoxa-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-3 + 1 + ComputationItem + + + fr.insee + l9ikxoxa-CI-4 + 1 + ComputationItem + + + + fr.insee + l9il00d3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il00d3-IP-1 + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9il00d3-IP-1 + 1 + InParameter + + + l9il00d3-IP-1 ="1" + + + + fr.insee + l9il00d3-THEN + 1 + Sequence + + + + fr.insee + l9il00d3-THEN + 1 + + + + filterContent + + fr.insee + l9iklcix-QC + 1 + QuestionConstruct + + + fr.insee + l9iklcix-CI-0 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-1 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-2 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-3 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-4 + 1 + ComputationItem + + + fr.insee + l9iklcix-CI-5 + 1 + ComputationItem + + + + fr.insee + l9il2aqb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il2aqb-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9il2aqb-IP-1 + 1 + InParameter + + + l9il2aqb-IP-1 ="1" + + + + fr.insee + l9il2aqb-THEN + 1 + Sequence + + + + fr.insee + l9il2aqb-THEN + 1 + + + + filterContent + + fr.insee + l9ikze1y-QC + 1 + QuestionConstruct + + + fr.insee + l9ikze1y-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikze1y-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikze1y-CI-2 + 1 + ComputationItem + + + + fr.insee + l9il0rmm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il0rmm-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9il0rmm-IP-1 + 1 + InParameter + + + l9il0rmm-IP-1 ="2" + + + + fr.insee + l9il0rmm-THEN + 1 + Sequence + + + + fr.insee + l9il0rmm-THEN + 1 + + + + filterContent + + fr.insee + l9ikmjqm-QC + 1 + QuestionConstruct + + + fr.insee + l9ikmjqm-CI-0 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-1 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-2 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-3 + 1 + ComputationItem + + + fr.insee + l9ikmjqm-CI-4 + 1 + ComputationItem + + + + fr.insee + lzsfd56s + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lzsfd56s-IP-1 + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + lzsfd56s-IP-1 + 1 + InParameter + + + lzsfd56s-IP-1="1" + + + + fr.insee + lzsfd56s-THEN + 1 + Sequence + + + + fr.insee + lzsfd56s-THEN + 1 + + + + filterContent + + fr.insee + ly7ayc3i + 1 + Sequence + + + + fr.insee + l9ikyhx5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9ikyhx5-IP-1 + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikyhx5-IP-1 + 1 + InParameter + + + l9ikyhx5-IP-1 ="1" + + + + fr.insee + l9ikyhx5-THEN + 1 + Sequence + + + + fr.insee + l9ikyhx5-THEN + 1 + + + + filterContent + + fr.insee + l9ikuqoe-QC + 1 + QuestionConstruct + + + fr.insee + l9ikuqoe-CI-0 + 1 + ComputationItem + + + fr.insee + l9il3nl8 + 1 + IfThenElse + + + fr.insee + l9il99ls + 1 + IfThenElse + + + + fr.insee + l9il3nl8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il3nl8-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9il3nl8-IP-1 + 1 + InParameter + + + l9il3nl8-IP-1=1 + + + + fr.insee + l9il3nl8-THEN + 1 + Sequence + + + + fr.insee + l9il3nl8-THEN + 1 + + + + filterContent + + fr.insee + l9ikekzu-QC + 1 + QuestionConstruct + + + fr.insee + l9ikekzu-CI-0 + 1 + ComputationItem + + + + fr.insee + l9il99ls + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l9il99ls-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9il99ls-IP-1 + 1 + InParameter + + + l9il99ls-IP-1 > 1 or isnull(l9il99ls-IP-1) + + + + fr.insee + l9il99ls-THEN + 1 + Sequence + + + + fr.insee + l9il99ls-THEN + 1 + + + + filterContent + + fr.insee + l9iks078-QC + 1 + QuestionConstruct + + + fr.insee + l9iks078-CI-0 + 1 + ComputationItem + + + fr.insee + l9iks078-CI-1 + 1 + ComputationItem + + + + fr.insee + kwqijmkn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + kwqijmkn-IP-1 + 1 + + ENF + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqijmkn-IP-1 + 1 + InParameter + + + kwqijmkn-IP-1 ="1" or isnull(kwqijmkn-IP-1) + + + + fr.insee + kwqijmkn-THEN + 1 + Sequence + + + + fr.insee + kwqijmkn-THEN + 1 + + + + filterContent + + fr.insee + kwqi5zsm-QC + 1 + QuestionConstruct + + + fr.insee + kwqi5zsm-CI-0 + 1 + ComputationItem + + + fr.insee + l7rma7oc + 1 + IfThenElse + + + fr.insee + l7rmcdze + 1 + IfThenElse + + + fr.insee + l1gi76wy-QC + 1 + QuestionConstruct + + + fr.insee + lumop4ut + 1 + IfThenElse + + + fr.insee + lmrqjd3n + 1 + IfThenElse + + + fr.insee + ltd0jxpc + 1 + IfThenElse + + + fr.insee + ltd0c182 + 1 + IfThenElse + + + fr.insee + l4nw37iw + 1 + IfThenElse + + + fr.insee + ltd0m4b9 + 1 + IfThenElse + + + fr.insee + m14td65z + 1 + IfThenElse + + + + fr.insee + l7rma7oc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7rma7oc-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rma7oc-IP-1 + 1 + InParameter + + + l7rma7oc-IP-1 = 1 + + + + fr.insee + l7rma7oc-THEN + 1 + Sequence + + + + fr.insee + l7rma7oc-THEN + 1 + + + + filterContent + + fr.insee + l1gkeq97-QC + 1 + QuestionConstruct + + + fr.insee + l1gkeq97-CI-0 + 1 + ComputationItem + + + + fr.insee + l7rmcdze + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7rmcdze-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rmcdze-IP-1 + 1 + InParameter + + + l7rmcdze-IP-1 > 1 + + + + fr.insee + l7rmcdze-THEN + 1 + Sequence + + + + fr.insee + l7rmcdze-THEN + 1 + + + + filterContent + + fr.insee + l7rlim3p-QC + 1 + QuestionConstruct + + + fr.insee + l7rlim3p-CI-0 + 1 + ComputationItem + + + fr.insee + l7rlim3p-CI-1 + 1 + ComputationItem + + + + fr.insee + lumop4ut + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumop4ut-IP-1 + 1 + + LANGUE1_ENF + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + lumop4ut-IP-1 + 1 + InParameter + + + isnull(lumop4ut-IP-1) or lumop4ut-IP-1="" + + + + fr.insee + lumop4ut-THEN + 1 + Sequence + + + + fr.insee + lumop4ut-THEN + 1 + + + + filterContent + + fr.insee + lumogysw-QC + 1 + QuestionConstruct + + + fr.insee + lumogysw-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrqjd3n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqjd3n-IP-1 + 1 + + LANGUE1_ENF + + + + fr.insee + lmrqjd3n-IP-2 + 1 + + LANGUE1_ENFL + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + lmrqjd3n-IP-1 + 1 + InParameter + + + + + fr.insee + lumogysw-QOP-lumot76k + 1 + OutParameter + + + fr.insee + lmrqjd3n-IP-2 + 1 + InParameter + + + not(isnull(lmrqjd3n-IP-1)) or not(isnull(lmrqjd3n-IP-2)) + + + + fr.insee + lmrqjd3n-THEN + 1 + Sequence + + + + fr.insee + lmrqjd3n-THEN + 1 + + + + filterContent + + fr.insee + lw52ifu3-QC + 1 + QuestionConstruct + + + fr.insee + lw52ifu3-CI-0 + 1 + ComputationItem + + + fr.insee + lw52i5sm + 1 + IfThenElse + + + fr.insee + lumo87co + 1 + IfThenElse + + + + fr.insee + lw52i5sm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw52i5sm-IP-1 + 1 + + LANGUE2_ENFE + + + + + fr.insee + lw52ifu3-QOP-lw54ol76 + 1 + OutParameter + + + fr.insee + lw52i5sm-IP-1 + 1 + InParameter + + + lw52i5sm-IP-1 ="1" + + + + fr.insee + lw52i5sm-THEN + 1 + Sequence + + + + fr.insee + lw52i5sm-THEN + 1 + + + + filterContent + + fr.insee + l445u9x8-QC + 1 + QuestionConstruct + + + fr.insee + l445u9x8-CI-0 + 1 + ComputationItem + + + fr.insee + lumt38ip + 1 + IfThenElse + + + + fr.insee + lumt38ip + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumt38ip-IP-1 + 1 + + LANGUE2_ENF + + + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + lumt38ip-IP-1 + 1 + InParameter + + + isnull(lumt38ip-IP-1) or lumt38ip-IP-1 ="" + + + + fr.insee + lumt38ip-THEN + 1 + Sequence + + + + fr.insee + lumt38ip-THEN + 1 + + + + filterContent + + fr.insee + lumstcob-QC + 1 + QuestionConstruct + + + fr.insee + lumstcob-CI-0 + 1 + ComputationItem + + + + fr.insee + lumo87co + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumo87co-IP-1 + 1 + + LANGUE2_ENF + + + + fr.insee + lumo87co-IP-2 + 1 + + LANGUE2_ENFL + + + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + lumo87co-IP-1 + 1 + InParameter + + + + + fr.insee + lumstcob-QOP-lumstrv3 + 1 + OutParameter + + + fr.insee + lumo87co-IP-2 + 1 + InParameter + + + not(isnull(lumo87co-IP-1)) or not(isnull(lumo87co-IP-2)) + + + + fr.insee + lumo87co-THEN + 1 + Sequence + + + + fr.insee + lumo87co-THEN + 1 + + + + filterContent + + fr.insee + lumnxb5k-QC + 1 + QuestionConstruct + + + fr.insee + lumnxb5k-CI-0 + 1 + ComputationItem + + + fr.insee + lw53yp9b + 1 + IfThenElse + + + fr.insee + lumnxmpb + 1 + IfThenElse + + + + fr.insee + lw53yp9b + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw53yp9b-IP-1 + 1 + + LANGUE3_ENFE + + + + + fr.insee + lumnxb5k-QOP-lw54m4hq + 1 + OutParameter + + + fr.insee + lw53yp9b-IP-1 + 1 + InParameter + + + lw53yp9b-IP-1 ="1" + + + + fr.insee + lw53yp9b-THEN + 1 + Sequence + + + + fr.insee + lw53yp9b-THEN + 1 + + + + filterContent + + fr.insee + lw543f35-QC + 1 + QuestionConstruct + + + fr.insee + lw543f35-CI-0 + 1 + ComputationItem + + + fr.insee + lumsyqsq + 1 + IfThenElse + + + + fr.insee + lumsyqsq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsyqsq-IP-1 + 1 + + LANGUE3_ENF + + + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + fr.insee + lumsyqsq-IP-1 + 1 + InParameter + + + isnull(lumsyqsq-IP-1) or lumsyqsq-IP-1 ="" + + + + fr.insee + lumsyqsq-THEN + 1 + Sequence + + + + fr.insee + lumsyqsq-THEN + 1 + + + + filterContent + + fr.insee + lumsq0y7-QC + 1 + QuestionConstruct + + + fr.insee + lumsq0y7-CI-0 + 1 + ComputationItem + + + + fr.insee + lumnxmpb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumnxmpb-IP-1 + 1 + + LANGUE3_ENF + + + + fr.insee + lumnxmpb-IP-2 + 1 + + LANGUE3_ENFL + + + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + fr.insee + lumnxmpb-IP-1 + 1 + InParameter + + + + + fr.insee + lumsq0y7-QOP-lumssga8 + 1 + OutParameter + + + fr.insee + lumnxmpb-IP-2 + 1 + InParameter + + + not(isnull(lumnxmpb-IP-1)) or not(isnull(lumnxmpb-IP-2)) + + + + fr.insee + lumnxmpb-THEN + 1 + Sequence + + + + fr.insee + lumnxmpb-THEN + 1 + + + + filterContent + + fr.insee + lumnyjae-QC + 1 + QuestionConstruct + + + fr.insee + lumnyjae-CI-0 + 1 + ComputationItem + + + fr.insee + lw5458j7 + 1 + IfThenElse + + + + fr.insee + lw5458j7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw5458j7-IP-1 + 1 + + LANGUE4_ENFE + + + + + fr.insee + lumnyjae-QOP-lw54f3wu + 1 + OutParameter + + + fr.insee + lw5458j7-IP-1 + 1 + InParameter + + + lw5458j7-IP-1 ="1" + + + + fr.insee + lw5458j7-THEN + 1 + Sequence + + + + fr.insee + lw5458j7-THEN + 1 + + + + filterContent + + fr.insee + lw547oxc-QC + 1 + QuestionConstruct + + + fr.insee + lw547oxc-CI-0 + 1 + ComputationItem + + + fr.insee + lumsp0j8 + 1 + IfThenElse + + + + fr.insee + lumsp0j8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsp0j8-IP-1 + 1 + + LANGUE4_ENF + + + + + fr.insee + lw547oxc-QOP-lw53vioh + 1 + OutParameter + + + fr.insee + lumsp0j8-IP-1 + 1 + InParameter + + + isnull(lumsp0j8-IP-1) or lumsp0j8-IP-1 ="" + + + + fr.insee + lumsp0j8-THEN + 1 + Sequence + + + + fr.insee + lumsp0j8-THEN + 1 + + + + filterContent + + fr.insee + lumsq00h-QC + 1 + QuestionConstruct + + + fr.insee + lumsq00h-CI-0 + 1 + ComputationItem + + + + fr.insee + ltd0jxpc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltd0jxpc-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + ltd0jxpc-IP-1 + 1 + InParameter + + + ltd0jxpc-IP-1 = 1 + + + + fr.insee + ltd0jxpc-THEN + 1 + Sequence + + + + fr.insee + ltd0jxpc-THEN + 1 + + + + filterContent + + fr.insee + l4idom4o-QC + 1 + QuestionConstruct + + + fr.insee + l4idom4o-CI-0 + 1 + ComputationItem + + + + fr.insee + ltd0c182 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltd0c182-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + ltd0c182-IP-1 + 1 + InParameter + + + ltd0c182-IP-1 > 1 + + + + fr.insee + ltd0c182-THEN + 1 + Sequence + + + + fr.insee + ltd0c182-THEN + 1 + + + + filterContent + + fr.insee + ltd023vh-QC + 1 + QuestionConstruct + + + + fr.insee + l4nw37iw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nw37iw-IP-1 + 1 + + NBENF + + + + fr.insee + l4nw37iw-IP-2 + 1 + + NBENFLOG + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4nw37iw-IP-1 + 1 + InParameter + + + + + fr.insee + ltd023vh-QOP-ltczw6tn + 1 + OutParameter + + + fr.insee + l4nw37iw-IP-2 + 1 + InParameter + + + l4nw37iw-IP-1 > 1 and (l4nw37iw-IP-2 = "1" or isnull(l4nw37iw-IP-2)) + + + + fr.insee + l4nw37iw-THEN + 1 + Sequence + + + + fr.insee + l4nw37iw-THEN + 1 + + + + filterContent + + fr.insee + l4lcr3vb-QC + 1 + QuestionConstruct + + + fr.insee + l4lcr3vb-CI-0 + 1 + ComputationItem + + + fr.insee + l4lcr3vb-CI-1 + 1 + ComputationItem + + + + fr.insee + ltd0m4b9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltd0m4b9-IP-1 + 1 + + NBENF + + + + fr.insee + ltd0m4b9-IP-2 + 1 + + NBENFLOG_UN + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + ltd0m4b9-IP-1 + 1 + InParameter + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + ltd0m4b9-IP-2 + 1 + InParameter + + + ltd0m4b9-IP-1 = 1 and (ltd0m4b9-IP-2 ="2" or isnull(ltd0m4b9-IP-2)) + + + + fr.insee + ltd0m4b9-THEN + 1 + Sequence + + + + fr.insee + ltd0m4b9-THEN + 1 + + + + filterContent + + fr.insee + ltd0h1g7-QC + 1 + QuestionConstruct + + + fr.insee + ltd0h1g7-CI-0 + 1 + ComputationItem + + + + fr.insee + m14td65z + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m14td65z-IP-1 + 1 + + NBENF + + + + fr.insee + m14td65z-IP-2 + 1 + + CBENFLOG + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + m14td65z-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + m14td65z-IP-2 + 1 + InParameter + + + (nvl(m14td65z-IP-2,0) < nvl(m14td65z-IP-1,0)) or isnull(m14td65z-IP-2) or isnull(m14td65z-IP-1) + + + + fr.insee + m14td65z-THEN + 1 + Sequence + + + + fr.insee + m14td65z-THEN + 1 + + + + filterContent + + fr.insee + l4nwblbh + 1 + IfThenElse + + + + fr.insee + l4nwblbh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nwblbh-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4nwblbh-IP-1 + 1 + InParameter + + + l4nwblbh-IP-1 > 1 + + + + fr.insee + l4nwblbh-THEN + 1 + Sequence + + + + fr.insee + l4nwblbh-THEN + 1 + + + + filterContent + + fr.insee + l4lfzig7-QC + 1 + QuestionConstruct + + + fr.insee + l4lfzig7-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfzig7-CI-1 + 1 + ComputationItem + + + + fr.insee + l4qswa5h + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qswa5h-IP-1 + 1 + + NBENFLOG_UN + + + + fr.insee + l4qswa5h-IP-2 + 1 + + CBENFLOG + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4qswa5h-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4qswa5h-IP-2 + 1 + InParameter + + + (not(isnull(l4qswa5h-IP-2)) and l4qswa5h-IP-2 >= 1) or l4qswa5h-IP-1="1" + + + + fr.insee + l4qswa5h-THEN + 1 + Sequence + + + + fr.insee + l4qswa5h-THEN + 1 + + + + filterContent + + fr.insee + l446h6js + 1 + Sequence + + + + fr.insee + lv3u6ier + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv3u6ier-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv3u6ier-IP-1 + 1 + InParameter + + + lv3u6ier-IP-1 >0 + + + + fr.insee + lv3u6ier-THEN + 1 + Sequence + + + + fr.insee + lv3u6ier-THEN + 1 + + + + filterContent + + fr.insee + lv3teph7-QC + 1 + QuestionConstruct + + + fr.insee + lv3teph7-CI-0 + 1 + ComputationItem + + + + fr.insee + lv5d123c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5d123c-IP-1 + 1 + + NBENF_ADOP_UN + + + + fr.insee + lv5d123c-IP-2 + 1 + + NBENFLOG_UN + + + + fr.insee + lv5d123c-IP-3 + 1 + + ADOPT_ENFLOG1 + + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + lv5d123c-IP-1 + 1 + InParameter + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + lv5d123c-IP-2 + 1 + InParameter + + + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + OutParameter + + + fr.insee + lv5d123c-IP-3 + 1 + InParameter + + + (lv5d123c-IP-3 ="1") or (lv5d123c-IP-1 ="1" and lv5d123c-IP-2="1") + + + + fr.insee + lv5d123c-THEN + 1 + Sequence + + + + fr.insee + lv5d123c-THEN + 1 + + + + filterContent + + fr.insee + lv3ts84i-QC + 1 + QuestionConstruct + + + fr.insee + lv3ts84i-CI-0 + 1 + ComputationItem + + + fr.insee + lv3ts84i-CI-1 + 1 + ComputationItem + + + fr.insee + lv3ts84i-CI-2 + 1 + ComputationItem + + + fr.insee + lv3ts84i-CI-3 + 1 + ComputationItem + + + + fr.insee + l4471oef + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4471oef-IP-1 + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + l4471oef-IP-1 + 1 + InParameter + + + l4471oef-IP-1 ="2" or isnull(l4471oef-IP-1) + + + + fr.insee + l4471oef-THEN + 1 + Sequence + + + + fr.insee + l4471oef-THEN + 1 + + + + filterContent + + fr.insee + l4iaicn8-QC + 1 + QuestionConstruct + + + fr.insee + l4iaicn8-CI-0 + 1 + ComputationItem + + + fr.insee + l4pb9r9n + 1 + IfThenElse + + + fr.insee + l4pbp2cb + 1 + IfThenElse + + + fr.insee + l1ez78st-QC + 1 + QuestionConstruct + + + fr.insee + l1ez78st-CI-0 + 1 + ComputationItem + + + fr.insee + l4iain70-QC + 1 + QuestionConstruct + + + fr.insee + l4iain70-CI-0 + 1 + ComputationItem + + + fr.insee + kwqk3gx2-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3gx2-CI-0 + 1 + ComputationItem + + + fr.insee + la6ydnyh-QC + 1 + QuestionConstruct + + + fr.insee + la6ydnyh-CI-0 + 1 + ComputationItem + + + fr.insee + la6yuhcj + 1 + IfThenElse + + + + fr.insee + l4pb9r9n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pb9r9n-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4pb9r9n-IP-1 + 1 + InParameter + + + l4pb9r9n-IP-1 ="1" or isnull(l4pb9r9n-IP-1) + + + + fr.insee + l4pb9r9n-THEN + 1 + Sequence + + + + fr.insee + l4pb9r9n-THEN + 1 + + + + filterContent + + fr.insee + l4parilg-QC + 1 + QuestionConstruct + + + fr.insee + l4parilg-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxrld8 + 1 + IfThenElse + + + + fr.insee + ltcxrld8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxrld8-IP-1 + 1 + + PARENT_COM_ENFLOG1 + + + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + fr.insee + ltcxrld8-IP-1 + 1 + InParameter + + + ltcxrld8-IP-1 ="" or isnull(ltcxrld8-IP-1) + + + + fr.insee + ltcxrld8-THEN + 1 + Sequence + + + + fr.insee + ltcxrld8-THEN + 1 + + + + filterContent + + fr.insee + l4pav1bd-QC + 1 + QuestionConstruct + + + fr.insee + l4pav1bd-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbp2cb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbp2cb-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4pbp2cb-IP-1 + 1 + InParameter + + + l4pbp2cb-IP-1 ="2" + + + + fr.insee + l4pbp2cb-THEN + 1 + Sequence + + + + fr.insee + l4pbp2cb-THEN + 1 + + + + filterContent + + fr.insee + l4pavrnh-QC + 1 + QuestionConstruct + + + fr.insee + l4pavrnh-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yuhcj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yuhcj-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6yuhcj-IP-1 + 1 + InParameter + + + la6yuhcj-IP-1="1" + + + + fr.insee + la6yuhcj-THEN + 1 + Sequence + + + + fr.insee + la6yuhcj-THEN + 1 + + + + filterContent + + fr.insee + kwqjmy9d-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmy9d-CI-0 + 1 + ComputationItem + + + + fr.insee + l4nw2vbq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4nw2vbq-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4nw2vbq-IP-1 + 1 + InParameter + + + not(isnull(l4nw2vbq-IP-1)) and l4nw2vbq-IP-1 >= 2 + + + + fr.insee + l4nw2vbq-THEN + 1 + Sequence + + + + fr.insee + l4nw2vbq-THEN + 1 + + + + filterContent + + fr.insee + ljmv0rhg + 1 + Sequence + + + + fr.insee + lv3us8vl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv3us8vl-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv3us8vl-IP-1 + 1 + InParameter + + + lv3us8vl-IP-1 >0 + + + + fr.insee + lv3us8vl-THEN + 1 + Sequence + + + + fr.insee + lv3us8vl-THEN + 1 + + + + filterContent + + fr.insee + lv3u5cvk-QC + 1 + QuestionConstruct + + + fr.insee + lv3u5cvk-CI-0 + 1 + ComputationItem + + + fr.insee + lv5d9oy6 + 1 + IfThenElse + + + + fr.insee + lv5d9oy6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5d9oy6-IP-1 + 1 + + ADOPT_ENFLOG2 + + + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + OutParameter + + + fr.insee + lv5d9oy6-IP-1 + 1 + InParameter + + + isnull(lv5d9oy6-IP-1) or lv5d9oy6-IP-1 ="1" + + + + fr.insee + lv5d9oy6-THEN + 1 + Sequence + + + + fr.insee + lv5d9oy6-THEN + 1 + + + + filterContent + + fr.insee + lv3ule5a-QC + 1 + QuestionConstruct + + + fr.insee + lv3ule5a-CI-0 + 1 + ComputationItem + + + fr.insee + lv3ule5a-CI-1 + 1 + ComputationItem + + + fr.insee + lv3ule5a-CI-2 + 1 + ComputationItem + + + fr.insee + lv3ule5a-CI-3 + 1 + ComputationItem + + + + fr.insee + l4idm31n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4idm31n-IP-1 + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4idm31n-IP-1 + 1 + InParameter + + + l4idm31n-IP-1 ="2" or isnull(l4idm31n-IP-1) + + + + fr.insee + l4idm31n-THEN + 1 + Sequence + + + + fr.insee + l4idm31n-THEN + 1 + + + + filterContent + + fr.insee + kwqjmujx-QC + 1 + QuestionConstruct + + + fr.insee + kwqjmujx-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbhf1t + 1 + IfThenElse + + + fr.insee + l4pbccaz + 1 + IfThenElse + + + fr.insee + l4idgpbr-QC + 1 + QuestionConstruct + + + fr.insee + l4idgpbr-CI-0 + 1 + ComputationItem + + + fr.insee + l4486unb-QC + 1 + QuestionConstruct + + + fr.insee + l4486unb-CI-0 + 1 + ComputationItem + + + fr.insee + l4ia5o28-QC + 1 + QuestionConstruct + + + fr.insee + l4ia5o28-CI-0 + 1 + ComputationItem + + + fr.insee + la6yjh65-QC + 1 + QuestionConstruct + + + fr.insee + la6yjh65-CI-0 + 1 + ComputationItem + + + fr.insee + la6yi3mc + 1 + IfThenElse + + + + fr.insee + l4pbhf1t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbhf1t-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + l4pbhf1t-IP-1 + 1 + InParameter + + + l4pbhf1t-IP-1 ="1" or isnull(l4pbhf1t-IP-1) + + + + fr.insee + l4pbhf1t-THEN + 1 + Sequence + + + + fr.insee + l4pbhf1t-THEN + 1 + + + + filterContent + + fr.insee + l4pasuts-QC + 1 + QuestionConstruct + + + fr.insee + l4pasuts-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxso2h + 1 + IfThenElse + + + + fr.insee + ltcxso2h + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxso2h-IP-1 + 1 + + PARENT_COM_ENFLOG2 + + + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + fr.insee + ltcxso2h-IP-1 + 1 + InParameter + + + ltcxso2h-IP-1 ="" or isnull(ltcxso2h-IP-1) + + + + fr.insee + ltcxso2h-THEN + 1 + Sequence + + + + fr.insee + ltcxso2h-THEN + 1 + + + + filterContent + + fr.insee + l4pannoa-QC + 1 + QuestionConstruct + + + fr.insee + l4pannoa-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbccaz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbccaz-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + l4pbccaz-IP-1 + 1 + InParameter + + + l4pbccaz-IP-1 ="2" + + + + fr.insee + l4pbccaz-THEN + 1 + Sequence + + + + fr.insee + l4pbccaz-THEN + 1 + + + + filterContent + + fr.insee + l4pbc5wa-QC + 1 + QuestionConstruct + + + fr.insee + l4pbc5wa-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yi3mc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yi3mc-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yi3mc-IP-1 + 1 + InParameter + + + la6yi3mc-IP-1="1" + + + + fr.insee + la6yi3mc-THEN + 1 + Sequence + + + + fr.insee + la6yi3mc-THEN + 1 + + + + filterContent + + fr.insee + l4idgqx9-QC + 1 + QuestionConstruct + + + fr.insee + l4idgqx9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4le5g6d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4le5g6d-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4le5g6d-IP-1 + 1 + InParameter + + + not(isnull(l4le5g6d-IP-1)) and l4le5g6d-IP-1 >= 3 + + + + fr.insee + l4le5g6d-THEN + 1 + Sequence + + + + fr.insee + l4le5g6d-THEN + 1 + + + + filterContent + + fr.insee + ljmvg6vc + 1 + Sequence + + + + fr.insee + lv3vglpr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv3vglpr-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv3vglpr-IP-1 + 1 + InParameter + + + lv3vglpr-IP-1 >0 + + + + fr.insee + lv3vglpr-THEN + 1 + Sequence + + + + fr.insee + lv3vglpr-THEN + 1 + + + + filterContent + + fr.insee + lv3uun9e-QC + 1 + QuestionConstruct + + + fr.insee + lv3uun9e-CI-0 + 1 + ComputationItem + + + fr.insee + lv5d6bt8 + 1 + IfThenElse + + + + fr.insee + lv5d6bt8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5d6bt8-IP-1 + 1 + + ADOPT_ENFLOG3 + + + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + OutParameter + + + fr.insee + lv5d6bt8-IP-1 + 1 + InParameter + + + isnull(lv5d6bt8-IP-1) or lv5d6bt8-IP-1 ="1" + + + + fr.insee + lv5d6bt8-THEN + 1 + Sequence + + + + fr.insee + lv5d6bt8-THEN + 1 + + + + filterContent + + fr.insee + lv3v5m6c-QC + 1 + QuestionConstruct + + + fr.insee + lv3v5m6c-CI-0 + 1 + ComputationItem + + + fr.insee + lv3v5m6c-CI-1 + 1 + ComputationItem + + + fr.insee + lv3v5m6c-CI-2 + 1 + ComputationItem + + + fr.insee + lv3v5m6c-CI-3 + 1 + ComputationItem + + + + fr.insee + l4ldkvn7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ldkvn7-IP-1 + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4ldkvn7-IP-1 + 1 + InParameter + + + l4ldkvn7-IP-1 ="2" or isnull(l4ldkvn7-IP-1) + + + + fr.insee + l4ldkvn7-THEN + 1 + Sequence + + + + fr.insee + l4ldkvn7-THEN + 1 + + + + filterContent + + fr.insee + l4ld827i-QC + 1 + QuestionConstruct + + + fr.insee + l4ld827i-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbiq4p + 1 + IfThenElse + + + fr.insee + l4pbqc6m + 1 + IfThenElse + + + fr.insee + l4ld15su-QC + 1 + QuestionConstruct + + + fr.insee + l4ld15su-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld0zmv-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0zmv-CI-0 + 1 + ComputationItem + + + fr.insee + l4ld0jea-QC + 1 + QuestionConstruct + + + fr.insee + l4ld0jea-CI-0 + 1 + ComputationItem + + + fr.insee + la6y9flo-QC + 1 + QuestionConstruct + + + fr.insee + la6y9flo-CI-0 + 1 + ComputationItem + + + fr.insee + la6ylsbv + 1 + IfThenElse + + + + fr.insee + l4pbiq4p + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbiq4p-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4pbiq4p-IP-1 + 1 + InParameter + + + l4pbiq4p-IP-1 ="1" or isnull(l4pbiq4p-IP-1) + + + + fr.insee + l4pbiq4p-THEN + 1 + Sequence + + + + fr.insee + l4pbiq4p-THEN + 1 + + + + filterContent + + fr.insee + l4pavp6y-QC + 1 + QuestionConstruct + + + fr.insee + l4pavp6y-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxspfn + 1 + IfThenElse + + + + fr.insee + ltcxspfn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxspfn-IP-1 + 1 + + PARENT_COM_ENFLOG3 + + + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + fr.insee + ltcxspfn-IP-1 + 1 + InParameter + + + ltcxspfn-IP-1 ="" or isnull(ltcxspfn-IP-1) + + + + fr.insee + ltcxspfn-THEN + 1 + Sequence + + + + fr.insee + ltcxspfn-THEN + 1 + + + + filterContent + + fr.insee + l4pat7vx-QC + 1 + QuestionConstruct + + + fr.insee + l4pat7vx-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbqc6m + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbqc6m-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4pbqc6m-IP-1 + 1 + InParameter + + + l4pbqc6m-IP-1 ="2" + + + + fr.insee + l4pbqc6m-THEN + 1 + Sequence + + + + fr.insee + l4pbqc6m-THEN + 1 + + + + filterContent + + fr.insee + l4pb77tv-QC + 1 + QuestionConstruct + + + fr.insee + l4pb77tv-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ylsbv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ylsbv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6ylsbv-IP-1 + 1 + InParameter + + + la6ylsbv-IP-1="1" + + + + fr.insee + la6ylsbv-THEN + 1 + Sequence + + + + fr.insee + la6ylsbv-THEN + 1 + + + + filterContent + + fr.insee + l4lde13h-QC + 1 + QuestionConstruct + + + fr.insee + l4lde13h-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lf1r7t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lf1r7t-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lf1r7t-IP-1 + 1 + InParameter + + + not(isnull(l4lf1r7t-IP-1)) and l4lf1r7t-IP-1 >= 4 + + + + fr.insee + l4lf1r7t-THEN + 1 + Sequence + + + + fr.insee + l4lf1r7t-THEN + 1 + + + + filterContent + + fr.insee + ljmv7iyw + 1 + Sequence + + + + fr.insee + lv3w7y6g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv3w7y6g-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv3w7y6g-IP-1 + 1 + InParameter + + + lv3w7y6g-IP-1 >0 + + + + fr.insee + lv3w7y6g-THEN + 1 + Sequence + + + + fr.insee + lv3w7y6g-THEN + 1 + + + + filterContent + + fr.insee + lv3w60ed-QC + 1 + QuestionConstruct + + + fr.insee + lv3w60ed-CI-0 + 1 + ComputationItem + + + fr.insee + lv5dm686 + 1 + IfThenElse + + + + fr.insee + lv5dm686 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5dm686-IP-1 + 1 + + ADOPT_ENFLOG4 + + + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + OutParameter + + + fr.insee + lv5dm686-IP-1 + 1 + InParameter + + + isnull(lv5dm686-IP-1) or lv5dm686-IP-1 ="1" + + + + fr.insee + lv5dm686-THEN + 1 + Sequence + + + + fr.insee + lv5dm686-THEN + 1 + + + + filterContent + + fr.insee + lv3w2pql-QC + 1 + QuestionConstruct + + + fr.insee + lv3w2pql-CI-0 + 1 + ComputationItem + + + fr.insee + lv3w2pql-CI-1 + 1 + ComputationItem + + + fr.insee + lv3w2pql-CI-2 + 1 + ComputationItem + + + fr.insee + lv3w2pql-CI-3 + 1 + ComputationItem + + + + fr.insee + l4leyz4g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4leyz4g-IP-1 + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4leyz4g-IP-1 + 1 + InParameter + + + l4leyz4g-IP-1 ="2" or isnull(l4leyz4g-IP-1) + + + + fr.insee + l4leyz4g-THEN + 1 + Sequence + + + + fr.insee + l4leyz4g-THEN + 1 + + + + filterContent + + fr.insee + l4lemegm-QC + 1 + QuestionConstruct + + + fr.insee + l4lemegm-CI-0 + 1 + ComputationItem + + + fr.insee + l4pb9nsp + 1 + IfThenElse + + + fr.insee + l4pbk9d5 + 1 + IfThenElse + + + fr.insee + l4letwtq-QC + 1 + QuestionConstruct + + + fr.insee + l4letwtq-CI-0 + 1 + ComputationItem + + + fr.insee + l4letk9j-QC + 1 + QuestionConstruct + + + fr.insee + l4letk9j-CI-0 + 1 + ComputationItem + + + fr.insee + l4lekh2t-QC + 1 + QuestionConstruct + + + fr.insee + l4lekh2t-CI-0 + 1 + ComputationItem + + + fr.insee + la6y7rno-QC + 1 + QuestionConstruct + + + fr.insee + la6y7rno-CI-0 + 1 + ComputationItem + + + fr.insee + la6y6nrv + 1 + IfThenElse + + + + fr.insee + l4pb9nsp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pb9nsp-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4pb9nsp-IP-1 + 1 + InParameter + + + l4pb9nsp-IP-1 ="1" or isnull(l4pb9nsp-IP-1) + + + + fr.insee + l4pb9nsp-THEN + 1 + Sequence + + + + fr.insee + l4pb9nsp-THEN + 1 + + + + filterContent + + fr.insee + l4paz6m4-QC + 1 + QuestionConstruct + + + fr.insee + l4paz6m4-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxxwsx + 1 + IfThenElse + + + + fr.insee + ltcxxwsx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxxwsx-IP-1 + 1 + + PARENT_COM_ENFLOG4 + + + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + fr.insee + ltcxxwsx-IP-1 + 1 + InParameter + + + ltcxxwsx-IP-1 ="" or isnull(ltcxxwsx-IP-1) + + + + fr.insee + ltcxxwsx-THEN + 1 + Sequence + + + + fr.insee + ltcxxwsx-THEN + 1 + + + + filterContent + + fr.insee + l4payjff-QC + 1 + QuestionConstruct + + + fr.insee + l4payjff-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbk9d5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbk9d5-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4pbk9d5-IP-1 + 1 + InParameter + + + l4pbk9d5-IP-1 ="2" + + + + fr.insee + l4pbk9d5-THEN + 1 + Sequence + + + + fr.insee + l4pbk9d5-THEN + 1 + + + + filterContent + + fr.insee + l4pbax4x-QC + 1 + QuestionConstruct + + + fr.insee + l4pbax4x-CI-0 + 1 + ComputationItem + + + + fr.insee + la6y6nrv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6y6nrv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y6nrv-IP-1 + 1 + InParameter + + + la6y6nrv-IP-1="1" + + + + fr.insee + la6y6nrv-THEN + 1 + Sequence + + + + fr.insee + la6y6nrv-THEN + 1 + + + + filterContent + + fr.insee + l4lexatl-QC + 1 + QuestionConstruct + + + fr.insee + l4lexatl-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lg777d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lg777d-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lg777d-IP-1 + 1 + InParameter + + + not(isnull(l4lg777d-IP-1)) and l4lg777d-IP-1 >= 5 + + + + fr.insee + l4lg777d-THEN + 1 + Sequence + + + + fr.insee + l4lg777d-THEN + 1 + + + + filterContent + + fr.insee + ljmv5mgh + 1 + Sequence + + + + fr.insee + lv5dje1f + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5dje1f-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv5dje1f-IP-1 + 1 + InParameter + + + lv5dje1f-IP-1 >0 + + + + fr.insee + lv5dje1f-THEN + 1 + Sequence + + + + fr.insee + lv5dje1f-THEN + 1 + + + + filterContent + + fr.insee + lv5dkuad-QC + 1 + QuestionConstruct + + + fr.insee + lv5dkuad-CI-0 + 1 + ComputationItem + + + fr.insee + lv5dwjp1 + 1 + IfThenElse + + + + fr.insee + lv5dwjp1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv5dwjp1-IP-1 + 1 + + ADOPT_ENFLOG5 + + + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + OutParameter + + + fr.insee + lv5dwjp1-IP-1 + 1 + InParameter + + + isnull(lv5dwjp1-IP-1) or lv5dwjp1-IP-1 ="1" + + + + fr.insee + lv5dwjp1-THEN + 1 + Sequence + + + + fr.insee + lv5dwjp1-THEN + 1 + + + + filterContent + + fr.insee + lv5db081-QC + 1 + QuestionConstruct + + + fr.insee + lv5db081-CI-0 + 1 + ComputationItem + + + fr.insee + lv5db081-CI-1 + 1 + ComputationItem + + + fr.insee + lv5db081-CI-2 + 1 + ComputationItem + + + fr.insee + lv5db081-CI-3 + 1 + ComputationItem + + + + fr.insee + l4lg52ne + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lg52ne-IP-1 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lg52ne-IP-1 + 1 + InParameter + + + l4lg52ne-IP-1 ="2" or isnull(l4lg52ne-IP-1) + + + + fr.insee + l4lg52ne-THEN + 1 + Sequence + + + + fr.insee + l4lg52ne-THEN + 1 + + + + filterContent + + fr.insee + l4lfoek4-QC + 1 + QuestionConstruct + + + fr.insee + l4lfoek4-CI-0 + 1 + ComputationItem + + + fr.insee + l4pbc35i + 1 + IfThenElse + + + fr.insee + l4pbc2za + 1 + IfThenElse + + + fr.insee + l8n262ck-QC + 1 + QuestionConstruct + + + fr.insee + l8n262ck-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfr4qa-QC + 1 + QuestionConstruct + + + fr.insee + l4lfr4qa-CI-0 + 1 + ComputationItem + + + fr.insee + l4lfvape-QC + 1 + QuestionConstruct + + + fr.insee + l4lfvape-CI-0 + 1 + ComputationItem + + + fr.insee + la6yfjnf-QC + 1 + QuestionConstruct + + + fr.insee + la6yfjnf-CI-0 + 1 + ComputationItem + + + fr.insee + la6ybuwv + 1 + IfThenElse + + + + fr.insee + l4pbc35i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbc35i-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4pbc35i-IP-1 + 1 + InParameter + + + l4pbc35i-IP-1 ="1" or isnull(l4pbc35i-IP-1) + + + + fr.insee + l4pbc35i-THEN + 1 + Sequence + + + + fr.insee + l4pbc35i-THEN + 1 + + + + filterContent + + fr.insee + l4paw4ax-QC + 1 + QuestionConstruct + + + fr.insee + l4paw4ax-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxv1dd + 1 + IfThenElse + + + + fr.insee + ltcxv1dd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxv1dd-IP-1 + 1 + + PARENT_COM_ENFLOG5 + + + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + fr.insee + ltcxv1dd-IP-1 + 1 + InParameter + + + ltcxv1dd-IP-1 ="" or isnull(ltcxv1dd-IP-1) + + + + fr.insee + ltcxv1dd-THEN + 1 + Sequence + + + + fr.insee + ltcxv1dd-THEN + 1 + + + + filterContent + + fr.insee + l4pauqgi-QC + 1 + QuestionConstruct + + + fr.insee + l4pauqgi-CI-0 + 1 + ComputationItem + + + + fr.insee + l4pbc2za + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4pbc2za-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4pbc2za-IP-1 + 1 + InParameter + + + l4pbc2za-IP-1 ="2" + + + + fr.insee + l4pbc2za-THEN + 1 + Sequence + + + + fr.insee + l4pbc2za-THEN + 1 + + + + filterContent + + fr.insee + l4pb234a-QC + 1 + QuestionConstruct + + + fr.insee + l4pb234a-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ybuwv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ybuwv-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6ybuwv-IP-1 + 1 + InParameter + + + la6ybuwv-IP-1="1" + + + + fr.insee + la6ybuwv-THEN + 1 + Sequence + + + + fr.insee + la6ybuwv-THEN + 1 + + + + filterContent + + fr.insee + l4lg25av-QC + 1 + QuestionConstruct + + + fr.insee + l4lg25av-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n313zq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n313zq-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n313zq-IP-1 + 1 + InParameter + + + not(isnull(l8n313zq-IP-1)) and l8n313zq-IP-1 >= 6 + + + + fr.insee + l8n313zq-THEN + 1 + Sequence + + + + fr.insee + l8n313zq-THEN + 1 + + + + filterContent + + fr.insee + ljmvjhon + 1 + Sequence + + + + fr.insee + lv6e7cv1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6e7cv1-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6e7cv1-IP-1 + 1 + InParameter + + + lv6e7cv1-IP-1 >0 + + + + fr.insee + lv6e7cv1-THEN + 1 + Sequence + + + + fr.insee + lv6e7cv1-THEN + 1 + + + + filterContent + + fr.insee + lv6b9lq6-QC + 1 + QuestionConstruct + + + fr.insee + lv6b9lq6-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ealih + 1 + IfThenElse + + + + fr.insee + lv6ealih + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ealih-IP-1 + 1 + + ADOPT_ENFLOG6 + + + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + OutParameter + + + fr.insee + lv6ealih-IP-1 + 1 + InParameter + + + isnull(lv6ealih-IP-1) or lv6ealih-IP-1 ="1" + + + + fr.insee + lv6ealih-THEN + 1 + Sequence + + + + fr.insee + lv6ealih-THEN + 1 + + + + filterContent + + fr.insee + lv6bv1fo-QC + 1 + QuestionConstruct + + + fr.insee + lv6bv1fo-CI-0 + 1 + ComputationItem + + + fr.insee + lv6bv1fo-CI-1 + 1 + ComputationItem + + + fr.insee + lv6bv1fo-CI-2 + 1 + ComputationItem + + + fr.insee + lv6bv1fo-CI-3 + 1 + ComputationItem + + + + fr.insee + l8n2b0y0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n2b0y0-IP-1 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2b0y0-IP-1 + 1 + InParameter + + + l8n2b0y0-IP-1 ="2" or isnull(l8n2b0y0-IP-1) + + + + fr.insee + l8n2b0y0-THEN + 1 + Sequence + + + + fr.insee + l8n2b0y0-THEN + 1 + + + + filterContent + + fr.insee + l8n1zy7o-QC + 1 + QuestionConstruct + + + fr.insee + l8n1zy7o-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2ebqc + 1 + IfThenElse + + + fr.insee + l8n27or5 + 1 + IfThenElse + + + fr.insee + l4lfnqiq-QC + 1 + QuestionConstruct + + + fr.insee + l4lfnqiq-CI-0 + 1 + ComputationItem + + + fr.insee + l8n29jww-QC + 1 + QuestionConstruct + + + fr.insee + l8n29jww-CI-0 + 1 + ComputationItem + + + fr.insee + l8n1p0yj-QC + 1 + QuestionConstruct + + + fr.insee + l8n1p0yj-CI-0 + 1 + ComputationItem + + + fr.insee + la6y7ni0-QC + 1 + QuestionConstruct + + + fr.insee + la6y7ni0-CI-0 + 1 + ComputationItem + + + fr.insee + la6yihxx + 1 + IfThenElse + + + + fr.insee + l8n2ebqc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n2ebqc-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n2ebqc-IP-1 + 1 + InParameter + + + l8n2ebqc-IP-1 ="1" or isnull(l8n2ebqc-IP-1) + + + + fr.insee + l8n2ebqc-THEN + 1 + Sequence + + + + fr.insee + l8n2ebqc-THEN + 1 + + + + filterContent + + fr.insee + l8n1u6yt-QC + 1 + QuestionConstruct + + + fr.insee + l8n1u6yt-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxtwk7 + 1 + IfThenElse + + + + fr.insee + ltcxtwk7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxtwk7-IP-1 + 1 + + PARENT_COM_ENFLOG6 + + + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + fr.insee + ltcxtwk7-IP-1 + 1 + InParameter + + + ltcxtwk7-IP-1 ="" or isnull(ltcxtwk7-IP-1) + + + + fr.insee + ltcxtwk7-THEN + 1 + Sequence + + + + fr.insee + ltcxtwk7-THEN + 1 + + + + filterContent + + fr.insee + l8n2awb0-QC + 1 + QuestionConstruct + + + fr.insee + l8n2awb0-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n27or5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n27or5-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n27or5-IP-1 + 1 + InParameter + + + l8n27or5-IP-1 ="2" + + + + fr.insee + l8n27or5-THEN + 1 + Sequence + + + + fr.insee + l8n27or5-THEN + 1 + + + + filterContent + + fr.insee + l8n20r8i-QC + 1 + QuestionConstruct + + + fr.insee + l8n20r8i-CI-0 + 1 + ComputationItem + + + + fr.insee + la6yihxx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6yihxx-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6yihxx-IP-1 + 1 + InParameter + + + la6yihxx-IP-1="1" + + + + fr.insee + la6yihxx-THEN + 1 + Sequence + + + + fr.insee + la6yihxx-THEN + 1 + + + + filterContent + + fr.insee + l8n1u2kg-QC + 1 + QuestionConstruct + + + fr.insee + l8n1u2kg-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n3phvb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3phvb-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n3phvb-IP-1 + 1 + InParameter + + + not(isnull(l8n3phvb-IP-1)) and l8n3phvb-IP-1 >= 7 + + + + fr.insee + l8n3phvb-THEN + 1 + Sequence + + + + fr.insee + l8n3phvb-THEN + 1 + + + + filterContent + + fr.insee + ljmvjzfz + 1 + Sequence + + + + fr.insee + lv6ewl7s + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ewl7s-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6ewl7s-IP-1 + 1 + InParameter + + + lv6ewl7s-IP-1 >0 + + + + fr.insee + lv6ewl7s-THEN + 1 + Sequence + + + + fr.insee + lv6ewl7s-THEN + 1 + + + + filterContent + + fr.insee + lv6ecg0i-QC + 1 + QuestionConstruct + + + fr.insee + lv6ecg0i-CI-0 + 1 + ComputationItem + + + fr.insee + lv6eqvkz + 1 + IfThenElse + + + + fr.insee + lv6eqvkz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6eqvkz-IP-1 + 1 + + ADOPT_ENFLOG7 + + + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + OutParameter + + + fr.insee + lv6eqvkz-IP-1 + 1 + InParameter + + + isnull(lv6eqvkz-IP-1) or lv6eqvkz-IP-1 ="1" + + + + fr.insee + lv6eqvkz-THEN + 1 + Sequence + + + + fr.insee + lv6eqvkz-THEN + 1 + + + + filterContent + + fr.insee + lv6eqkwn-QC + 1 + QuestionConstruct + + + fr.insee + lv6eqkwn-CI-0 + 1 + ComputationItem + + + fr.insee + lv6eqkwn-CI-1 + 1 + ComputationItem + + + fr.insee + lv6eqkwn-CI-2 + 1 + ComputationItem + + + fr.insee + lv6eqkwn-CI-3 + 1 + ComputationItem + + + + fr.insee + l8n3khpg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3khpg-IP-1 + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3khpg-IP-1 + 1 + InParameter + + + l8n3khpg-IP-1 ="2" or isnull(l8n3khpg-IP-1) + + + + fr.insee + l8n3khpg-THEN + 1 + Sequence + + + + fr.insee + l8n3khpg-THEN + 1 + + + + filterContent + + fr.insee + l8n3b7uo-QC + 1 + QuestionConstruct + + + fr.insee + l8n3b7uo-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3hm13 + 1 + IfThenElse + + + fr.insee + l8n39dj7 + 1 + IfThenElse + + + fr.insee + l8n32xk9-QC + 1 + QuestionConstruct + + + fr.insee + l8n32xk9-CI-0 + 1 + ComputationItem + + + fr.insee + l8n2x7q4-QC + 1 + QuestionConstruct + + + fr.insee + l8n2x7q4-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3ary8-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ary8-CI-0 + 1 + ComputationItem + + + fr.insee + la6y542q-QC + 1 + QuestionConstruct + + + fr.insee + la6y542q-CI-0 + 1 + ComputationItem + + + fr.insee + la6ygcb1 + 1 + IfThenElse + + + + fr.insee + l8n3hm13 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3hm13-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3hm13-IP-1 + 1 + InParameter + + + l8n3hm13-IP-1="1" or isnull(l8n3hm13-IP-1) + + + + fr.insee + l8n3hm13-THEN + 1 + Sequence + + + + fr.insee + l8n3hm13-THEN + 1 + + + + filterContent + + fr.insee + l8n3485v-QC + 1 + QuestionConstruct + + + fr.insee + l8n3485v-CI-0 + 1 + ComputationItem + + + fr.insee + ltcxz1cg + 1 + IfThenElse + + + + fr.insee + ltcxz1cg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcxz1cg-IP-1 + 1 + + PARENT_COM_ENFLOG7 + + + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + ltcxz1cg-IP-1 + 1 + InParameter + + + ltcxz1cg-IP-1 ="" or isnull(ltcxz1cg-IP-1) + + + + fr.insee + ltcxz1cg-THEN + 1 + Sequence + + + + fr.insee + ltcxz1cg-THEN + 1 + + + + filterContent + + fr.insee + l8n3fzap-QC + 1 + QuestionConstruct + + + fr.insee + l8n3fzap-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n39dj7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n39dj7-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n39dj7-IP-1 + 1 + InParameter + + + l8n39dj7-IP-1="2" + + + + fr.insee + l8n39dj7-THEN + 1 + Sequence + + + + fr.insee + l8n39dj7-THEN + 1 + + + + filterContent + + fr.insee + l8n3burz-QC + 1 + QuestionConstruct + + + fr.insee + l8n3burz-CI-0 + 1 + ComputationItem + + + + fr.insee + la6ygcb1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6ygcb1-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6ygcb1-IP-1 + 1 + InParameter + + + la6ygcb1-IP-1="1" + + + + fr.insee + la6ygcb1-THEN + 1 + Sequence + + + + fr.insee + la6ygcb1-THEN + 1 + + + + filterContent + + fr.insee + l8n2t39d-QC + 1 + QuestionConstruct + + + fr.insee + l8n2t39d-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n410d7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n410d7-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l8n410d7-IP-1 + 1 + InParameter + + + not(isnull(l8n410d7-IP-1)) and l8n410d7-IP-1 >= 8 + + + + fr.insee + l8n410d7-THEN + 1 + Sequence + + + + fr.insee + l8n410d7-THEN + 1 + + + + filterContent + + fr.insee + ljmvnzv4 + 1 + Sequence + + + + fr.insee + lv6fau50 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6fau50-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6fau50-IP-1 + 1 + InParameter + + + lv6fau50-IP-1 >0 + + + + fr.insee + lv6fau50-THEN + 1 + Sequence + + + + fr.insee + lv6fau50-THEN + 1 + + + + filterContent + + fr.insee + lv6evuvu-QC + 1 + QuestionConstruct + + + fr.insee + lv6evuvu-CI-0 + 1 + ComputationItem + + + fr.insee + lv6er4ul + 1 + IfThenElse + + + + fr.insee + lv6er4ul + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6er4ul-IP-1 + 1 + + ADOPT_ENFLOG8 + + + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + OutParameter + + + fr.insee + lv6er4ul-IP-1 + 1 + InParameter + + + isnull(lv6er4ul-IP-1) or lv6er4ul-IP-1 ="1" + + + + fr.insee + lv6er4ul-THEN + 1 + Sequence + + + + fr.insee + lv6er4ul-THEN + 1 + + + + filterContent + + fr.insee + lv6ev10t-QC + 1 + QuestionConstruct + + + fr.insee + lv6ev10t-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ev10t-CI-1 + 1 + ComputationItem + + + fr.insee + lv6ev10t-CI-2 + 1 + ComputationItem + + + fr.insee + lv6ev10t-CI-3 + 1 + ComputationItem + + + + fr.insee + l8n470rx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n470rx-IP-1 + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n470rx-IP-1 + 1 + InParameter + + + l8n470rx-IP-1 ="2" or isnull(l8n470rx-IP-1) + + + + fr.insee + l8n470rx-THEN + 1 + Sequence + + + + fr.insee + l8n470rx-THEN + 1 + + + + filterContent + + fr.insee + l8n41hvu-QC + 1 + QuestionConstruct + + + fr.insee + l8n41hvu-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3rwlf + 1 + IfThenElse + + + fr.insee + l8n3q138 + 1 + IfThenElse + + + fr.insee + l8n3fpp7-QC + 1 + QuestionConstruct + + + fr.insee + l8n3fpp7-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3xb0z-QC + 1 + QuestionConstruct + + + fr.insee + l8n3xb0z-CI-0 + 1 + ComputationItem + + + fr.insee + l8n3tjlw-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tjlw-CI-0 + 1 + ComputationItem + + + fr.insee + la6v947r-QC + 1 + QuestionConstruct + + + fr.insee + la6v947r-CI-0 + 1 + ComputationItem + + + fr.insee + la6vf6n5 + 1 + IfThenElse + + + + fr.insee + l8n3rwlf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3rwlf-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n3rwlf-IP-1 + 1 + InParameter + + + l8n3rwlf-IP-1="1" or isnull(l8n3rwlf-IP-1) + + + + fr.insee + l8n3rwlf-THEN + 1 + Sequence + + + + fr.insee + l8n3rwlf-THEN + 1 + + + + filterContent + + fr.insee + l8n3tbmd-QC + 1 + QuestionConstruct + + + fr.insee + l8n3tbmd-CI-0 + 1 + ComputationItem + + + fr.insee + ltcy1pc2 + 1 + IfThenElse + + + + fr.insee + ltcy1pc2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcy1pc2-IP-1 + 1 + + PARENT_COM_ENFLOG8 + + + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + ltcy1pc2-IP-1 + 1 + InParameter + + + ltcy1pc2-IP-1 ="" or isnull(ltcy1pc2-IP-1) + + + + fr.insee + ltcy1pc2-THEN + 1 + Sequence + + + + fr.insee + ltcy1pc2-THEN + 1 + + + + filterContent + + fr.insee + l8n41c78-QC + 1 + QuestionConstruct + + + fr.insee + l8n41c78-CI-0 + 1 + ComputationItem + + + + fr.insee + l8n3q138 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8n3q138-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n3q138-IP-1 + 1 + InParameter + + + l8n3q138-IP-1="2" + + + + fr.insee + l8n3q138-THEN + 1 + Sequence + + + + fr.insee + l8n3q138-THEN + 1 + + + + filterContent + + fr.insee + l8n40r7t-QC + 1 + QuestionConstruct + + + fr.insee + l8n40r7t-CI-0 + 1 + ComputationItem + + + + fr.insee + la6vf6n5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + la6vf6n5-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6vf6n5-IP-1 + 1 + InParameter + + + la6vf6n5-IP-1="1" + + + + fr.insee + la6vf6n5-THEN + 1 + Sequence + + + + fr.insee + la6vf6n5-THEN + 1 + + + + filterContent + + fr.insee + l8n3ocd5-QC + 1 + QuestionConstruct + + + fr.insee + l8n3ocd5-CI-0 + 1 + ComputationItem + + + + fr.insee + l4qsy750 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qsy750-IP-1 + 1 + + NBENFAIL_UN + + + + fr.insee + l4qsy750-IP-2 + 1 + + CBENFAIL + + + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + fr.insee + l4qsy750-IP-1 + 1 + InParameter + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4qsy750-IP-2 + 1 + InParameter + + + (not(isnull(l4qsy750-IP-2)) and l4qsy750-IP-2 >= 1) or l4qsy750-IP-1 ="1" + + + + fr.insee + l4qsy750-THEN + 1 + Sequence + + + + fr.insee + l4qsy750-THEN + 1 + + + + filterContent + + fr.insee + l447aq23 + 1 + Sequence + + + + fr.insee + lv6g2rid + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6g2rid-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6g2rid-IP-1 + 1 + InParameter + + + lv6g2rid-IP-1 >0 + + + + fr.insee + lv6g2rid-THEN + 1 + Sequence + + + + fr.insee + lv6g2rid-THEN + 1 + + + + filterContent + + fr.insee + lv6fvjdh-QC + 1 + QuestionConstruct + + + fr.insee + lv6fvjdh-CI-0 + 1 + ComputationItem + + + + fr.insee + lv6g9m57 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6g9m57-IP-1 + 1 + + NBENF_ADOP_UN + + + + fr.insee + lv6g9m57-IP-2 + 1 + + NBENFAIL_UN + + + + fr.insee + lv6g9m57-IP-3 + 1 + + ADOPT_ENFAIL1 + + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + lv6g9m57-IP-1 + 1 + InParameter + + + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + fr.insee + lv6g9m57-IP-2 + 1 + InParameter + + + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + OutParameter + + + fr.insee + lv6g9m57-IP-3 + 1 + InParameter + + + (lv6g9m57-IP-3 ="1") or (lv6g9m57-IP-1 ="1" and lv6g9m57-IP-2 ="1") + + + + fr.insee + lv6g9m57-THEN + 1 + Sequence + + + + fr.insee + lv6g9m57-THEN + 1 + + + + filterContent + + fr.insee + lv6fuaur-QC + 1 + QuestionConstruct + + + fr.insee + lv6fuaur-CI-0 + 1 + ComputationItem + + + fr.insee + lv6fuaur-CI-1 + 1 + ComputationItem + + + fr.insee + lv6fuaur-CI-2 + 1 + ComputationItem + + + fr.insee + lv6fuaur-CI-3 + 1 + ComputationItem + + + + fr.insee + l8lzngsq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8lzngsq-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l8lzngsq-IP-1 + 1 + InParameter + + + l8lzngsq-IP-1="2" or l8lzngsq-IP-1="3" or isnull( l8lzngsq-IP-1) + + + + fr.insee + l8lzngsq-THEN + 1 + Sequence + + + + fr.insee + l8lzngsq-THEN + 1 + + + + filterContent + + fr.insee + l8lzt19v-QC + 1 + QuestionConstruct + + + fr.insee + l8lzt19v-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdinbs + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdinbs-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l5jdinbs-IP-1 + 1 + InParameter + + + l5jdinbs-IP-1 ="2" + + + + fr.insee + l5jdinbs-THEN + 1 + Sequence + + + + fr.insee + l5jdinbs-THEN + 1 + + + + filterContent + + fr.insee + kwqkh05l-QC + 1 + QuestionConstruct + + + fr.insee + kwqkh05l-CI-0 + 1 + ComputationItem + + + fr.insee + kwqkh05l-CI-1 + 1 + ComputationItem + + + + fr.insee + l448gpc1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l448gpc1-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l448gpc1-IP-1 + 1 + InParameter + + + l448gpc1-IP-1="1" or isnull(l448gpc1-IP-1) + + + + fr.insee + l448gpc1-THEN + 1 + Sequence + + + + fr.insee + l448gpc1-THEN + 1 + + + + filterContent + + fr.insee + kwqk3ki3-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3ki3-CI-0 + 1 + ComputationItem + + + fr.insee + kwqk3ki3-CI-1 + 1 + ComputationItem + + + fr.insee + kwqkmusz-QC + 1 + QuestionConstruct + + + fr.insee + kwqkmusz-CI-0 + 1 + ComputationItem + + + fr.insee + kwqjp9yr-QC + 1 + QuestionConstruct + + + fr.insee + kwqjp9yr-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo0hx8 + 1 + IfThenElse + + + fr.insee + l4oo57jb + 1 + IfThenElse + + + + fr.insee + l4oo0hx8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo0hx8-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + l4oo0hx8-IP-1 + 1 + InParameter + + + l4oo0hx8-IP-1 ="1" or isnull(l4oo0hx8-IP-1) + + + + fr.insee + l4oo0hx8-THEN + 1 + Sequence + + + + fr.insee + l4oo0hx8-THEN + 1 + + + + filterContent + + fr.insee + l4onsq99-QC + 1 + QuestionConstruct + + + fr.insee + l4onsq99-CI-0 + 1 + ComputationItem + + + fr.insee + ltcya6b7 + 1 + IfThenElse + + + + fr.insee + ltcya6b7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcya6b7-IP-1 + 1 + + COM_ENFAIL1 + + + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + fr.insee + ltcya6b7-IP-1 + 1 + InParameter + + + ltcya6b7-IP-1 ="" or isnull(ltcya6b7-IP-1) + + + + fr.insee + ltcya6b7-THEN + 1 + Sequence + + + + fr.insee + ltcya6b7-THEN + 1 + + + + filterContent + + fr.insee + l4onskib-QC + 1 + QuestionConstruct + + + fr.insee + l4onskib-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oo57jb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo57jb-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + l4oo57jb-IP-1 + 1 + InParameter + + + l4oo57jb-IP-1 ="2" + + + + fr.insee + l4oo57jb-THEN + 1 + Sequence + + + + fr.insee + l4oo57jb-THEN + 1 + + + + filterContent + + fr.insee + l4onsf7y-QC + 1 + QuestionConstruct + + + fr.insee + l4onsf7y-CI-0 + 1 + ComputationItem + + + + fr.insee + l48e5rva + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l48e5rva-IP-1 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + l48e5rva-IP-2 + 1 + + DC_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + l48e5rva-IP-1 + 1 + InParameter + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l48e5rva-IP-2 + 1 + InParameter + + + (l48e5rva-IP-2="1" or isnull(l48e5rva-IP-2)) and cast(l48e5rva-IP-1,integer) >= 2005 + + + + fr.insee + l48e5rva-THEN + 1 + Sequence + + + + fr.insee + l48e5rva-THEN + 1 + + + + filterContent + + fr.insee + l8m04z67 + 1 + IfThenElse + + + fr.insee + llgisayz + 1 + IfThenElse + + + fr.insee + kwqj7xh6-QC + 1 + QuestionConstruct + + + fr.insee + kwqj7xh6-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwtq21 + 1 + IfThenElse + + + fr.insee + l1gi8vrf-QC + 1 + QuestionConstruct + + + fr.insee + l1gi8vrf-CI-0 + 1 + ComputationItem + + + fr.insee + lvgpkb6t-QC + 1 + QuestionConstruct + + + fr.insee + lvgpkb6t-CI-0 + 1 + ComputationItem + + + + fr.insee + l8m04z67 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m04z67-IP-1 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + l8m04z67-IP-1 + 1 + InParameter + + + cast(l8m04z67-IP-1,integer) <= 2012 + + + + fr.insee + l8m04z67-THEN + 1 + Sequence + + + + fr.insee + l8m04z67-THEN + 1 + + + + filterContent + + fr.insee + kwqk3a58-QC + 1 + QuestionConstruct + + + fr.insee + kwqk3a58-CI-0 + 1 + ComputationItem + + + + fr.insee + llgisayz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgisayz-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + llgisayz-IP-1 + 1 + InParameter + + + llgisayz-IP-1<>"3" or llgisayz-IP-1<>"5" or isnull(llgisayz-IP-1) + + + + fr.insee + llgisayz-THEN + 1 + Sequence + + + + fr.insee + llgisayz-THEN + 1 + + + + filterContent + + fr.insee + l44849iu-QC + 1 + QuestionConstruct + + + fr.insee + l44849iu-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwtq21 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwtq21-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + fr.insee + ljwwtq21-IP-2 + 1 + + AUT_PAR_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + ljwwtq21-IP-1 + 1 + InParameter + + + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + fr.insee + ljwwtq21-IP-2 + 1 + InParameter + + + (ljwwtq21-IP-1<>"3" or ljwwtq21-IP-1<>"5"or isnull(ljwwtq21-IP-1)) and (ljwwtq21-IP-2="1" or isnull(ljwwtq21-IP-2)) + + + + fr.insee + ljwwtq21-THEN + 1 + Sequence + + + + fr.insee + ljwwtq21-THEN + 1 + + + + filterContent + + fr.insee + l4o74e6d-QC + 1 + QuestionConstruct + + + fr.insee + l4o74e6d-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7h8pw + 1 + IfThenElse + + + + fr.insee + l4o7h8pw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7h8pw-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o7h8pw-IP-1 + 1 + InParameter + + + l4o7h8pw-IP-1 ="1" or isnull(l4o7h8pw-IP-1) + + + + fr.insee + l4o7h8pw-THEN + 1 + Sequence + + + + fr.insee + l4o7h8pw-THEN + 1 + + + + filterContent + + fr.insee + l1gknpsx-QC + 1 + QuestionConstruct + + + fr.insee + l1gknpsx-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnzqvx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnzqvx-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lnzqvx-IP-1 + 1 + InParameter + + + not(isnull(l4lnzqvx-IP-1)) and l4lnzqvx-IP-1 >= 2 + + + + fr.insee + l4lnzqvx-THEN + 1 + Sequence + + + + fr.insee + l4lnzqvx-THEN + 1 + + + + filterContent + + fr.insee + ljmwx9yl + 1 + Sequence + + + + fr.insee + lv6gbc7o + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6gbc7o-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6gbc7o-IP-1 + 1 + InParameter + + + lv6gbc7o-IP-1 >0 + + + + fr.insee + lv6gbc7o-THEN + 1 + Sequence + + + + fr.insee + lv6gbc7o-THEN + 1 + + + + filterContent + + fr.insee + lv6g9dow-QC + 1 + QuestionConstruct + + + fr.insee + lv6g9dow-CI-0 + 1 + ComputationItem + + + fr.insee + lv6g2ukd + 1 + IfThenElse + + + + fr.insee + lv6g2ukd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6g2ukd-IP-1 + 1 + + ADOPT_ENFAIL2 + + + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + OutParameter + + + fr.insee + lv6g2ukd-IP-1 + 1 + InParameter + + + isnull(lv6g2ukd-IP-1) or lv6g2ukd-IP-1 ="1" + + + + fr.insee + lv6g2ukd-THEN + 1 + Sequence + + + + fr.insee + lv6g2ukd-THEN + 1 + + + + filterContent + + fr.insee + lv6gdru6-QC + 1 + QuestionConstruct + + + fr.insee + lv6gdru6-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gdru6-CI-1 + 1 + ComputationItem + + + fr.insee + lv6gdru6-CI-2 + 1 + ComputationItem + + + fr.insee + lv6gdru6-CI-3 + 1 + ComputationItem + + + + fr.insee + l8m0kidv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0kidv-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l8m0kidv-IP-1 + 1 + InParameter + + + l8m0kidv-IP-1 ="2" or l8m0kidv-IP-1 ="3" or isnull( l8m0kidv-IP-1) + + + + fr.insee + l8m0kidv-THEN + 1 + Sequence + + + + fr.insee + l8m0kidv-THEN + 1 + + + + filterContent + + fr.insee + l8lzthqx-QC + 1 + QuestionConstruct + + + fr.insee + l8lzthqx-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdovhd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdovhd-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l5jdovhd-IP-1 + 1 + InParameter + + + l5jdovhd-IP-1 ="2" + + + + fr.insee + l5jdovhd-THEN + 1 + Sequence + + + + fr.insee + l5jdovhd-THEN + 1 + + + + filterContent + + fr.insee + l4lhc03p-QC + 1 + QuestionConstruct + + + fr.insee + l4lhc03p-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhc03p-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnn260 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnn260-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lnn260-IP-1 + 1 + InParameter + + + l4lnn260-IP-1 ="1" or isnull(l4lnn260-IP-1) + + + + fr.insee + l4lnn260-THEN + 1 + Sequence + + + + fr.insee + l4lnn260-THEN + 1 + + + + filterContent + + fr.insee + l4lhkbmw-QC + 1 + QuestionConstruct + + + fr.insee + l4lhkbmw-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhkbmw-CI-1 + 1 + ComputationItem + + + fr.insee + l4liqyis-QC + 1 + QuestionConstruct + + + fr.insee + l4liqyis-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj22ar-QC + 1 + QuestionConstruct + + + fr.insee + l4lj22ar-CI-0 + 1 + ComputationItem + + + fr.insee + l4oo7o08 + 1 + IfThenElse + + + fr.insee + l4oo245u + 1 + IfThenElse + + + + fr.insee + l4oo7o08 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo7o08-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4oo7o08-IP-1 + 1 + InParameter + + + l4oo7o08-IP-1 ="1" or isnull(l4oo7o08-IP-1) + + + + fr.insee + l4oo7o08-THEN + 1 + Sequence + + + + fr.insee + l4oo7o08-THEN + 1 + + + + filterContent + + fr.insee + l4oo2unu-QC + 1 + QuestionConstruct + + + fr.insee + l4oo2unu-CI-0 + 1 + ComputationItem + + + fr.insee + ltcyaiwn + 1 + IfThenElse + + + + fr.insee + ltcyaiwn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcyaiwn-IP-1 + 1 + + COM_ENFAIL2 + + + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + fr.insee + ltcyaiwn-IP-1 + 1 + InParameter + + + ltcyaiwn-IP-1 ="" or isnull(ltcyaiwn-IP-1) + + + + fr.insee + ltcyaiwn-THEN + 1 + Sequence + + + + fr.insee + ltcyaiwn-THEN + 1 + + + + filterContent + + fr.insee + l4oo8gk0-QC + 1 + QuestionConstruct + + + fr.insee + l4oo8gk0-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oo245u + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oo245u-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4oo245u-IP-1 + 1 + InParameter + + + l4oo245u-IP-1 ="2" + + + + fr.insee + l4oo245u-THEN + 1 + Sequence + + + + fr.insee + l4oo245u-THEN + 1 + + + + filterContent + + fr.insee + l4ooebmj-QC + 1 + QuestionConstruct + + + fr.insee + l4ooebmj-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnyip6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnyip6-IP-1 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + l4lnyip6-IP-2 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lnyip6-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lnyip6-IP-2 + 1 + InParameter + + + (l4lnyip6-IP-2="1" or isnull(l4lnyip6-IP-2)) and cast(l4lnyip6-IP-1,integer) >= 2005 + + + + fr.insee + l4lnyip6-THEN + 1 + Sequence + + + + fr.insee + l4lnyip6-THEN + 1 + + + + filterContent + + fr.insee + l8m0f3o7 + 1 + IfThenElse + + + fr.insee + llgj7k5k + 1 + IfThenElse + + + fr.insee + l4ljkmaj-QC + 1 + QuestionConstruct + + + fr.insee + l4ljkmaj-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwua2c + 1 + IfThenElse + + + fr.insee + l4ljj44i-QC + 1 + QuestionConstruct + + + fr.insee + l4ljj44i-CI-0 + 1 + ComputationItem + + + fr.insee + lvgpi52w-QC + 1 + QuestionConstruct + + + fr.insee + lvgpi52w-CI-0 + 1 + ComputationItem + + + + fr.insee + l8m0f3o7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0f3o7-IP-1 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l8m0f3o7-IP-1 + 1 + InParameter + + + cast(l8m0f3o7-IP-1,integer) <= 2012 + + + + fr.insee + l8m0f3o7-THEN + 1 + Sequence + + + + fr.insee + l8m0f3o7-THEN + 1 + + + + filterContent + + fr.insee + l4liztyl-QC + 1 + QuestionConstruct + + + fr.insee + l4liztyl-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj7k5k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj7k5k-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + llgj7k5k-IP-1 + 1 + InParameter + + + llgj7k5k-IP-1<>"3" or llgj7k5k-IP-1<>"5" or isnull(llgj7k5k-IP-1) + + + + fr.insee + llgj7k5k-THEN + 1 + Sequence + + + + fr.insee + llgj7k5k-THEN + 1 + + + + filterContent + + fr.insee + l4lk1w8p-QC + 1 + QuestionConstruct + + + fr.insee + l4lk1w8p-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwua2c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwua2c-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + fr.insee + ljwwua2c-IP-2 + 1 + + AUT_PAR_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + ljwwua2c-IP-1 + 1 + InParameter + + + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + ljwwua2c-IP-2 + 1 + InParameter + + + (ljwwua2c-IP-1<>"3" or ljwwua2c-IP-1<>"5" or isnull(ljwwua2c-IP-1)) and (ljwwua2c-IP-2="1" or isnull(ljwwua2c-IP-2)) + + + + fr.insee + ljwwua2c-THEN + 1 + Sequence + + + + fr.insee + ljwwua2c-THEN + 1 + + + + filterContent + + fr.insee + l4o73m0u-QC + 1 + QuestionConstruct + + + fr.insee + l4o73m0u-CI-0 + 1 + ComputationItem + + + fr.insee + l4o77apl + 1 + IfThenElse + + + + fr.insee + l4o77apl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o77apl-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o77apl-IP-1 + 1 + InParameter + + + l4o77apl-IP-1 ="1" or isnull(l4o77apl-IP-1) + + + + fr.insee + l4o77apl-THEN + 1 + Sequence + + + + fr.insee + l4o77apl-THEN + 1 + + + + filterContent + + fr.insee + l4lmxke4-QC + 1 + QuestionConstruct + + + fr.insee + l4lmxke4-CI-0 + 1 + ComputationItem + + + + fr.insee + l4loausq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4loausq-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4loausq-IP-1 + 1 + InParameter + + + not(isnull(l4loausq-IP-1)) and l4loausq-IP-1 >= 3 + + + + fr.insee + l4loausq-THEN + 1 + Sequence + + + + fr.insee + l4loausq-THEN + 1 + + + + filterContent + + fr.insee + ljmwnjny + 1 + Sequence + + + + fr.insee + lv6gelnt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6gelnt-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6gelnt-IP-1 + 1 + InParameter + + + lv6gelnt-IP-1 >0 + + + + fr.insee + lv6gelnt-THEN + 1 + Sequence + + + + fr.insee + lv6gelnt-THEN + 1 + + + + filterContent + + fr.insee + lv6g0wv2-QC + 1 + QuestionConstruct + + + fr.insee + lv6g0wv2-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gjawa + 1 + IfThenElse + + + + fr.insee + lv6gjawa + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6gjawa-IP-1 + 1 + + ADOPT_ENFAIL3 + + + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + OutParameter + + + fr.insee + lv6gjawa-IP-1 + 1 + InParameter + + + isnull(lv6gjawa-IP-1) or lv6gjawa-IP-1 ="1" + + + + fr.insee + lv6gjawa-THEN + 1 + Sequence + + + + fr.insee + lv6gjawa-THEN + 1 + + + + filterContent + + fr.insee + lv6gixgd-QC + 1 + QuestionConstruct + + + fr.insee + lv6gixgd-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gixgd-CI-1 + 1 + ComputationItem + + + fr.insee + lv6gixgd-CI-2 + 1 + ComputationItem + + + fr.insee + lv6gixgd-CI-3 + 1 + ComputationItem + + + + fr.insee + l8m0jyzr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0jyzr-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l8m0jyzr-IP-1 + 1 + InParameter + + + l8m0jyzr-IP-1 ="2" or l8m0jyzr-IP-1 ="3" or isnull( l8m0jyzr-IP-1) + + + + fr.insee + l8m0jyzr-THEN + 1 + Sequence + + + + fr.insee + l8m0jyzr-THEN + 1 + + + + filterContent + + fr.insee + l8m0bu1o-QC + 1 + QuestionConstruct + + + fr.insee + l8m0bu1o-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jd8k6b + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jd8k6b-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l5jd8k6b-IP-1 + 1 + InParameter + + + l5jd8k6b-IP-1 ="2" + + + + fr.insee + l5jd8k6b-THEN + 1 + Sequence + + + + fr.insee + l5jd8k6b-THEN + 1 + + + + filterContent + + fr.insee + l4lhbuxg-QC + 1 + QuestionConstruct + + + fr.insee + l4lhbuxg-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhbuxg-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lo0hmx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lo0hmx-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lo0hmx-IP-1 + 1 + InParameter + + + l4lo0hmx-IP-1 ="1" or isnull(l4lo0hmx-IP-1) + + + + fr.insee + l4lo0hmx-THEN + 1 + Sequence + + + + fr.insee + l4lo0hmx-THEN + 1 + + + + filterContent + + fr.insee + l4lhdubm-QC + 1 + QuestionConstruct + + + fr.insee + l4lhdubm-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhdubm-CI-1 + 1 + ComputationItem + + + fr.insee + l4lirpfm-QC + 1 + QuestionConstruct + + + fr.insee + l4lirpfm-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj2cqg-QC + 1 + QuestionConstruct + + + fr.insee + l4lj2cqg-CI-0 + 1 + ComputationItem + + + fr.insee + l4oof3zk + 1 + IfThenElse + + + fr.insee + l4oomvv6 + 1 + IfThenElse + + + + fr.insee + l4oof3zk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oof3zk-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4oof3zk-IP-1 + 1 + InParameter + + + l4oof3zk-IP-1 ="1" or isnull(l4oof3zk-IP-1) + + + + fr.insee + l4oof3zk-THEN + 1 + Sequence + + + + fr.insee + l4oof3zk-THEN + 1 + + + + filterContent + + fr.insee + l4oo41j6-QC + 1 + QuestionConstruct + + + fr.insee + l4oo41j6-CI-0 + 1 + ComputationItem + + + fr.insee + ltcycj1c + 1 + IfThenElse + + + + fr.insee + ltcycj1c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcycj1c-IP-1 + 1 + + COM_ENFAIL3 + + + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + fr.insee + ltcycj1c-IP-1 + 1 + InParameter + + + ltcycj1c-IP-1 ="" or isnull(ltcycj1c-IP-1) + + + + fr.insee + ltcycj1c-THEN + 1 + Sequence + + + + fr.insee + ltcycj1c-THEN + 1 + + + + filterContent + + fr.insee + l4oo03nq-QC + 1 + QuestionConstruct + + + fr.insee + l4oo03nq-CI-0 + 1 + ComputationItem + + + + fr.insee + l4oomvv6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oomvv6-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4oomvv6-IP-1 + 1 + InParameter + + + l4oomvv6-IP-1 ="2" + + + + fr.insee + l4oomvv6-THEN + 1 + Sequence + + + + fr.insee + l4oomvv6-THEN + 1 + + + + filterContent + + fr.insee + l4ooe2gj-QC + 1 + QuestionConstruct + + + fr.insee + l4ooe2gj-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnxn2v + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnxn2v-IP-1 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + l4lnxn2v-IP-2 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lnxn2v-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lnxn2v-IP-2 + 1 + InParameter + + + (l4lnxn2v-IP-2="1" or isnull(l4lnxn2v-IP-2)) and cast(l4lnxn2v-IP-1,integer) >= 2005 + + + + fr.insee + l4lnxn2v-THEN + 1 + Sequence + + + + fr.insee + l4lnxn2v-THEN + 1 + + + + filterContent + + fr.insee + l8m0a7pc + 1 + IfThenElse + + + fr.insee + llgiv4ql + 1 + IfThenElse + + + fr.insee + l4ljm6cp-QC + 1 + QuestionConstruct + + + fr.insee + l4ljm6cp-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwn75m + 1 + IfThenElse + + + fr.insee + l4ljg7fn-QC + 1 + QuestionConstruct + + + fr.insee + l4ljg7fn-CI-0 + 1 + ComputationItem + + + fr.insee + lvgq4efl-QC + 1 + QuestionConstruct + + + fr.insee + lvgq4efl-CI-0 + 1 + ComputationItem + + + + fr.insee + l8m0a7pc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0a7pc-IP-1 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l8m0a7pc-IP-1 + 1 + InParameter + + + cast(l8m0a7pc-IP-1,integer) <= 2012 + + + + fr.insee + l8m0a7pc-THEN + 1 + Sequence + + + + fr.insee + l8m0a7pc-THEN + 1 + + + + filterContent + + fr.insee + l4ljddzv-QC + 1 + QuestionConstruct + + + fr.insee + l4ljddzv-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiv4ql + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiv4ql-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + llgiv4ql-IP-1 + 1 + InParameter + + + llgiv4ql-IP-1<>"3" or llgiv4ql-IP-1<>"5" or isnull(llgiv4ql-IP-1) + + + + fr.insee + llgiv4ql-THEN + 1 + Sequence + + + + fr.insee + llgiv4ql-THEN + 1 + + + + filterContent + + fr.insee + l4lmjzwd-QC + 1 + QuestionConstruct + + + fr.insee + l4lmjzwd-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwn75m + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwn75m-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + fr.insee + ljwwn75m-IP-2 + 1 + + AUT_PAR_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + ljwwn75m-IP-1 + 1 + InParameter + + + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + ljwwn75m-IP-2 + 1 + InParameter + + + (ljwwn75m-IP-1<>"3" or ljwwn75m-IP-1<>"5" or isnull(ljwwn75m-IP-1)) and (ljwwn75m-IP-2="1" or isnull(ljwwn75m-IP-2)) + + + + fr.insee + ljwwn75m-THEN + 1 + Sequence + + + + fr.insee + ljwwn75m-THEN + 1 + + + + filterContent + + fr.insee + l4o7gt0n-QC + 1 + QuestionConstruct + + + fr.insee + l4o7gt0n-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7nxie + 1 + IfThenElse + + + + fr.insee + l4o7nxie + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7nxie-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7nxie-IP-1 + 1 + InParameter + + + l4o7nxie-IP-1 ="1" or isnull(l4o7nxie-IP-1) + + + + fr.insee + l4o7nxie-THEN + 1 + Sequence + + + + fr.insee + l4o7nxie-THEN + 1 + + + + filterContent + + fr.insee + l4lmszob-QC + 1 + QuestionConstruct + + + fr.insee + l4lmszob-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoexgb3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoexgb3-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoexgb3-IP-1 + 1 + InParameter + + + not(isnull(ljoexgb3-IP-1)) and ljoexgb3-IP-1 >= 4 + + + + fr.insee + ljoexgb3-THEN + 1 + Sequence + + + + fr.insee + ljoexgb3-THEN + 1 + + + + filterContent + + fr.insee + ljof3wlm + 1 + Sequence + + + + fr.insee + lv6heef5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6heef5-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6heef5-IP-1 + 1 + InParameter + + + lv6heef5-IP-1 >0 + + + + fr.insee + lv6heef5-THEN + 1 + Sequence + + + + fr.insee + lv6heef5-THEN + 1 + + + + filterContent + + fr.insee + lv6h7uqn-QC + 1 + QuestionConstruct + + + fr.insee + lv6h7uqn-CI-0 + 1 + ComputationItem + + + fr.insee + lv6h72h6 + 1 + IfThenElse + + + + fr.insee + lv6h72h6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6h72h6-IP-1 + 1 + + ADOPT_ENFAIL4 + + + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + OutParameter + + + fr.insee + lv6h72h6-IP-1 + 1 + InParameter + + + isnull(lv6h72h6-IP-1) or lv6h72h6-IP-1 ="1" + + + + fr.insee + lv6h72h6-THEN + 1 + Sequence + + + + fr.insee + lv6h72h6-THEN + 1 + + + + filterContent + + fr.insee + lv6gsj3o-QC + 1 + QuestionConstruct + + + fr.insee + lv6gsj3o-CI-0 + 1 + ComputationItem + + + fr.insee + lv6gsj3o-CI-1 + 1 + ComputationItem + + + fr.insee + lv6gsj3o-CI-2 + 1 + ComputationItem + + + fr.insee + lv6gsj3o-CI-3 + 1 + ComputationItem + + + + fr.insee + l8m04lnr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m04lnr-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l8m04lnr-IP-1 + 1 + InParameter + + + l8m04lnr-IP-1 ="2" or l8m04lnr-IP-1 ="3" or isnull( l8m04lnr-IP-1) + + + + fr.insee + l8m04lnr-THEN + 1 + Sequence + + + + fr.insee + l8m04lnr-THEN + 1 + + + + filterContent + + fr.insee + l8m03w7m-QC + 1 + QuestionConstruct + + + fr.insee + l8m03w7m-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdq77k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdq77k-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l5jdq77k-IP-1 + 1 + InParameter + + + l5jdq77k-IP-1 ="2" + + + + fr.insee + l5jdq77k-THEN + 1 + Sequence + + + + fr.insee + l5jdq77k-THEN + 1 + + + + filterContent + + fr.insee + l4lhbfxh-QC + 1 + QuestionConstruct + + + fr.insee + l4lhbfxh-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhbfxh-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnrwjq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnrwjq-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lnrwjq-IP-1 + 1 + InParameter + + + l4lnrwjq-IP-1 ="1" or isnull(l4lnrwjq-IP-1) + + + + fr.insee + l4lnrwjq-THEN + 1 + Sequence + + + + fr.insee + l4lnrwjq-THEN + 1 + + + + filterContent + + fr.insee + l4lho0e2-QC + 1 + QuestionConstruct + + + fr.insee + l4lho0e2-CI-0 + 1 + ComputationItem + + + fr.insee + l4lho0e2-CI-1 + 1 + ComputationItem + + + fr.insee + l4lj5kv6-QC + 1 + QuestionConstruct + + + fr.insee + l4lj5kv6-CI-0 + 1 + ComputationItem + + + fr.insee + l4lj0iea-QC + 1 + QuestionConstruct + + + fr.insee + l4lj0iea-CI-0 + 1 + ComputationItem + + + fr.insee + l4oohx7d + 1 + IfThenElse + + + fr.insee + l4ookswj + 1 + IfThenElse + + + + fr.insee + l4oohx7d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oohx7d-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4oohx7d-IP-1 + 1 + InParameter + + + l4oohx7d-IP-1 ="1" or isnull(l4oohx7d-IP-1) + + + + fr.insee + l4oohx7d-THEN + 1 + Sequence + + + + fr.insee + l4oohx7d-THEN + 1 + + + + filterContent + + fr.insee + l4onwhrf-QC + 1 + QuestionConstruct + + + fr.insee + l4onwhrf-CI-0 + 1 + ComputationItem + + + fr.insee + ltcya2zl + 1 + IfThenElse + + + + fr.insee + ltcya2zl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcya2zl-IP-1 + 1 + + COM_ENFAIL4 + + + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + fr.insee + ltcya2zl-IP-1 + 1 + InParameter + + + ltcya2zl-IP-1 ="" or isnull(ltcya2zl-IP-1) + + + + fr.insee + ltcya2zl-THEN + 1 + Sequence + + + + fr.insee + ltcya2zl-THEN + 1 + + + + filterContent + + fr.insee + l4oo4x1t-QC + 1 + QuestionConstruct + + + fr.insee + l4oo4x1t-CI-0 + 1 + ComputationItem + + + + fr.insee + l4ookswj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ookswj-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4ookswj-IP-1 + 1 + InParameter + + + l4ookswj-IP-1 ="2" + + + + fr.insee + l4ookswj-THEN + 1 + Sequence + + + + fr.insee + l4ookswj-THEN + 1 + + + + filterContent + + fr.insee + l4oo1817-QC + 1 + QuestionConstruct + + + fr.insee + l4oo1817-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnlsmv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnlsmv-IP-1 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + l4lnlsmv-IP-2 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lnlsmv-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lnlsmv-IP-2 + 1 + InParameter + + + (l4lnlsmv-IP-2="1" or isnull(l4lnlsmv-IP-2)) and cast(l4lnlsmv-IP-1,integer) >= 2005 + + + + fr.insee + l4lnlsmv-THEN + 1 + Sequence + + + + fr.insee + l4lnlsmv-THEN + 1 + + + + filterContent + + fr.insee + l8m0tant + 1 + IfThenElse + + + fr.insee + llgj9pm2 + 1 + IfThenElse + + + fr.insee + l4ljmpiu-QC + 1 + QuestionConstruct + + + fr.insee + l4ljmpiu-CI-0 + 1 + ComputationItem + + + fr.insee + ljwwnie8 + 1 + IfThenElse + + + fr.insee + l4ljjvig-QC + 1 + QuestionConstruct + + + fr.insee + l4ljjvig-CI-0 + 1 + ComputationItem + + + fr.insee + lvgpyw4o-QC + 1 + QuestionConstruct + + + fr.insee + lvgpyw4o-CI-0 + 1 + ComputationItem + + + + fr.insee + l8m0tant + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0tant-IP-1 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l8m0tant-IP-1 + 1 + InParameter + + + cast(l8m0tant-IP-1,integer) <= 2012 + + + + fr.insee + l8m0tant-THEN + 1 + Sequence + + + + fr.insee + l8m0tant-THEN + 1 + + + + filterContent + + fr.insee + l4lixcs2-QC + 1 + QuestionConstruct + + + fr.insee + l4lixcs2-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj9pm2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj9pm2-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + llgj9pm2-IP-1 + 1 + InParameter + + + llgj9pm2-IP-1<>"3" or llgj9pm2-IP-1<>"5" or isnull(llgj9pm2-IP-1) + + + + fr.insee + llgj9pm2-THEN + 1 + Sequence + + + + fr.insee + llgj9pm2-THEN + 1 + + + + filterContent + + fr.insee + l4lms9a0-QC + 1 + QuestionConstruct + + + fr.insee + l4lms9a0-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwwnie8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwwnie8-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + fr.insee + ljwwnie8-IP-2 + 1 + + AUT_PAR_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + ljwwnie8-IP-1 + 1 + InParameter + + + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + fr.insee + ljwwnie8-IP-2 + 1 + InParameter + + + (ljwwnie8-IP-1<>"3" or ljwwnie8-IP-1<>"5" or isnull(ljwwnie8-IP-1)) and (ljwwnie8-IP-2="1" or isnull(ljwwnie8-IP-2)) + + + + fr.insee + ljwwnie8-THEN + 1 + Sequence + + + + fr.insee + ljwwnie8-THEN + 1 + + + + filterContent + + fr.insee + l4o7jdze-QC + 1 + QuestionConstruct + + + fr.insee + l4o7jdze-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7s9or + 1 + IfThenElse + + + + fr.insee + l4o7s9or + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7s9or-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7s9or-IP-1 + 1 + InParameter + + + l4o7s9or-IP-1 ="1" or isnull(l4o7s9or-IP-1) + + + + fr.insee + l4o7s9or-THEN + 1 + Sequence + + + + fr.insee + l4o7s9or-THEN + 1 + + + + filterContent + + fr.insee + l4lmvah7-QC + 1 + QuestionConstruct + + + fr.insee + l4lmvah7-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoet34y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoet34y-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoet34y-IP-1 + 1 + InParameter + + + not(isnull(ljoet34y-IP-1)) and ljoet34y-IP-1 >= 5 + + + + fr.insee + ljoet34y-THEN + 1 + Sequence + + + + fr.insee + ljoet34y-THEN + 1 + + + + filterContent + + fr.insee + ljof7iet + 1 + Sequence + + + + fr.insee + lv6hy9lz + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6hy9lz-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6hy9lz-IP-1 + 1 + InParameter + + + lv6hy9lz-IP-1 >0 + + + + fr.insee + lv6hy9lz-THEN + 1 + Sequence + + + + fr.insee + lv6hy9lz-THEN + 1 + + + + filterContent + + fr.insee + lv6h7z1u-QC + 1 + QuestionConstruct + + + fr.insee + lv6h7z1u-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ia6p8 + 1 + IfThenElse + + + + fr.insee + lv6ia6p8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ia6p8-IP-1 + 1 + + ADOPT_ENFAIL5 + + + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + OutParameter + + + fr.insee + lv6ia6p8-IP-1 + 1 + InParameter + + + isnull(lv6ia6p8-IP-1) or lv6ia6p8-IP-1 ="1" + + + + fr.insee + lv6ia6p8-THEN + 1 + Sequence + + + + fr.insee + lv6ia6p8-THEN + 1 + + + + filterContent + + fr.insee + lv6hzzia-QC + 1 + QuestionConstruct + + + fr.insee + lv6hzzia-CI-0 + 1 + ComputationItem + + + fr.insee + lv6hzzia-CI-1 + 1 + ComputationItem + + + fr.insee + lv6hzzia-CI-2 + 1 + ComputationItem + + + fr.insee + lv6hzzia-CI-3 + 1 + ComputationItem + + + + fr.insee + l8m09ijs + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m09ijs-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l8m09ijs-IP-1 + 1 + InParameter + + + l8m09ijs-IP-1 ="2" or l8m09ijs-IP-1 ="3" or isnull( l8m09ijs-IP-1) + + + + fr.insee + l8m09ijs-THEN + 1 + Sequence + + + + fr.insee + l8m09ijs-THEN + 1 + + + + filterContent + + fr.insee + l8m0ld6c-QC + 1 + QuestionConstruct + + + fr.insee + l8m0ld6c-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jdpoid + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jdpoid-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l5jdpoid-IP-1 + 1 + InParameter + + + l5jdpoid-IP-1 ="2" + + + + fr.insee + l5jdpoid-THEN + 1 + Sequence + + + + fr.insee + l5jdpoid-THEN + 1 + + + + filterContent + + fr.insee + l4lh8c72-QC + 1 + QuestionConstruct + + + fr.insee + l4lh8c72-CI-0 + 1 + ComputationItem + + + fr.insee + l4lh8c72-CI-1 + 1 + ComputationItem + + + + fr.insee + l4lnut2u + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnut2u-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lnut2u-IP-1 + 1 + InParameter + + + l4lnut2u-IP-1 ="1" or isnull(l4lnut2u-IP-1) + + + + fr.insee + l4lnut2u-THEN + 1 + Sequence + + + + fr.insee + l4lnut2u-THEN + 1 + + + + filterContent + + fr.insee + l4lhn614-QC + 1 + QuestionConstruct + + + fr.insee + l4lhn614-CI-0 + 1 + ComputationItem + + + fr.insee + l4lhn614-CI-1 + 1 + ComputationItem + + + fr.insee + l4lj98cz-QC + 1 + QuestionConstruct + + + fr.insee + l4lj98cz-CI-0 + 1 + ComputationItem + + + fr.insee + l4lijtvo-QC + 1 + QuestionConstruct + + + fr.insee + l4lijtvo-CI-0 + 1 + ComputationItem + + + fr.insee + l4oomruu + 1 + IfThenElse + + + fr.insee + l4ooqy9y + 1 + IfThenElse + + + + fr.insee + l4oomruu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4oomruu-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4oomruu-IP-1 + 1 + InParameter + + + l4oomruu-IP-1 ="1" or isnull(l4oomruu-IP-1) + + + + fr.insee + l4oomruu-THEN + 1 + Sequence + + + + fr.insee + l4oomruu-THEN + 1 + + + + filterContent + + fr.insee + l4oo41q4-QC + 1 + QuestionConstruct + + + fr.insee + l4oo41q4-CI-0 + 1 + ComputationItem + + + fr.insee + ltcygj0q + 1 + IfThenElse + + + + fr.insee + ltcygj0q + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcygj0q-IP-1 + 1 + + COM_ENFAIL5 + + + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + fr.insee + ltcygj0q-IP-1 + 1 + InParameter + + + ltcygj0q-IP-1 ="" or isnull(ltcygj0q-IP-1) + + + + fr.insee + ltcygj0q-THEN + 1 + Sequence + + + + fr.insee + ltcygj0q-THEN + 1 + + + + filterContent + + fr.insee + l4oo7lwi-QC + 1 + QuestionConstruct + + + fr.insee + l4oo7lwi-CI-0 + 1 + ComputationItem + + + + fr.insee + l4ooqy9y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4ooqy9y-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4ooqy9y-IP-1 + 1 + InParameter + + + l4ooqy9y-IP-1 ="2" + + + + fr.insee + l4ooqy9y-THEN + 1 + Sequence + + + + fr.insee + l4ooqy9y-THEN + 1 + + + + filterContent + + fr.insee + l4oo5bj9-QC + 1 + QuestionConstruct + + + fr.insee + l4oo5bj9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lnsxgt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lnsxgt-IP-1 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + l4lnsxgt-IP-2 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lnsxgt-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lnsxgt-IP-2 + 1 + InParameter + + + (l4lnsxgt-IP-2="1" or isnull(l4lnsxgt-IP-2)) and cast(l4lnsxgt-IP-1,integer) >= 2005 + + + + fr.insee + l4lnsxgt-THEN + 1 + Sequence + + + + fr.insee + l4lnsxgt-THEN + 1 + + + + filterContent + + fr.insee + l8m0a4c7 + 1 + IfThenElse + + + fr.insee + llgiqzzj + 1 + IfThenElse + + + fr.insee + l4ljxer7-QC + 1 + QuestionConstruct + + + fr.insee + l4ljxer7-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx7oti + 1 + IfThenElse + + + fr.insee + l4ljcdar-QC + 1 + QuestionConstruct + + + fr.insee + l4ljcdar-CI-0 + 1 + ComputationItem + + + fr.insee + lvgq0pjg-QC + 1 + QuestionConstruct + + + fr.insee + lvgq0pjg-CI-0 + 1 + ComputationItem + + + + fr.insee + l8m0a4c7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8m0a4c7-IP-1 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l8m0a4c7-IP-1 + 1 + InParameter + + + cast(l8m0a4c7-IP-1,integer) <= 2012 + + + + fr.insee + l8m0a4c7-THEN + 1 + Sequence + + + + fr.insee + l8m0a4c7-THEN + 1 + + + + filterContent + + fr.insee + l4lizygc-QC + 1 + QuestionConstruct + + + fr.insee + l4lizygc-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiqzzj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiqzzj-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + llgiqzzj-IP-1 + 1 + InParameter + + + llgiqzzj-IP-1<>"3" or llgiqzzj-IP-1<>"5" or isnull(llgiqzzj-IP-1) + + + + fr.insee + llgiqzzj-THEN + 1 + Sequence + + + + fr.insee + llgiqzzj-THEN + 1 + + + + filterContent + + fr.insee + l4lmc52p-QC + 1 + QuestionConstruct + + + fr.insee + l4lmc52p-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx7oti + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx7oti-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + fr.insee + ljwx7oti-IP-2 + 1 + + AUT_PAR_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + ljwx7oti-IP-1 + 1 + InParameter + + + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + ljwx7oti-IP-2 + 1 + InParameter + + + (ljwx7oti-IP-1<>"3" or ljwx7oti-IP-1<>"5" or isnull(ljwx7oti-IP-1)) and (ljwx7oti-IP-2="1" or isnull(ljwx7oti-IP-2)) + + + + fr.insee + ljwx7oti-THEN + 1 + Sequence + + + + fr.insee + ljwx7oti-THEN + 1 + + + + filterContent + + fr.insee + l4o7vzru-QC + 1 + QuestionConstruct + + + fr.insee + l4o7vzru-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7khj9 + 1 + IfThenElse + + + + fr.insee + l4o7khj9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7khj9-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7khj9-IP-1 + 1 + InParameter + + + l4o7khj9-IP-1 ="1" or isnull(l4o7khj9-IP-1) + + + + fr.insee + l4o7khj9-THEN + 1 + Sequence + + + + fr.insee + l4o7khj9-THEN + 1 + + + + filterContent + + fr.insee + l4lms6u4-QC + 1 + QuestionConstruct + + + fr.insee + l4lms6u4-CI-0 + 1 + ComputationItem + + + + fr.insee + ljoevvfr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljoevvfr-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljoevvfr-IP-1 + 1 + InParameter + + + not(isnull(ljoevvfr-IP-1)) and ljoevvfr-IP-1 >= 6 + + + + fr.insee + ljoevvfr-THEN + 1 + Sequence + + + + fr.insee + ljoevvfr-THEN + 1 + + + + filterContent + + fr.insee + ljoezdxm + 1 + Sequence + + + + fr.insee + lv6ig1u2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ig1u2-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6ig1u2-IP-1 + 1 + InParameter + + + lv6ig1u2-IP-1 >0 + + + + fr.insee + lv6ig1u2-THEN + 1 + Sequence + + + + fr.insee + lv6ig1u2-THEN + 1 + + + + filterContent + + fr.insee + lv6i7gwi-QC + 1 + QuestionConstruct + + + fr.insee + lv6i7gwi-CI-0 + 1 + ComputationItem + + + fr.insee + lv6ifipe + 1 + IfThenElse + + + + fr.insee + lv6ifipe + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ifipe-IP-1 + 1 + + ADOPT_ENFAIL6 + + + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + OutParameter + + + fr.insee + lv6ifipe-IP-1 + 1 + InParameter + + + isnull(lv6ifipe-IP-1) or lv6ifipe-IP-1 ="1" + + + + fr.insee + lv6ifipe-THEN + 1 + Sequence + + + + fr.insee + lv6ifipe-THEN + 1 + + + + filterContent + + fr.insee + lv6imul3-QC + 1 + QuestionConstruct + + + fr.insee + lv6imul3-CI-0 + 1 + ComputationItem + + + fr.insee + lv6imul3-CI-1 + 1 + ComputationItem + + + fr.insee + lv6imul3-CI-2 + 1 + ComputationItem + + + fr.insee + lv6imul3-CI-3 + 1 + ComputationItem + + + + fr.insee + l8oi3stp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi3stp-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oi3stp-IP-1 + 1 + InParameter + + + l8oi3stp-IP-1 ="2" or l8oi3stp-IP-1 ="3" or isnull( l8oi3stp-IP-1) + + + + fr.insee + l8oi3stp-THEN + 1 + Sequence + + + + fr.insee + l8oi3stp-THEN + 1 + + + + filterContent + + fr.insee + l8oib75g-QC + 1 + QuestionConstruct + + + fr.insee + l8oib75g-CI-0 + 1 + ComputationItem + + + + fr.insee + l8oi6q33 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi6q33-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oi6q33-IP-1 + 1 + InParameter + + + l8oi6q33-IP-1 ="2" + + + + fr.insee + l8oi6q33-THEN + 1 + Sequence + + + + fr.insee + l8oi6q33-THEN + 1 + + + + filterContent + + fr.insee + l8ohrpn7-QC + 1 + QuestionConstruct + + + fr.insee + l8ohrpn7-CI-0 + 1 + ComputationItem + + + fr.insee + l8ohrpn7-CI-1 + 1 + ComputationItem + + + + fr.insee + l8oi13y2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oi13y2-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oi13y2-IP-1 + 1 + InParameter + + + l8oi13y2-IP-1 ="1" or isnull(l8oi13y2-IP-1) + + + + fr.insee + l8oi13y2-THEN + 1 + Sequence + + + + fr.insee + l8oi13y2-THEN + 1 + + + + filterContent + + fr.insee + l8ohwpt9-QC + 1 + QuestionConstruct + + + fr.insee + l8ohwpt9-CI-0 + 1 + ComputationItem + + + fr.insee + l8ohwpt9-CI-1 + 1 + ComputationItem + + + fr.insee + l8oh46rn-QC + 1 + QuestionConstruct + + + fr.insee + l8oh46rn-CI-0 + 1 + ComputationItem + + + fr.insee + l8ogysyp-QC + 1 + QuestionConstruct + + + fr.insee + l8ogysyp-CI-0 + 1 + ComputationItem + + + fr.insee + l8oh3gr5 + 1 + IfThenElse + + + fr.insee + l8ogw3wg + 1 + IfThenElse + + + + fr.insee + l8oh3gr5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oh3gr5-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8oh3gr5-IP-1 + 1 + InParameter + + + l8oh3gr5-IP-1 ="1" or isnull(l8oh3gr5-IP-1) + + + + fr.insee + l8oh3gr5-THEN + 1 + Sequence + + + + fr.insee + l8oh3gr5-THEN + 1 + + + + filterContent + + fr.insee + l8ogqig3-QC + 1 + QuestionConstruct + + + fr.insee + l8ogqig3-CI-0 + 1 + ComputationItem + + + fr.insee + ltcyj97e + 1 + IfThenElse + + + + fr.insee + ltcyj97e + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcyj97e-IP-1 + 1 + + COM_ENFAIL6 + + + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + fr.insee + ltcyj97e-IP-1 + 1 + InParameter + + + ltcyj97e-IP-1 ="" or isnull(ltcyj97e-IP-1) + + + + fr.insee + ltcyj97e-THEN + 1 + Sequence + + + + fr.insee + ltcyj97e-THEN + 1 + + + + filterContent + + fr.insee + l8ogp9jo-QC + 1 + QuestionConstruct + + + fr.insee + l8ogp9jo-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ogw3wg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ogw3wg-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogw3wg-IP-1 + 1 + InParameter + + + l8ogw3wg-IP-1 ="2" + + + + fr.insee + l8ogw3wg-THEN + 1 + Sequence + + + + fr.insee + l8ogw3wg-THEN + 1 + + + + filterContent + + fr.insee + l8ogpnbn-QC + 1 + QuestionConstruct + + + fr.insee + l8ogpnbn-CI-0 + 1 + ComputationItem + + + + fr.insee + l8oh7dqr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oh7dqr-IP-1 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + l8oh7dqr-IP-2 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oh7dqr-IP-1 + 1 + InParameter + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8oh7dqr-IP-2 + 1 + InParameter + + + (l8oh7dqr-IP-2="1" or isnull(l8oh7dqr-IP-2)) and cast(l8oh7dqr-IP-1,integer) >= 2005 + + + + fr.insee + l8oh7dqr-THEN + 1 + Sequence + + + + fr.insee + l8oh7dqr-THEN + 1 + + + + filterContent + + fr.insee + l8oha56t + 1 + IfThenElse + + + fr.insee + llgjbj7o + 1 + IfThenElse + + + fr.insee + l8oarkxm-QC + 1 + QuestionConstruct + + + fr.insee + l8oarkxm-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx5pd4 + 1 + IfThenElse + + + fr.insee + l8oasgat-QC + 1 + QuestionConstruct + + + fr.insee + l8oasgat-CI-0 + 1 + ComputationItem + + + fr.insee + lvgqbpim-QC + 1 + QuestionConstruct + + + fr.insee + lvgqbpim-CI-0 + 1 + ComputationItem + + + + fr.insee + l8oha56t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oha56t-IP-1 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oha56t-IP-1 + 1 + InParameter + + + cast(l8oha56t-IP-1,integer) <= 2012 + + + + fr.insee + l8oha56t-THEN + 1 + Sequence + + + + fr.insee + l8oha56t-THEN + 1 + + + + filterContent + + fr.insee + l8ogukpt-QC + 1 + QuestionConstruct + + + fr.insee + l8ogukpt-CI-0 + 1 + ComputationItem + + + + fr.insee + llgjbj7o + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgjbj7o-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + llgjbj7o-IP-1 + 1 + InParameter + + + llgjbj7o-IP-1<>"3" or llgjbj7o-IP-1<>"5" or isnull(llgjbj7o-IP-1) + + + + fr.insee + llgjbj7o-THEN + 1 + Sequence + + + + fr.insee + llgjbj7o-THEN + 1 + + + + filterContent + + fr.insee + l8ob0dk4-QC + 1 + QuestionConstruct + + + fr.insee + l8ob0dk4-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx5pd4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx5pd4-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + fr.insee + ljwx5pd4-IP-2 + 1 + + AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + ljwx5pd4-IP-1 + 1 + InParameter + + + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + ljwx5pd4-IP-2 + 1 + InParameter + + + (ljwx5pd4-IP-1<>"3" or ljwx5pd4-IP-1<>"5" or isnull(ljwx5pd4-IP-1)) and (ljwx5pd4-IP-2="1" or isnull(ljwx5pd4-IP-2)) + + + + fr.insee + ljwx5pd4-THEN + 1 + Sequence + + + + fr.insee + ljwx5pd4-THEN + 1 + + + + filterContent + + fr.insee + l8oaqbj5-QC + 1 + QuestionConstruct + + + fr.insee + l8oaqbj5-CI-0 + 1 + ComputationItem + + + fr.insee + l8obctff + 1 + IfThenElse + + + + fr.insee + l8obctff + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8obctff-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8obctff-IP-1 + 1 + InParameter + + + l8obctff-IP-1 ="1" or isnull(l8obctff-IP-1) + + + + fr.insee + l8obctff-THEN + 1 + Sequence + + + + fr.insee + l8obctff-THEN + 1 + + + + filterContent + + fr.insee + l8oanpzw-QC + 1 + QuestionConstruct + + + fr.insee + l8oanpzw-CI-0 + 1 + ComputationItem + + + + fr.insee + ljofcoik + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljofcoik-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljofcoik-IP-1 + 1 + InParameter + + + not(isnull(ljofcoik-IP-1)) and ljofcoik-IP-1 >= 7 + + + + fr.insee + ljofcoik-THEN + 1 + Sequence + + + + fr.insee + ljofcoik-THEN + 1 + + + + filterContent + + fr.insee + ljof8bti + 1 + Sequence + + + + fr.insee + lv6ify6l + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6ify6l-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6ify6l-IP-1 + 1 + InParameter + + + lv6ify6l-IP-1 >0 + + + + fr.insee + lv6ify6l-THEN + 1 + Sequence + + + + fr.insee + lv6ify6l-THEN + 1 + + + + filterContent + + fr.insee + lv6hwis8-QC + 1 + QuestionConstruct + + + fr.insee + lv6hwis8-CI-0 + 1 + ComputationItem + + + fr.insee + lv6kjg48 + 1 + IfThenElse + + + + fr.insee + lv6kjg48 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6kjg48-IP-1 + 1 + + ADOPT_ENFAIL7 + + + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + OutParameter + + + fr.insee + lv6kjg48-IP-1 + 1 + InParameter + + + isnull(lv6kjg48-IP-1) or lv6kjg48-IP-1 ="1" + + + + fr.insee + lv6kjg48-THEN + 1 + Sequence + + + + fr.insee + lv6kjg48-THEN + 1 + + + + filterContent + + fr.insee + lv6kasxf-QC + 1 + QuestionConstruct + + + fr.insee + lv6kasxf-CI-0 + 1 + ComputationItem + + + fr.insee + lv6kasxf-CI-1 + 1 + ComputationItem + + + fr.insee + lv6kasxf-CI-2 + 1 + ComputationItem + + + fr.insee + lv6kasxf-CI-3 + 1 + ComputationItem + + + + fr.insee + l8ojynib + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojynib-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8ojynib-IP-1 + 1 + InParameter + + + l8ojynib-IP-1 ="2" or l8ojynib-IP-1 ="3" or isnull( l8ojynib-IP-1) + + + + fr.insee + l8ojynib-THEN + 1 + Sequence + + + + fr.insee + l8ojynib-THEN + 1 + + + + filterContent + + fr.insee + l8ok0d4y-QC + 1 + QuestionConstruct + + + fr.insee + l8ok0d4y-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojvs72 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojvs72-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojvs72-IP-1 + 1 + InParameter + + + l8ojvs72-IP-1 ="2" + + + + fr.insee + l8ojvs72-THEN + 1 + Sequence + + + + fr.insee + l8ojvs72-THEN + 1 + + + + filterContent + + fr.insee + l8ojs3vl-QC + 1 + QuestionConstruct + + + fr.insee + l8ojs3vl-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojs3vl-CI-1 + 1 + ComputationItem + + + + fr.insee + l8ojs17t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojs17t-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojs17t-IP-1 + 1 + InParameter + + + l8ojs17t-IP-1 ="1" or isnull(l8ojs17t-IP-1) + + + + fr.insee + l8ojs17t-THEN + 1 + Sequence + + + + fr.insee + l8ojs17t-THEN + 1 + + + + filterContent + + fr.insee + l8ojuhud-QC + 1 + QuestionConstruct + + + fr.insee + l8ojuhud-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojuhud-CI-1 + 1 + ComputationItem + + + fr.insee + l8ojmjws-QC + 1 + QuestionConstruct + + + fr.insee + l8ojmjws-CI-0 + 1 + ComputationItem + + + fr.insee + l8oj98gw-QC + 1 + QuestionConstruct + + + fr.insee + l8oj98gw-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojnogl + 1 + IfThenElse + + + fr.insee + l8ojhkzf + 1 + IfThenElse + + + + fr.insee + l8ojnogl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojnogl-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8ojnogl-IP-1 + 1 + InParameter + + + l8ojnogl-IP-1 ="1" or isnull(l8ojnogl-IP-1) + + + + fr.insee + l8ojnogl-THEN + 1 + Sequence + + + + fr.insee + l8ojnogl-THEN + 1 + + + + filterContent + + fr.insee + l8ojczfv-QC + 1 + QuestionConstruct + + + fr.insee + l8ojczfv-CI-0 + 1 + ComputationItem + + + fr.insee + ltcylyeq + 1 + IfThenElse + + + + fr.insee + ltcylyeq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcylyeq-IP-1 + 1 + + COM_ENFAIL7 + + + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + fr.insee + ltcylyeq-IP-1 + 1 + InParameter + + + ltcylyeq-IP-1 ="" or isnull(ltcylyeq-IP-1) + + + + fr.insee + ltcylyeq-THEN + 1 + Sequence + + + + fr.insee + ltcylyeq-THEN + 1 + + + + filterContent + + fr.insee + l8ojb4ub-QC + 1 + QuestionConstruct + + + fr.insee + l8ojb4ub-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojhkzf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojhkzf-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8ojhkzf-IP-1 + 1 + InParameter + + + l8ojhkzf-IP-1 ="2" + + + + fr.insee + l8ojhkzf-THEN + 1 + Sequence + + + + fr.insee + l8ojhkzf-THEN + 1 + + + + filterContent + + fr.insee + l8ojif3m-QC + 1 + QuestionConstruct + + + fr.insee + l8ojif3m-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ojrm6c + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojrm6c-IP-1 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + l8ojrm6c-IP-2 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8ojrm6c-IP-1 + 1 + InParameter + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ojrm6c-IP-2 + 1 + InParameter + + + (l8ojrm6c-IP-2="1" or isnull(l8ojrm6c-IP-2)) and cast(l8ojrm6c-IP-1,integer) >= 2005 + + + + fr.insee + l8ojrm6c-THEN + 1 + Sequence + + + + fr.insee + l8ojrm6c-THEN + 1 + + + + filterContent + + fr.insee + l8ok7ek7 + 1 + IfThenElse + + + fr.insee + llgiunp0 + 1 + IfThenElse + + + fr.insee + l8oj67fo-QC + 1 + QuestionConstruct + + + fr.insee + l8oj67fo-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx1n48 + 1 + IfThenElse + + + fr.insee + l8oizp0r-QC + 1 + QuestionConstruct + + + fr.insee + l8oizp0r-CI-0 + 1 + ComputationItem + + + fr.insee + lvgq4gkg-QC + 1 + QuestionConstruct + + + fr.insee + lvgq4gkg-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ok7ek7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ok7ek7-IP-1 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8ok7ek7-IP-1 + 1 + InParameter + + + cast(l8ok7ek7-IP-1,integer) <= 2012 + + + + fr.insee + l8ok7ek7-THEN + 1 + Sequence + + + + fr.insee + l8ok7ek7-THEN + 1 + + + + filterContent + + fr.insee + l8oja1pz-QC + 1 + QuestionConstruct + + + fr.insee + l8oja1pz-CI-0 + 1 + ComputationItem + + + + fr.insee + llgiunp0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgiunp0-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + llgiunp0-IP-1 + 1 + InParameter + + + llgiunp0-IP-1<>"3" or llgiunp0-IP-1<>"5" or isnull(llgiunp0-IP-1) + + + + fr.insee + llgiunp0-THEN + 1 + Sequence + + + + fr.insee + llgiunp0-THEN + 1 + + + + filterContent + + fr.insee + l8oiinpy-QC + 1 + QuestionConstruct + + + fr.insee + l8oiinpy-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx1n48 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx1n48-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + fr.insee + ljwx1n48-IP-2 + 1 + + AUT_PAR_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + ljwx1n48-IP-1 + 1 + InParameter + + + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + ljwx1n48-IP-2 + 1 + InParameter + + + (ljwx1n48-IP-1<>"3" or ljwx1n48-IP-1<>"5" or isnull(ljwx1n48-IP-1)) and (ljwx1n48-IP-2="1" or isnull(ljwx1n48-IP-2)) + + + + fr.insee + ljwx1n48-THEN + 1 + Sequence + + + + fr.insee + ljwx1n48-THEN + 1 + + + + filterContent + + fr.insee + l8oiu9ax-QC + 1 + QuestionConstruct + + + fr.insee + l8oiu9ax-CI-0 + 1 + ComputationItem + + + fr.insee + l8ojcjwo + 1 + IfThenElse + + + + fr.insee + l8ojcjwo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ojcjwo-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8ojcjwo-IP-1 + 1 + InParameter + + + l8ojcjwo-IP-1 ="1" or isnull(l8ojcjwo-IP-1) + + + + fr.insee + l8ojcjwo-THEN + 1 + Sequence + + + + fr.insee + l8ojcjwo-THEN + 1 + + + + filterContent + + fr.insee + l8oicj6e-QC + 1 + QuestionConstruct + + + fr.insee + l8oicj6e-CI-0 + 1 + ComputationItem + + + + fr.insee + ljof97j4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljof97j4-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + ljof97j4-IP-1 + 1 + InParameter + + + not(isnull(ljof97j4-IP-1)) and ljof97j4-IP-1 >= 8 + + + + fr.insee + ljof97j4-THEN + 1 + Sequence + + + + fr.insee + ljof97j4-THEN + 1 + + + + filterContent + + fr.insee + ljofiex8 + 1 + Sequence + + + + fr.insee + lv6i1rtq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6i1rtq-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + lv6i1rtq-IP-1 + 1 + InParameter + + + lv6i1rtq-IP-1 >0 + + + + fr.insee + lv6i1rtq-THEN + 1 + Sequence + + + + fr.insee + lv6i1rtq-THEN + 1 + + + + filterContent + + fr.insee + lv6igxed-QC + 1 + QuestionConstruct + + + fr.insee + lv6igxed-CI-0 + 1 + ComputationItem + + + fr.insee + lv6knh95 + 1 + IfThenElse + + + + fr.insee + lv6knh95 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6knh95-IP-1 + 1 + + ADOPT_ENFAIL8 + + + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + OutParameter + + + fr.insee + lv6knh95-IP-1 + 1 + InParameter + + + isnull(lv6knh95-IP-1) or lv6knh95-IP-1 ="1" + + + + fr.insee + lv6knh95-THEN + 1 + Sequence + + + + fr.insee + lv6knh95-THEN + 1 + + + + filterContent + + fr.insee + lv6khz5j-QC + 1 + QuestionConstruct + + + fr.insee + lv6khz5j-CI-0 + 1 + ComputationItem + + + fr.insee + lv6khz5j-CI-1 + 1 + ComputationItem + + + fr.insee + lv6khz5j-CI-2 + 1 + ComputationItem + + + fr.insee + lv6khz5j-CI-3 + 1 + ComputationItem + + + + fr.insee + l8ol5p2y + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ol5p2y-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8ol5p2y-IP-1 + 1 + InParameter + + + l8ol5p2y-IP-1 ="2" or l8ol5p2y-IP-1 ="3" or isnull( l8ol5p2y-IP-1) + + + + fr.insee + l8ol5p2y-THEN + 1 + Sequence + + + + fr.insee + l8ol5p2y-THEN + 1 + + + + filterContent + + fr.insee + l8ol369l-QC + 1 + QuestionConstruct + + + fr.insee + l8ol369l-CI-0 + 1 + ComputationItem + + + + fr.insee + l8ol0eoi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8ol0eoi-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ol0eoi-IP-1 + 1 + InParameter + + + l8ol0eoi-IP-1 ="2" + + + + fr.insee + l8ol0eoi-THEN + 1 + Sequence + + + + fr.insee + l8ol0eoi-THEN + 1 + + + + filterContent + + fr.insee + l8olcd8n-QC + 1 + QuestionConstruct + + + fr.insee + l8olcd8n-CI-0 + 1 + ComputationItem + + + fr.insee + l8olcd8n-CI-1 + 1 + ComputationItem + + + + fr.insee + l8oky4d1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8oky4d1-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8oky4d1-IP-1 + 1 + InParameter + + + l8oky4d1-IP-1 ="1" or isnull(l8oky4d1-IP-1) + + + + fr.insee + l8oky4d1-THEN + 1 + Sequence + + + + fr.insee + l8oky4d1-THEN + 1 + + + + filterContent + + fr.insee + l8ol84b7-QC + 1 + QuestionConstruct + + + fr.insee + l8ol84b7-CI-0 + 1 + ComputationItem + + + fr.insee + l8ol84b7-CI-1 + 1 + ComputationItem + + + fr.insee + l8okx7cd-QC + 1 + QuestionConstruct + + + fr.insee + l8okx7cd-CI-0 + 1 + ComputationItem + + + fr.insee + l8okpxv8-QC + 1 + QuestionConstruct + + + fr.insee + l8okpxv8-CI-0 + 1 + ComputationItem + + + fr.insee + l8okmnvp + 1 + IfThenElse + + + fr.insee + l8okygtc + 1 + IfThenElse + + + + fr.insee + l8okmnvp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okmnvp-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okmnvp-IP-1 + 1 + InParameter + + + l8okmnvp-IP-1 ="1" or isnull(l8okmnvp-IP-1) + + + + fr.insee + l8okmnvp-THEN + 1 + Sequence + + + + fr.insee + l8okmnvp-THEN + 1 + + + + filterContent + + fr.insee + l8okjfla-QC + 1 + QuestionConstruct + + + fr.insee + l8okjfla-CI-0 + 1 + ComputationItem + + + fr.insee + ltcypqd0 + 1 + IfThenElse + + + + fr.insee + ltcypqd0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcypqd0-IP-1 + 1 + + COM_ENFAIL8 + + + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + fr.insee + ltcypqd0-IP-1 + 1 + InParameter + + + ltcypqd0-IP-1 ="" or isnull(ltcypqd0-IP-1) + + + + fr.insee + ltcypqd0-THEN + 1 + Sequence + + + + fr.insee + ltcypqd0-THEN + 1 + + + + filterContent + + fr.insee + l8okue2t-QC + 1 + QuestionConstruct + + + fr.insee + l8okue2t-CI-0 + 1 + ComputationItem + + + + fr.insee + l8okygtc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okygtc-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okygtc-IP-1 + 1 + InParameter + + + l8okygtc-IP-1 ="2" + + + + fr.insee + l8okygtc-THEN + 1 + Sequence + + + + fr.insee + l8okygtc-THEN + 1 + + + + filterContent + + fr.insee + l8okxgwv-QC + 1 + QuestionConstruct + + + fr.insee + l8okxgwv-CI-0 + 1 + ComputationItem + + + + fr.insee + l8olrfxk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8olrfxk-IP-1 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + l8olrfxk-IP-2 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8olrfxk-IP-1 + 1 + InParameter + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8olrfxk-IP-2 + 1 + InParameter + + + (l8olrfxk-IP-2="1" or isnull(l8olrfxk-IP-2)) and cast(l8olrfxk-IP-1,integer) >= 2005 + + + + fr.insee + l8olrfxk-THEN + 1 + Sequence + + + + fr.insee + l8olrfxk-THEN + 1 + + + + filterContent + + fr.insee + l8okpmuc + 1 + IfThenElse + + + fr.insee + llgj6tya + 1 + IfThenElse + + + fr.insee + l8okkkef-QC + 1 + QuestionConstruct + + + fr.insee + l8okkkef-CI-0 + 1 + ComputationItem + + + fr.insee + ljwx4bei + 1 + IfThenElse + + + fr.insee + l8oklb21-QC + 1 + QuestionConstruct + + + fr.insee + l8oklb21-CI-0 + 1 + ComputationItem + + + fr.insee + lvgq7nb7-QC + 1 + QuestionConstruct + + + fr.insee + lvgq7nb7-CI-0 + 1 + ComputationItem + + + + fr.insee + l8okpmuc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okpmuc-IP-1 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8okpmuc-IP-1 + 1 + InParameter + + + cast(l8okpmuc-IP-1,integer) <= 2012 + + + + fr.insee + l8okpmuc-THEN + 1 + Sequence + + + + fr.insee + l8okpmuc-THEN + 1 + + + + filterContent + + fr.insee + l8oksuft-QC + 1 + QuestionConstruct + + + fr.insee + l8oksuft-CI-0 + 1 + ComputationItem + + + + fr.insee + llgj6tya + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgj6tya-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + llgj6tya-IP-1 + 1 + InParameter + + + llgj6tya-IP-1<>"3" or llgj6tya-IP-1<>"5" or isnull(llgj6tya-IP-1) + + + + fr.insee + llgj6tya-THEN + 1 + Sequence + + + + fr.insee + llgj6tya-THEN + 1 + + + + filterContent + + fr.insee + l8okked6-QC + 1 + QuestionConstruct + + + fr.insee + l8okked6-CI-0 + 1 + ComputationItem + + + + fr.insee + ljwx4bei + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ljwx4bei-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + fr.insee + ljwx4bei-IP-2 + 1 + + AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + ljwx4bei-IP-1 + 1 + InParameter + + + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + fr.insee + ljwx4bei-IP-2 + 1 + InParameter + + + (ljwx4bei-IP-1<>"3" or ljwx4bei-IP-1<>"5" or isnull(ljwx4bei-IP-1)) and (ljwx4bei-IP-2="1" or isnull(ljwx4bei-IP-2)) + + + + fr.insee + ljwx4bei-THEN + 1 + Sequence + + + + fr.insee + ljwx4bei-THEN + 1 + + + + filterContent + + fr.insee + l8okfvhy-QC + 1 + QuestionConstruct + + + fr.insee + l8okfvhy-CI-0 + 1 + ComputationItem + + + fr.insee + l8okg7q9 + 1 + IfThenElse + + + + fr.insee + l8okg7q9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8okg7q9-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okg7q9-IP-1 + 1 + InParameter + + + l8okg7q9-IP-1 ="1" or isnull(l8okg7q9-IP-1) + + + + fr.insee + l8okg7q9-THEN + 1 + Sequence + + + + fr.insee + l8okg7q9-THEN + 1 + + + + filterContent + + fr.insee + l8okioqc-QC + 1 + QuestionConstruct + + + fr.insee + l8okioqc-CI-0 + 1 + ComputationItem + + + + fr.insee + l8sqkubc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l8sqkubc-IP-1 + 1 + + AGE + + + + fr.insee + l8sqkubc-IP-2 + 1 + + ENF + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + l8sqkubc-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + l8sqkubc-IP-2 + 1 + InParameter + + + cast (l8sqkubc-IP-1, integer) >= 35 and (isnull(l8sqkubc-IP-2) or l8sqkubc-IP-2 ="1") + + + + fr.insee + l8sqkubc-THEN + 1 + Sequence + + + + fr.insee + l8sqkubc-THEN + 1 + + + + filterContent + + fr.insee + l1f6bztr + 1 + Sequence + + + + fr.insee + l1ghnjrp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ghnjrp-IP-1 + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1ghnjrp-IP-1 + 1 + InParameter + + + l1ghnjrp-IP-1 ="1" + + + + fr.insee + l1ghnjrp-THEN + 1 + Sequence + + + + fr.insee + l1ghnjrp-THEN + 1 + + + + filterContent + + fr.insee + l1f6dz1j-QC + 1 + QuestionConstruct + + + fr.insee + l1f6dz1j-CI-0 + 1 + ComputationItem + + + fr.insee + l1f69ivh-QC + 1 + QuestionConstruct + + + fr.insee + l1f69ivh-CI-0 + 1 + ComputationItem + + + fr.insee + l1f69ivh-CI-1 + 1 + ComputationItem + + + fr.insee + l1g3hka7-QC + 1 + QuestionConstruct + + + fr.insee + l1g3hka7-CI-0 + 1 + ComputationItem + + + fr.insee + l1f4yrno-QC + 1 + QuestionConstruct + + + fr.insee + l1f4yrno-CI-0 + 1 + ComputationItem + + + + fr.insee + l1ggxm5j + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggxm5j-IP-1 + 1 + + COUPLE + + + + fr.insee + l1ggxm5j-IP-2 + 1 + + ENF + + + + fr.insee + l1ggxm5j-IP-3 + 1 + + AIDE_APPORT1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + l1ggxm5j-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + l1ggxm5j-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + l1ggxm5j-IP-3 + 1 + InParameter + + + l1ggxm5j-IP-3 and (isnull(l1ggxm5j-IP-1) or l1ggxm5j-IP-1="1" or l1ggxm5j-IP-1="2") and (l1ggxm5j-IP-2="1" or isnull(l1ggxm5j-IP-2)) + + + + fr.insee + l1ggxm5j-THEN + 1 + Sequence + + + + fr.insee + l1ggxm5j-THEN + 1 + + + + filterContent + + fr.insee + l1ggssgl-QC + 1 + QuestionConstruct + + + fr.insee + l1ggssgl-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjde3bx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjde3bx-IP-1 + 1 + + QUI_AID_APP_1A4 + + + + + fr.insee + l1ggssgl-QOP-m23ch75l + 1 + OutParameter + + + fr.insee + lwjde3bx-IP-1 + 1 + InParameter + + + lwjde3bx-IP-1 + + + + fr.insee + lwjde3bx-THEN + 1 + Sequence + + + + fr.insee + lwjde3bx-THEN + 1 + + + + filterContent + + fr.insee + lwhm7k7c-QC + 1 + QuestionConstruct + + + + fr.insee + lw7udebn + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7udebn-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7udebn-IP-2 + 1 + + ENF + + + + fr.insee + lw7udebn-IP-3 + 1 + + AIDE_APPORT1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7udebn-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7udebn-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + lw7udebn-IP-3 + 1 + InParameter + + + lw7udebn-IP-3 and (isnull(lw7udebn-IP-1) or lw7udebn-IP-1="1" or lw7udebn-IP-1="2") and lw7udebn-IP-2="2" + + + + fr.insee + lw7udebn-THEN + 1 + Sequence + + + + fr.insee + lw7udebn-THEN + 1 + + + + filterContent + + fr.insee + lw7u5rox-QC + 1 + QuestionConstruct + + + fr.insee + lw7u5rox-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjdhsic + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjdhsic-IP-1 + 1 + + QUI_AID_APP_1B3 + + + + + fr.insee + lw7u5rox-QOP-m23cpqpj + 1 + OutParameter + + + fr.insee + lwjdhsic-IP-1 + 1 + InParameter + + + lwjdhsic-IP-1 + + + + fr.insee + lwjdhsic-THEN + 1 + Sequence + + + + fr.insee + lwjdhsic-THEN + 1 + + + + filterContent + + fr.insee + lwjdc6vy-QC + 1 + QuestionConstruct + + + + fr.insee + lw7u8ko8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7u8ko8-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7u8ko8-IP-2 + 1 + + ENF + + + + fr.insee + lw7u8ko8-IP-3 + 1 + + AIDE_APPORT1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7u8ko8-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7u8ko8-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + lw7u8ko8-IP-3 + 1 + InParameter + + + lw7u8ko8-IP-3 and (lw7u8ko8-IP-1="3" or lw7u8ko8-IP-1="4") and (lw7u8ko8-IP-2="1" or isnull(lw7u8ko8-IP-2)) + + + + fr.insee + lw7u8ko8-THEN + 1 + Sequence + + + + fr.insee + lw7u8ko8-THEN + 1 + + + + filterContent + + fr.insee + lw7tzp47-QC + 1 + QuestionConstruct + + + fr.insee + lw7tzp47-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjdql0k + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjdql0k-IP-1 + 1 + + QUI_AID_APP_1C3 + + + + + fr.insee + lw7tzp47-QOP-m23cjnkj + 1 + OutParameter + + + fr.insee + lwjdql0k-IP-1 + 1 + InParameter + + + lwjdql0k-IP-1 + + + + fr.insee + lwjdql0k-THEN + 1 + Sequence + + + + fr.insee + lwjdql0k-THEN + 1 + + + + filterContent + + fr.insee + lwjdesu0-QC + 1 + QuestionConstruct + + + + fr.insee + lw7umnyf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7umnyf-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7umnyf-IP-2 + 1 + + ENF + + + + fr.insee + lw7umnyf-IP-3 + 1 + + AIDE_APPORT1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7umnyf-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7umnyf-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + lw7umnyf-IP-3 + 1 + InParameter + + + lw7umnyf-IP-3 and (lw7umnyf-IP-1="3" or lw7umnyf-IP-1="4") and lw7umnyf-IP-2="2" + + + + fr.insee + lw7umnyf-THEN + 1 + Sequence + + + + fr.insee + lw7umnyf-THEN + 1 + + + + filterContent + + fr.insee + lw7u3zby-QC + 1 + QuestionConstruct + + + fr.insee + lw7u3zby-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjdj9xk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjdj9xk-IP-1 + 1 + + QUI_AID_APP_1D2 + + + + + fr.insee + lw7u3zby-QOP-m23coud5 + 1 + OutParameter + + + fr.insee + lwjdj9xk-IP-1 + 1 + InParameter + + + lwjdj9xk-IP-1 + + + + fr.insee + lwjdj9xk-THEN + 1 + Sequence + + + + fr.insee + lwjdj9xk-THEN + 1 + + + + filterContent + + fr.insee + lwjdhxux-QC + 1 + QuestionConstruct + + + + fr.insee + lw7w0rtm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7w0rtm-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7w0rtm-IP-2 + 1 + + ENF + + + + fr.insee + lw7w0rtm-IP-3 + 1 + + AIDE_APPORT2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7w0rtm-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7w0rtm-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + lw7w0rtm-IP-3 + 1 + InParameter + + + lw7w0rtm-IP-3 and (isnull(lw7w0rtm-IP-1) or lw7w0rtm-IP-1="1" or lw7w0rtm-IP-1="2") and (lw7w0rtm-IP-2="1" or isnull(lw7w0rtm-IP-2)) + + + + fr.insee + lw7w0rtm-THEN + 1 + Sequence + + + + fr.insee + lw7w0rtm-THEN + 1 + + + + filterContent + + fr.insee + l1ggm06b-QC + 1 + QuestionConstruct + + + fr.insee + l1ggm06b-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjdvwcg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjdvwcg-IP-1 + 1 + + QUI_AID_APP_2A4 + + + + + fr.insee + l1ggm06b-QOP-m23cs9lm + 1 + OutParameter + + + fr.insee + lwjdvwcg-IP-1 + 1 + InParameter + + + lwjdvwcg-IP-1 + + + + fr.insee + lwjdvwcg-THEN + 1 + Sequence + + + + fr.insee + lwjdvwcg-THEN + 1 + + + + filterContent + + fr.insee + lwjdpyys-QC + 1 + QuestionConstruct + + + + fr.insee + lw7vxu2u + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7vxu2u-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7vxu2u-IP-2 + 1 + + ENF + + + + fr.insee + lw7vxu2u-IP-3 + 1 + + AIDE_APPORT2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7vxu2u-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7vxu2u-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + lw7vxu2u-IP-3 + 1 + InParameter + + + lw7vxu2u-IP-3 and (isnull(lw7vxu2u-IP-1) or lw7vxu2u-IP-1="1" or lw7vxu2u-IP-1="2") and lw7vxu2u-IP-2="2" + + + + fr.insee + lw7vxu2u-THEN + 1 + Sequence + + + + fr.insee + lw7vxu2u-THEN + 1 + + + + filterContent + + fr.insee + lw7vzo64-QC + 1 + QuestionConstruct + + + fr.insee + lw7vzo64-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjduugc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjduugc-IP-1 + 1 + + QUI_AID_APP_2B3 + + + + + fr.insee + lw7vzo64-QOP-m23cm1g1 + 1 + OutParameter + + + fr.insee + lwjduugc-IP-1 + 1 + InParameter + + + lwjduugc-IP-1 + + + + fr.insee + lwjduugc-THEN + 1 + Sequence + + + + fr.insee + lwjduugc-THEN + 1 + + + + filterContent + + fr.insee + lwje55m7-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wigk7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wigk7-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wigk7-IP-2 + 1 + + ENF + + + + fr.insee + lw7wigk7-IP-3 + 1 + + AIDE_APPORT2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wigk7-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wigk7-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + lw7wigk7-IP-3 + 1 + InParameter + + + lw7wigk7-IP-3 and (lw7wigk7-IP-1="3" or lw7wigk7-IP-1="4") and (lw7wigk7-IP-2="1" or isnull(lw7wigk7-IP-2)) + + + + fr.insee + lw7wigk7-THEN + 1 + Sequence + + + + fr.insee + lw7wigk7-THEN + 1 + + + + filterContent + + fr.insee + lw7w4b79-QC + 1 + QuestionConstruct + + + fr.insee + lw7w4b79-CI-0 + 1 + ComputationItem + + + + fr.insee + lwjeagnr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwjeagnr-IP-1 + 1 + + QUI_AID_APP_2C3 + + + + + fr.insee + lw7w4b79-QOP-m23cq935 + 1 + OutParameter + + + fr.insee + lwjeagnr-IP-1 + 1 + InParameter + + + lwjeagnr-IP-1 + + + + fr.insee + lwjeagnr-THEN + 1 + Sequence + + + + fr.insee + lwjeagnr-THEN + 1 + + + + filterContent + + fr.insee + lwje0h9j-QC + 1 + QuestionConstruct + + + + fr.insee + lw7why4g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7why4g-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7why4g-IP-2 + 1 + + ENF + + + + fr.insee + lw7why4g-IP-3 + 1 + + AIDE_APPORT2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7why4g-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7why4g-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + lw7why4g-IP-3 + 1 + InParameter + + + lw7why4g-IP-3 and (lw7why4g-IP-1="3" or lw7why4g-IP-1="4") and lw7why4g-IP-2="2" + + + + fr.insee + lw7why4g-THEN + 1 + Sequence + + + + fr.insee + lw7why4g-THEN + 1 + + + + filterContent + + fr.insee + lw7w7lh9-QC + 1 + QuestionConstruct + + + fr.insee + lw7w7lh9-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkqygde + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkqygde-IP-1 + 1 + + QUI_AID_APP_2D2 + + + + + fr.insee + lw7w7lh9-QOP-m23ctsr1 + 1 + OutParameter + + + fr.insee + lwkqygde-IP-1 + 1 + InParameter + + + lwkqygde-IP-1 + + + + fr.insee + lwkqygde-THEN + 1 + Sequence + + + + fr.insee + lwkqygde-THEN + 1 + + + + filterContent + + fr.insee + lwkqt10g-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wyl5z + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wyl5z-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wyl5z-IP-2 + 1 + + ENF + + + + fr.insee + lw7wyl5z-IP-3 + 1 + + AIDE_APPORT3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wyl5z-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wyl5z-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + lw7wyl5z-IP-3 + 1 + InParameter + + + lw7wyl5z-IP-3 and (isnull(lw7wyl5z-IP-1) or lw7wyl5z-IP-1="1" or lw7wyl5z-IP-1="2") and (lw7wyl5z-IP-2="1" or isnull(lw7wyl5z-IP-2)) + + + + fr.insee + lw7wyl5z-THEN + 1 + Sequence + + + + fr.insee + lw7wyl5z-THEN + 1 + + + + filterContent + + fr.insee + l1ggtznr-QC + 1 + QuestionConstruct + + + fr.insee + l1ggtznr-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkqptgi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkqptgi-IP-1 + 1 + + QUI_AID_APP_3A4 + + + + + fr.insee + l1ggtznr-QOP-m23cxrro + 1 + OutParameter + + + fr.insee + lwkqptgi-IP-1 + 1 + InParameter + + + lwkqptgi-IP-1 + + + + fr.insee + lwkqptgi-THEN + 1 + Sequence + + + + fr.insee + lwkqptgi-THEN + 1 + + + + filterContent + + fr.insee + lwkqxzag-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wk5hm + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wk5hm-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wk5hm-IP-2 + 1 + + ENF + + + + fr.insee + lw7wk5hm-IP-3 + 1 + + AIDE_APPORT3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wk5hm-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wk5hm-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + lw7wk5hm-IP-3 + 1 + InParameter + + + lw7wk5hm-IP-3 and (isnull(lw7wk5hm-IP-1) or lw7wk5hm-IP-1="1" or lw7wk5hm-IP-1="2") and lw7wk5hm-IP-2="2" + + + + fr.insee + lw7wk5hm-THEN + 1 + Sequence + + + + fr.insee + lw7wk5hm-THEN + 1 + + + + filterContent + + fr.insee + lw7w2d1u-QC + 1 + QuestionConstruct + + + fr.insee + lw7w2d1u-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkr6mgv + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkr6mgv-IP-1 + 1 + + QUI_AID_APP_3B3 + + + + + fr.insee + lw7w2d1u-QOP-m23cunxx + 1 + OutParameter + + + fr.insee + lwkr6mgv-IP-1 + 1 + InParameter + + + lwkr6mgv-IP-1 + + + + fr.insee + lwkr6mgv-THEN + 1 + Sequence + + + + fr.insee + lwkr6mgv-THEN + 1 + + + + filterContent + + fr.insee + lwkqz11c-QC + 1 + QuestionConstruct + + + + fr.insee + lw7womnt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7womnt-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7womnt-IP-2 + 1 + + ENF + + + + fr.insee + lw7womnt-IP-3 + 1 + + AIDE_APPORT3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7womnt-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7womnt-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + lw7womnt-IP-3 + 1 + InParameter + + + lw7womnt-IP-3 and (lw7womnt-IP-1="3" or lw7womnt-IP-1="4") and (lw7womnt-IP-2="1" or isnull(lw7womnt-IP-2)) + + + + fr.insee + lw7womnt-THEN + 1 + Sequence + + + + fr.insee + lw7womnt-THEN + 1 + + + + filterContent + + fr.insee + lw7w9t0f-QC + 1 + QuestionConstruct + + + fr.insee + lw7w9t0f-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkr2vd6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkr2vd6-IP-1 + 1 + + QUI_AID_APP_3C3 + + + + + fr.insee + lw7w9t0f-QOP-m23csrk4 + 1 + OutParameter + + + fr.insee + lwkr2vd6-IP-1 + 1 + InParameter + + + lwkr2vd6-IP-1 + + + + fr.insee + lwkr2vd6-THEN + 1 + Sequence + + + + fr.insee + lwkr2vd6-THEN + 1 + + + + filterContent + + fr.insee + lwkqzn6j-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wpyov + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wpyov-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wpyov-IP-2 + 1 + + ENF + + + + fr.insee + lw7wpyov-IP-3 + 1 + + AIDE_APPORT3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wpyov-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wpyov-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + lw7wpyov-IP-3 + 1 + InParameter + + + lw7wpyov-IP-3 and (lw7wpyov-IP-1="3" or lw7wpyov-IP-1="4") and lw7wpyov-IP-2="2" + + + + fr.insee + lw7wpyov-THEN + 1 + Sequence + + + + fr.insee + lw7wpyov-THEN + 1 + + + + filterContent + + fr.insee + lw7w2fuz-QC + 1 + QuestionConstruct + + + fr.insee + lw7w2fuz-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkrcy39 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkrcy39-IP-1 + 1 + + QUI_AID_APP_3D2 + + + + + fr.insee + lw7w2fuz-QOP-m23cjbmj + 1 + OutParameter + + + fr.insee + lwkrcy39-IP-1 + 1 + InParameter + + + lwkrcy39-IP-1 + + + + fr.insee + lwkrcy39-THEN + 1 + Sequence + + + + fr.insee + lwkrcy39-THEN + 1 + + + + filterContent + + fr.insee + lwkr8xaw-QC + 1 + QuestionConstruct + + + + fr.insee + lw7x67es + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7x67es-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7x67es-IP-2 + 1 + + ENF + + + + fr.insee + lw7x67es-IP-3 + 1 + + AIDE_APPORT4 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7x67es-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7x67es-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + lw7x67es-IP-3 + 1 + InParameter + + + lw7x67es-IP-3 and (isnull(lw7x67es-IP-1) or lw7x67es-IP-1="1" or lw7x67es-IP-1="2") and (lw7x67es-IP-2="1" or isnull(lw7x67es-IP-2)) + + + + fr.insee + lw7x67es-THEN + 1 + Sequence + + + + fr.insee + lw7x67es-THEN + 1 + + + + filterContent + + fr.insee + l4lf0y9m-QC + 1 + QuestionConstruct + + + fr.insee + l4lf0y9m-CI-0 + 1 + ComputationItem + + + + fr.insee + lwkrefv2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwkrefv2-IP-1 + 1 + + QUI_AID_APP_4A4 + + + + + fr.insee + l4lf0y9m-QOP-m23cza8y + 1 + OutParameter + + + fr.insee + lwkrefv2-IP-1 + 1 + InParameter + + + lwkrefv2-IP-1 + + + + fr.insee + lwkrefv2-THEN + 1 + Sequence + + + + fr.insee + lwkrefv2-THEN + 1 + + + + filterContent + + fr.insee + lwkrbrwr-QC + 1 + QuestionConstruct + + + + fr.insee + lw7x8u6l + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7x8u6l-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7x8u6l-IP-2 + 1 + + ENF + + + + fr.insee + lw7x8u6l-IP-3 + 1 + + AIDE_APPORT4 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7x8u6l-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7x8u6l-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + lw7x8u6l-IP-3 + 1 + InParameter + + + lw7x8u6l-IP-3 and (isnull(lw7x8u6l-IP-1) or lw7x8u6l-IP-1="1" or lw7x8u6l-IP-1="2") and lw7x8u6l-IP-2="2" + + + + fr.insee + lw7x8u6l-THEN + 1 + Sequence + + + + fr.insee + lw7x8u6l-THEN + 1 + + + + filterContent + + fr.insee + lw7wj733-QC + 1 + QuestionConstruct + + + fr.insee + lw7wj733-CI-0 + 1 + ComputationItem + + + + fr.insee + lwoma713 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwoma713-IP-1 + 1 + + QUI_AID_APP_4B3 + + + + + fr.insee + lw7wj733-QOP-m23cllwq + 1 + OutParameter + + + fr.insee + lwoma713-IP-1 + 1 + InParameter + + + lwoma713-IP-1 + + + + fr.insee + lwoma713-THEN + 1 + Sequence + + + + fr.insee + lwoma713-THEN + 1 + + + + filterContent + + fr.insee + lwom09ex-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wpqge + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wpqge-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wpqge-IP-2 + 1 + + ENF + + + + fr.insee + lw7wpqge-IP-3 + 1 + + AIDE_APPORT4 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wpqge-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wpqge-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + lw7wpqge-IP-3 + 1 + InParameter + + + lw7wpqge-IP-3 and (lw7wpqge-IP-1="3" or lw7wpqge-IP-1="4") and (lw7wpqge-IP-2="1" or isnull(lw7wpqge-IP-2)) + + + + fr.insee + lw7wpqge-THEN + 1 + Sequence + + + + fr.insee + lw7wpqge-THEN + 1 + + + + filterContent + + fr.insee + lw7wk34s-QC + 1 + QuestionConstruct + + + fr.insee + lw7wk34s-CI-0 + 1 + ComputationItem + + + + fr.insee + lwome1y1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwome1y1-IP-1 + 1 + + QUI_AID_APP_4C3 + + + + + fr.insee + lw7wk34s-QOP-m23cf0ox + 1 + OutParameter + + + fr.insee + lwome1y1-IP-1 + 1 + InParameter + + + lwome1y1-IP-1 + + + + fr.insee + lwome1y1-THEN + 1 + Sequence + + + + fr.insee + lwome1y1-THEN + 1 + + + + filterContent + + fr.insee + lwom95wp-QC + 1 + QuestionConstruct + + + + fr.insee + lw7wt6by + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7wt6by-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7wt6by-IP-2 + 1 + + ENF + + + + fr.insee + lw7wt6by-IP-3 + 1 + + AIDE_APPORT4 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7wt6by-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7wt6by-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + lw7wt6by-IP-3 + 1 + InParameter + + + lw7wt6by-IP-3 and (lw7wt6by-IP-1="3" or lw7wt6by-IP-1="4") and lw7wt6by-IP-2="2" + + + + fr.insee + lw7wt6by-THEN + 1 + Sequence + + + + fr.insee + lw7wt6by-THEN + 1 + + + + filterContent + + fr.insee + lw7wj3l9-QC + 1 + QuestionConstruct + + + fr.insee + lw7wj3l9-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom61fq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom61fq-IP-1 + 1 + + QUI_AID_APP_4D2 + + + + + fr.insee + lw7wj3l9-QOP-m23ct687 + 1 + OutParameter + + + fr.insee + lwom61fq-IP-1 + 1 + InParameter + + + lwom61fq-IP-1 + + + + fr.insee + lwom61fq-THEN + 1 + Sequence + + + + fr.insee + lwom61fq-THEN + 1 + + + + filterContent + + fr.insee + lwolwwhx-QC + 1 + QuestionConstruct + + + + fr.insee + lw7ytqkl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7ytqkl-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7ytqkl-IP-2 + 1 + + ENF + + + + fr.insee + lw7ytqkl-IP-3 + 1 + + AIDE_RECUE1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7ytqkl-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7ytqkl-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + lw7ytqkl-IP-3 + 1 + InParameter + + + lw7ytqkl-IP-3 and (isnull(lw7ytqkl-IP-1) or lw7ytqkl-IP-1="1" or lw7ytqkl-IP-1="2") and (lw7ytqkl-IP-2="1" or isnull(lw7ytqkl-IP-2)) + + + + fr.insee + lw7ytqkl-THEN + 1 + Sequence + + + + fr.insee + lw7ytqkl-THEN + 1 + + + + filterContent + + fr.insee + l1ggpjd7-QC + 1 + QuestionConstruct + + + fr.insee + l1ggpjd7-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom23gj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom23gj-IP-1 + 1 + + QUI_AID_REC_1A4 + + + + + fr.insee + l1ggpjd7-QOP-m23cn8ns + 1 + OutParameter + + + fr.insee + lwom23gj-IP-1 + 1 + InParameter + + + lwom23gj-IP-1 + + + + fr.insee + lwom23gj-THEN + 1 + Sequence + + + + fr.insee + lwom23gj-THEN + 1 + + + + filterContent + + fr.insee + lwom8z6i-QC + 1 + QuestionConstruct + + + + fr.insee + lw7yoyqf + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7yoyqf-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7yoyqf-IP-2 + 1 + + ENF + + + + fr.insee + lw7yoyqf-IP-3 + 1 + + AIDE_RECUE1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7yoyqf-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7yoyqf-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + lw7yoyqf-IP-3 + 1 + InParameter + + + lw7yoyqf-IP-3 and (isnull(lw7yoyqf-IP-1) or lw7yoyqf-IP-1="1" or lw7yoyqf-IP-1="2") and lw7yoyqf-IP-2="2" + + + + fr.insee + lw7yoyqf-THEN + 1 + Sequence + + + + fr.insee + lw7yoyqf-THEN + 1 + + + + filterContent + + fr.insee + lw7yo1jt-QC + 1 + QuestionConstruct + + + fr.insee + lw7yo1jt-CI-0 + 1 + ComputationItem + + + + fr.insee + lwomau70 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwomau70-IP-1 + 1 + + QUI_AID_REC_1B3 + + + + + fr.insee + lw7yo1jt-QOP-m23cwiht + 1 + OutParameter + + + fr.insee + lwomau70-IP-1 + 1 + InParameter + + + lwomau70-IP-1 + + + + fr.insee + lwomau70-THEN + 1 + Sequence + + + + fr.insee + lwomau70-THEN + 1 + + + + filterContent + + fr.insee + lwom6128-QC + 1 + QuestionConstruct + + + + fr.insee + lw7yzxyk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7yzxyk-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7yzxyk-IP-2 + 1 + + ENF + + + + fr.insee + lw7yzxyk-IP-3 + 1 + + AIDE_RECUE1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7yzxyk-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7yzxyk-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + lw7yzxyk-IP-3 + 1 + InParameter + + + lw7yzxyk-IP-3 and (lw7yzxyk-IP-1="3" or lw7yzxyk-IP-1="4") and (lw7yzxyk-IP-2="1" or isnull(lw7yzxyk-IP-2)) + + + + fr.insee + lw7yzxyk-THEN + 1 + Sequence + + + + fr.insee + lw7yzxyk-THEN + 1 + + + + filterContent + + fr.insee + lw7y7vqk-QC + 1 + QuestionConstruct + + + fr.insee + lw7y7vqk-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom4dzj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom4dzj-IP-1 + 1 + + QUI_AID_REC_1C3 + + + + + fr.insee + lw7y7vqk-QOP-m23chx84 + 1 + OutParameter + + + fr.insee + lwom4dzj-IP-1 + 1 + InParameter + + + lwom4dzj-IP-1 + + + + fr.insee + lwom4dzj-THEN + 1 + Sequence + + + + fr.insee + lwom4dzj-THEN + 1 + + + + filterContent + + fr.insee + lwomj4m6-QC + 1 + QuestionConstruct + + + + fr.insee + lw7ym1c9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7ym1c9-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7ym1c9-IP-2 + 1 + + ENF + + + + fr.insee + lw7ym1c9-IP-3 + 1 + + AIDE_RECUE1 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7ym1c9-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7ym1c9-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + lw7ym1c9-IP-3 + 1 + InParameter + + + lw7ym1c9-IP-3 and (lw7ym1c9-IP-1="3" or lw7ym1c9-IP-1="4") and lw7ym1c9-IP-2="2" + + + + fr.insee + lw7ym1c9-THEN + 1 + Sequence + + + + fr.insee + lw7ym1c9-THEN + 1 + + + + filterContent + + fr.insee + lw7yq0ti-QC + 1 + QuestionConstruct + + + fr.insee + lw7yq0ti-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom7sp9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom7sp9-IP-1 + 1 + + QUI_AID_REC_1D2 + + + + + fr.insee + lw7yq0ti-QOP-m23ctm1u + 1 + OutParameter + + + fr.insee + lwom7sp9-IP-1 + 1 + InParameter + + + lwom7sp9-IP-1 + + + + fr.insee + lwom7sp9-THEN + 1 + Sequence + + + + fr.insee + lwom7sp9-THEN + 1 + + + + filterContent + + fr.insee + lwom7lun-QC + 1 + QuestionConstruct + + + + fr.insee + lw7z9uil + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7z9uil-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7z9uil-IP-2 + 1 + + ENF + + + + fr.insee + lw7z9uil-IP-3 + 1 + + AIDE_RECUE2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7z9uil-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7z9uil-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + lw7z9uil-IP-3 + 1 + InParameter + + + lw7z9uil-IP-3 and (isnull(lw7z9uil-IP-1) or lw7z9uil-IP-1="1" or lw7z9uil-IP-1="2") and (lw7z9uil-IP-2="1" or isnull(lw7z9uil-IP-2)) + + + + fr.insee + lw7z9uil-THEN + 1 + Sequence + + + + fr.insee + lw7z9uil-THEN + 1 + + + + filterContent + + fr.insee + l1ggp8js-QC + 1 + QuestionConstruct + + + fr.insee + l1ggp8js-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom80dx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom80dx-IP-1 + 1 + + QUI_AID_REC_2A4 + + + + + fr.insee + l1ggp8js-QOP-m23ciwsc + 1 + OutParameter + + + fr.insee + lwom80dx-IP-1 + 1 + InParameter + + + lwom80dx-IP-1 + + + + fr.insee + lwom80dx-THEN + 1 + Sequence + + + + fr.insee + lwom80dx-THEN + 1 + + + + filterContent + + fr.insee + lwombc8x-QC + 1 + QuestionConstruct + + + + fr.insee + lw7z09oi + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7z09oi-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7z09oi-IP-2 + 1 + + ENF + + + + fr.insee + lw7z09oi-IP-3 + 1 + + AIDE_RECUE2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7z09oi-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7z09oi-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + lw7z09oi-IP-3 + 1 + InParameter + + + lw7z09oi-IP-3 and (isnull(lw7z09oi-IP-1) or lw7z09oi-IP-1="1" or lw7z09oi-IP-1="2") and lw7z09oi-IP-2="2" + + + + fr.insee + lw7z09oi-THEN + 1 + Sequence + + + + fr.insee + lw7z09oi-THEN + 1 + + + + filterContent + + fr.insee + lw7yq329-QC + 1 + QuestionConstruct + + + fr.insee + lw7yq329-CI-0 + 1 + ComputationItem + + + + fr.insee + lwom7max + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwom7max-IP-1 + 1 + + QUI_AID_REC_2B3 + + + + + fr.insee + lw7yq329-QOP-m23cpziv + 1 + OutParameter + + + fr.insee + lwom7max-IP-1 + 1 + InParameter + + + lwom7max-IP-1 + + + + fr.insee + lwom7max-THEN + 1 + Sequence + + + + fr.insee + lwom7max-THEN + 1 + + + + filterContent + + fr.insee + lwomhbiy-QC + 1 + QuestionConstruct + + + + fr.insee + lw7z5m0d + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7z5m0d-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7z5m0d-IP-2 + 1 + + ENF + + + + fr.insee + lw7z5m0d-IP-3 + 1 + + AIDE_RECUE2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7z5m0d-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7z5m0d-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + lw7z5m0d-IP-3 + 1 + InParameter + + + lw7z5m0d-IP-3 and (lw7z5m0d-IP-1="3" or lw7z5m0d-IP-1="4") and (lw7z5m0d-IP-2="1" or isnull(lw7z5m0d-IP-2)) + + + + fr.insee + lw7z5m0d-THEN + 1 + Sequence + + + + fr.insee + lw7z5m0d-THEN + 1 + + + + filterContent + + fr.insee + lw7yo7oh-QC + 1 + QuestionConstruct + + + fr.insee + lw7yo7oh-CI-0 + 1 + ComputationItem + + + + fr.insee + lwomquur + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwomquur-IP-1 + 1 + + QUI_AID_REC_2C3 + + + + + fr.insee + lw7yo7oh-QOP-m23cqna7 + 1 + OutParameter + + + fr.insee + lwomquur-IP-1 + 1 + InParameter + + + lwomquur-IP-1 + + + + fr.insee + lwomquur-THEN + 1 + Sequence + + + + fr.insee + lwomquur-THEN + 1 + + + + filterContent + + fr.insee + lwomijww-QC + 1 + QuestionConstruct + + + + fr.insee + lw7zcrfb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7zcrfb-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7zcrfb-IP-2 + 1 + + ENF + + + + fr.insee + lw7zcrfb-IP-3 + 1 + + AIDE_RECUE2 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7zcrfb-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7zcrfb-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + lw7zcrfb-IP-3 + 1 + InParameter + + + lw7zcrfb-IP-3 and (lw7zcrfb-IP-1="3" or lw7zcrfb-IP-1="4") and lw7zcrfb-IP-2="2" + + + + fr.insee + lw7zcrfb-THEN + 1 + Sequence + + + + fr.insee + lw7zcrfb-THEN + 1 + + + + filterContent + + fr.insee + lw7ypwx5-QC + 1 + QuestionConstruct + + + fr.insee + lw7ypwx5-CI-0 + 1 + ComputationItem + + + + fr.insee + lwomfix1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwomfix1-IP-1 + 1 + + QUI_AID_REC_2D2 + + + + + fr.insee + lw7ypwx5-QOP-m23ctlkf + 1 + OutParameter + + + fr.insee + lwomfix1-IP-1 + 1 + InParameter + + + lwomfix1-IP-1 + + + + fr.insee + lwomfix1-THEN + 1 + Sequence + + + + fr.insee + lwomfix1-THEN + 1 + + + + filterContent + + fr.insee + lwomx6w5-QC + 1 + QuestionConstruct + + + + fr.insee + lw7z7urw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7z7urw-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7z7urw-IP-2 + 1 + + ENF + + + + fr.insee + lw7z7urw-IP-3 + 1 + + AIDE_RECUE3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7z7urw-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7z7urw-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + lw7z7urw-IP-3 + 1 + InParameter + + + lw7z7urw-IP-3 and (isnull(lw7z7urw-IP-1) or lw7z7urw-IP-1="1" or lw7z7urw-IP-1="2") and (lw7z7urw-IP-2="1" or isnull(lw7z7urw-IP-2)) + + + + fr.insee + lw7z7urw-THEN + 1 + Sequence + + + + fr.insee + lw7z7urw-THEN + 1 + + + + filterContent + + fr.insee + l1ggzpng + 1 + IfThenElse + + + + fr.insee + l1ggzpng + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1ggzpng-IP-1 + 1 + + AIDE_RECUE3 + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + l1ggzpng-IP-1 + 1 + InParameter + + + l1ggzpng-IP-1 + + + + fr.insee + l1ggzpng-THEN + 1 + Sequence + + + + fr.insee + l1ggzpng-THEN + 1 + + + + filterContent + + fr.insee + l1gh36ky-QC + 1 + QuestionConstruct + + + fr.insee + l1gh36ky-CI-0 + 1 + ComputationItem + + + + fr.insee + lwonoto4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwonoto4-IP-1 + 1 + + QUI_AID_REC_3A4 + + + + + fr.insee + l1gh36ky-QOP-m23czis0 + 1 + OutParameter + + + fr.insee + lwonoto4-IP-1 + 1 + InParameter + + + lwonoto4-IP-1 + + + + fr.insee + lwonoto4-THEN + 1 + Sequence + + + + fr.insee + lwonoto4-THEN + 1 + + + + filterContent + + fr.insee + lwonhqcb-QC + 1 + QuestionConstruct + + + + fr.insee + lw7yy8x4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7yy8x4-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7yy8x4-IP-2 + 1 + + ENF + + + + fr.insee + lw7yy8x4-IP-3 + 1 + + AIDE_RECUE3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7yy8x4-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7yy8x4-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + lw7yy8x4-IP-3 + 1 + InParameter + + + lw7yy8x4-IP-3 and (isnull(lw7yy8x4-IP-1) or lw7yy8x4-IP-1="1" or lw7yy8x4-IP-1="2") and lw7yy8x4-IP-2="2" + + + + fr.insee + lw7yy8x4-THEN + 1 + Sequence + + + + fr.insee + lw7yy8x4-THEN + 1 + + + + filterContent + + fr.insee + lw7yqyln-QC + 1 + QuestionConstruct + + + fr.insee + lw7yqyln-CI-0 + 1 + ComputationItem + + + + fr.insee + lwonp6tj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwonp6tj-IP-1 + 1 + + QUI_AID_REC_3B3 + + + + + fr.insee + lw7yqyln-QOP-m23cspkk + 1 + OutParameter + + + fr.insee + lwonp6tj-IP-1 + 1 + InParameter + + + lwonp6tj-IP-1 + + + + fr.insee + lwonp6tj-THEN + 1 + Sequence + + + + fr.insee + lwonp6tj-THEN + 1 + + + + filterContent + + fr.insee + lwonk1pl-QC + 1 + QuestionConstruct + + + + fr.insee + lw7yzsaq + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7yzsaq-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7yzsaq-IP-2 + 1 + + ENF + + + + fr.insee + lw7yzsaq-IP-3 + 1 + + AIDE_RECUE3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7yzsaq-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7yzsaq-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + lw7yzsaq-IP-3 + 1 + InParameter + + + lw7yzsaq-IP-3 and (lw7yzsaq-IP-1="3" or lw7yzsaq-IP-1="4") and (lw7yzsaq-IP-2="1" or isnull(lw7yzsaq-IP-2)) + + + + fr.insee + lw7yzsaq-THEN + 1 + Sequence + + + + fr.insee + lw7yzsaq-THEN + 1 + + + + filterContent + + fr.insee + lw7z0jkp-QC + 1 + QuestionConstruct + + + fr.insee + lw7z0jkp-CI-0 + 1 + ComputationItem + + + + fr.insee + lwonkt28 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwonkt28-IP-1 + 1 + + QUI_AID_REC_3C3 + + + + + fr.insee + lw7z0jkp-QOP-m23cvbj1 + 1 + OutParameter + + + fr.insee + lwonkt28-IP-1 + 1 + InParameter + + + lwonkt28-IP-1 + + + + fr.insee + lwonkt28-THEN + 1 + Sequence + + + + fr.insee + lwonkt28-THEN + 1 + + + + filterContent + + fr.insee + lwonuial-QC + 1 + QuestionConstruct + + + + fr.insee + lw7z3bw7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7z3bw7-IP-1 + 1 + + COUPLE + + + + fr.insee + lw7z3bw7-IP-2 + 1 + + ENF + + + + fr.insee + lw7z3bw7-IP-3 + 1 + + AIDE_RECUE3 + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lw7z3bw7-IP-1 + 1 + InParameter + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + lw7z3bw7-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + lw7z3bw7-IP-3 + 1 + InParameter + + + lw7z3bw7-IP-3 and (lw7z3bw7-IP-1="3" or lw7z3bw7-IP-1="4") and lw7z3bw7-IP-2="2" + + + + fr.insee + lw7z3bw7-THEN + 1 + Sequence + + + + fr.insee + lw7z3bw7-THEN + 1 + + + + filterContent + + fr.insee + lw7z13d4-QC + 1 + QuestionConstruct + + + fr.insee + lw7z13d4-CI-0 + 1 + ComputationItem + + + + fr.insee + lwonmevj + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwonmevj-IP-1 + 1 + + QUI_AID_REC_3D2 + + + + + fr.insee + lw7z13d4-QOP-m23co3ul + 1 + OutParameter + + + fr.insee + lwonmevj-IP-1 + 1 + InParameter + + + lwonmevj-IP-1 + + + + fr.insee + lwonmevj-THEN + 1 + Sequence + + + + fr.insee + lwonmevj-THEN + 1 + + + + filterContent + + fr.insee + lwonmnuh-QC + 1 + QuestionConstruct + + + + fr.insee + lw7oxhzk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw7oxhzk-IP-1 + 1 + + LANGUE1_ENTOUE + + + + + fr.insee + l1g8apw2-QOP-lw7p997k + 1 + OutParameter + + + fr.insee + lw7oxhzk-IP-1 + 1 + InParameter + + + lw7oxhzk-IP-1 ="1" + + + + fr.insee + lw7oxhzk-THEN + 1 + Sequence + + + + fr.insee + lw7oxhzk-THEN + 1 + + + + filterContent + + fr.insee + lw7oumzg-QC + 1 + QuestionConstruct + + + fr.insee + lumpfjn6 + 1 + IfThenElse + + + + fr.insee + lumpfjn6 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumpfjn6-IP-1 + 1 + + LANGUE1_ENTOU + + + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + OutParameter + + + fr.insee + lumpfjn6-IP-1 + 1 + InParameter + + + isnull(lumpfjn6-IP-1) or lumpfjn6-IP-1 ="" + + + + fr.insee + lumpfjn6-THEN + 1 + Sequence + + + + fr.insee + lumpfjn6-THEN + 1 + + + + filterContent + + fr.insee + lumpggg9-QC + 1 + QuestionConstruct + + + fr.insee + lumpggg9-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrqj2ni + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqj2ni-IP-1 + 1 + + LANGUE1_ENTOU + + + + fr.insee + lmrqj2ni-IP-2 + 1 + + LANGUE1_ENTOUL + + + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + OutParameter + + + fr.insee + lmrqj2ni-IP-1 + 1 + InParameter + + + + + fr.insee + lumpggg9-QOP-lumpls3q + 1 + OutParameter + + + fr.insee + lmrqj2ni-IP-2 + 1 + InParameter + + + not(isnull(lmrqj2ni-IP-1)) or not(isnull(lmrqj2ni-IP-2)) + + + + fr.insee + lmrqj2ni-THEN + 1 + Sequence + + + + fr.insee + lmrqj2ni-THEN + 1 + + + + filterContent + + fr.insee + l43tgurz-QC + 1 + QuestionConstruct + + + fr.insee + l43tgurz-CI-0 + 1 + ComputationItem + + + fr.insee + lw54cnh8 + 1 + IfThenElse + + + fr.insee + lumps5wb + 1 + IfThenElse + + + + fr.insee + lw54cnh8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw54cnh8-IP-1 + 1 + + LANGUE2_ENTOUE + + + + + fr.insee + l43tgurz-QOP-lw54fsoq + 1 + OutParameter + + + fr.insee + lw54cnh8-IP-1 + 1 + InParameter + + + lw54cnh8-IP-1 ="1" + + + + fr.insee + lw54cnh8-THEN + 1 + Sequence + + + + fr.insee + lw54cnh8-THEN + 1 + + + + filterContent + + fr.insee + lw54iesv-QC + 1 + QuestionConstruct + + + fr.insee + lw54iesv-CI-0 + 1 + ComputationItem + + + fr.insee + lumspud2 + 1 + IfThenElse + + + + fr.insee + lumspud2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumspud2-IP-1 + 1 + + LANGUE2_ENTOU + + + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + fr.insee + lumspud2-IP-1 + 1 + InParameter + + + isnull(lumspud2-IP-1) or lumspud2-IP-1 ="" + + + + fr.insee + lumspud2-THEN + 1 + Sequence + + + + fr.insee + lumspud2-THEN + 1 + + + + filterContent + + fr.insee + lumsh65o-QC + 1 + QuestionConstruct + + + fr.insee + lumsh65o-CI-0 + 1 + ComputationItem + + + + fr.insee + lumps5wb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumps5wb-IP-1 + 1 + + LANGUE2_ENTOU + + + + fr.insee + lumps5wb-IP-2 + 1 + + LANGUE2_ENTOUL + + + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + fr.insee + lumps5wb-IP-1 + 1 + InParameter + + + + + fr.insee + lumsh65o-QOP-lumsrnf6 + 1 + OutParameter + + + fr.insee + lumps5wb-IP-2 + 1 + InParameter + + + not(isnull(lumps5wb-IP-1)) or not(isnull(lumps5wb-IP-2)) + + + + fr.insee + lumps5wb-THEN + 1 + Sequence + + + + fr.insee + lumps5wb-THEN + 1 + + + + filterContent + + fr.insee + lump9kgk-QC + 1 + QuestionConstruct + + + fr.insee + lump9kgk-CI-0 + 1 + ComputationItem + + + fr.insee + lw54b6fh + 1 + IfThenElse + + + + fr.insee + lw54b6fh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw54b6fh-IP-1 + 1 + + LANGUE3_ENTOUE + + + + + fr.insee + lump9kgk-QOP-lw54k7kt + 1 + OutParameter + + + fr.insee + lw54b6fh-IP-1 + 1 + InParameter + + + lw54b6fh-IP-1 ="1" + + + + fr.insee + lw54b6fh-THEN + 1 + Sequence + + + + fr.insee + lw54b6fh-THEN + 1 + + + + filterContent + + fr.insee + lw54raav-QC + 1 + QuestionConstruct + + + fr.insee + lw54raav-CI-0 + 1 + ComputationItem + + + fr.insee + lumsxknl + 1 + IfThenElse + + + + fr.insee + lumsxknl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsxknl-IP-1 + 1 + + LANGUE3_ENTOU + + + + + fr.insee + lw54raav-QOP-lw54ecer + 1 + OutParameter + + + fr.insee + lumsxknl-IP-1 + 1 + InParameter + + + isnull(lumsxknl-IP-1) + + + + fr.insee + lumsxknl-THEN + 1 + Sequence + + + + fr.insee + lumsxknl-THEN + 1 + + + + filterContent + + fr.insee + lumsobo2-QC + 1 + QuestionConstruct + + + fr.insee + lumsobo2-CI-0 + 1 + ComputationItem + + + + fr.insee + l4nwoi2w + 1 + + A définir + + + Test sur RP + + hideable + + + vtl + + fr.insee + l4nwoi2w-IP-1 + 1 + + RPPRENOMPAR1 + + + + fr.insee + l4nwoi2w-IP-2 + 1 + + RPANAISPAR1 + + + + fr.insee + l4nwoi2w-IP-3 + 1 + + PRENOM_PAR1 + + + + fr.insee + l4nwoi2w-IP-4 + 1 + + ANAI_PAR1 + + + + + fr.insee + RPPRENOMPAR1 + 1 + InParameter + + + fr.insee + l4nwoi2w-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR1 + 1 + InParameter + + + fr.insee + l4nwoi2w-IP-2 + 1 + InParameter + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l4nwoi2w-IP-3 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l4nwoi2w-IP-4 + 1 + InParameter + + + isnull(l4nwoi2w-IP-1) or isnull(l4nwoi2w-IP-3) or replace(upper(l4nwoi2w-IP-1)," ","") <> replace(upper(l4nwoi2w-IP-3)," ","") or cast(l4nwoi2w-IP-2,integer) <> cast(l4nwoi2w-IP-4, integer) + + + + fr.insee + l4nwoi2w-THEN + 1 + Sequence + + + + fr.insee + l4nwoi2w-THEN + 1 + + + + filterContent + + fr.insee + l7ywp1vk-QC + 1 + QuestionConstruct + + + fr.insee + l7ywp1vk-CI-0 + 1 + ComputationItem + + + fr.insee + m03k3kv0 + 1 + IfThenElse + + + fr.insee + l2kk539f-QC + 1 + QuestionConstruct + + + fr.insee + l2kk539f-CI-0 + 1 + ComputationItem + + + fr.insee + lyocgyi4-QC + 1 + QuestionConstruct + + + fr.insee + lyocgyi4-CI-0 + 1 + ComputationItem + + + fr.insee + l7yx3sl1 + 1 + IfThenElse + + + + fr.insee + m03k3kv0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m03k3kv0-IP-1 + 1 + + LIEUNAIS_PAR1 + + + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + m03k3kv0-IP-1 + 1 + InParameter + + + m03k3kv0-IP-1 ="2" + + + + fr.insee + m03k3kv0-THEN + 1 + Sequence + + + + fr.insee + m03k3kv0-THEN + 1 + + + + filterContent + + fr.insee + lyod84wr-QC + 1 + QuestionConstruct + + + fr.insee + lyod84wr-CI-0 + 1 + ComputationItem + + + + fr.insee + l7yx3sl1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7yx3sl1-IP-1 + 1 + + TRAV_PAR1 + + + + + fr.insee + lyocgyi4-QOP-lyoc3xpu + 1 + OutParameter + + + fr.insee + l7yx3sl1-IP-1 + 1 + InParameter + + + l7yx3sl1-IP-1 ="1" or isnull(l7yx3sl1-IP-1) + + + + fr.insee + l7yx3sl1-THEN + 1 + Sequence + + + + fr.insee + l7yx3sl1-THEN + 1 + + + + filterContent + + fr.insee + lab6s6ex + 1 + IfThenElse + + + fr.insee + l4qzs7pe + 1 + IfThenElse + + + fr.insee + l45ctt6n + 1 + IfThenElse + + + fr.insee + l2kjshy4-QC + 1 + QuestionConstruct + + + fr.insee + l2kjshy4-CI-0 + 1 + ComputationItem + + + fr.insee + lpsjqgz5 + 1 + IfThenElse + + + fr.insee + llgqfhat + 1 + IfThenElse + + + fr.insee + llgqfku7 + 1 + IfThenElse + + + + fr.insee + lab6s6ex + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab6s6ex-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + lab6s6ex-IP-1 + 1 + InParameter + + + lab6s6ex-IP-1="2" or isnull(lab6s6ex-IP-1) + + + + fr.insee + lab6s6ex-THEN + 1 + Sequence + + + + fr.insee + lab6s6ex-THEN + 1 + + + + filterContent + + fr.insee + l2kjueig-QC + 1 + QuestionConstruct + + + + fr.insee + l4qzs7pe + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzs7pe-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l4qzs7pe-IP-1 + 1 + InParameter + + + l4qzs7pe-IP-1="1" + + + + fr.insee + l4qzs7pe-THEN + 1 + Sequence + + + + fr.insee + l4qzs7pe-THEN + 1 + + + + filterContent + + fr.insee + l4qzvm5v-QC + 1 + QuestionConstruct + + + + fr.insee + l45ctt6n + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l45ctt6n-IP-1 + 1 + + PROF_PAR1H + + + + fr.insee + l45ctt6n-IP-2 + 1 + + PROF_PAR1F + + + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l45ctt6n-IP-1 + 1 + InParameter + + + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + fr.insee + l45ctt6n-IP-2 + 1 + InParameter + + + isnull(l45ctt6n-IP-2) and isnull(l45ctt6n-IP-1) + + + + fr.insee + l45ctt6n-THEN + 1 + Sequence + + + + fr.insee + l45ctt6n-THEN + 1 + + + + filterContent + + fr.insee + l45cjoj7-QC + 1 + QuestionConstruct + + + fr.insee + l45cjoj7-CI-0 + 1 + ComputationItem + + + + fr.insee + lpsjqgz5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lpsjqgz5-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + lpsjqgz5-IP-1 + 1 + InParameter + + + lpsjqgz5-IP-1 ="1" + + + + fr.insee + lpsjqgz5-THEN + 1 + Sequence + + + + fr.insee + lpsjqgz5-THEN + 1 + + + + filterContent + + fr.insee + lpsjlk6w-QC + 1 + QuestionConstruct + + + fr.insee + lpsjlk6w-CI-0 + 1 + ComputationItem + + + + fr.insee + llgqfhat + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgqfhat-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + llgqfhat-IP-1 + 1 + InParameter + + + llgqfhat-IP-1 ="2" + + + + fr.insee + llgqfhat-THEN + 1 + Sequence + + + + fr.insee + llgqfhat-THEN + 1 + + + + filterContent + + fr.insee + llgo5n7b-QC + 1 + QuestionConstruct + + + fr.insee + llgo5n7b-CI-0 + 1 + ComputationItem + + + + fr.insee + llgqfku7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgqfku7-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + llgqfku7-IP-1 + 1 + InParameter + + + llgqfku7-IP-1 ="3" + + + + fr.insee + llgqfku7-THEN + 1 + Sequence + + + + fr.insee + llgqfku7-THEN + 1 + + + + filterContent + + fr.insee + llgqspnh-QC + 1 + QuestionConstruct + + + fr.insee + llgqspnh-CI-0 + 1 + ComputationItem + + + + fr.insee + lumq5jmr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumq5jmr-IP-1 + 1 + + LANGUE1_PAR1 + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + lumq5jmr-IP-1 + 1 + InParameter + + + isnull(lumq5jmr-IP-1) or lumq5jmr-IP-1 ="" + + + + fr.insee + lumq5jmr-THEN + 1 + Sequence + + + + fr.insee + lumq5jmr-THEN + 1 + + + + filterContent + + fr.insee + lumppr7y-QC + 1 + QuestionConstruct + + + fr.insee + lumppr7y-CI-0 + 1 + ComputationItem + + + + fr.insee + lumpta83 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumpta83-IP-1 + 1 + + LANGUE1_PAR1 + + + + fr.insee + lumpta83-IP-2 + 1 + + LANGUE1_PAR1L + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + lumpta83-IP-1 + 1 + InParameter + + + + + fr.insee + lumppr7y-QOP-lumpxcez + 1 + OutParameter + + + fr.insee + lumpta83-IP-2 + 1 + InParameter + + + not(isnull(lumpta83-IP-1)) or not(isnull(lumpta83-IP-2)) + + + + fr.insee + lumpta83-THEN + 1 + Sequence + + + + fr.insee + lumpta83-THEN + 1 + + + + filterContent + + fr.insee + l447j7cx-QC + 1 + QuestionConstruct + + + fr.insee + l447j7cx-CI-0 + 1 + ComputationItem + + + fr.insee + lw6dvl67 + 1 + IfThenElse + + + fr.insee + lmrqnci8 + 1 + IfThenElse + + + + fr.insee + lw6dvl67 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6dvl67-IP-1 + 1 + + LANGUE2_PAR1E + + + + + fr.insee + l447j7cx-QOP-lw6jphbt + 1 + OutParameter + + + fr.insee + lw6dvl67-IP-1 + 1 + InParameter + + + lw6dvl67-IP-1 ="1" + + + + fr.insee + lw6dvl67-THEN + 1 + Sequence + + + + fr.insee + lw6dvl67-THEN + 1 + + + + filterContent + + fr.insee + lw6don31-QC + 1 + QuestionConstruct + + + fr.insee + lw6don31-CI-0 + 1 + ComputationItem + + + fr.insee + lumsnfus + 1 + IfThenElse + + + + fr.insee + lumsnfus + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsnfus-IP-1 + 1 + + LANGUE2_PAR1 + + + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lumsnfus-IP-1 + 1 + InParameter + + + isnull(lumsnfus-IP-1) + + + + fr.insee + lumsnfus-THEN + 1 + Sequence + + + + fr.insee + lumsnfus-THEN + 1 + + + + filterContent + + fr.insee + lumsnsej-QC + 1 + QuestionConstruct + + + fr.insee + lumsnsej-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrqnci8 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrqnci8-IP-1 + 1 + + LANGUE2_PAR1 + + + + fr.insee + lmrqnci8-IP-2 + 1 + + LANGUE2_PAR1L + + + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lmrqnci8-IP-1 + 1 + InParameter + + + + + fr.insee + lumsnsej-QOP-lumsjuh5 + 1 + OutParameter + + + fr.insee + lmrqnci8-IP-2 + 1 + InParameter + + + not(isnull(lmrqnci8-IP-1)) or not(isnull(lmrqnci8-IP-2)) + + + + fr.insee + lmrqnci8-THEN + 1 + Sequence + + + + fr.insee + lmrqnci8-THEN + 1 + + + + filterContent + + fr.insee + lumptzfb-QC + 1 + QuestionConstruct + + + fr.insee + lumptzfb-CI-0 + 1 + ComputationItem + + + fr.insee + lw6dyjz2 + 1 + IfThenElse + + + fr.insee + lumq18r1 + 1 + IfThenElse + + + + fr.insee + lw6dyjz2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6dyjz2-IP-1 + 1 + + LANGUE3_PAR1E + + + + + fr.insee + lumptzfb-QOP-lw6jto2f + 1 + OutParameter + + + fr.insee + lw6dyjz2-IP-1 + 1 + InParameter + + + lw6dyjz2-IP-1 ="1" + + + + fr.insee + lw6dyjz2-THEN + 1 + Sequence + + + + fr.insee + lw6dyjz2-THEN + 1 + + + + filterContent + + fr.insee + lw6dyxml-QC + 1 + QuestionConstruct + + + fr.insee + lw6dyxml-CI-0 + 1 + ComputationItem + + + fr.insee + lumssyl3 + 1 + IfThenElse + + + + fr.insee + lumssyl3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumssyl3-IP-1 + 1 + + LANGUE3_PAR1 + + + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lumssyl3-IP-1 + 1 + InParameter + + + isnull(lumssyl3-IP-1) + + + + fr.insee + lumssyl3-THEN + 1 + Sequence + + + + fr.insee + lumssyl3-THEN + 1 + + + + filterContent + + fr.insee + lumsdl5a-QC + 1 + QuestionConstruct + + + fr.insee + lumsdl5a-CI-0 + 1 + ComputationItem + + + + fr.insee + lumq18r1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumq18r1-IP-1 + 1 + + LANGUE3_PAR1 + + + + fr.insee + lumq18r1-IP-2 + 1 + + LANGUE3_PAR1L + + + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lumq18r1-IP-1 + 1 + InParameter + + + + + fr.insee + lumsdl5a-QOP-lumshoov + 1 + OutParameter + + + fr.insee + lumq18r1-IP-2 + 1 + InParameter + + + not(isnull(lumq18r1-IP-1)) or not(isnull(lumq18r1-IP-2)) + + + + fr.insee + lumq18r1-THEN + 1 + Sequence + + + + fr.insee + lumq18r1-THEN + 1 + + + + filterContent + + fr.insee + lumptuhp-QC + 1 + QuestionConstruct + + + fr.insee + lumptuhp-CI-0 + 1 + ComputationItem + + + fr.insee + lw6emnkr + 1 + IfThenElse + + + + fr.insee + lw6emnkr + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6emnkr-IP-1 + 1 + + LANGUE4_PAR1E + + + + + fr.insee + lumptuhp-QOP-lw6jzlgt + 1 + OutParameter + + + fr.insee + lw6emnkr-IP-1 + 1 + InParameter + + + lw6emnkr-IP-1 ="1" + + + + fr.insee + lw6emnkr-THEN + 1 + Sequence + + + + fr.insee + lw6emnkr-THEN + 1 + + + + filterContent + + fr.insee + lw6ecsey-QC + 1 + QuestionConstruct + + + fr.insee + lw6ecsey-CI-0 + 1 + ComputationItem + + + fr.insee + lumskqyk + 1 + IfThenElse + + + + fr.insee + lumskqyk + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumskqyk-IP-1 + 1 + + LANGUE4_PAR1 + + + + + fr.insee + lw6ecsey-QOP-lw6ehg5h + 1 + OutParameter + + + fr.insee + lumskqyk-IP-1 + 1 + InParameter + + + isnull(lumskqyk-IP-1) + + + + fr.insee + lumskqyk-THEN + 1 + Sequence + + + + fr.insee + lumskqyk-THEN + 1 + + + + filterContent + + fr.insee + lumswm4d-QC + 1 + QuestionConstruct + + + fr.insee + lumswm4d-CI-0 + 1 + ComputationItem + + + + fr.insee + lbpj1dh7 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lbpj1dh7-IP-1 + 1 + + RPPRENOMPAR1 + + + + fr.insee + lbpj1dh7-IP-2 + 1 + + RPANAISPAR1 + + + + fr.insee + lbpj1dh7-IP-3 + 1 + + PRENOM_PAR1 + + + + fr.insee + lbpj1dh7-IP-4 + 1 + + ANAI_PAR1 + + + + + fr.insee + RPPRENOMPAR1 + 1 + InParameter + + + fr.insee + lbpj1dh7-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR1 + 1 + InParameter + + + fr.insee + lbpj1dh7-IP-2 + 1 + InParameter + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + lbpj1dh7-IP-3 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + lbpj1dh7-IP-4 + 1 + InParameter + + + isnull(lbpj1dh7-IP-1) or isnull(lbpj1dh7-IP-3) or replace(upper(lbpj1dh7-IP-1)," ","") <> replace(upper(lbpj1dh7-IP-3)," ","") or cast(lbpj1dh7-IP-2,integer) <> cast(lbpj1dh7-IP-4, integer) + + + + fr.insee + lbpj1dh7-THEN + 1 + Sequence + + + + fr.insee + lbpj1dh7-THEN + 1 + + + + filterContent + + fr.insee + l2kjzugb-QC + 1 + QuestionConstruct + + + fr.insee + l2kjzugb-CI-0 + 1 + ComputationItem + + + fr.insee + l2roa0nx + 1 + IfThenElse + + + fr.insee + l1f5y7ps + 1 + IfThenElse + + + + fr.insee + l2roa0nx + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2roa0nx-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2roa0nx-IP-1 + 1 + InParameter + + + l2roa0nx-IP-1 ="2" + + + + fr.insee + l2roa0nx-THEN + 1 + Sequence + + + + fr.insee + l2roa0nx-THEN + 1 + + + + filterContent + + fr.insee + l2kkd59n-QC + 1 + QuestionConstruct + + + fr.insee + l2kkd59n-CI-0 + 1 + ComputationItem + + + fr.insee + l2kkd59n-CI-1 + 1 + ComputationItem + + + fr.insee + l2kkd59n-CI-2 + 1 + ComputationItem + + + + fr.insee + l1f5y7ps + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1f5y7ps-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l1f5y7ps-IP-1 + 1 + InParameter + + + l1f5y7ps-IP-1="1" or isnull(l1f5y7ps-IP-1) + + + + fr.insee + l1f5y7ps-THEN + 1 + Sequence + + + + fr.insee + l1f5y7ps-THEN + 1 + + + + filterContent + + fr.insee + l2kk4snz-QC + 1 + QuestionConstruct + + + fr.insee + l2kk4snz-CI-0 + 1 + ComputationItem + + + fr.insee + l3bq7xns + 1 + IfThenElse + + + fr.insee + l5jp8ine + 1 + IfThenElse + + + fr.insee + l43yap7r-QC + 1 + QuestionConstruct + + + fr.insee + l43yap7r-CI-0 + 1 + ComputationItem + + + + fr.insee + l3bq7xns + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l3bq7xns-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l3bq7xns-IP-1 + 1 + InParameter + + + l3bq7xns-IP-1 ="2" or isnull(l3bq7xns-IP-1) + + + + fr.insee + l3bq7xns-THEN + 1 + Sequence + + + + fr.insee + l3bq7xns-THEN + 1 + + + + filterContent + + fr.insee + l2kkb4xa-QC + 1 + QuestionConstruct + + + fr.insee + l2kkb4xa-CI-0 + 1 + ComputationItem + + + fr.insee + l4o7yry0 + 1 + IfThenElse + + + fr.insee + l4o89ng4 + 1 + IfThenElse + + + + fr.insee + l4o7yry0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o7yry0-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l4o7yry0-IP-1 + 1 + InParameter + + + l4o7yry0-IP-1 ="1" or isnull(l4o7yry0-IP-1) + + + + fr.insee + l4o7yry0-THEN + 1 + Sequence + + + + fr.insee + l4o7yry0-THEN + 1 + + + + filterContent + + fr.insee + l4onhpvd-QC + 1 + QuestionConstruct + + + fr.insee + l4onhpvd-CI-0 + 1 + ComputationItem + + + fr.insee + ltcyp39e + 1 + IfThenElse + + + + fr.insee + ltcyp39e + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcyp39e-IP-1 + 1 + + COM_PAR1 + + + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + ltcyp39e-IP-1 + 1 + InParameter + + + ltcyp39e-IP-1 ="" or isnull(ltcyp39e-IP-1) + + + + fr.insee + ltcyp39e-THEN + 1 + Sequence + + + + fr.insee + ltcyp39e-THEN + 1 + + + + filterContent + + fr.insee + l4o7ufzl-QC + 1 + QuestionConstruct + + + fr.insee + l4o7ufzl-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o89ng4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o89ng4-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l4o89ng4-IP-1 + 1 + InParameter + + + l4o89ng4-IP-1 ="2" + + + + fr.insee + l4o89ng4-THEN + 1 + Sequence + + + + fr.insee + l4o89ng4-THEN + 1 + + + + filterContent + + fr.insee + l4o8eale-QC + 1 + QuestionConstruct + + + fr.insee + l4o8eale-CI-0 + 1 + ComputationItem + + + + fr.insee + l5jp8ine + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5jp8ine-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l5jp8ine-IP-1 + 1 + InParameter + + + l5jp8ine-IP-1 ="2" or isnull(l5jp8ine-IP-1) + + + + fr.insee + l5jp8ine-THEN + 1 + Sequence + + + + fr.insee + l5jp8ine-THEN + 1 + + + + filterContent + + fr.insee + lwgjawwu + 1 + IfThenElse + + + fr.insee + l2kkeqsz-QC + 1 + QuestionConstruct + + + fr.insee + l2kkeqsz-CI-0 + 1 + ComputationItem + + + fr.insee + l2kk296y-QC + 1 + QuestionConstruct + + + fr.insee + l2kk296y-CI-0 + 1 + ComputationItem + + + fr.insee + l4lojzxg-QC + 1 + QuestionConstruct + + + fr.insee + l4lojzxg-CI-0 + 1 + ComputationItem + + + + fr.insee + lwgjawwu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwgjawwu-IP-1 + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + lwgjawwu-IP-1 + 1 + InParameter + + + cast(lwgjawwu-IP-1,integer)<=1974 + + + + fr.insee + lwgjawwu-THEN + 1 + Sequence + + + + fr.insee + lwgjawwu-THEN + 1 + + + + filterContent + + fr.insee + l1ezkqes-QC + 1 + QuestionConstruct + + + fr.insee + l1ezkqes-CI-0 + 1 + ComputationItem + + + + fr.insee + l5ayth8i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l5ayth8i-IP-1 + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5ayth8i-IP-1 + 1 + InParameter + + + l5ayth8i-IP-1 ="1" + + + + fr.insee + l5ayth8i-THEN + 1 + Sequence + + + + fr.insee + l5ayth8i-THEN + 1 + + + + filterContent + + fr.insee + las2r756 + 1 + Sequence + + + + fr.insee + l4o63304 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o63304-IP-1 + 1 + + RPPRENOMPAR2 + + + + fr.insee + l4o63304-IP-2 + 1 + + RPANAISPAR2 + + + + fr.insee + l4o63304-IP-3 + 1 + + PRENOM_PAR2 + + + + fr.insee + l4o63304-IP-4 + 1 + + ANAI_PAR2 + + + + + fr.insee + RPPRENOMPAR2 + 1 + InParameter + + + fr.insee + l4o63304-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR2 + 1 + InParameter + + + fr.insee + l4o63304-IP-2 + 1 + InParameter + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l4o63304-IP-3 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + l4o63304-IP-4 + 1 + InParameter + + + isnull(l4o63304-IP-1) or isnull(l4o63304-IP-3) or replace(upper(l4o63304-IP-1)," ","") <> replace(upper(l4o63304-IP-3)," ","") or cast(l4o63304-IP-2,integer) <> cast(l4o63304-IP-4, integer) + + + + fr.insee + l4o63304-THEN + 1 + Sequence + + + + fr.insee + l4o63304-THEN + 1 + + + + filterContent + + fr.insee + lyoc66rt-QC + 1 + QuestionConstruct + + + fr.insee + lyoc66rt-CI-0 + 1 + ComputationItem + + + fr.insee + m03k9k7i + 1 + IfThenElse + + + fr.insee + kwqfhhge-QC + 1 + QuestionConstruct + + + fr.insee + kwqfhhge-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywxphs-QC + 1 + QuestionConstruct + + + fr.insee + l7ywxphs-CI-0 + 1 + ComputationItem + + + fr.insee + l7ywxi91 + 1 + IfThenElse + + + + fr.insee + m03k9k7i + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m03k9k7i-IP-1 + 1 + + LIEUNAIS_PAR2 + + + + + fr.insee + lyoc66rt-QOP-lyocagtc + 1 + OutParameter + + + fr.insee + m03k9k7i-IP-1 + 1 + InParameter + + + m03k9k7i-IP-1 ="2" + + + + fr.insee + m03k9k7i-THEN + 1 + Sequence + + + + fr.insee + m03k9k7i-THEN + 1 + + + + filterContent + + fr.insee + lyod9pq3-QC + 1 + QuestionConstruct + + + fr.insee + lyod9pq3-CI-0 + 1 + ComputationItem + + + + fr.insee + l7ywxi91 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l7ywxi91-IP-1 + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxi91-IP-1 + 1 + InParameter + + + l7ywxi91-IP-1 ="1" or isnull(l7ywxi91-IP-1) + + + + fr.insee + l7ywxi91-THEN + 1 + Sequence + + + + fr.insee + l7ywxi91-THEN + 1 + + + + filterContent + + fr.insee + l4qzrwjt + 1 + IfThenElse + + + fr.insee + l4qzn5gc + 1 + IfThenElse + + + fr.insee + l45cxcc4 + 1 + IfThenElse + + + fr.insee + kwqfto3c-QC + 1 + QuestionConstruct + + + fr.insee + kwqfto3c-CI-0 + 1 + ComputationItem + + + fr.insee + lptlf8wc + 1 + IfThenElse + + + fr.insee + llgrpcik + 1 + IfThenElse + + + fr.insee + llgs5b5t + 1 + IfThenElse + + + + fr.insee + l4qzrwjt + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzrwjt-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l4qzrwjt-IP-1 + 1 + InParameter + + + l4qzrwjt-IP-1 ="2" or isnull(l4qzrwjt-IP-1) + + + + fr.insee + l4qzrwjt-THEN + 1 + Sequence + + + + fr.insee + l4qzrwjt-THEN + 1 + + + + filterContent + + fr.insee + l1ezowxi-QC + 1 + QuestionConstruct + + + + fr.insee + l4qzn5gc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4qzn5gc-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l4qzn5gc-IP-1 + 1 + InParameter + + + l4qzn5gc-IP-1 ="1" + + + + fr.insee + l4qzn5gc-THEN + 1 + Sequence + + + + fr.insee + l4qzn5gc-THEN + 1 + + + + filterContent + + fr.insee + l4qzjbsx-QC + 1 + QuestionConstruct + + + + fr.insee + l45cxcc4 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l45cxcc4-IP-1 + 1 + + PROF_PAR2H + + + + fr.insee + l45cxcc4-IP-2 + 1 + + PROF_PAR2F + + + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l45cxcc4-IP-1 + 1 + InParameter + + + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l45cxcc4-IP-2 + 1 + InParameter + + + isnull(l45cxcc4-IP-2) and isnull(l45cxcc4-IP-1) + + + + fr.insee + l45cxcc4-THEN + 1 + Sequence + + + + fr.insee + l45cxcc4-THEN + 1 + + + + filterContent + + fr.insee + l444t31z-QC + 1 + QuestionConstruct + + + fr.insee + l444t31z-CI-0 + 1 + ComputationItem + + + + fr.insee + lptlf8wc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lptlf8wc-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + lptlf8wc-IP-1 + 1 + InParameter + + + lptlf8wc-IP-1 ="1" + + + + fr.insee + lptlf8wc-THEN + 1 + Sequence + + + + fr.insee + lptlf8wc-THEN + 1 + + + + filterContent + + fr.insee + lptlrxcc-QC + 1 + QuestionConstruct + + + fr.insee + lptlrxcc-CI-0 + 1 + ComputationItem + + + + fr.insee + llgrpcik + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgrpcik-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + llgrpcik-IP-1 + 1 + InParameter + + + llgrpcik-IP-1 ="2" + + + + fr.insee + llgrpcik-THEN + 1 + Sequence + + + + fr.insee + llgrpcik-THEN + 1 + + + + filterContent + + fr.insee + llgosp3i-QC + 1 + QuestionConstruct + + + fr.insee + llgosp3i-CI-0 + 1 + ComputationItem + + + + fr.insee + llgs5b5t + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + llgs5b5t-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + llgs5b5t-IP-1 + 1 + InParameter + + + llgs5b5t-IP-1 ="3" + + + + fr.insee + llgs5b5t-THEN + 1 + Sequence + + + + fr.insee + llgs5b5t-THEN + 1 + + + + filterContent + + fr.insee + llgrqyqg-QC + 1 + QuestionConstruct + + + fr.insee + llgrqyqg-CI-0 + 1 + ComputationItem + + + + fr.insee + lumsa5jd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsa5jd-IP-1 + 1 + + LANGUE1_PAR2 + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + lumsa5jd-IP-1 + 1 + InParameter + + + isnull(lumsa5jd-IP-1) + + + + fr.insee + lumsa5jd-THEN + 1 + Sequence + + + + fr.insee + lumsa5jd-THEN + 1 + + + + filterContent + + fr.insee + lums0dcm-QC + 1 + QuestionConstruct + + + fr.insee + lums0dcm-CI-0 + 1 + ComputationItem + + + + fr.insee + lmrr3r3g + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lmrr3r3g-IP-1 + 1 + + LANGUE1_PAR2 + + + + fr.insee + lmrr3r3g-IP-2 + 1 + + LANGUE1_PAR2L + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + lmrr3r3g-IP-1 + 1 + InParameter + + + + + fr.insee + lums0dcm-QOP-lums9oq4 + 1 + OutParameter + + + fr.insee + lmrr3r3g-IP-2 + 1 + InParameter + + + not(isnull(lmrr3r3g-IP-1)) or not(isnull(lmrr3r3g-IP-2)) + + + + fr.insee + lmrr3r3g-THEN + 1 + Sequence + + + + fr.insee + lmrr3r3g-THEN + 1 + + + + filterContent + + fr.insee + l444xjux-QC + 1 + QuestionConstruct + + + fr.insee + l444xjux-CI-0 + 1 + ComputationItem + + + fr.insee + lw6eo5t0 + 1 + IfThenElse + + + fr.insee + lumsfqh0 + 1 + IfThenElse + + + + fr.insee + lw6eo5t0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6eo5t0-IP-1 + 1 + + LANGUE2_PAR2E + + + + + fr.insee + l444xjux-QOP-lw6k0w8i + 1 + OutParameter + + + fr.insee + lw6eo5t0-IP-1 + 1 + InParameter + + + lw6eo5t0-IP-1 ="1" + + + + fr.insee + lw6eo5t0-THEN + 1 + Sequence + + + + fr.insee + lw6eo5t0-THEN + 1 + + + + filterContent + + fr.insee + lw6eh4up-QC + 1 + QuestionConstruct + + + fr.insee + lw6eh4up-CI-0 + 1 + ComputationItem + + + fr.insee + lumsq3o1 + 1 + IfThenElse + + + + fr.insee + lumsq3o1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsq3o1-IP-1 + 1 + + LANGUE2_PAR2 + + + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lumsq3o1-IP-1 + 1 + InParameter + + + isnull(lumsq3o1-IP-1) + + + + fr.insee + lumsq3o1-THEN + 1 + Sequence + + + + fr.insee + lumsq3o1-THEN + 1 + + + + filterContent + + fr.insee + lumsfeeu-QC + 1 + QuestionConstruct + + + fr.insee + lumsfeeu-CI-0 + 1 + ComputationItem + + + + fr.insee + lumsfqh0 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsfqh0-IP-1 + 1 + + LANGUE2_PAR2 + + + + fr.insee + lumsfqh0-IP-2 + 1 + + LANGUE2_PAR2L + + + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lumsfqh0-IP-1 + 1 + InParameter + + + + + fr.insee + lumsfeeu-QOP-lumsjma7 + 1 + OutParameter + + + fr.insee + lumsfqh0-IP-2 + 1 + InParameter + + + not(isnull(lumsfqh0-IP-1)) or not(isnull(lumsfqh0-IP-2)) + + + + fr.insee + lumsfqh0-THEN + 1 + Sequence + + + + fr.insee + lumsfqh0-THEN + 1 + + + + filterContent + + fr.insee + lums26pp-QC + 1 + QuestionConstruct + + + fr.insee + lums26pp-CI-0 + 1 + ComputationItem + + + fr.insee + lw6f38gb + 1 + IfThenElse + + + fr.insee + lumsbarl + 1 + IfThenElse + + + + fr.insee + lw6f38gb + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6f38gb-IP-1 + 1 + + LANGUE3_PAR2E + + + + + fr.insee + lums26pp-QOP-lw6k49xr + 1 + OutParameter + + + fr.insee + lw6f38gb-IP-1 + 1 + InParameter + + + lw6f38gb-IP-1 ="1" + + + + fr.insee + lw6f38gb-THEN + 1 + Sequence + + + + fr.insee + lw6f38gb-THEN + 1 + + + + filterContent + + fr.insee + lw6euv9i-QC + 1 + QuestionConstruct + + + fr.insee + lw6euv9i-CI-0 + 1 + ComputationItem + + + fr.insee + lumsa8u5 + 1 + IfThenElse + + + + fr.insee + lumsa8u5 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsa8u5-IP-1 + 1 + + LANGUE3_PAR2 + + + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lumsa8u5-IP-1 + 1 + InParameter + + + isnull(lumsa8u5-IP-1) + + + + fr.insee + lumsa8u5-THEN + 1 + Sequence + + + + fr.insee + lumsa8u5-THEN + 1 + + + + filterContent + + fr.insee + lumsp0o4-QC + 1 + QuestionConstruct + + + fr.insee + lumsp0o4-CI-0 + 1 + ComputationItem + + + + fr.insee + lumsbarl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsbarl-IP-1 + 1 + + LANGUE3_PAR2 + + + + fr.insee + lumsbarl-IP-2 + 1 + + LANGUE3_PAR2L + + + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lumsbarl-IP-1 + 1 + InParameter + + + + + fr.insee + lumsp0o4-QOP-lumslfat + 1 + OutParameter + + + fr.insee + lumsbarl-IP-2 + 1 + InParameter + + + not(isnull(lumsbarl-IP-1)) or not(isnull(lumsbarl-IP-2)) + + + + fr.insee + lumsbarl-THEN + 1 + Sequence + + + + fr.insee + lumsbarl-THEN + 1 + + + + filterContent + + fr.insee + lumrz70d-QC + 1 + QuestionConstruct + + + fr.insee + lumrz70d-CI-0 + 1 + ComputationItem + + + fr.insee + lw6errqp + 1 + IfThenElse + + + + fr.insee + lw6errqp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lw6errqp-IP-1 + 1 + + LANGUE4_PAR2E + + + + + fr.insee + lumrz70d-QOP-lw6jlhek + 1 + OutParameter + + + fr.insee + lw6errqp-IP-1 + 1 + InParameter + + + lw6errqp-IP-1 ="1" + + + + fr.insee + lw6errqp-THEN + 1 + Sequence + + + + fr.insee + lw6errqp-THEN + 1 + + + + filterContent + + fr.insee + lw6er2dw-QC + 1 + QuestionConstruct + + + fr.insee + lw6er2dw-CI-0 + 1 + ComputationItem + + + fr.insee + lumsedok + 1 + IfThenElse + + + + fr.insee + lumsedok + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumsedok-IP-1 + 1 + + LANGUE4_PAR2 + + + + + fr.insee + lw6er2dw-QOP-lw6epzej + 1 + OutParameter + + + fr.insee + lumsedok-IP-1 + 1 + InParameter + + + isnull(lumsedok-IP-1) + + + + fr.insee + lumsedok-THEN + 1 + Sequence + + + + fr.insee + lumsedok-THEN + 1 + + + + filterContent + + fr.insee + lumso5hv-QC + 1 + QuestionConstruct + + + fr.insee + lumso5hv-CI-0 + 1 + ComputationItem + + + + fr.insee + lbpjirq3 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lbpjirq3-IP-1 + 1 + + RPPRENOMPAR2 + + + + fr.insee + lbpjirq3-IP-2 + 1 + + RPANAISPAR2 + + + + fr.insee + lbpjirq3-IP-3 + 1 + + PRENOM_PAR2 + + + + fr.insee + lbpjirq3-IP-4 + 1 + + ANAI_PAR2 + + + + + fr.insee + RPPRENOMPAR2 + 1 + InParameter + + + fr.insee + lbpjirq3-IP-1 + 1 + InParameter + + + + + fr.insee + RPANAISPAR2 + 1 + InParameter + + + fr.insee + lbpjirq3-IP-2 + 1 + InParameter + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + lbpjirq3-IP-3 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + lbpjirq3-IP-4 + 1 + InParameter + + + isnull(lbpjirq3-IP-1) or isnull(lbpjirq3-IP-3) or replace(upper(lbpjirq3-IP-1)," ","") <> replace(upper(lbpjirq3-IP-3)," ","") or cast(lbpjirq3-IP-2,integer) <> cast(lbpjirq3-IP-4, integer) + + + + fr.insee + lbpjirq3-THEN + 1 + Sequence + + + + fr.insee + lbpjirq3-THEN + 1 + + + + filterContent + + fr.insee + kwqhjfzk-QC + 1 + QuestionConstruct + + + fr.insee + kwqhjfzk-CI-0 + 1 + ComputationItem + + + fr.insee + l2rog2px + 1 + IfThenElse + + + fr.insee + l2kjx5mh + 1 + IfThenElse + + + + fr.insee + l2rog2px + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2rog2px-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + l2rog2px-IP-1 + 1 + InParameter + + + l2rog2px-IP-1 ="2" + + + + fr.insee + l2rog2px-THEN + 1 + Sequence + + + + fr.insee + l2rog2px-THEN + 1 + + + + filterContent + + fr.insee + kwqg35i9-QC + 1 + QuestionConstruct + + + fr.insee + kwqg35i9-CI-0 + 1 + ComputationItem + + + fr.insee + kwqg35i9-CI-1 + 1 + ComputationItem + + + fr.insee + kwqg35i9-CI-2 + 1 + ComputationItem + + + + fr.insee + l2kjx5mh + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l2kjx5mh-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + l2kjx5mh-IP-1 + 1 + InParameter + + + l2kjx5mh-IP-1 ="1" or isnull(l2kjx5mh-IP-1) + + + + fr.insee + l2kjx5mh-THEN + 1 + Sequence + + + + fr.insee + l2kjx5mh-THEN + 1 + + + + filterContent + + fr.insee + lab74bmo + 1 + IfThenElse + + + fr.insee + lab6rrje + 1 + IfThenElse + + + fr.insee + l4lovlmo + 1 + IfThenElse + + + + fr.insee + lab74bmo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab74bmo-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + lab74bmo-IP-1 + 1 + InParameter + + + lab74bmo-IP-1 ="1" or isnull(lab74bmo-IP-1) + + + + fr.insee + lab74bmo-THEN + 1 + Sequence + + + + fr.insee + lab74bmo-THEN + 1 + + + + filterContent + + fr.insee + kwqgffvw-QC + 1 + QuestionConstruct + + + fr.insee + kwqgffvw-CI-0 + 1 + ComputationItem + + + fr.insee + kwqgffvw-CI-1 + 1 + ComputationItem + + + + fr.insee + lab6rrje + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lab6rrje-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + lab6rrje-IP-1 + 1 + InParameter + + + lab6rrje-IP-1 ="2" + + + + fr.insee + lab6rrje-THEN + 1 + Sequence + + + + fr.insee + lab6rrje-THEN + 1 + + + + filterContent + + fr.insee + lab6xfk9-QC + 1 + QuestionConstruct + + + fr.insee + lab6xfk9-CI-0 + 1 + ComputationItem + + + + fr.insee + l4lovlmo + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4lovlmo-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + l4lovlmo-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + l4lovlmo-IP-3 + 1 + + LOG_PAR2A3 + + + + fr.insee + l4lovlmo-IP-4 + 1 + + LOG_PAR2B + + + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-3 + 1 + InParameter + + + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + l4lovlmo-IP-4 + 1 + InParameter + + + (l4lovlmo-IP-3 and isnull(l4lovlmo-IP-4)) or (l4lovlmo-IP-4 ="2" and (nvl(l4lovlmo-IP-1, false) = false and nvl(l4lovlmo-IP-2, false) = false and nvl(l4lovlmo-IP-3, false) = false)) + + + + fr.insee + l4lovlmo-THEN + 1 + Sequence + + + + fr.insee + l4lovlmo-THEN + 1 + + + + filterContent + + fr.insee + kwqgawqp-QC + 1 + QuestionConstruct + + + fr.insee + kwqgawqp-CI-0 + 1 + ComputationItem + + + fr.insee + l4o84dom + 1 + IfThenElse + + + fr.insee + l4o85xru + 1 + IfThenElse + + + fr.insee + lwgivqbd + 1 + IfThenElse + + + fr.insee + l1gl4054-QC + 1 + QuestionConstruct + + + fr.insee + l1gl4054-CI-0 + 1 + ComputationItem + + + fr.insee + l1ezkbsf-QC + 1 + QuestionConstruct + + + fr.insee + l1ezkbsf-CI-0 + 1 + ComputationItem + + + fr.insee + l445itcb-QC + 1 + QuestionConstruct + + + fr.insee + l445itcb-CI-0 + 1 + ComputationItem + + + fr.insee + l4cjeqc0-QC + 1 + QuestionConstruct + + + fr.insee + l4cjeqc0-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o84dom + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o84dom-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + l4o84dom-IP-1 + 1 + InParameter + + + l4o84dom-IP-1 ="1" or isnull(l4o84dom-IP-1) + + + + fr.insee + l4o84dom-THEN + 1 + Sequence + + + + fr.insee + l4o84dom-THEN + 1 + + + + filterContent + + fr.insee + l4onk34z-QC + 1 + QuestionConstruct + + + fr.insee + l4onk34z-CI-0 + 1 + ComputationItem + + + fr.insee + ltcychrg + 1 + IfThenElse + + + + fr.insee + ltcychrg + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + ltcychrg-IP-1 + 1 + + COM_PAR2 + + + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + fr.insee + ltcychrg-IP-1 + 1 + InParameter + + + ltcychrg-IP-1 ="" or isnull(ltcychrg-IP-1) + + + + fr.insee + ltcychrg-THEN + 1 + Sequence + + + + fr.insee + ltcychrg-THEN + 1 + + + + filterContent + + fr.insee + l4o8co0c-QC + 1 + QuestionConstruct + + + fr.insee + l4o8co0c-CI-0 + 1 + ComputationItem + + + + fr.insee + l4o85xru + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l4o85xru-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + l4o85xru-IP-1 + 1 + InParameter + + + l4o85xru-IP-1 ="2" + + + + fr.insee + l4o85xru-THEN + 1 + Sequence + + + + fr.insee + l4o85xru-THEN + 1 + + + + filterContent + + fr.insee + l4o8dk7q-QC + 1 + QuestionConstruct + + + fr.insee + l4o8dk7q-CI-0 + 1 + ComputationItem + + + + fr.insee + lwgivqbd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lwgivqbd-IP-1 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + lwgivqbd-IP-1 + 1 + InParameter + + + cast(lwgivqbd-IP-1,integer)<=1974 + + + + fr.insee + lwgivqbd-THEN + 1 + Sequence + + + + fr.insee + lwgivqbd-THEN + 1 + + + + filterContent + + fr.insee + l2kkc8s9-QC + 1 + QuestionConstruct + + + fr.insee + l2kkc8s9-CI-0 + 1 + ComputationItem + + + + fr.insee + lj2srd9e + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj2srd9e-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + lj2srd9e-IP-1 + 1 + InParameter + + + lj2srd9e-IP-1 = 1 + + + + fr.insee + lj2srd9e-THEN + 1 + Sequence + + + + fr.insee + lj2srd9e-THEN + 1 + + + + filterContent + + fr.insee + l5ikk5zq-QC + 1 + QuestionConstruct + + + fr.insee + l5ikk5zq-CI-0 + 1 + ComputationItem + + + + fr.insee + lj30clvl + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj30clvl-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + lj30clvl-IP-1 + 1 + InParameter + + + lj30clvl-IP-1 > 1 + + + + fr.insee + lj30clvl-THEN + 1 + Sequence + + + + fr.insee + lj30clvl-THEN + 1 + + + + filterContent + + fr.insee + l4740wd1-QC + 1 + QuestionConstruct + + + fr.insee + l4740wd1-CI-0 + 1 + ComputationItem + + + fr.insee + l4740wd1-CI-1 + 1 + ComputationItem + + + + fr.insee + lj41apen + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj41apen-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + lj41apen-IP-1 + 1 + InParameter + + + lj41apen-IP-1 = 1 + + + + fr.insee + lj41apen-THEN + 1 + Sequence + + + + fr.insee + lj41apen-THEN + 1 + + + + filterContent + + fr.insee + l5ikyrbc-QC + 1 + QuestionConstruct + + + fr.insee + l5ikyrbc-CI-0 + 1 + ComputationItem + + + + fr.insee + lj41lgft + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lj41lgft-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + lj41lgft-IP-1 + 1 + InParameter + + + lj41lgft-IP-1 > 1 + + + + fr.insee + lj41lgft-THEN + 1 + Sequence + + + + fr.insee + lj41lgft-THEN + 1 + + + + filterContent + + fr.insee + l473w273-QC + 1 + QuestionConstruct + + + fr.insee + l473w273-CI-0 + 1 + ComputationItem + + + fr.insee + l473w273-CI-1 + 1 + ComputationItem + + + + fr.insee + m0qs39dd + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0qs39dd-IP-1 + 1 + + VECU_JEUNESSE6 + + + + fr.insee + m0qs39dd-IP-2 + 1 + + VECU_JEUNESSE7 + + + + + fr.insee + l1f61fa3-QOP-lv6mjy61 + 1 + OutParameter + + + fr.insee + m0qs39dd-IP-1 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6mif9h + 1 + OutParameter + + + fr.insee + m0qs39dd-IP-2 + 1 + InParameter + + + m0qs39dd-IP-1 or m0qs39dd-IP-2 + + + + fr.insee + m0qs39dd-THEN + 1 + Sequence + + + + fr.insee + m0qs39dd-THEN + 1 + + + + filterContent + + fr.insee + l43ttd47-QC + 1 + QuestionConstruct + + + fr.insee + l43ttd47-CI-0 + 1 + ComputationItem + + + + fr.insee + l43u5x89 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l43u5x89-IP-1 + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43u5x89-IP-1 + 1 + InParameter + + + l43u5x89-IP-1 ="1" + + + + fr.insee + l43u5x89-THEN + 1 + Sequence + + + + fr.insee + l43u5x89-THEN + 1 + + + + filterContent + + fr.insee + l43u439h-QC + 1 + QuestionConstruct + + + fr.insee + l43u439h-CI-0 + 1 + ComputationItem + + + + fr.insee + l1g432mc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1g432mc-IP-1 + 1 + + FINETU + + + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g432mc-IP-1 + 1 + InParameter + + + l1g432mc-IP-1="1" + + + + fr.insee + l1g432mc-THEN + 1 + Sequence + + + + fr.insee + l1g432mc-THEN + 1 + + + + filterContent + + fr.insee + l1g3yk6q-QC + 1 + QuestionConstruct + + + fr.insee + l1g3yk6q-CI-0 + 1 + ComputationItem + + + fr.insee + l1g3yk6q-CI-1 + 1 + ComputationItem + + + + fr.insee + lv6l0h1a + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6l0h1a-IP-1 + 1 + + FINETU + + + + fr.insee + lv6l0h1a-IP-2 + 1 + + ANNEE_FINETU + + + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + lv6l0h1a-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + lv6l0h1a-IP-2 + 1 + InParameter + + + lv6l0h1a-IP-1="1" and (lv6l0h1a-IP-2 ="" or isnull(lv6l0h1a-IP-2)) + + + + fr.insee + lv6l0h1a-THEN + 1 + Sequence + + + + fr.insee + lv6l0h1a-THEN + 1 + + + + filterContent + + fr.insee + lv6kuuw3-QC + 1 + QuestionConstruct + + + fr.insee + lv6kuuw3-CI-0 + 1 + ComputationItem + + + fr.insee + lv6kuuw3-CI-1 + 1 + ComputationItem + + + + fr.insee + l1g7w1v9 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l1g7w1v9-IP-1 + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l1g7w1v9-IP-1 + 1 + InParameter + + + l1g7w1v9-IP-1 ="1" + + + + fr.insee + l1g7w1v9-THEN + 1 + Sequence + + + + fr.insee + l1g7w1v9-THEN + 1 + + + + filterContent + + fr.insee + l1g7pgbn-QC + 1 + QuestionConstruct + + + fr.insee + l1g7pgbn-CI-0 + 1 + ComputationItem + + + + fr.insee + lumn8q99 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumn8q99-IP-1 + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + lumn8q99-IP-1 + 1 + InParameter + + + isnull(lumn8q99-IP-1) or lumn8q99-IP-1 ="2" + + + + fr.insee + lumn8q99-THEN + 1 + Sequence + + + + fr.insee + lumn8q99-THEN + 1 + + + + filterContent + + fr.insee + lumnhjfi-QC + 1 + QuestionConstruct + + + fr.insee + lumnhjfi-CI-0 + 1 + ComputationItem + + + + fr.insee + lumnovay + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lumnovay-IP-1 + 1 + + DEJATRAV1 + + + + fr.insee + lumnovay-IP-2 + 1 + + DEJATRAV2 + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + lumnovay-IP-1 + 1 + InParameter + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + lumnovay-IP-2 + 1 + InParameter + + + lumnovay-IP-1 ="1" or lumnovay-IP-2 ="1" + + + + fr.insee + lumnovay-THEN + 1 + Sequence + + + + fr.insee + lumnovay-THEN + 1 + + + + filterContent + + fr.insee + l1g4pid1-QC + 1 + QuestionConstruct + + + fr.insee + l1g4pid1-CI-0 + 1 + ComputationItem + + + fr.insee + l1g4pid1-CI-1 + 1 + ComputationItem + + + + fr.insee + lv6l7iy2 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6l7iy2-IP-1 + 1 + + DEJATRAV1 + + + + fr.insee + lv6l7iy2-IP-2 + 1 + + DEJATRAV2 + + + + fr.insee + lv6l7iy2-IP-3 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + lv6l7iy2-IP-1 + 1 + InParameter + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + lv6l7iy2-IP-2 + 1 + InParameter + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + lv6l7iy2-IP-3 + 1 + InParameter + + + (lv6l7iy2-IP-1 ="1" or lv6l7iy2-IP-2 ="1") and (isnull(lv6l7iy2-IP-3) or lv6l7iy2-IP-3="") + + + + fr.insee + lv6l7iy2-THEN + 1 + Sequence + + + + fr.insee + lv6l7iy2-THEN + 1 + + + + filterContent + + fr.insee + lv6l9f59-QC + 1 + QuestionConstruct + + + fr.insee + lv6l9f59-CI-0 + 1 + ComputationItem + + + fr.insee + lv6l9f59-CI-1 + 1 + ComputationItem + + + + fr.insee + l445riqu + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + l445riqu-IP-1 + 1 + + TRAVACT + + + + fr.insee + l445riqu-IP-2 + 1 + + DEJATRAV1 + + + + fr.insee + l445riqu-IP-3 + 1 + + DEJATRAV2 + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445riqu-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l445riqu-IP-2 + 1 + InParameter + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + l445riqu-IP-3 + 1 + InParameter + + + l445riqu-IP-1="2" and (l445riqu-IP-2 ="1" or l445riqu-IP-3 ="1") + + + + fr.insee + l445riqu-THEN + 1 + Sequence + + + + fr.insee + l445riqu-THEN + 1 + + + + filterContent + + fr.insee + l1g7iu0j-QC + 1 + QuestionConstruct + + + fr.insee + l1g7iu0j-CI-0 + 1 + ComputationItem + + + fr.insee + l1g7iu0j-CI-1 + 1 + ComputationItem + + + + fr.insee + lv6mlnse + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lv6mlnse-IP-1 + 1 + + TRAVACT + + + + fr.insee + lv6mlnse-IP-2 + 1 + + DEJATRAV1 + + + + fr.insee + lv6mlnse-IP-3 + 1 + + DEJATRAV2 + + + + fr.insee + lv6mlnse-IP-4 + 1 + + ANNEE_FINEMP + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + lv6mlnse-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + lv6mlnse-IP-2 + 1 + InParameter + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + lv6mlnse-IP-3 + 1 + InParameter + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + lv6mlnse-IP-4 + 1 + InParameter + + + lv6mlnse-IP-1="2" and (lv6mlnse-IP-2 ="1" or lv6mlnse-IP-3 ="1") and (lv6mlnse-IP-4 ="" or isnull(lv6mlnse-IP-4)) + + + + fr.insee + lv6mlnse-THEN + 1 + Sequence + + + + fr.insee + lv6mlnse-THEN + 1 + + + + filterContent + + fr.insee + lv6m34hz-QC + 1 + QuestionConstruct + + + fr.insee + lv6m34hz-CI-0 + 1 + ComputationItem + + + fr.insee + lv6m34hz-CI-1 + 1 + ComputationItem + + + fr.insee + lv6m34hz-CI-2 + 1 + ComputationItem + + + + fr.insee + m1689ydy + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m1689ydy-IP-1 + 1 + + DEJATRAV1 + + + + fr.insee + m1689ydy-IP-2 + 1 + + DEJATRAV2 + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + m1689ydy-IP-1 + 1 + InParameter + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + m1689ydy-IP-2 + 1 + InParameter + + + m1689ydy-IP-1 ="1" or m1689ydy-IP-2 ="1" + + + + fr.insee + m1689ydy-THEN + 1 + Sequence + + + + fr.insee + m1689ydy-THEN + 1 + + + + filterContent + + fr.insee + l1g7vwo6-QC + 1 + QuestionConstruct + + + fr.insee + l1g7vwo6-CI-0 + 1 + ComputationItem + + + fr.insee + l1g7vwo6-CI-1 + 1 + ComputationItem + + + + fr.insee + lamjvpmw + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + lamjvpmw-IP-1 + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + lamjvpmw-IP-1 + 1 + InParameter + + + lamjvpmw-IP-1 ="2" + + + + fr.insee + lamjvpmw-THEN + 1 + Sequence + + + + fr.insee + lamjvpmw-THEN + 1 + + + + filterContent + + fr.insee + lamjnyx4-QC + 1 + QuestionConstruct + + + + fr.insee + m238oglc + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m238oglc-IP-1 + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + m238oglc-IP-1 + 1 + InParameter + + + m238oglc-IP-1 ="1" + + + + fr.insee + m238oglc-THEN + 1 + Sequence + + + + fr.insee + m238oglc-THEN + 1 + + + + filterContent + + fr.insee + ly4bmrhf-QC + 1 + QuestionConstruct + + + fr.insee + m0kt34u1 + 1 + IfThenElse + + + + fr.insee + m0kt34u1 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0kt34u1-IP-1 + 1 + + POSTENQ + + + + + fr.insee + ly4bmrhf-QOP-ly4c2yfu + 1 + OutParameter + + + fr.insee + m0kt34u1-IP-1 + 1 + InParameter + + + m0kt34u1-IP-1 ="1" + + + + fr.insee + m0kt34u1-THEN + 1 + Sequence + + + + fr.insee + m0kt34u1-THEN + 1 + + + + filterContent + + fr.insee + m0ksi30t-QC + 1 + QuestionConstruct + + + fr.insee + m0kss955 + 1 + IfThenElse + + + fr.insee + m0ktavsp + 1 + IfThenElse + + + + fr.insee + m0kss955 + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0kss955-IP-1 + 1 + + POSTENQ_CONT1 + + + + + fr.insee + m0ksi30t-QOP-m0ktcljz + 1 + OutParameter + + + fr.insee + m0kss955-IP-1 + 1 + InParameter + + + m0kss955-IP-1 + + + + fr.insee + m0kss955-THEN + 1 + Sequence + + + + fr.insee + m0kss955-THEN + 1 + + + + filterContent + + fr.insee + m0ksqayr-QC + 1 + QuestionConstruct + + + fr.insee + m0ksqayr-CI-0 + 1 + ComputationItem + + + + fr.insee + m0ktavsp + 1 + + A définir + + + + + hideable + + + vtl + + fr.insee + m0ktavsp-IP-1 + 1 + + POSTENQ_CONT2 + + + + + fr.insee + m0ksi30t-QOP-m0kt2hbe + 1 + OutParameter + + + fr.insee + m0ktavsp-IP-1 + 1 + InParameter + + + m0ktavsp-IP-1 + + + + fr.insee + m0ktavsp-THEN + 1 + Sequence + + + + fr.insee + m0ktavsp-THEN + 1 + + + + filterContent + + fr.insee + m0kss4a5-QC + 1 + QuestionConstruct + + + + fr.insee + l473latk-QC + 1 + + VAL_PRENOM + + + fr.insee + l473latk + 1 + QuestionItem + + + + fr.insee + ly4bzjcl-QC + 1 + + PRENOM_X + + + fr.insee + ly4bzjcl + 1 + QuestionItem + + + + fr.insee + ly4blyt6-QC + 1 + + VAL_ANNAISS + + + fr.insee + ly4blyt6 + 1 + QuestionItem + + + + fr.insee + kwq9wijq-QC + 1 + + DATNAIS_X + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + + fr.insee + ly4cuvn6-QC + 1 + + MINEUR + + + fr.insee + ly4cuvn6 + 1 + QuestionItem + + + + fr.insee + kwq9y19w-QC + 1 + + COUPLE + + + fr.insee + kwq9y19w + 1 + QuestionItem + + + + fr.insee + l0qkj23a-QC + 1 + + RAISON_VIE_CJT + + + fr.insee + l0qkj23a + 1 + QuestionItem + + + + fr.insee + li353rhu-QC + 1 + + PRECIS_VIE_CJT + + + fr.insee + li353rhu + 1 + QuestionItem + + + + fr.insee + lyye1a7t-QC + 1 + + PROX_VIE_CJT + + + fr.insee + lyye1a7t + 1 + QuestionItem + + + + fr.insee + l34grb6h-QC + 1 + + PRENOM_C + + + fr.insee + l34grb6h + 1 + QuestionItem + + + + fr.insee + kwqa0ism-QC + 1 + + DATNAIS_C + + + fr.insee + kwqa0ism + 1 + QuestionItem + + + + fr.insee + kwqabjga-QC + 1 + + SEXE_CH + + + fr.insee + kwqabjga + 1 + QuestionItem + + + + fr.insee + l4o59ei7-QC + 1 + + LIEUNAIS_CH + + + fr.insee + l4o59ei7 + 1 + QuestionItem + + + + fr.insee + l0quikkt-QC + 1 + + DNAI_CH + + + fr.insee + l0quikkt + 1 + QuestionItem + + + + fr.insee + l4o57595-QC + 1 + + PNAI_CH + + + fr.insee + l4o57595 + 1 + QuestionItem + + + + fr.insee + l7ywou64-QC + 1 + + TRAV_CH_C + + + fr.insee + l7ywou64 + 1 + QuestionItem + + + + fr.insee + m0gppl9e-QC + 1 + + TRAV_CH_P + + + fr.insee + m0gppl9e + 1 + QuestionItem + + + + fr.insee + l0qudtd2-QC + 1 + + PROF_CH1 + + + fr.insee + l0qudtd2 + 1 + QuestionItem + + + + fr.insee + lldp4562-QC + 1 + + PROF_CH2 + + + fr.insee + lldp4562 + 1 + QuestionItem + + + + fr.insee + l43zea6v-QC + 1 + + PROF_C2H + + + fr.insee + l43zea6v + 1 + QuestionItem + + + + fr.insee + l0quphwx-QC + 1 + + STATUT_CH + + + fr.insee + l0quphwx + 1 + QuestionItem + + + + fr.insee + lpsj90yi-QC + 1 + + SAL_IND_CH + + + fr.insee + lpsj90yi + 1 + QuestionItem + + + + fr.insee + llgt315z-QC + 1 + + SAL_FP_CH + + + fr.insee + llgt315z + 1 + QuestionItem + + + + fr.insee + llgt75zv-QC + 1 + + SAL_ENT_CH + + + fr.insee + llgt75zv + 1 + QuestionItem + + + + fr.insee + llde3pgg-QC + 1 + + SEXE_CF + + + fr.insee + llde3pgg + 1 + QuestionItem + + + + fr.insee + lldpi629-QC + 1 + + LIEUNAIS_CF + + + fr.insee + lldpi629 + 1 + QuestionItem + + + + fr.insee + lldp8203-QC + 1 + + DNAI_CF + + + fr.insee + lldp8203 + 1 + QuestionItem + + + + fr.insee + lldpejfa-QC + 1 + + PNAI_CF + + + fr.insee + lldpejfa + 1 + QuestionItem + + + + fr.insee + m0gqs0nr-QC + 1 + + TRAV_CF_C + + + fr.insee + m0gqs0nr + 1 + QuestionItem + + + + fr.insee + m0gr51no-QC + 1 + + TRAV_CF_P + + + fr.insee + m0gr51no + 1 + QuestionItem + + + + fr.insee + l4quaxvt-QC + 1 + + PROF_CF1 + + + fr.insee + l4quaxvt + 1 + QuestionItem + + + + fr.insee + lldpqtrp-QC + 1 + + PROF_CF2 + + + fr.insee + lldpqtrp + 1 + QuestionItem + + + + fr.insee + lldqd2sd-QC + 1 + + PROF_C2F + + + fr.insee + lldqd2sd + 1 + QuestionItem + + + + fr.insee + llmhdvun-QC + 1 + + STATUT_CF + + + fr.insee + llmhdvun + 1 + QuestionItem + + + + fr.insee + lpsiiaoa-QC + 1 + + SAL_IND_CF + + + fr.insee + lpsiiaoa + 1 + QuestionItem + + + + fr.insee + llmhi6fd-QC + 1 + + SAL_FP_CF + + + fr.insee + llmhi6fd + 1 + QuestionItem + + + + fr.insee + llnh2qpm-QC + 1 + + SAL_ENT_CF + + + fr.insee + llnh2qpm + 1 + QuestionItem + + + + fr.insee + l27dlmvl-QC + 1 + + ANNEE_U + + + fr.insee + l27dlmvl + 1 + QuestionItem + + + + fr.insee + kwqa4zjf-QC + 1 + + PACS + + + fr.insee + kwqa4zjf + 1 + QuestionItem + + + + fr.insee + l0qu7e2g-QC + 1 + + ANNEE_PACS + + + fr.insee + l0qu7e2g + 1 + QuestionItem + + + + fr.insee + l0qujqzn-QC + 1 + + MARI + + + fr.insee + l0qujqzn + 1 + QuestionItem + + + + fr.insee + l0qul94p-QC + 1 + + ANNEE_MARI + + + fr.insee + l0qul94p + 1 + QuestionItem + + + + fr.insee + l5kszr2f-QC + 1 + + SEPARE + + + fr.insee + l5kszr2f + 1 + QuestionItem + + + + fr.insee + l27dzhpw-QC + 1 + + ANNEE_S + + + fr.insee + l27dzhpw + 1 + QuestionItem + + + + fr.insee + l155mqhc-QC + 1 + + ANNEE_D + + + fr.insee + l155mqhc + 1 + QuestionItem + + + + fr.insee + l8lz0355-QC + 1 + + VECU_C + + + fr.insee + l8lz0355 + 1 + QuestionItem + + + + fr.insee + l43u9qqf-QC + 1 + + ENFAV_C + + + fr.insee + l43u9qqf + 1 + QuestionItem + + + + fr.insee + l43u4x96-QC + 1 + + NBENFAV_C + + + fr.insee + l43u4x96 + 1 + QuestionItem + + + + fr.insee + l5jnmvs2-QC + 1 + + NBENFAV_VENU_C1 + + + fr.insee + l5jnmvs2 + 1 + QuestionItem + + + + fr.insee + l43why6c-QC + 1 + + NBENFAV_VENU_C + + + fr.insee + l43why6c + 1 + QuestionItem + + + + fr.insee + l43xg8do-QC + 1 + + ENF21_AUTPAR_C + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + fr.insee + l15131wu-QC + 1 + + AUT_UNION + + + fr.insee + l15131wu + 1 + QuestionItem + + + + fr.insee + l43x1amr-QC + 1 + + NB_AUT_UNION + + + fr.insee + l43x1amr + 1 + QuestionItem + + + + fr.insee + kwqa53jx-QC + 1 + + PRENOM_U1 + + + fr.insee + kwqa53jx + 1 + QuestionItem + + + + fr.insee + l4p8skko-QC + 1 + + SEXE_U1H + + + fr.insee + l4p8skko + 1 + QuestionItem + + + + fr.insee + lldenssh-QC + 1 + + SEXE_U1F + + + fr.insee + lldenssh + 1 + QuestionItem + + + + fr.insee + l34fzu5m-QC + 1 + + ANNEE_U1 + + + fr.insee + l34fzu5m + 1 + QuestionItem + + + + fr.insee + l27dlnmq-QC + 1 + + PACS_U1 + + + fr.insee + l27dlnmq + 1 + QuestionItem + + + + fr.insee + l27dns8a-QC + 1 + + ANNEE_PACS_U1 + + + fr.insee + l27dns8a + 1 + QuestionItem + + + + fr.insee + l27duust-QC + 1 + + MARI_U1 + + + fr.insee + l27duust + 1 + QuestionItem + + + + fr.insee + l27e50tv-QC + 1 + + ANNEE_MARI_U1 + + + fr.insee + l27e50tv + 1 + QuestionItem + + + + fr.insee + l5ktf1wn-QC + 1 + + SEPARE_U1 + + + fr.insee + l5ktf1wn + 1 + QuestionItem + + + + fr.insee + l27dzhzv-QC + 1 + + ANNEE_S_U1 + + + fr.insee + l27dzhzv + 1 + QuestionItem + + + + fr.insee + l27e0qyq-QC + 1 + + ANNEE_D_U1 + + + fr.insee + l27e0qyq + 1 + QuestionItem + + + + fr.insee + l4cjg2rp-QC + 1 + + ENFAV_C_U1 + + + fr.insee + l4cjg2rp + 1 + QuestionItem + + + + fr.insee + l4cja8pm-QC + 1 + + NBENFAV_C_U1 + + + fr.insee + l4cja8pm + 1 + QuestionItem + + + + fr.insee + l5ilbb89-QC + 1 + + NBENFAV_C1_VENU_U1 + + + fr.insee + l5ilbb89 + 1 + QuestionItem + + + + fr.insee + l4o5x7yq-QC + 1 + + NBENFAV_C_VENU_U1 + + + fr.insee + l4o5x7yq + 1 + QuestionItem + + + + fr.insee + l9il0i0h-QC + 1 + + AUT_U2 + + + fr.insee + l9il0i0h + 1 + QuestionItem + + + + fr.insee + l9ilcol6-QC + 1 + + PRENOM_U2 + + + fr.insee + l9ilcol6 + 1 + QuestionItem + + + + fr.insee + l9ikne2h-QC + 1 + + SEXE_U2H + + + fr.insee + l9ikne2h + 1 + QuestionItem + + + + fr.insee + lldetngg-QC + 1 + + SEXE_U2F + + + fr.insee + lldetngg + 1 + QuestionItem + + + + fr.insee + l9ikn3ea-QC + 1 + + ANNEE_U2 + + + fr.insee + l9ikn3ea + 1 + QuestionItem + + + + fr.insee + l9il24ft-QC + 1 + + PACS_U2 + + + fr.insee + l9il24ft + 1 + QuestionItem + + + + fr.insee + l9ikxoxa-QC + 1 + + ANNEE_PACS_U2 + + + fr.insee + l9ikxoxa + 1 + QuestionItem + + + + fr.insee + l9ikvx4n-QC + 1 + + MARI_U2 + + + fr.insee + l9ikvx4n + 1 + QuestionItem + + + + fr.insee + l9iklcix-QC + 1 + + ANNEE_MARI_U2 + + + fr.insee + l9iklcix + 1 + QuestionItem + + + + fr.insee + l9ikqlwv-QC + 1 + + SEPARE_U2 + + + fr.insee + l9ikqlwv + 1 + QuestionItem + + + + fr.insee + l9ikze1y-QC + 1 + + ANNEE_S_U2 + + + fr.insee + l9ikze1y + 1 + QuestionItem + + + + fr.insee + l9ikmjqm-QC + 1 + + ANNEE_D_U2 + + + fr.insee + l9ikmjqm + 1 + QuestionItem + + + + fr.insee + l9ikxndo-QC + 1 + + ENFAV_C_U2 + + + fr.insee + l9ikxndo + 1 + QuestionItem + + + + fr.insee + l9ikuqoe-QC + 1 + + NBENFAV_C_U2 + + + fr.insee + l9ikuqoe + 1 + QuestionItem + + + + fr.insee + l9ikekzu-QC + 1 + + NBENFAV_C1_VENU_U2 + + + fr.insee + l9ikekzu + 1 + QuestionItem + + + + fr.insee + l9iks078-QC + 1 + + NBENFAV_C_VENU_U2 + + + fr.insee + l9iks078 + 1 + QuestionItem + + + + fr.insee + kwqigxtx-QC + 1 + + ENF + + + fr.insee + kwqigxtx + 1 + QuestionItem + + + + fr.insee + kwqi5zsm-QC + 1 + + NBENF + + + fr.insee + kwqi5zsm + 1 + QuestionItem + + + + fr.insee + l1gkeq97-QC + 1 + + NBENF_ADOP_UN + + + fr.insee + l1gkeq97 + 1 + QuestionItem + + + + fr.insee + l7rlim3p-QC + 1 + + NBENF_ADOP + + + fr.insee + l7rlim3p + 1 + QuestionItem + + + + fr.insee + l1gi76wy-QC + 1 + + LANGUE1_ENF + + + fr.insee + l1gi76wy + 1 + QuestionItem + + + + fr.insee + lumogysw-QC + 1 + + LANGUE1_ENFL + + + fr.insee + lumogysw + 1 + QuestionItem + + + + fr.insee + lw52ifu3-QC + 1 + + LANGUE2_ENFE + + + fr.insee + lw52ifu3 + 1 + QuestionItem + + + + fr.insee + l445u9x8-QC + 1 + + LANGUE2_ENF + + + fr.insee + l445u9x8 + 1 + QuestionItem + + + + fr.insee + lumstcob-QC + 1 + + LANGUE2_ENFL + + + fr.insee + lumstcob + 1 + QuestionItem + + + + fr.insee + lumnxb5k-QC + 1 + + LANGUE3_ENFE + + + fr.insee + lumnxb5k + 1 + QuestionItem + + + + fr.insee + lw543f35-QC + 1 + + LANGUE3_ENF + + + fr.insee + lw543f35 + 1 + QuestionItem + + + + fr.insee + lumsq0y7-QC + 1 + + LANGUE3_ENFL + + + fr.insee + lumsq0y7 + 1 + QuestionItem + + + + fr.insee + lumnyjae-QC + 1 + + LANGUE4_ENFE + + + fr.insee + lumnyjae + 1 + QuestionItem + + + + fr.insee + lw547oxc-QC + 1 + + LANGUE4_ENF + + + fr.insee + lw547oxc + 1 + QuestionItem + + + + fr.insee + lumsq00h-QC + 1 + + LANGUE4_ENFL + + + fr.insee + lumsq00h + 1 + QuestionItem + + + + fr.insee + l4idom4o-QC + 1 + + NBENFLOG_UN + + + fr.insee + l4idom4o + 1 + QuestionItem + + + + fr.insee + ltd023vh-QC + 1 + + NBENFLOG + + + fr.insee + ltd023vh + 1 + QuestionItem + + + + fr.insee + l4lcr3vb-QC + 1 + + CBENFLOG + + + fr.insee + l4lcr3vb + 1 + QuestionItem + + + + fr.insee + ltd0h1g7-QC + 1 + + NBENFAIL_UN + + + fr.insee + ltd0h1g7 + 1 + QuestionItem + + + + fr.insee + l4lfzig7-QC + 1 + + CBENFAIL + + + fr.insee + l4lfzig7 + 1 + QuestionItem + + + + fr.insee + l446nede-QC + 1 + + PRENOM_ENFLOG1 + + + fr.insee + l446nede + 1 + QuestionItem + + + + fr.insee + kwqjk80w-QC + 1 + + SEXE_ENFLOG1 + + + fr.insee + kwqjk80w + 1 + QuestionItem + + + + fr.insee + kwqjmq2o-QC + 1 + + ANAI_ENFLOG1 + + + fr.insee + kwqjmq2o + 1 + QuestionItem + + + + fr.insee + l4qtls9o-QC + 1 + + NEFRANCE_ENFLOG1 + + + fr.insee + l4qtls9o + 1 + QuestionItem + + + + fr.insee + lv3teph7-QC + 1 + + ADOPT_ENFLOG1 + + + fr.insee + lv3teph7 + 1 + QuestionItem + + + + fr.insee + lv3ts84i-QC + 1 + + ANADOPT_ENFLOG1 + + + fr.insee + lv3ts84i + 1 + QuestionItem + + + + fr.insee + kwqjol7e-QC + 1 + + PARENT_VIT_ENFLOG1 + + + fr.insee + kwqjol7e + 1 + QuestionItem + + + + fr.insee + l4iaicn8-QC + 1 + + PARENT_FR_ENFLOG1 + + + fr.insee + l4iaicn8 + 1 + QuestionItem + + + + fr.insee + l4parilg-QC + 1 + + PARENT_COM_ENFLOG1 + + + fr.insee + l4parilg + 1 + QuestionItem + + + + fr.insee + l4pav1bd-QC + 1 + + PARENT_DEP_ENFLOG1 + + + fr.insee + l4pav1bd + 1 + QuestionItem + + + + fr.insee + l4pavrnh-QC + 1 + + PARENT_PAY_ENFLOG1 + + + fr.insee + l4pavrnh + 1 + QuestionItem + + + + fr.insee + l1ez78st-QC + 1 + + PARENT_FREQ_ENFLOG1 + + + fr.insee + l1ez78st + 1 + QuestionItem + + + + fr.insee + l4iain70-QC + 1 + + PARENT_DORT_ENFLOG1 + + + fr.insee + l4iain70 + 1 + QuestionItem + + + + fr.insee + kwqk3gx2-QC + 1 + + PARENT_VECU_ENFLOG1 + + + fr.insee + kwqk3gx2 + 1 + QuestionItem + + + + fr.insee + la6ydnyh-QC + 1 + + SEP_AUT_PAR_ENFLOG1 + + + fr.insee + la6ydnyh + 1 + QuestionItem + + + + fr.insee + kwqjmy9d-QC + 1 + + RESID_ENFLOG1 + + + fr.insee + kwqjmy9d + 1 + QuestionItem + + + + fr.insee + l1gia5uh-QC + 1 + + SANTE_ENFLOG1 + + + fr.insee + l1gia5uh + 1 + QuestionItem + + + + fr.insee + lvgn6d99-QC + 1 + + ASE_ENFLOG1 + + + fr.insee + lvgn6d99 + 1 + QuestionItem + + + + fr.insee + l4i9118b-QC + 1 + + PRENOM_ENFLOG2 + + + fr.insee + l4i9118b + 1 + QuestionItem + + + + fr.insee + l4i8zu5m-QC + 1 + + SEXE_ENFLOG2 + + + fr.insee + l4i8zu5m + 1 + QuestionItem + + + + fr.insee + l4ia7rxn-QC + 1 + + ANAI_ENFLOG2 + + + fr.insee + l4ia7rxn + 1 + QuestionItem + + + + fr.insee + l4qtpg9f-QC + 1 + + NEFRANCE_ENFLOG2 + + + fr.insee + l4qtpg9f + 1 + QuestionItem + + + + fr.insee + lv3u5cvk-QC + 1 + + ADOPT_ENFLOG2 + + + fr.insee + lv3u5cvk + 1 + QuestionItem + + + + fr.insee + lv3ule5a-QC + 1 + + ANADOPT_ENFLOG2 + + + fr.insee + lv3ule5a + 1 + QuestionItem + + + + fr.insee + l4iano52-QC + 1 + + PARENT_VIT_ENFLOG2 + + + fr.insee + l4iano52 + 1 + QuestionItem + + + + fr.insee + kwqjmujx-QC + 1 + + PARENT_FR_ENFLOG2 + + + fr.insee + kwqjmujx + 1 + QuestionItem + + + + fr.insee + l4pasuts-QC + 1 + + PARENT_COM_ENFLOG2 + + + fr.insee + l4pasuts + 1 + QuestionItem + + + + fr.insee + l4pannoa-QC + 1 + + PARENT_DEP_ENFLOG2 + + + fr.insee + l4pannoa + 1 + QuestionItem + + + + fr.insee + l4pbc5wa-QC + 1 + + PARENT_PAY_ENFLOG2 + + + fr.insee + l4pbc5wa + 1 + QuestionItem + + + + fr.insee + l4idgpbr-QC + 1 + + PARENT_FREQ_ENFLOG2 + + + fr.insee + l4idgpbr + 1 + QuestionItem + + + + fr.insee + l4486unb-QC + 1 + + PARENT_DORT_ENFLOG2 + + + fr.insee + l4486unb + 1 + QuestionItem + + + + fr.insee + l4ia5o28-QC + 1 + + PARENT_VECU_ENFLOG2 + + + fr.insee + l4ia5o28 + 1 + QuestionItem + + + + fr.insee + la6yjh65-QC + 1 + + SEP_AUT_PAR_ENFLOG2 + + + fr.insee + la6yjh65 + 1 + QuestionItem + + + + fr.insee + l4idgqx9-QC + 1 + + RESID_ENFLOG2 + + + fr.insee + l4idgqx9 + 1 + QuestionItem + + + + fr.insee + l4ia7y0p-QC + 1 + + SANTE_ENFLOG2 + + + fr.insee + l4ia7y0p + 1 + QuestionItem + + + + fr.insee + lvgneyls-QC + 1 + + ASE_ENFLOG2 + + + fr.insee + lvgneyls + 1 + QuestionItem + + + + fr.insee + l4ld0ziw-QC + 1 + + PRENOM_ENFLOG3 + + + fr.insee + l4ld0ziw + 1 + QuestionItem + + + + fr.insee + l4lcp4co-QC + 1 + + SEXE_ENFLOG3 + + + fr.insee + l4lcp4co + 1 + QuestionItem + + + + fr.insee + l4ld3y0j-QC + 1 + + ANAI_ENFLOG3 + + + fr.insee + l4ld3y0j + 1 + QuestionItem + + + + fr.insee + l4qty53i-QC + 1 + + NEFRANCE_ENFLOG3 + + + fr.insee + l4qty53i + 1 + QuestionItem + + + + fr.insee + lv3uun9e-QC + 1 + + ADOPT_ENFLOG3 + + + fr.insee + lv3uun9e + 1 + QuestionItem + + + + fr.insee + lv3v5m6c-QC + 1 + + ANADOPT_ENFLOG3 + + + fr.insee + lv3v5m6c + 1 + QuestionItem + + + + fr.insee + l4lct7cb-QC + 1 + + PARENT_VIT_ENFLOG3 + + + fr.insee + l4lct7cb + 1 + QuestionItem + + + + fr.insee + l4ld827i-QC + 1 + + PARENT_FR_ENFLOG3 + + + fr.insee + l4ld827i + 1 + QuestionItem + + + + fr.insee + l4pavp6y-QC + 1 + + PARENT_COM_ENFLOG3 + + + fr.insee + l4pavp6y + 1 + QuestionItem + + + + fr.insee + l4pat7vx-QC + 1 + + PARENT_DEP_ENFLOG3 + + + fr.insee + l4pat7vx + 1 + QuestionItem + + + + fr.insee + l4pb77tv-QC + 1 + + PARENT_PAY_ENFLOG3 + + + fr.insee + l4pb77tv + 1 + QuestionItem + + + + fr.insee + l4ld15su-QC + 1 + + PARENT_FREQ_ENFLOG3 + + + fr.insee + l4ld15su + 1 + QuestionItem + + + + fr.insee + l4ld0zmv-QC + 1 + + PARENT_DORT_ENFLOG3 + + + fr.insee + l4ld0zmv + 1 + QuestionItem + + + + fr.insee + l4ld0jea-QC + 1 + + PARENT_VECU_ENFLOG3 + + + fr.insee + l4ld0jea + 1 + QuestionItem + + + + fr.insee + la6y9flo-QC + 1 + + SEP_AUT_PAR_ENFLOG3 + + + fr.insee + la6y9flo + 1 + QuestionItem + + + + fr.insee + l4lde13h-QC + 1 + + RESID_ENFLOG3 + + + fr.insee + l4lde13h + 1 + QuestionItem + + + + fr.insee + l4lcuoke-QC + 1 + + SANTE_ENFLOG3 + + + fr.insee + l4lcuoke + 1 + QuestionItem + + + + fr.insee + lvgnpugy-QC + 1 + + ASE_ENFLOG3 + + + fr.insee + lvgnpugy + 1 + QuestionItem + + + + fr.insee + l4lec0rk-QC + 1 + + PRENOM_ENFLOG4 + + + fr.insee + l4lec0rk + 1 + QuestionItem + + + + fr.insee + l4lefdoh-QC + 1 + + SEXE_ENFLOG4 + + + fr.insee + l4lefdoh + 1 + QuestionItem + + + + fr.insee + l4le9rs3-QC + 1 + + ANAI_ENFLOG4 + + + fr.insee + l4le9rs3 + 1 + QuestionItem + + + + fr.insee + l4qtvt71-QC + 1 + + NEFRANCE_ENFLOG4 + + + fr.insee + l4qtvt71 + 1 + QuestionItem + + + + fr.insee + lv3w60ed-QC + 1 + + ADOPT_ENFLOG4 + + + fr.insee + lv3w60ed + 1 + QuestionItem + + + + fr.insee + lv3w2pql-QC + 1 + + ANADOPT_ENFLOG4 + + + fr.insee + lv3w2pql + 1 + QuestionItem + + + + fr.insee + l4ler7fu-QC + 1 + + PARENT_VIT_ENFLOG4 + + + fr.insee + l4ler7fu + 1 + QuestionItem + + + + fr.insee + l4lemegm-QC + 1 + + PARENT_FR_ENFLOG4 + + + fr.insee + l4lemegm + 1 + QuestionItem + + + + fr.insee + l4paz6m4-QC + 1 + + PARENT_COM_ENFLOG4 + + + fr.insee + l4paz6m4 + 1 + QuestionItem + + + + fr.insee + l4payjff-QC + 1 + + PARENT_DEP_ENFLOG4 + + + fr.insee + l4payjff + 1 + QuestionItem + + + + fr.insee + l4pbax4x-QC + 1 + + PARENT_PAY_ENFLOG4 + + + fr.insee + l4pbax4x + 1 + QuestionItem + + + + fr.insee + l4letwtq-QC + 1 + + PARENT_FREQ_ENFLOG4 + + + fr.insee + l4letwtq + 1 + QuestionItem + + + + fr.insee + l4letk9j-QC + 1 + + PARENT_DORT_ENFLOG4 + + + fr.insee + l4letk9j + 1 + QuestionItem + + + + fr.insee + l4lekh2t-QC + 1 + + PARENT_VECU_ENFLOG4 + + + fr.insee + l4lekh2t + 1 + QuestionItem + + + + fr.insee + la6y7rno-QC + 1 + + SEP_AUT_PAR_ENFLOG4 + + + fr.insee + la6y7rno + 1 + QuestionItem + + + + fr.insee + l4lexatl-QC + 1 + + RESID_ENFLOG4 + + + fr.insee + l4lexatl + 1 + QuestionItem + + + + fr.insee + l4lec2qz-QC + 1 + + SANTE_ENFLOG4 + + + fr.insee + l4lec2qz + 1 + QuestionItem + + + + fr.insee + lvgnp3j5-QC + 1 + + ASE_ENFLOG4 + + + fr.insee + lvgnp3j5 + 1 + QuestionItem + + + + fr.insee + l4leulqw-QC + 1 + + PRENOM_ENFLOG5 + + + fr.insee + l4leulqw + 1 + QuestionItem + + + + fr.insee + l4lem0yg-QC + 1 + + SEXE_ENFLOG5 + + + fr.insee + l4lem0yg + 1 + QuestionItem + + + + fr.insee + l4lffj1f-QC + 1 + + ANAI_ENFLOG5 + + + fr.insee + l4lffj1f + 1 + QuestionItem + + + + fr.insee + l4qtm8di-QC + 1 + + NEFRANCE_ENFLOG5 + + + fr.insee + l4qtm8di + 1 + QuestionItem + + + + fr.insee + lv5dkuad-QC + 1 + + ADOPT_ENFLOG5 + + + fr.insee + lv5dkuad + 1 + QuestionItem + + + + fr.insee + lv5db081-QC + 1 + + ANADOPT_ENFLOG5 + + + fr.insee + lv5db081 + 1 + QuestionItem + + + + fr.insee + l4lfye1g-QC + 1 + + PARENT_VIT_ENFLOG5 + + + fr.insee + l4lfye1g + 1 + QuestionItem + + + + fr.insee + l4lfoek4-QC + 1 + + PARENT_FR_ENFLOG5 + + + fr.insee + l4lfoek4 + 1 + QuestionItem + + + + fr.insee + l4paw4ax-QC + 1 + + PARENT_COM_ENFLOG5 + + + fr.insee + l4paw4ax + 1 + QuestionItem + + + + fr.insee + l4pauqgi-QC + 1 + + PARENT_DEP_ENFLOG5 + + + fr.insee + l4pauqgi + 1 + QuestionItem + + + + fr.insee + l4pb234a-QC + 1 + + PARENT_PAY_ENFLOG5 + + + fr.insee + l4pb234a + 1 + QuestionItem + + + + fr.insee + l8n262ck-QC + 1 + + PARENT_FREQ_ENFLOG5 + + + fr.insee + l8n262ck + 1 + QuestionItem + + + + fr.insee + l4lfr4qa-QC + 1 + + PARENT_DORT_ENFLOG5 + + + fr.insee + l4lfr4qa + 1 + QuestionItem + + + + fr.insee + l4lfvape-QC + 1 + + PARENT_VECU_ENFLOG5 + + + fr.insee + l4lfvape + 1 + QuestionItem + + + + fr.insee + la6yfjnf-QC + 1 + + SEP_AUT_PAR_ENFLOG5 + + + fr.insee + la6yfjnf + 1 + QuestionItem + + + + fr.insee + l4lg25av-QC + 1 + + RESID_ENFLOG5 + + + fr.insee + l4lg25av + 1 + QuestionItem + + + + fr.insee + l4lfclty-QC + 1 + + SANTE_ENFLOG5 + + + fr.insee + l4lfclty + 1 + QuestionItem + + + + fr.insee + lvgo5arn-QC + 1 + + ASE_ENFLOG5 + + + fr.insee + lvgo5arn + 1 + QuestionItem + + + + fr.insee + l8n2umnw-QC + 1 + + PRENOM_ENFLOG6 + + + fr.insee + l8n2umnw + 1 + QuestionItem + + + + fr.insee + l8n2e1mr-QC + 1 + + SEXE_ENFLOG6 + + + fr.insee + l8n2e1mr + 1 + QuestionItem + + + + fr.insee + l8n2lctv-QC + 1 + + ANAI_ENFLOG6 + + + fr.insee + l8n2lctv + 1 + QuestionItem + + + + fr.insee + l8n2gmuq-QC + 1 + + NEFRANCE_ENFLOG6 + + + fr.insee + l8n2gmuq + 1 + QuestionItem + + + + fr.insee + lv6b9lq6-QC + 1 + + ADOPT_ENFLOG6 + + + fr.insee + lv6b9lq6 + 1 + QuestionItem + + + + fr.insee + lv6bv1fo-QC + 1 + + ANADOPT_ENFLOG6 + + + fr.insee + lv6bv1fo + 1 + QuestionItem + + + + fr.insee + l8n2ilpb-QC + 1 + + PARENT_VIT_ENFLOG6 + + + fr.insee + l8n2ilpb + 1 + QuestionItem + + + + fr.insee + l8n1zy7o-QC + 1 + + PARENT_FR_ENFLOG6 + + + fr.insee + l8n1zy7o + 1 + QuestionItem + + + + fr.insee + l8n1u6yt-QC + 1 + + PARENT_COM_ENFLOG6 + + + fr.insee + l8n1u6yt + 1 + QuestionItem + + + + fr.insee + l8n2awb0-QC + 1 + + PARENT_DEP_ENFLOG6 + + + fr.insee + l8n2awb0 + 1 + QuestionItem + + + + fr.insee + l8n20r8i-QC + 1 + + PARENT_PAY_ENFLOG6 + + + fr.insee + l8n20r8i + 1 + QuestionItem + + + + fr.insee + l4lfnqiq-QC + 1 + + PARENT_FREQ_ENFLOG6 + + + fr.insee + l4lfnqiq + 1 + QuestionItem + + + + fr.insee + l8n29jww-QC + 1 + + PARENT_DORT_ENFLOG6 + + + fr.insee + l8n29jww + 1 + QuestionItem + + + + fr.insee + l8n1p0yj-QC + 1 + + PARENT_VECU_ENFLOG6 + + + fr.insee + l8n1p0yj + 1 + QuestionItem + + + + fr.insee + la6y7ni0-QC + 1 + + SEP_AUT_PAR_ENFLOG6 + + + fr.insee + la6y7ni0 + 1 + QuestionItem + + + + fr.insee + l8n1u2kg-QC + 1 + + RESID_ENFLOG6 + + + fr.insee + l8n1u2kg + 1 + QuestionItem + + + + fr.insee + l8n2hdgw-QC + 1 + + SANTE_ENFLOG6 + + + fr.insee + l8n2hdgw + 1 + QuestionItem + + + + fr.insee + lvgnrib2-QC + 1 + + ASE_ENFLOG6 + + + fr.insee + lvgnrib2 + 1 + QuestionItem + + + + fr.insee + l8n3pb4f-QC + 1 + + PRENOM_ENFLOG7 + + + fr.insee + l8n3pb4f + 1 + QuestionItem + + + + fr.insee + l8n3mik2-QC + 1 + + SEXE_ENFLOG7 + + + fr.insee + l8n3mik2 + 1 + QuestionItem + + + + fr.insee + l8n3jmk8-QC + 1 + + ANAI_ENFLOG7 + + + fr.insee + l8n3jmk8 + 1 + QuestionItem + + + + fr.insee + l8n36fv3-QC + 1 + + NEFRANCE_ENFLOG7 + + + fr.insee + l8n36fv3 + 1 + QuestionItem + + + + fr.insee + lv6ecg0i-QC + 1 + + ADOPT_ENFLOG7 + + + fr.insee + lv6ecg0i + 1 + QuestionItem + + + + fr.insee + lv6eqkwn-QC + 1 + + ANADOPT_ENFLOG7 + + + fr.insee + lv6eqkwn + 1 + QuestionItem + + + + fr.insee + l8n3ff6s-QC + 1 + + PARENT_VIT_ENFLOG7 + + + fr.insee + l8n3ff6s + 1 + QuestionItem + + + + fr.insee + l8n3b7uo-QC + 1 + + PARENT_FR_ENFLOG7 + + + fr.insee + l8n3b7uo + 1 + QuestionItem + + + + fr.insee + l8n3485v-QC + 1 + + PARENT_COM_ENFLOG7 + + + fr.insee + l8n3485v + 1 + QuestionItem + + + + fr.insee + l8n3fzap-QC + 1 + + PARENT_DEP_ENFLOG7 + + + fr.insee + l8n3fzap + 1 + QuestionItem + + + + fr.insee + l8n3burz-QC + 1 + + PARENT_PAY_ENFLOG7 + + + fr.insee + l8n3burz + 1 + QuestionItem + + + + fr.insee + l8n32xk9-QC + 1 + + PARENT_FREQ_ENFLOG7 + + + fr.insee + l8n32xk9 + 1 + QuestionItem + + + + fr.insee + l8n2x7q4-QC + 1 + + PARENT_DORT_ENFLOG7 + + + fr.insee + l8n2x7q4 + 1 + QuestionItem + + + + fr.insee + l8n3ary8-QC + 1 + + PARENT_VECU_ENFLOG7 + + + fr.insee + l8n3ary8 + 1 + QuestionItem + + + + fr.insee + la6y542q-QC + 1 + + SEP_AUT_PAR_ENFLOG7 + + + fr.insee + la6y542q + 1 + QuestionItem + + + + fr.insee + l8n2t39d-QC + 1 + + RESID_ENFLOG7 + + + fr.insee + l8n2t39d + 1 + QuestionItem + + + + fr.insee + l8n3bp4o-QC + 1 + + SANTE_ENFLOG7 + + + fr.insee + l8n3bp4o + 1 + QuestionItem + + + + fr.insee + lvgp60q8-QC + 1 + + ASE_ENFLOG7 + + + fr.insee + lvgp60q8 + 1 + QuestionItem + + + + fr.insee + l8n4cayp-QC + 1 + + PRENOM_ENFLOG8 + + + fr.insee + l8n4cayp + 1 + QuestionItem + + + + fr.insee + l8n406m9-QC + 1 + + SEXE_ENFLOG8 + + + fr.insee + l8n406m9 + 1 + QuestionItem + + + + fr.insee + l8n3tya0-QC + 1 + + ANAI_ENFLOG8 + + + fr.insee + l8n3tya0 + 1 + QuestionItem + + + + fr.insee + l8n3vr8b-QC + 1 + + NEFRANCE_ENFLOG8 + + + fr.insee + l8n3vr8b + 1 + QuestionItem + + + + fr.insee + lv6evuvu-QC + 1 + + ADOPT_ENFLOG8 + + + fr.insee + lv6evuvu + 1 + QuestionItem + + + + fr.insee + lv6ev10t-QC + 1 + + ANADOPT_ENFLOG8 + + + fr.insee + lv6ev10t + 1 + QuestionItem + + + + fr.insee + l8n427a2-QC + 1 + + PARENT_VIT_ENFLOG8 + + + fr.insee + l8n427a2 + 1 + QuestionItem + + + + fr.insee + l8n41hvu-QC + 1 + + PARENT_FR_ENFLOG8 + + + fr.insee + l8n41hvu + 1 + QuestionItem + + + + fr.insee + l8n3tbmd-QC + 1 + + PARENT_COM_ENFLOG8 + + + fr.insee + l8n3tbmd + 1 + QuestionItem + + + + fr.insee + l8n41c78-QC + 1 + + PARENT_DEP_ENFLOG8 + + + fr.insee + l8n41c78 + 1 + QuestionItem + + + + fr.insee + l8n40r7t-QC + 1 + + PARENT_PAY_ENFLOG8 + + + fr.insee + l8n40r7t + 1 + QuestionItem + + + + fr.insee + l8n3fpp7-QC + 1 + + PARENT_FREQ_ENFLOG8 + + + fr.insee + l8n3fpp7 + 1 + QuestionItem + + + + fr.insee + l8n3xb0z-QC + 1 + + PARENT_DORT_ENFLOG8 + + + fr.insee + l8n3xb0z + 1 + QuestionItem + + + + fr.insee + l8n3tjlw-QC + 1 + + PARENT_VECU_ENFLOG8 + + + fr.insee + l8n3tjlw + 1 + QuestionItem + + + + fr.insee + la6v947r-QC + 1 + + SEP_AUT_PAR_ENFLOG8 + + + fr.insee + la6v947r + 1 + QuestionItem + + + + fr.insee + l8n3ocd5-QC + 1 + + RESID_ENFLOG8 + + + fr.insee + l8n3ocd5 + 1 + QuestionItem + + + + fr.insee + l8n3uqr2-QC + 1 + + SANTE_ENFLOG8 + + + fr.insee + l8n3uqr2 + 1 + QuestionItem + + + + fr.insee + lvgp89uy-QC + 1 + + ASE_ENFLOG8 + + + fr.insee + lvgp89uy + 1 + QuestionItem + + + + fr.insee + l4idug6p-QC + 1 + + PRENOM_ENFAIL1 + + + fr.insee + l4idug6p + 1 + QuestionItem + + + + fr.insee + kwqix1j5-QC + 1 + + SEXE_ENFAIL1 + + + fr.insee + kwqix1j5 + 1 + QuestionItem + + + + fr.insee + kwqj561a-QC + 1 + + ANAI_ENFAIL1 + + + fr.insee + kwqj561a + 1 + QuestionItem + + + + fr.insee + l4cjlk0i-QC + 1 + + NEFRANCE_ENFAIL1 + + + fr.insee + l4cjlk0i + 1 + QuestionItem + + + + fr.insee + lv6fvjdh-QC + 1 + + ADOPT_ENFAIL1 + + + fr.insee + lv6fvjdh + 1 + QuestionItem + + + + fr.insee + lv6fuaur-QC + 1 + + ANADOPT_ENFAIL1 + + + fr.insee + lv6fuaur + 1 + QuestionItem + + + + fr.insee + l4cjivdg-QC + 1 + + PARENT_VIT_ENFAIL1 + + + fr.insee + l4cjivdg + 1 + QuestionItem + + + + fr.insee + l8lzt19v-QC + 1 + + PARENT_VECU_ENFAIL1 + + + fr.insee + l8lzt19v + 1 + QuestionItem + + + + fr.insee + l4485tkr-QC + 1 + + DC_ENFAIL1 + + + fr.insee + l4485tkr + 1 + QuestionItem + + + + fr.insee + kwqkh05l-QC + 1 + + AG_DC_ENFAIL1 + + + fr.insee + kwqkh05l + 1 + QuestionItem + + + + fr.insee + kwqk3ki3-QC + 1 + + AG_DEPART_ENFAIL1 + + + fr.insee + kwqk3ki3 + 1 + QuestionItem + + + + fr.insee + kwqkmusz-QC + 1 + + PARENT_FREQ_ENFAIL1 + + + fr.insee + kwqkmusz + 1 + QuestionItem + + + + fr.insee + kwqjp9yr-QC + 1 + + FR_ENFAIL1 + + + fr.insee + kwqjp9yr + 1 + QuestionItem + + + + fr.insee + l4onsq99-QC + 1 + + COM_ENFAIL1 + + + fr.insee + l4onsq99 + 1 + QuestionItem + + + + fr.insee + l4onskib-QC + 1 + + DEP_ENFAIL1 + + + fr.insee + l4onskib + 1 + QuestionItem + + + + fr.insee + l4onsf7y-QC + 1 + + PAY_ENFAIL1 + + + fr.insee + l4onsf7y + 1 + QuestionItem + + + + fr.insee + kwqk3a58-QC + 1 + + LOG_ENFAIL1 + + + fr.insee + kwqk3a58 + 1 + QuestionItem + + + + fr.insee + l44849iu-QC + 1 + + AUT_PAR_ENFAIL1 + + + fr.insee + l44849iu + 1 + QuestionItem + + + + fr.insee + kwqj7xh6-QC + 1 + + DORT_ENFAIL1 + + + fr.insee + kwqj7xh6 + 1 + QuestionItem + + + + fr.insee + l4o74e6d-QC + 1 + + SEP_AUT_PAR_ENFAIL1 + + + fr.insee + l4o74e6d + 1 + QuestionItem + + + + fr.insee + l1gknpsx-QC + 1 + + RESID_ENFAIL1 + + + fr.insee + l1gknpsx + 1 + QuestionItem + + + + fr.insee + l1gi8vrf-QC + 1 + + SANTE_ENFAIL1 + + + fr.insee + l1gi8vrf + 1 + QuestionItem + + + + fr.insee + lvgpkb6t-QC + 1 + + ASE_ENFAIL1 + + + fr.insee + lvgpkb6t + 1 + QuestionItem + + + + fr.insee + l4lg1tus-QC + 1 + + PRENOM_ENFAIL2 + + + fr.insee + l4lg1tus + 1 + QuestionItem + + + + fr.insee + l4lgd8bs-QC + 1 + + SEXE_ENFAIL2 + + + fr.insee + l4lgd8bs + 1 + QuestionItem + + + + fr.insee + l4lgjbi8-QC + 1 + + ANAI_ENFAIL2 + + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + + fr.insee + l4lgtwy7-QC + 1 + + NEFRANCE_ENFAIL2 + + + fr.insee + l4lgtwy7 + 1 + QuestionItem + + + + fr.insee + lv6g9dow-QC + 1 + + ADOPT_ENFAIL2 + + + fr.insee + lv6g9dow + 1 + QuestionItem + + + + fr.insee + lv6gdru6-QC + 1 + + ANADOPT_ENFAIL2 + + + fr.insee + lv6gdru6 + 1 + QuestionItem + + + + fr.insee + l4lgqbdk-QC + 1 + + PARENT_VIT_ENFAIL2 + + + fr.insee + l4lgqbdk + 1 + QuestionItem + + + + fr.insee + l8lzthqx-QC + 1 + + PARENT_VECU_ENFAIL2 + + + fr.insee + l8lzthqx + 1 + QuestionItem + + + + fr.insee + l4lh1bvw-QC + 1 + + DC_ENFAIL2 + + + fr.insee + l4lh1bvw + 1 + QuestionItem + + + + fr.insee + l4lhc03p-QC + 1 + + AG_DC_ENFAIL2 + + + fr.insee + l4lhc03p + 1 + QuestionItem + + + + fr.insee + l4lhkbmw-QC + 1 + + AG_DEPART_ENFAIL2 + + + fr.insee + l4lhkbmw + 1 + QuestionItem + + + + fr.insee + l4liqyis-QC + 1 + + PARENT_FREQ_ENFAIL2 + + + fr.insee + l4liqyis + 1 + QuestionItem + + + + fr.insee + l4lj22ar-QC + 1 + + FR_ENFAIL2 + + + fr.insee + l4lj22ar + 1 + QuestionItem + + + + fr.insee + l4oo2unu-QC + 1 + + COM_ENFAIL2 + + + fr.insee + l4oo2unu + 1 + QuestionItem + + + + fr.insee + l4oo8gk0-QC + 1 + + DEP_ENFAIL2 + + + fr.insee + l4oo8gk0 + 1 + QuestionItem + + + + fr.insee + l4ooebmj-QC + 1 + + PAY_ENFAIL2 + + + fr.insee + l4ooebmj + 1 + QuestionItem + + + + fr.insee + l4liztyl-QC + 1 + + LOG_ENFAIL2 + + + fr.insee + l4liztyl + 1 + QuestionItem + + + + fr.insee + l4lk1w8p-QC + 1 + + AUT_PAR_ENFAIL2 + + + fr.insee + l4lk1w8p + 1 + QuestionItem + + + + fr.insee + l4ljkmaj-QC + 1 + + DORT_ENFAIL2 + + + fr.insee + l4ljkmaj + 1 + QuestionItem + + + + fr.insee + l4o73m0u-QC + 1 + + SEP_AUT_PAR_ENFAIL2 + + + fr.insee + l4o73m0u + 1 + QuestionItem + + + + fr.insee + l4lmxke4-QC + 1 + + RESID_ENFAIL2 + + + fr.insee + l4lmxke4 + 1 + QuestionItem + + + + fr.insee + l4ljj44i-QC + 1 + + SANTE_ENFAIL2 + + + fr.insee + l4ljj44i + 1 + QuestionItem + + + + fr.insee + lvgpi52w-QC + 1 + + ASE_ENFAIL2 + + + fr.insee + lvgpi52w + 1 + QuestionItem + + + + fr.insee + l4lg3j5g-QC + 1 + + PRENOM_ENFAIL3 + + + fr.insee + l4lg3j5g + 1 + QuestionItem + + + + fr.insee + l4lg6nx5-QC + 1 + + SEXE_ENFAIL3 + + + fr.insee + l4lg6nx5 + 1 + QuestionItem + + + + fr.insee + l4lgenh5-QC + 1 + + ANAI_ENFAIL3 + + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + + fr.insee + l4lh0q7i-QC + 1 + + NEFRANCE_ENFAIL3 + + + fr.insee + l4lh0q7i + 1 + QuestionItem + + + + fr.insee + lv6g0wv2-QC + 1 + + ADOPT_ENFAIL3 + + + fr.insee + lv6g0wv2 + 1 + QuestionItem + + + + fr.insee + lv6gixgd-QC + 1 + + ANADOPT_ENFAIL3 + + + fr.insee + lv6gixgd + 1 + QuestionItem + + + + fr.insee + l4lgysxq-QC + 1 + + PARENT_VIT_ENFAIL3 + + + fr.insee + l4lgysxq + 1 + QuestionItem + + + + fr.insee + l8m0bu1o-QC + 1 + + PARENT_VECU_ENFAIL3 + + + fr.insee + l8m0bu1o + 1 + QuestionItem + + + + fr.insee + l4lh0ofl-QC + 1 + + DC_ENFAIL3 + + + fr.insee + l4lh0ofl + 1 + QuestionItem + + + + fr.insee + l4lhbuxg-QC + 1 + + AG_DC_ENFAIL3 + + + fr.insee + l4lhbuxg + 1 + QuestionItem + + + + fr.insee + l4lhdubm-QC + 1 + + AG_DEPART_ENFAIL3 + + + fr.insee + l4lhdubm + 1 + QuestionItem + + + + fr.insee + l4lirpfm-QC + 1 + + PARENT_FREQ_ENFAIL3 + + + fr.insee + l4lirpfm + 1 + QuestionItem + + + + fr.insee + l4lj2cqg-QC + 1 + + FR_ENFAIL3 + + + fr.insee + l4lj2cqg + 1 + QuestionItem + + + + fr.insee + l4oo41j6-QC + 1 + + COM_ENFAIL3 + + + fr.insee + l4oo41j6 + 1 + QuestionItem + + + + fr.insee + l4oo03nq-QC + 1 + + DEP_ENFAIL3 + + + fr.insee + l4oo03nq + 1 + QuestionItem + + + + fr.insee + l4ooe2gj-QC + 1 + + PAY_ENFAIL3 + + + fr.insee + l4ooe2gj + 1 + QuestionItem + + + + fr.insee + l4ljddzv-QC + 1 + + LOG_ENFAIL3 + + + fr.insee + l4ljddzv + 1 + QuestionItem + + + + fr.insee + l4lmjzwd-QC + 1 + + AUT_PAR_ENFAIL3 + + + fr.insee + l4lmjzwd + 1 + QuestionItem + + + + fr.insee + l4ljm6cp-QC + 1 + + DORT_ENFAIL3 + + + fr.insee + l4ljm6cp + 1 + QuestionItem + + + + fr.insee + l4o7gt0n-QC + 1 + + SEP_AUT_PAR_ENFAIL3 + + + fr.insee + l4o7gt0n + 1 + QuestionItem + + + + fr.insee + l4lmszob-QC + 1 + + RESID_ENFAIL3 + + + fr.insee + l4lmszob + 1 + QuestionItem + + + + fr.insee + l4ljg7fn-QC + 1 + + SANTE_ENFAIL3 + + + fr.insee + l4ljg7fn + 1 + QuestionItem + + + + fr.insee + lvgq4efl-QC + 1 + + ASE_ENFAIL3 + + + fr.insee + lvgq4efl + 1 + QuestionItem + + + + fr.insee + l4lg5t9v-QC + 1 + + PRENOM_ENFAIL4 + + + fr.insee + l4lg5t9v + 1 + QuestionItem + + + + fr.insee + l4lg3wub-QC + 1 + + SEXE_ENFAIL4 + + + fr.insee + l4lg3wub + 1 + QuestionItem + + + + fr.insee + l4lgfphb-QC + 1 + + ANAI_ENFAIL4 + + + fr.insee + l4lgfphb + 1 + QuestionItem + + + + fr.insee + l4lgr9ny-QC + 1 + + NEFRANCE_ENFAIL4 + + + fr.insee + l4lgr9ny + 1 + QuestionItem + + + + fr.insee + lv6h7uqn-QC + 1 + + ADOPT_ENFAIL4 + + + fr.insee + lv6h7uqn + 1 + QuestionItem + + + + fr.insee + lv6gsj3o-QC + 1 + + ANADOPT_ENFAIL4 + + + fr.insee + lv6gsj3o + 1 + QuestionItem + + + + fr.insee + l4lgo4yb-QC + 1 + + PARENT_VIT_ENFAIL4 + + + fr.insee + l4lgo4yb + 1 + QuestionItem + + + + fr.insee + l8m03w7m-QC + 1 + + PARENT_VECU_ENFAIL4 + + + fr.insee + l8m03w7m + 1 + QuestionItem + + + + fr.insee + l4lh1a42-QC + 1 + + DC_ENFAIL4 + + + fr.insee + l4lh1a42 + 1 + QuestionItem + + + + fr.insee + l4lhbfxh-QC + 1 + + AG_DC_ENFAIL4 + + + fr.insee + l4lhbfxh + 1 + QuestionItem + + + + fr.insee + l4lho0e2-QC + 1 + + AG_DEPART_ENFAIL4 + + + fr.insee + l4lho0e2 + 1 + QuestionItem + + + + fr.insee + l4lj5kv6-QC + 1 + + PARENT_FREQ_ENFAIL4 + + + fr.insee + l4lj5kv6 + 1 + QuestionItem + + + + fr.insee + l4lj0iea-QC + 1 + + FR_ENFAIL4 + + + fr.insee + l4lj0iea + 1 + QuestionItem + + + + fr.insee + l4onwhrf-QC + 1 + + COM_ENFAIL4 + + + fr.insee + l4onwhrf + 1 + QuestionItem + + + + fr.insee + l4oo4x1t-QC + 1 + + DEP_ENFAIL4 + + + fr.insee + l4oo4x1t + 1 + QuestionItem + + + + fr.insee + l4oo1817-QC + 1 + + PAY_ENFAIL4 + + + fr.insee + l4oo1817 + 1 + QuestionItem + + + + fr.insee + l4lixcs2-QC + 1 + + LOG_ENFAIL4 + + + fr.insee + l4lixcs2 + 1 + QuestionItem + + + + fr.insee + l4lms9a0-QC + 1 + + AUT_PAR_ENFAIL4 + + + fr.insee + l4lms9a0 + 1 + QuestionItem + + + + fr.insee + l4ljmpiu-QC + 1 + + DORT_ENFAIL4 + + + fr.insee + l4ljmpiu + 1 + QuestionItem + + + + fr.insee + l4o7jdze-QC + 1 + + SEP_AUT_PAR_ENFAIL4 + + + fr.insee + l4o7jdze + 1 + QuestionItem + + + + fr.insee + l4lmvah7-QC + 1 + + RESID_ENFAIL4 + + + fr.insee + l4lmvah7 + 1 + QuestionItem + + + + fr.insee + l4ljjvig-QC + 1 + + SANTE_ENFAIL4 + + + fr.insee + l4ljjvig + 1 + QuestionItem + + + + fr.insee + lvgpyw4o-QC + 1 + + ASE_ENFAIL4 + + + fr.insee + lvgpyw4o + 1 + QuestionItem + + + + fr.insee + l4lgayon-QC + 1 + + PRENOM_ENFAIL5 + + + fr.insee + l4lgayon + 1 + QuestionItem + + + + fr.insee + l4lgep4c-QC + 1 + + SEXE_ENFAIL5 + + + fr.insee + l4lgep4c + 1 + QuestionItem + + + + fr.insee + l4lgp1ft-QC + 1 + + ANAI_ENFAIL5 + + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + + fr.insee + l4lgnphx-QC + 1 + + NEFRANCE_ENFAIL5 + + + fr.insee + l4lgnphx + 1 + QuestionItem + + + + fr.insee + lv6h7z1u-QC + 1 + + ADOPT_ENFAIL5 + + + fr.insee + lv6h7z1u + 1 + QuestionItem + + + + fr.insee + lv6hzzia-QC + 1 + + ANADOPT_ENFAIL5 + + + fr.insee + lv6hzzia + 1 + QuestionItem + + + + fr.insee + l4lh672z-QC + 1 + + PARENT_VIT_ENFAIL5 + + + fr.insee + l4lh672z + 1 + QuestionItem + + + + fr.insee + l8m0ld6c-QC + 1 + + PARENT_VECU_ENFAIL5 + + + fr.insee + l8m0ld6c + 1 + QuestionItem + + + + fr.insee + l4lhcdf6-QC + 1 + + DC_ENFAIL5 + + + fr.insee + l4lhcdf6 + 1 + QuestionItem + + + + fr.insee + l4lh8c72-QC + 1 + + AG_DC_ENFAIL5 + + + fr.insee + l4lh8c72 + 1 + QuestionItem + + + + fr.insee + l4lhn614-QC + 1 + + AG_DEPART_ENFAIL5 + + + fr.insee + l4lhn614 + 1 + QuestionItem + + + + fr.insee + l4lj98cz-QC + 1 + + PARENT_FREQ_ENFAIL5 + + + fr.insee + l4lj98cz + 1 + QuestionItem + + + + fr.insee + l4lijtvo-QC + 1 + + FR_ENFAIL5 + + + fr.insee + l4lijtvo + 1 + QuestionItem + + + + fr.insee + l4oo41q4-QC + 1 + + COM_ENFAIL5 + + + fr.insee + l4oo41q4 + 1 + QuestionItem + + + + fr.insee + l4oo7lwi-QC + 1 + + DEP_ENFAIL5 + + + fr.insee + l4oo7lwi + 1 + QuestionItem + + + + fr.insee + l4oo5bj9-QC + 1 + + PAY_ENFAIL5 + + + fr.insee + l4oo5bj9 + 1 + QuestionItem + + + + fr.insee + l4lizygc-QC + 1 + + LOG_ENFAIL5 + + + fr.insee + l4lizygc + 1 + QuestionItem + + + + fr.insee + l4lmc52p-QC + 1 + + AUT_PAR_ENFAIL5 + + + fr.insee + l4lmc52p + 1 + QuestionItem + + + + fr.insee + l4ljxer7-QC + 1 + + DORT_ENFAIL5 + + + fr.insee + l4ljxer7 + 1 + QuestionItem + + + + fr.insee + l4o7vzru-QC + 1 + + SEP_AUT_PAR_ENFAIL5 + + + fr.insee + l4o7vzru + 1 + QuestionItem + + + + fr.insee + l4lms6u4-QC + 1 + + RESID_ENFAIL5 + + + fr.insee + l4lms6u4 + 1 + QuestionItem + + + + fr.insee + l4ljcdar-QC + 1 + + SANTE_ENFAIL5 + + + fr.insee + l4ljcdar + 1 + QuestionItem + + + + fr.insee + lvgq0pjg-QC + 1 + + ASE_ENFAIL5 + + + fr.insee + lvgq0pjg + 1 + QuestionItem + + + + fr.insee + l8oign0h-QC + 1 + + PRENOM_ENFAIL6 + + + fr.insee + l8oign0h + 1 + QuestionItem + + + + fr.insee + l8oi92w4-QC + 1 + + SEXE_ENFAIL6 + + + fr.insee + l8oi92w4 + 1 + QuestionItem + + + + fr.insee + l8oi7q9f-QC + 1 + + ANAI_ENFAIL6 + + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + + fr.insee + l8oientz-QC + 1 + + NEFRANCE_ENFAIL6 + + + fr.insee + l8oientz + 1 + QuestionItem + + + + fr.insee + lv6i7gwi-QC + 1 + + ADOPT_ENFAIL6 + + + fr.insee + lv6i7gwi + 1 + QuestionItem + + + + fr.insee + lv6imul3-QC + 1 + + ANADOPT_ENFAIL6 + + + fr.insee + lv6imul3 + 1 + QuestionItem + + + + fr.insee + l8oidc2m-QC + 1 + + PARENT_VIT_ENFAIL6 + + + fr.insee + l8oidc2m + 1 + QuestionItem + + + + fr.insee + l8oib75g-QC + 1 + + PARENT_VECU_ENFAIL6 + + + fr.insee + l8oib75g + 1 + QuestionItem + + + + fr.insee + l8ohus0v-QC + 1 + + DC_ENFAIL6 + + + fr.insee + l8ohus0v + 1 + QuestionItem + + + + fr.insee + l8ohrpn7-QC + 1 + + AG_DC_ENFAIL6 + + + fr.insee + l8ohrpn7 + 1 + QuestionItem + + + + fr.insee + l8ohwpt9-QC + 1 + + AG_DEPART_ENFAIL6 + + + fr.insee + l8ohwpt9 + 1 + QuestionItem + + + + fr.insee + l8oh46rn-QC + 1 + + PARENT_FREQ_ENFAIL6 + + + fr.insee + l8oh46rn + 1 + QuestionItem + + + + fr.insee + l8ogysyp-QC + 1 + + FR_ENFAIL6 + + + fr.insee + l8ogysyp + 1 + QuestionItem + + + + fr.insee + l8ogqig3-QC + 1 + + COM_ENFAIL6 + + + fr.insee + l8ogqig3 + 1 + QuestionItem + + + + fr.insee + l8ogp9jo-QC + 1 + + DEP_ENFAIL6 + + + fr.insee + l8ogp9jo + 1 + QuestionItem + + + + fr.insee + l8ogpnbn-QC + 1 + + PAY_ENFAIL6 + + + fr.insee + l8ogpnbn + 1 + QuestionItem + + + + fr.insee + l8ogukpt-QC + 1 + + LOG_ENFAIL6 + + + fr.insee + l8ogukpt + 1 + QuestionItem + + + + fr.insee + l8ob0dk4-QC + 1 + + AUT_PAR_ENFAIL6 + + + fr.insee + l8ob0dk4 + 1 + QuestionItem + + + + fr.insee + l8oarkxm-QC + 1 + + DORT_ENFAIL6 + + + fr.insee + l8oarkxm + 1 + QuestionItem + + + + fr.insee + l8oaqbj5-QC + 1 + + SEP_AUT_PAR_ENFAIL6 + + + fr.insee + l8oaqbj5 + 1 + QuestionItem + + + + fr.insee + l8oanpzw-QC + 1 + + RESID_ENFAIL6 + + + fr.insee + l8oanpzw + 1 + QuestionItem + + + + fr.insee + l8oasgat-QC + 1 + + SANTE_ENFAIL6 + + + fr.insee + l8oasgat + 1 + QuestionItem + + + + fr.insee + lvgqbpim-QC + 1 + + ASE_ENFAIL6 + + + fr.insee + lvgqbpim + 1 + QuestionItem + + + + fr.insee + l8ok9kmj-QC + 1 + + PRENOM_ENFAIL7 + + + fr.insee + l8ok9kmj + 1 + QuestionItem + + + + fr.insee + l8okbmv3-QC + 1 + + SEXE_ENFAIL7 + + + fr.insee + l8okbmv3 + 1 + QuestionItem + + + + fr.insee + l8okh65e-QC + 1 + + ANAI_ENFAIL7 + + + fr.insee + l8okh65e + 1 + QuestionItem + + + + fr.insee + l8okc5z9-QC + 1 + + NEFRANCE_ENFAIL7 + + + fr.insee + l8okc5z9 + 1 + QuestionItem + + + + fr.insee + lv6hwis8-QC + 1 + + ADOPT_ENFAIL7 + + + fr.insee + lv6hwis8 + 1 + QuestionItem + + + + fr.insee + lv6kasxf-QC + 1 + + ANADOPT_ENFAIL7 + + + fr.insee + lv6kasxf + 1 + QuestionItem + + + + fr.insee + l8okdoof-QC + 1 + + PARENT_VIT_ENFAIL7 + + + fr.insee + l8okdoof + 1 + QuestionItem + + + + fr.insee + l8ok0d4y-QC + 1 + + PARENT_VECU_ENFAIL7 + + + fr.insee + l8ok0d4y + 1 + QuestionItem + + + + fr.insee + l8ok0acp-QC + 1 + + DC_ENFAIL7 + + + fr.insee + l8ok0acp + 1 + QuestionItem + + + + fr.insee + l8ojs3vl-QC + 1 + + AG_DC_ENFAIL7 + + + fr.insee + l8ojs3vl + 1 + QuestionItem + + + + fr.insee + l8ojuhud-QC + 1 + + AG_DEPART_ENFAIL7 + + + fr.insee + l8ojuhud + 1 + QuestionItem + + + + fr.insee + l8ojmjws-QC + 1 + + PARENT_FREQ_ENFAIL7 + + + fr.insee + l8ojmjws + 1 + QuestionItem + + + + fr.insee + l8oj98gw-QC + 1 + + FR_ENFAIL7 + + + fr.insee + l8oj98gw + 1 + QuestionItem + + + + fr.insee + l8ojczfv-QC + 1 + + COM_ENFAIL7 + + + fr.insee + l8ojczfv + 1 + QuestionItem + + + + fr.insee + l8ojb4ub-QC + 1 + + DEP_ENFAIL7 + + + fr.insee + l8ojb4ub + 1 + QuestionItem + + + + fr.insee + l8ojif3m-QC + 1 + + PAY_ENFAIL7 + + + fr.insee + l8ojif3m + 1 + QuestionItem + + + + fr.insee + l8oja1pz-QC + 1 + + LOG_ENFAIL7 + + + fr.insee + l8oja1pz + 1 + QuestionItem + + + + fr.insee + l8oiinpy-QC + 1 + + AUT_PAR_ENFAIL7 + + + fr.insee + l8oiinpy + 1 + QuestionItem + + + + fr.insee + l8oj67fo-QC + 1 + + DORT_ENFAIL7 + + + fr.insee + l8oj67fo + 1 + QuestionItem + + + + fr.insee + l8oiu9ax-QC + 1 + + SEP_AUT_PAR_ENFAIL7 + + + fr.insee + l8oiu9ax + 1 + QuestionItem + + + + fr.insee + l8oicj6e-QC + 1 + + RESID_ENFAIL7 + + + fr.insee + l8oicj6e + 1 + QuestionItem + + + + fr.insee + l8oizp0r-QC + 1 + + SANTE_ENFAIL7 + + + fr.insee + l8oizp0r + 1 + QuestionItem + + + + fr.insee + lvgq4gkg-QC + 1 + + ASE_ENFAIL7 + + + fr.insee + lvgq4gkg + 1 + QuestionItem + + + + fr.insee + l8olci32-QC + 1 + + PRENOM_ENFAIL8 + + + fr.insee + l8olci32 + 1 + QuestionItem + + + + fr.insee + l8olbhxj-QC + 1 + + SEXE_ENFAIL8 + + + fr.insee + l8olbhxj + 1 + QuestionItem + + + + fr.insee + l8ol9xy3-QC + 1 + + ANAI_ENFAIL8 + + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + + fr.insee + l8ola1mr-QC + 1 + + NEFRANCE_ENFAIL8 + + + fr.insee + l8ola1mr + 1 + QuestionItem + + + + fr.insee + lv6igxed-QC + 1 + + ADOPT_ENFAIL8 + + + fr.insee + lv6igxed + 1 + QuestionItem + + + + fr.insee + lv6khz5j-QC + 1 + + ANADOPT_ENFAIL8 + + + fr.insee + lv6khz5j + 1 + QuestionItem + + + + fr.insee + l8okz45l-QC + 1 + + PARENT_VIT_ENFAIL8 + + + fr.insee + l8okz45l + 1 + QuestionItem + + + + fr.insee + l8ol369l-QC + 1 + + PARENT_VECU_ENFAIL8 + + + fr.insee + l8ol369l + 1 + QuestionItem + + + + fr.insee + l8ole120-QC + 1 + + DC_ENFAIL8 + + + fr.insee + l8ole120 + 1 + QuestionItem + + + + fr.insee + l8olcd8n-QC + 1 + + AG_DC_ENFAIL8 + + + fr.insee + l8olcd8n + 1 + QuestionItem + + + + fr.insee + l8ol84b7-QC + 1 + + AG_DEPART_ENFAIL8 + + + fr.insee + l8ol84b7 + 1 + QuestionItem + + + + fr.insee + l8okx7cd-QC + 1 + + PARENT_FREQ_ENFAIL8 + + + fr.insee + l8okx7cd + 1 + QuestionItem + + + + fr.insee + l8okpxv8-QC + 1 + + FR_ENFAIL8 + + + fr.insee + l8okpxv8 + 1 + QuestionItem + + + + fr.insee + l8okjfla-QC + 1 + + COM_ENFAIL8 + + + fr.insee + l8okjfla + 1 + QuestionItem + + + + fr.insee + l8okue2t-QC + 1 + + DEP_ENFAIL8 + + + fr.insee + l8okue2t + 1 + QuestionItem + + + + fr.insee + l8okxgwv-QC + 1 + + PAY_ENFAIL8 + + + fr.insee + l8okxgwv + 1 + QuestionItem + + + + fr.insee + l8oksuft-QC + 1 + + LOG_ENFAIL8 + + + fr.insee + l8oksuft + 1 + QuestionItem + + + + fr.insee + l8okked6-QC + 1 + + AUT_PAR_ENFAIL8 + + + fr.insee + l8okked6 + 1 + QuestionItem + + + + fr.insee + l8okkkef-QC + 1 + + DORT_ENFAIL8 + + + fr.insee + l8okkkef + 1 + QuestionItem + + + + fr.insee + l8okfvhy-QC + 1 + + SEP_AUT_PAR_ENFAIL8 + + + fr.insee + l8okfvhy + 1 + QuestionItem + + + + fr.insee + l8okioqc-QC + 1 + + RESID_ENFAIL8 + + + fr.insee + l8okioqc + 1 + QuestionItem + + + + fr.insee + l8oklb21-QC + 1 + + SANTE_ENFAIL8 + + + fr.insee + l8oklb21 + 1 + QuestionItem + + + + fr.insee + lvgq7nb7-QC + 1 + + ASE_ENFAIL8 + + + fr.insee + lvgq7nb7 + 1 + QuestionItem + + + + fr.insee + l1f6a3qv-QC + 1 + + PETIT_ENF + + + fr.insee + l1f6a3qv + 1 + QuestionItem + + + + fr.insee + l1f6dz1j-QC + 1 + + NB_PETIT_ENF + + + fr.insee + l1f6dz1j + 1 + QuestionItem + + + + fr.insee + l1f69ivh-QC + 1 + + AG_PETIT_ENF + + + fr.insee + l1f69ivh + 1 + QuestionItem + + + + fr.insee + l1g3hka7-QC + 1 + + FREQ_VU_PETIT_ENF + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + fr.insee + l1f4yrno-QC + 1 + + FREQ_CONT_PETIT_ENF + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + fr.insee + l1g87t8t-QC + 1 + + AIDE_APPORT + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + fr.insee + l1ggssgl-QC + 1 + + QUI_AID_APP_1A + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + fr.insee + lwhm7k7c-QC + 1 + + QUI_AID_APP_1AD + + + fr.insee + lwhm7k7c + 1 + QuestionItem + + + + fr.insee + lw7u5rox-QC + 1 + + QUI_AID_APP_1B + + + fr.insee + lw7u5rox + 1 + QuestionGrid + + + + fr.insee + lwjdc6vy-QC + 1 + + QUI_AID_APP_1BD + + + fr.insee + lwjdc6vy + 1 + QuestionItem + + + + fr.insee + lw7tzp47-QC + 1 + + QUI_AID_APP_1C + + + fr.insee + lw7tzp47 + 1 + QuestionGrid + + + + fr.insee + lwjdesu0-QC + 1 + + QUI_AID_APP_1CD + + + fr.insee + lwjdesu0 + 1 + QuestionItem + + + + fr.insee + lw7u3zby-QC + 1 + + QUI_AID_APP_1D + + + fr.insee + lw7u3zby + 1 + QuestionGrid + + + + fr.insee + lwjdhxux-QC + 1 + + QUI_AID_APP_1DD + + + fr.insee + lwjdhxux + 1 + QuestionItem + + + + fr.insee + l1ggm06b-QC + 1 + + QUI_AID_APP_2A + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + fr.insee + lwjdpyys-QC + 1 + + QUI_AID_APP_2AD + + + fr.insee + lwjdpyys + 1 + QuestionItem + + + + fr.insee + lw7vzo64-QC + 1 + + QUI_AID_APP_2B + + + fr.insee + lw7vzo64 + 1 + QuestionGrid + + + + fr.insee + lwje55m7-QC + 1 + + QUI_AID_APP_2BD + + + fr.insee + lwje55m7 + 1 + QuestionItem + + + + fr.insee + lw7w4b79-QC + 1 + + QUI_AID_APP_2C + + + fr.insee + lw7w4b79 + 1 + QuestionGrid + + + + fr.insee + lwje0h9j-QC + 1 + + QUI_AID_APP_2CD + + + fr.insee + lwje0h9j + 1 + QuestionItem + + + + fr.insee + lw7w7lh9-QC + 1 + + QUI_AID_APP_2D + + + fr.insee + lw7w7lh9 + 1 + QuestionGrid + + + + fr.insee + lwkqt10g-QC + 1 + + QUI_AID_APP_2DD + + + fr.insee + lwkqt10g + 1 + QuestionItem + + + + fr.insee + l1ggtznr-QC + 1 + + QUI_AID_APP_3A + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + fr.insee + lwkqxzag-QC + 1 + + QUI_AID_APP_3AD + + + fr.insee + lwkqxzag + 1 + QuestionItem + + + + fr.insee + lw7w2d1u-QC + 1 + + QUI_AID_APP_3B + + + fr.insee + lw7w2d1u + 1 + QuestionGrid + + + + fr.insee + lwkqz11c-QC + 1 + + QUI_AID_APP_3BD + + + fr.insee + lwkqz11c + 1 + QuestionItem + + + + fr.insee + lw7w9t0f-QC + 1 + + QUI_AID_APP_3C + + + fr.insee + lw7w9t0f + 1 + QuestionGrid + + + + fr.insee + lwkqzn6j-QC + 1 + + QUI_AID_APP_3CD + + + fr.insee + lwkqzn6j + 1 + QuestionItem + + + + fr.insee + lw7w2fuz-QC + 1 + + QUI_AID_APP_3D + + + fr.insee + lw7w2fuz + 1 + QuestionGrid + + + + fr.insee + lwkr8xaw-QC + 1 + + QUI_AID_APP_3DD + + + fr.insee + lwkr8xaw + 1 + QuestionItem + + + + fr.insee + l4lf0y9m-QC + 1 + + QUI_AID_APP_4A + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + fr.insee + lwkrbrwr-QC + 1 + + QUI_AID_APP_4AD + + + fr.insee + lwkrbrwr + 1 + QuestionItem + + + + fr.insee + lw7wj733-QC + 1 + + QUI_AID_APP_4B + + + fr.insee + lw7wj733 + 1 + QuestionGrid + + + + fr.insee + lwom09ex-QC + 1 + + QUI_AID_APP_4BD + + + fr.insee + lwom09ex + 1 + QuestionItem + + + + fr.insee + lw7wk34s-QC + 1 + + QUI_AID_APP_4C + + + fr.insee + lw7wk34s + 1 + QuestionGrid + + + + fr.insee + lwom95wp-QC + 1 + + QUI_AID_APP_4CD + + + fr.insee + lwom95wp + 1 + QuestionItem + + + + fr.insee + lw7wj3l9-QC + 1 + + QUI_AID_APP_4D + + + fr.insee + lw7wj3l9 + 1 + QuestionGrid + + + + fr.insee + lwolwwhx-QC + 1 + + QUI_AID_APP_4DD + + + fr.insee + lwolwwhx + 1 + QuestionItem + + + + fr.insee + l1g8o84g-QC + 1 + + AIDE_RECUE + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + fr.insee + l1ggpjd7-QC + 1 + + QUI_AID_REC_1A + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + fr.insee + lwom8z6i-QC + 1 + + QUI_AID_REC_1AD + + + fr.insee + lwom8z6i + 1 + QuestionItem + + + + fr.insee + lw7yo1jt-QC + 1 + + QUI_AID_REC_1B + + + fr.insee + lw7yo1jt + 1 + QuestionGrid + + + + fr.insee + lwom6128-QC + 1 + + QUI_AID_REC_1BD + + + fr.insee + lwom6128 + 1 + QuestionItem + + + + fr.insee + lw7y7vqk-QC + 1 + + QUI_AID_REC_1C + + + fr.insee + lw7y7vqk + 1 + QuestionGrid + + + + fr.insee + lwomj4m6-QC + 1 + + QUI_AID_REC_1CD + + + fr.insee + lwomj4m6 + 1 + QuestionItem + + + + fr.insee + lw7yq0ti-QC + 1 + + QUI_AID_REC_1D + + + fr.insee + lw7yq0ti + 1 + QuestionGrid + + + + fr.insee + lwom7lun-QC + 1 + + QUI_AID_REC_1DD + + + fr.insee + lwom7lun + 1 + QuestionItem + + + + fr.insee + l1ggp8js-QC + 1 + + QUI_AID_REC_2A + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + fr.insee + lwombc8x-QC + 1 + + QUI_AID_REC_2AD + + + fr.insee + lwombc8x + 1 + QuestionItem + + + + fr.insee + lw7yq329-QC + 1 + + QUI_AID_REC_2B + + + fr.insee + lw7yq329 + 1 + QuestionGrid + + + + fr.insee + lwomhbiy-QC + 1 + + QUI_AID_REC_2BD + + + fr.insee + lwomhbiy + 1 + QuestionItem + + + + fr.insee + lw7yo7oh-QC + 1 + + QUI_AID_REC_2C + + + fr.insee + lw7yo7oh + 1 + QuestionGrid + + + + fr.insee + lwomijww-QC + 1 + + QUI_AID_REC_2CD + + + fr.insee + lwomijww + 1 + QuestionItem + + + + fr.insee + lw7ypwx5-QC + 1 + + QUI_AID_REC_2D + + + fr.insee + lw7ypwx5 + 1 + QuestionGrid + + + + fr.insee + lwomx6w5-QC + 1 + + QUI_AID_REC_2DD + + + fr.insee + lwomx6w5 + 1 + QuestionItem + + + + fr.insee + l1gh36ky-QC + 1 + + QUI_AID_REC_3A + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + fr.insee + lwonhqcb-QC + 1 + + QUI_AID_REC_3AD + + + fr.insee + lwonhqcb + 1 + QuestionItem + + + + fr.insee + lw7yqyln-QC + 1 + + QUI_AID_REC_3B + + + fr.insee + lw7yqyln + 1 + QuestionGrid + + + + fr.insee + lwonk1pl-QC + 1 + + QUI_AID_REC_3BD + + + fr.insee + lwonk1pl + 1 + QuestionItem + + + + fr.insee + lw7z0jkp-QC + 1 + + QUI_AID_REC_3C + + + fr.insee + lw7z0jkp + 1 + QuestionGrid + + + + fr.insee + lwonuial-QC + 1 + + QUI_AID_REC_3CD + + + fr.insee + lwonuial + 1 + QuestionItem + + + + fr.insee + lw7z13d4-QC + 1 + + QUI_AID_REC_3D + + + fr.insee + lw7z13d4 + 1 + QuestionGrid + + + + fr.insee + lwonmnuh-QC + 1 + + QUI_AID_REC_3DD + + + fr.insee + lwonmnuh + 1 + QuestionItem + + + + fr.insee + l1g8apw2-QC + 1 + + LANGUE1_ENTOUE + + + fr.insee + l1g8apw2 + 1 + QuestionItem + + + + fr.insee + lw7oumzg-QC + 1 + + LANGUE1_ENTOU + + + fr.insee + lw7oumzg + 1 + QuestionItem + + + + fr.insee + lumpggg9-QC + 1 + + LANGUE1_ENTOUL + + + fr.insee + lumpggg9 + 1 + QuestionItem + + + + fr.insee + l43tgurz-QC + 1 + + LANGUE2_ENTOUE + + + fr.insee + l43tgurz + 1 + QuestionItem + + + + fr.insee + lw54iesv-QC + 1 + + LANGUE2_ENTOU + + + fr.insee + lw54iesv + 1 + QuestionItem + + + + fr.insee + lumsh65o-QC + 1 + + LANGUE2_ENTOUL + + + fr.insee + lumsh65o + 1 + QuestionItem + + + + fr.insee + lump9kgk-QC + 1 + + LANGUE3_ENTOUE + + + fr.insee + lump9kgk + 1 + QuestionItem + + + + fr.insee + lw54raav-QC + 1 + + LANGUE3_ENTOU + + + fr.insee + lw54raav + 1 + QuestionItem + + + + fr.insee + lumsobo2-QC + 1 + + LANGUE3_ENTOUL + + + fr.insee + lumsobo2 + 1 + QuestionItem + + + + fr.insee + l2kjnm8k-QC + 1 + + PRENOM_PAR1 + + + fr.insee + l2kjnm8k + 1 + QuestionItem + + + + fr.insee + l2kjy49o-QC + 1 + + ANAI_PAR1 + + + fr.insee + l2kjy49o + 1 + QuestionItem + + + + fr.insee + l2kkvar7-QC + 1 + + SEXE_PAR1 + + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + + fr.insee + l7ywp1vk-QC + 1 + + LIEUNAIS_PAR1 + + + fr.insee + l7ywp1vk + 1 + QuestionItem + + + + fr.insee + lyod84wr-QC + 1 + + PNAI_PAR1 + + + fr.insee + lyod84wr + 1 + QuestionItem + + + + fr.insee + l2kk539f-QC + 1 + + NATIO_PAR1 + + + fr.insee + l2kk539f + 1 + QuestionItem + + + + fr.insee + lyocgyi4-QC + 1 + + TRAV_PAR1 + + + fr.insee + lyocgyi4 + 1 + QuestionItem + + + + fr.insee + l2kjueig-QC + 1 + + PROF_PAR1H + + + fr.insee + l2kjueig + 1 + QuestionItem + + + + fr.insee + l4qzvm5v-QC + 1 + + PROF_PAR1F + + + fr.insee + l4qzvm5v + 1 + QuestionItem + + + + fr.insee + l45cjoj7-QC + 1 + + PROF_PAR1_2 + + + fr.insee + l45cjoj7 + 1 + QuestionItem + + + + fr.insee + l2kjshy4-QC + 1 + + STATUT_PAR1 + + + fr.insee + l2kjshy4 + 1 + QuestionItem + + + + fr.insee + lpsjlk6w-QC + 1 + + SAL_IND_PAR1 + + + fr.insee + lpsjlk6w + 1 + QuestionItem + + + + fr.insee + llgo5n7b-QC + 1 + + SAL_FP_PAR1 + + + fr.insee + llgo5n7b + 1 + QuestionItem + + + + fr.insee + llgqspnh-QC + 1 + + SAL_ENT_PAR1 + + + fr.insee + llgqspnh + 1 + QuestionItem + + + + fr.insee + l2kk4seh-QC + 1 + + LANGUE1_PAR1 + + + fr.insee + l2kk4seh + 1 + QuestionItem + + + + fr.insee + lumppr7y-QC + 1 + + LANGUE1_PAR1L + + + fr.insee + lumppr7y + 1 + QuestionItem + + + + fr.insee + l447j7cx-QC + 1 + + LANGUE2_PAR1E + + + fr.insee + l447j7cx + 1 + QuestionItem + + + + fr.insee + lw6don31-QC + 1 + + LANGUE2_PAR1 + + + fr.insee + lw6don31 + 1 + QuestionItem + + + + fr.insee + lumsnsej-QC + 1 + + LANGUE2_PAR1L + + + fr.insee + lumsnsej + 1 + QuestionItem + + + + fr.insee + lumptzfb-QC + 1 + + LANGUE3_PAR1E + + + fr.insee + lumptzfb + 1 + QuestionItem + + + + fr.insee + lw6dyxml-QC + 1 + + LANGUE3_PAR1 + + + fr.insee + lw6dyxml + 1 + QuestionItem + + + + fr.insee + lumsdl5a-QC + 1 + + LANGUE3_PAR1L + + + fr.insee + lumsdl5a + 1 + QuestionItem + + + + fr.insee + lumptuhp-QC + 1 + + LANGUE4_PAR1E + + + fr.insee + lumptuhp + 1 + QuestionItem + + + + fr.insee + lw6ecsey-QC + 1 + + LANGUE4_PAR1 + + + fr.insee + lw6ecsey + 1 + QuestionItem + + + + fr.insee + lumswm4d-QC + 1 + + LANGUE4_PAR1L + + + fr.insee + lumswm4d + 1 + QuestionItem + + + + fr.insee + l2kjzugb-QC + 1 + + VIV_PAR1 + + + fr.insee + l2kjzugb + 1 + QuestionItem + + + + fr.insee + l2kkd59n-QC + 1 + + ANNEE_DC_PAR1 + + + fr.insee + l2kkd59n + 1 + QuestionItem + + + + fr.insee + l2kk4snz-QC + 1 + + LOG_PAR1 + + + fr.insee + l2kk4snz + 1 + QuestionItem + + + + fr.insee + l2kkb4xa-QC + 1 + + FR_PAR1 + + + fr.insee + l2kkb4xa + 1 + QuestionItem + + + + fr.insee + l4onhpvd-QC + 1 + + COM_PAR1 + + + fr.insee + l4onhpvd + 1 + QuestionItem + + + + fr.insee + l4o7ufzl-QC + 1 + + DEP_PAR1 + + + fr.insee + l4o7ufzl + 1 + QuestionItem + + + + fr.insee + l4o8eale-QC + 1 + + PAY_PAR1 + + + fr.insee + l4o8eale + 1 + QuestionItem + + + + fr.insee + l1ezkqes-QC + 1 + + ETAB_PAR1 + + + fr.insee + l1ezkqes + 1 + QuestionItem + + + + fr.insee + l2kkeqsz-QC + 1 + + FREQ_VU_PAR1 + + + fr.insee + l2kkeqsz + 1 + QuestionItem + + + + fr.insee + l2kk296y-QC + 1 + + FREQ_CONT_PAR1 + + + fr.insee + l2kk296y + 1 + QuestionItem + + + + fr.insee + l4lojzxg-QC + 1 + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg + 1 + QuestionItem + + + + fr.insee + l43yap7r-QC + 1 + + PROX_FRAT_PAR1 + + + fr.insee + l43yap7r + 1 + QuestionItem + + + + fr.insee + l5axrwsa-QC + 1 + + EXIST_PAR2 + + + fr.insee + l5axrwsa + 1 + QuestionItem + + + + fr.insee + l27ijusa-QC + 1 + + PRENOM_PAR2 + + + fr.insee + l27ijusa + 1 + QuestionItem + + + + fr.insee + kwqfufye-QC + 1 + + ANAI_PAR2 + + + fr.insee + kwqfufye + 1 + QuestionItem + + + + fr.insee + l27ig4yy-QC + 1 + + SEXE_PAR2 + + + fr.insee + l27ig4yy + 1 + QuestionItem + + + + fr.insee + lyoc66rt-QC + 1 + + LIEUNAIS_PAR2 + + + fr.insee + lyoc66rt + 1 + QuestionItem + + + + fr.insee + lyod9pq3-QC + 1 + + PNAI_PAR2 + + + fr.insee + lyod9pq3 + 1 + QuestionItem + + + + fr.insee + kwqfhhge-QC + 1 + + NATIO_PAR2 + + + fr.insee + kwqfhhge + 1 + QuestionItem + + + + fr.insee + l7ywxphs-QC + 1 + + TRAV_PAR2 + + + fr.insee + l7ywxphs + 1 + QuestionItem + + + + fr.insee + l1ezowxi-QC + 1 + + PROF_PAR2H + + + fr.insee + l1ezowxi + 1 + QuestionItem + + + + fr.insee + l4qzjbsx-QC + 1 + + PROF_PAR2F + + + fr.insee + l4qzjbsx + 1 + QuestionItem + + + + fr.insee + l444t31z-QC + 1 + + PROF_PAR2_2 + + + fr.insee + l444t31z + 1 + QuestionItem + + + + fr.insee + kwqfto3c-QC + 1 + + STATUT_PAR2 + + + fr.insee + kwqfto3c + 1 + QuestionItem + + + + fr.insee + lptlrxcc-QC + 1 + + SAL_IND_PAR2 + + + fr.insee + lptlrxcc + 1 + QuestionItem + + + + fr.insee + llgosp3i-QC + 1 + + SAL_FP_PAR2 + + + fr.insee + llgosp3i + 1 + QuestionItem + + + + fr.insee + llgrqyqg-QC + 1 + + SAL_ENT_PAR2 + + + fr.insee + llgrqyqg + 1 + QuestionItem + + + + fr.insee + l1ezgxe3-QC + 1 + + LANGUE1_PAR2 + + + fr.insee + l1ezgxe3 + 1 + QuestionItem + + + + fr.insee + lums0dcm-QC + 1 + + LANGUE1_PAR2L + + + fr.insee + lums0dcm + 1 + QuestionItem + + + + fr.insee + l444xjux-QC + 1 + + LANGUE2_PAR2E + + + fr.insee + l444xjux + 1 + QuestionItem + + + + fr.insee + lw6eh4up-QC + 1 + + LANGUE2_PAR2 + + + fr.insee + lw6eh4up + 1 + QuestionItem + + + + fr.insee + lumsfeeu-QC + 1 + + LANGUE2_PAR2L + + + fr.insee + lumsfeeu + 1 + QuestionItem + + + + fr.insee + lums26pp-QC + 1 + + LANGUE3_PAR2E + + + fr.insee + lums26pp + 1 + QuestionItem + + + + fr.insee + lw6euv9i-QC + 1 + + LANGUE3_PAR2 + + + fr.insee + lw6euv9i + 1 + QuestionItem + + + + fr.insee + lumsp0o4-QC + 1 + + LANGUE3_PAR2L + + + fr.insee + lumsp0o4 + 1 + QuestionItem + + + + fr.insee + lumrz70d-QC + 1 + + LANGUE4_PAR2E + + + fr.insee + lumrz70d + 1 + QuestionItem + + + + fr.insee + lw6er2dw-QC + 1 + + LANGUE4_PAR2 + + + fr.insee + lw6er2dw + 1 + QuestionItem + + + + fr.insee + lumso5hv-QC + 1 + + LANGUE4_PAR2L + + + fr.insee + lumso5hv + 1 + QuestionItem + + + + fr.insee + kwqhjfzk-QC + 1 + + VIV_PAR2 + + + fr.insee + kwqhjfzk + 1 + QuestionItem + + + + fr.insee + kwqg35i9-QC + 1 + + ANNEE_DC_PAR2 + + + fr.insee + kwqg35i9 + 1 + QuestionItem + + + + fr.insee + kwqgffvw-QC + 1 + + LOG_PAR2A + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + fr.insee + lab6xfk9-QC + 1 + + LOG_PAR2B + + + fr.insee + lab6xfk9 + 1 + QuestionItem + + + + fr.insee + kwqgawqp-QC + 1 + + FR_PAR2 + + + fr.insee + kwqgawqp + 1 + QuestionItem + + + + fr.insee + l4onk34z-QC + 1 + + COM_PAR2 + + + fr.insee + l4onk34z + 1 + QuestionItem + + + + fr.insee + l4o8co0c-QC + 1 + + DEP_PAR2 + + + fr.insee + l4o8co0c + 1 + QuestionItem + + + + fr.insee + l4o8dk7q-QC + 1 + + PAY_PAR2 + + + fr.insee + l4o8dk7q + 1 + QuestionItem + + + + fr.insee + l2kkc8s9-QC + 1 + + ETAB_PAR2 + + + fr.insee + l2kkc8s9 + 1 + QuestionItem + + + + fr.insee + l1gl4054-QC + 1 + + FREQ_VU_PAR2 + + + fr.insee + l1gl4054 + 1 + QuestionItem + + + + fr.insee + l1ezkbsf-QC + 1 + + FREQ_CONT_PAR2 + + + fr.insee + l1ezkbsf + 1 + QuestionItem + + + + fr.insee + l445itcb-QC + 1 + + PROX_EGO_PAR2 + + + fr.insee + l445itcb + 1 + QuestionItem + + + + fr.insee + l4cjeqc0-QC + 1 + + PROX_FRAT_PAR2 + + + fr.insee + l4cjeqc0 + 1 + QuestionItem + + + + fr.insee + l473kp51-QC + 1 + + NB_FRERES + + + fr.insee + l473kp51 + 1 + QuestionItem + + + + fr.insee + l5ikk5zq-QC + 1 + + NB_FRERES_VIV1 + + + fr.insee + l5ikk5zq + 1 + QuestionItem + + + + fr.insee + l4740wd1-QC + 1 + + NB_FRERES_VIV + + + fr.insee + l4740wd1 + 1 + QuestionItem + + + + fr.insee + l4742c2v-QC + 1 + + NB_SOEURS + + + fr.insee + l4742c2v + 1 + QuestionItem + + + + fr.insee + l5ikyrbc-QC + 1 + + NB_SOEURS_VIV1 + + + fr.insee + l5ikyrbc + 1 + QuestionItem + + + + fr.insee + l473w273-QC + 1 + + NB_SOEURS_VIV + + + fr.insee + l473w273 + 1 + QuestionItem + + + + fr.insee + l1f5th3i-QC + 1 + + AG_DEP_PARENT + + + fr.insee + l1f5th3i + 1 + QuestionItem + + + + fr.insee + l1f61fa3-QC + 1 + + VECU_JEUNESSE + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + fr.insee + l43ttd47-QC + 1 + + VECU_PLACE + + + fr.insee + l43ttd47 + 1 + QuestionItem + + + + fr.insee + l43u439h-QC + 1 + + TYP_PLACE + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + fr.insee + l1f65zkh-QC + 1 + + HEBERG + + + fr.insee + l1f65zkh + 1 + QuestionItem + + + + fr.insee + l1g3unwh-QC + 1 + + FINETU + + + fr.insee + l1g3unwh + 1 + QuestionItem + + + + fr.insee + l1g3yk6q-QC + 1 + + ANNEE_FINETU + + + fr.insee + l1g3yk6q + 1 + QuestionItem + + + + fr.insee + lv6kuuw3-QC + 1 + + AGE_FINETU + + + fr.insee + lv6kuuw3 + 1 + QuestionItem + + + + fr.insee + l445x7tq-QC + 1 + + TRAVACT + + + fr.insee + l445x7tq + 1 + QuestionItem + + + + fr.insee + l1g7pgbn-QC + 1 + + DEJATRAV1 + + + fr.insee + l1g7pgbn + 1 + QuestionItem + + + + fr.insee + lumnhjfi-QC + 1 + + DEJATRAV2 + + + fr.insee + lumnhjfi + 1 + QuestionItem + + + + fr.insee + l1g4pid1-QC + 1 + + ANNEE_EMPLOI1 + + + fr.insee + l1g4pid1 + 1 + QuestionItem + + + + fr.insee + lv6l9f59-QC + 1 + + AGE_EMPLOI1 + + + fr.insee + lv6l9f59 + 1 + QuestionItem + + + + fr.insee + l1g7iu0j-QC + 1 + + ANNEE_FINEMP + + + fr.insee + l1g7iu0j + 1 + QuestionItem + + + + fr.insee + lv6m34hz-QC + 1 + + AGE_FINEMP + + + fr.insee + lv6m34hz + 1 + QuestionItem + + + + fr.insee + l1g7vwo6-QC + 1 + + INTER_TRAV + + + fr.insee + l1g7vwo6 + 1 + QuestionGrid + + + + fr.insee + ljwxkrnl-QC + 1 + + PRENOM_FIN + + + fr.insee + ljwxkrnl + 1 + QuestionItem + + + + fr.insee + lamjnyx4-QC + 1 + + PRENOM_PROX + + + fr.insee + lamjnyx4 + 1 + QuestionItem + + + + fr.insee + ly4bmrhf-QC + 1 + + POSTENQ + + + fr.insee + ly4bmrhf + 1 + QuestionItem + + + + fr.insee + m0ksi30t-QC + 1 + + POSTENQ_CONT + + + fr.insee + m0ksi30t + 1 + QuestionGrid + + + + fr.insee + m0ksqayr-QC + 1 + + POSTENQ_MAIL + + + fr.insee + m0ksqayr + 1 + QuestionItem + + + + fr.insee + m0kss4a5-QC + 1 + + POSTENQ_TEL + + + fr.insee + m0kss4a5 + 1 + QuestionItem + + + + fr.insee + l473latk-CI-0 + 1 + + VAL_PRENOM non renseignée + + + VAL_PRENOM non renseignée + + + fr.insee + l473latk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473latk-CI-0-IP-1 + 1 + + VAL_PRENOM + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk-CI-0-IP-1 + 1 + InParameter + + + (nvl(l473latk-CI-0-IP-1,"") = "") + + + + + fr.insee + ly4bzjcl-CI-0 + 1 + + PRENOM_X non renseignée + + + PRENOM_X non renseignée + + + fr.insee + ly4bzjcl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ly4bzjcl-CI-0-IP-1 + 1 + + PRENOM_X + + + + + fr.insee + ly4bzjcl-QOP-ly4c9b6e + 1 + OutParameter + + + fr.insee + ly4bzjcl-CI-0-IP-1 + 1 + InParameter + + + isnull(ly4bzjcl-CI-0-IP-1) or ly4bzjcl-CI-0-IP-1="" + + + + + fr.insee + ly4blyt6-CI-0 + 1 + + VAL_ANNAISS non renseignée + + + VAL_ANNAISS non renseignée + + + fr.insee + ly4blyt6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ly4blyt6-CI-0-IP-1 + 1 + + VAL_ANNAISS + + + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + OutParameter + + + fr.insee + ly4blyt6-CI-0-IP-1 + 1 + InParameter + + + isnull(ly4blyt6-CI-0-IP-1) or ly4blyt6-CI-0-IP-1="" + + + + + fr.insee + kwq9wijq-CI-0 + 1 + + Date de naissance non renseignée + + + Date de naissance non renseignée + + + fr.insee + kwq9wijq-CI-0-II-0 + 1 + Instruction + + warning + + + vtl + + fr.insee + kwq9wijq-CI-0-IP-1 + 1 + + DATNAIS_X + + + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq-CI-0-IP-1 + 1 + InParameter + + + (nvl(kwq9wijq-CI-0-IP-1, "") = "") + + + + + fr.insee + ly4cuvn6-CI-0 + 1 + + MINEUR non renseignée + + + MINEUR non renseignée + + + fr.insee + ly4cuvn6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ly4cuvn6-CI-0-IP-1 + 1 + + MINEUR + + + + + fr.insee + ly4cuvn6-QOP-ly4d6z4v + 1 + OutParameter + + + fr.insee + ly4cuvn6-CI-0-IP-1 + 1 + InParameter + + + isnull(ly4cuvn6-CI-0-IP-1) or ly4cuvn6-CI-0-IP-1="" + + + + + fr.insee + lywy061z-CI-0 + 1 + + Contrôle entrée dans le rond-point + + + Contrôle entrée dans le rond-point + + + fr.insee + lywy061z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lywy061z-CI-0-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + lywy061z-CI-0-IP-1 + 1 + InParameter + + + nvl(lywy061z-CI-0-IP-1,"")="" + + + + + fr.insee + kwq9y19w-CI-0 + 1 + + COUPLE non renseigné + + + COUPLE non renseigné + + + fr.insee + kwq9y19w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwq9y19w-CI-0-IP-1 + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w-CI-0-IP-1 + 1 + InParameter + + + isnull(kwq9y19w-CI-0-IP-1) or kwq9y19w-CI-0-IP-1 = "" + + + + + fr.insee + l0qkj23a-CI-0 + 1 + + RAISON_VIE_CJT non renseignée + + + RAISON_VIE_CJT non renseignée + + + fr.insee + l0qkj23a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qkj23a-CI-0-IP-1 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qkj23a-CI-0-IP-1) or l0qkj23a-CI-0-IP-1="" + + + + + fr.insee + lyye1a7t-CI-0 + 1 + + PROX_VIE_CJT non renseignée + + + PROX_VIE_CJT non renseignée + + + fr.insee + lyye1a7t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lyye1a7t-CI-0-IP-1 + 1 + + PROX_VIE_CJT + + + + + fr.insee + lyye1a7t-QOP-lyygl4i9 + 1 + OutParameter + + + fr.insee + lyye1a7t-CI-0-IP-1 + 1 + InParameter + + + isnull(lyye1a7t-CI-0-IP-1) or lyye1a7t-CI-0-IP-1="" + + + + + fr.insee + l34grb6h-CI-0 + 1 + + PRENOM_C non renseigné + + + PRENOM_C non renseigné + + + fr.insee + l34grb6h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34grb6h-CI-0-IP-1 + 1 + + PRENOM_C + + + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h-CI-0-IP-1 + 1 + InParameter + + + isnull(l34grb6h-CI-0-IP-1) or l34grb6h-CI-0-IP-1="" + + + + + fr.insee + kwqa0ism-CI-0 + 1 + + DATNAIS_C non renseigné + + + DATNAIS_C non renseigné + + + fr.insee + kwqa0ism-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa0ism-CI-0-IP-1 + 1 + + DATNAIS_C + + + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism-CI-0-IP-1 + 1 + InParameter + + + (nvl(kwqa0ism-CI-0-IP-1, "") = "") + + + + + fr.insee + kwqabjga-CI-0 + 1 + + SEXE_CH non renseigné + + + SEXE_CH non renseigné + + + fr.insee + kwqabjga-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqabjga-CI-0-IP-1 + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqabjga-CI-0-IP-1) or kwqabjga-CI-0-IP-1="" + + + + + fr.insee + l4o59ei7-CI-0 + 1 + + LIEUNAIS_CH non renseigné + + + LIEUNAIS_CH non renseigné + + + fr.insee + l4o59ei7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o59ei7-CI-0-IP-1 + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o59ei7-CI-0-IP-1) or l4o59ei7-CI-0-IP-1="" + + + + + fr.insee + l0quikkt-CI-0 + 1 + + DNAI_CH non renseigné + + + DNAI_CH non renseigné + + + fr.insee + l0quikkt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0quikkt-CI-0-IP-1 + 1 + + DNAI_CH + + + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt-CI-0-IP-1 + 1 + InParameter + + + isnull(l0quikkt-CI-0-IP-1) or l0quikkt-CI-0-IP-1="" + + + + + fr.insee + l4o57595-CI-0 + 1 + + PNAI_CH non renseigné + + + PNAI_CH non renseigné + + + fr.insee + l4o57595-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o57595-CI-0-IP-1 + 1 + + PNAI_CH + + + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o57595-CI-0-IP-1) or l4o57595-CI-0-IP-1="" + + + + + fr.insee + l7ywou64-CI-0 + 1 + + TRAV_CH_C non renseigné + + + TRAV_CH_C non renseigné + + + fr.insee + l7ywou64-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywou64-CI-0-IP-1 + 1 + + TRAV_CH_C + + + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywou64-CI-0-IP-1) or l7ywou64-CI-0-IP-1="" + + + + + fr.insee + m0gppl9e-CI-0 + 1 + + TRAV_CH_P non renseignée + + + TRAV_CH_P non renseignée + + + fr.insee + m0gppl9e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + m0gppl9e-CI-0-IP-1 + 1 + + TRAV_CH_P + + + + + fr.insee + m0gppl9e-QOP-m0gq7pno + 1 + OutParameter + + + fr.insee + m0gppl9e-CI-0-IP-1 + 1 + InParameter + + + isnull(m0gppl9e-CI-0-IP-1) or m0gppl9e-CI-0-IP-1="" + + + + + fr.insee + l43zea6v-CI-0 + 1 + + PROF_C2H non renseigné + + + PROF_C2H non renseigné + + + fr.insee + l43zea6v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43zea6v-CI-0-IP-1 + 1 + + PROF_C2H + + + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v-CI-0-IP-1 + 1 + InParameter + + + isnull(l43zea6v-CI-0-IP-1) or l43zea6v-CI-0-IP-1="" + + + + + fr.insee + l0quphwx-CI-0 + 1 + + STATUT_CH non renseigné + + + STATUT_CH non renseigné + + + fr.insee + l0quphwx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0quphwx-CI-0-IP-1 + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx-CI-0-IP-1 + 1 + InParameter + + + l0quphwx-CI-0-IP-1="" or isnull(l0quphwx-CI-0-IP-1) + + + + + fr.insee + lpsj90yi-CI-0 + 1 + + SAL_IND_CH non renseigné + + + SAL_IND_CH non renseigné + + + fr.insee + lpsj90yi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lpsj90yi-CI-0-IP-1 + 1 + + SAL_IND_CH + + + + + fr.insee + lpsj90yi-QOP-lpsj028t + 1 + OutParameter + + + fr.insee + lpsj90yi-CI-0-IP-1 + 1 + InParameter + + + lpsj90yi-CI-0-IP-1="" or isnull(lpsj90yi-CI-0-IP-1) + + + + + fr.insee + llgt315z-CI-0 + 1 + + SAL_FP_CH non renseigné + + + SAL_FP_CH non renseigné + + + fr.insee + llgt315z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgt315z-CI-0-IP-1 + 1 + + SAL_FP_CH + + + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z-CI-0-IP-1 + 1 + InParameter + + + isnull(llgt315z-CI-0-IP-1) or llgt315z-CI-0-IP-1="" + + + + + fr.insee + llgt75zv-CI-0 + 1 + + SAL_ENT_CH non renseigné + + + SAL_ENT_CH non renseigné + + + fr.insee + llgt75zv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgt75zv-CI-0-IP-1 + 1 + + SAL_ENT_CH + + + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv-CI-0-IP-1 + 1 + InParameter + + + isnull(llgt75zv-CI-0-IP-1) or llgt75zv-CI-0-IP-1="" + + + + + fr.insee + llde3pgg-CI-0 + 1 + + SEXE_CF non renseignée + + + SEXE_CF non renseignée + + + fr.insee + llde3pgg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llde3pgg-CI-0-IP-1 + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg-CI-0-IP-1 + 1 + InParameter + + + isnull(llde3pgg-CI-0-IP-1) or llde3pgg-CI-0-IP-1="" + + + + + fr.insee + lldpi629-CI-0 + 1 + + LIEUNAIS_CF non renseigné + + + LIEUNAIS_CF non renseigné + + + fr.insee + lldpi629-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldpi629-CI-0-IP-1 + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629-CI-0-IP-1 + 1 + InParameter + + + isnull(lldpi629-CI-0-IP-1) or lldpi629-CI-0-IP-1="" + + + + + fr.insee + lldp8203-CI-0 + 1 + + DNAI_CF non renseigné + + + DNAI_CF non renseigné + + + fr.insee + lldp8203-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldp8203-CI-0-IP-1 + 1 + + DNAI_CF + + + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203-CI-0-IP-1 + 1 + InParameter + + + isnull(lldp8203-CI-0-IP-1) or lldp8203-CI-0-IP-1="" + + + + + fr.insee + lldpejfa-CI-0 + 1 + + PNAI_CF non renseigné + + + PNAI_CF non renseigné + + + fr.insee + lldpejfa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldpejfa-CI-0-IP-1 + 1 + + PNAI_CF + + + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa-CI-0-IP-1 + 1 + InParameter + + + isnull(lldpejfa-CI-0-IP-1) or lldpejfa-CI-0-IP-1="" + + + + + fr.insee + m0gqs0nr-CI-0 + 1 + + TRAV_CF_C non renseignée + + + TRAV_CF_C non renseignée + + + fr.insee + m0gqs0nr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + m0gqs0nr-CI-0-IP-1 + 1 + + TRAV_CF_C + + + + + fr.insee + m0gqs0nr-QOP-m0gr1c1q + 1 + OutParameter + + + fr.insee + m0gqs0nr-CI-0-IP-1 + 1 + InParameter + + + isnull(m0gqs0nr-CI-0-IP-1) or m0gqs0nr-CI-0-IP-1="" + + + + + fr.insee + m0gr51no-CI-0 + 1 + + TRAV_CF_P non renseignée + + + TRAV_CF_P non renseignée + + + fr.insee + m0gr51no-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + m0gr51no-CI-0-IP-1 + 1 + + TRAV_CF_P + + + + + fr.insee + m0gr51no-QOP-m0gr5mbj + 1 + OutParameter + + + fr.insee + m0gr51no-CI-0-IP-1 + 1 + InParameter + + + isnull(m0gr51no-CI-0-IP-1) or m0gr51no-CI-0-IP-1="" + + + + + fr.insee + lldqd2sd-CI-0 + 1 + + PROF_C2F non renseigné + + + PROF_C2F non renseigné + + + fr.insee + lldqd2sd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldqd2sd-CI-0-IP-1 + 1 + + PROF_C2F + + + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd-CI-0-IP-1 + 1 + InParameter + + + isnull(lldqd2sd-CI-0-IP-1) or lldqd2sd-CI-0-IP-1="" + + + + + fr.insee + llmhdvun-CI-0 + 1 + + STATUT_CF non renseigné + + + STATUT_CF non renseigné + + + fr.insee + llmhdvun-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llmhdvun-CI-0-IP-1 + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun-CI-0-IP-1 + 1 + InParameter + + + isnull(llmhdvun-CI-0-IP-1) or llmhdvun-CI-0-IP-1="" + + + + + fr.insee + lpsiiaoa-CI-0 + 1 + + SAL_IND_CF non renseigné + + + SAL_IND_CF non renseigné + + + fr.insee + lpsiiaoa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lpsiiaoa-CI-0-IP-1 + 1 + + SAL_IND_CF + + + + + fr.insee + lpsiiaoa-QOP-lpsicp04 + 1 + OutParameter + + + fr.insee + lpsiiaoa-CI-0-IP-1 + 1 + InParameter + + + lpsiiaoa-CI-0-IP-1="" or isnull(lpsiiaoa-CI-0-IP-1) + + + + + fr.insee + llmhi6fd-CI-0 + 1 + + SAL_FP_CF non renseigné + + + SAL_FP_CF non renseigné + + + fr.insee + llmhi6fd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llmhi6fd-CI-0-IP-1 + 1 + + SAL_FP_CF + + + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd-CI-0-IP-1 + 1 + InParameter + + + isnull(llmhi6fd-CI-0-IP-1) or llmhi6fd-CI-0-IP-1="" + + + + + fr.insee + llnh2qpm-CI-0 + 1 + + SAL_ENT_CF non renseigné + + + SAL_ENT_CF non renseigné + + + fr.insee + llnh2qpm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llnh2qpm-CI-0-IP-1 + 1 + + SAL_ENT_CF + + + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm-CI-0-IP-1 + 1 + InParameter + + + isnull(llnh2qpm-CI-0-IP-1) or llnh2qpm-CI-0-IP-1="" + + + + + fr.insee + l27dlmvl-CI-0 + 1 + + ANNEE_U non renseignée + + + ANNEE_U non renseignée + + + fr.insee + l27dlmvl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-0-IP-1 + 1 + + ANNEE_U + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dlmvl-CI-0-IP-1) or l27dlmvl-CI-0-IP-1="" + + + + + fr.insee + l27dlmvl-CI-1 + 1 + + "Vous avez indiqué une année de mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l27dlmvl-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dlmvl-CI-1-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27dlmvl-CI-1-IP-2)) and not(isnull(l27dlmvl-CI-1-IP-1)) and cast(l27dlmvl-CI-1-IP-2,integer) < l27dlmvl-CI-1-IP-1) + + + + + fr.insee + l27dlmvl-CI-2 + 1 + + "Vous avez indiqué une année de mise en couple antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mise en couple antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + fr.insee + l27dlmvl-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-2-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l27dlmvl-CI-2-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27dlmvl-CI-2-IP-2)) and not(isnull(l27dlmvl-CI-2-IP-1)) and cast(l27dlmvl-CI-2-IP-2,integer) < cast(l27dlmvl-CI-2-IP-1,integer)) + + + + + fr.insee + l27dlmvl-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre mise en couple. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27dlmvl-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dlmvl-CI-3-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l27dlmvl-CI-3-IP-2)) and not(isnull(l27dlmvl-CI-3-IP-1)) and (l27dlmvl-CI-3-IP-1 + 15) > cast(l27dlmvl-CI-3-IP-2,integer)) + + + + + fr.insee + l27dlmvl-CI-4 + 1 + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mise en couple. Est-ce que vous confirmez ? + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mise en couple. Est-ce que vous confirmez ? + + + fr.insee + l27dlmvl-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlmvl-CI-4-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l27dlmvl-CI-4-IP-2 + 1 + + ANNEE_U + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l27dlmvl-CI-4-IP-2)) and not(isnull(l27dlmvl-CI-4-IP-1)) and (cast(l27dlmvl-CI-4-IP-1,integer) + 15) > cast(l27dlmvl-CI-4-IP-2,integer)) + + + + + fr.insee + kwqa4zjf-CI-0 + 1 + + PACS non renseigné + + + PACS non renseigné + + + fr.insee + kwqa4zjf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa4zjf-CI-0-IP-1 + 1 + + PACS + + + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqa4zjf-CI-0-IP-1) or kwqa4zjf-CI-0-IP-1="" + + + + + fr.insee + l0qu7e2g-CI-0 + 1 + + ANNEE_PACS non renseignée + + + ANNEE_PACS non renseignée + + + fr.insee + l0qu7e2g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-0-IP-1 + 1 + + ANNEE_PACS + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qu7e2g-CI-0-IP-1) or l0qu7e2g-CI-0-IP-1="" + + + + + fr.insee + l0qu7e2g-CI-1 + 1 + + "Vous avez indiqué une année de pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l0qu7e2g-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qu7e2g-CI-1-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l0qu7e2g-CI-1-IP-2)) and not(isnull(l0qu7e2g-CI-1-IP-1)) and cast(l0qu7e2g-CI-1-IP-2,integer) < l0qu7e2g-CI-1-IP-1) + + + + + fr.insee + l0qu7e2g-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre pacs. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre pacs. Est-ce que vous confirmez ?" + + + fr.insee + l0qu7e2g-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qu7e2g-CI-2-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l0qu7e2g-CI-2-IP-2)) and not(isnull(l0qu7e2g-CI-2-IP-1)) and (l0qu7e2g-CI-2-IP-1 + 15 > cast(l0qu7e2g-CI-2-IP-2,integer))) + + + + + fr.insee + l0qu7e2g-CI-3 + 1 + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre pacs. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre pacs. Est-ce que vous confirmez ?" + + + fr.insee + l0qu7e2g-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-3-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l0qu7e2g-CI-3-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l0qu7e2g-CI-3-IP-2)) and not(isnull(l0qu7e2g-CI-3-IP-1)) and (cast(l0qu7e2g-CI-3-IP-1,integer) + 15 > cast(l0qu7e2g-CI-3-IP-2,integer))) + + + + + fr.insee + l0qu7e2g-CI-4 + 1 + + "Vous avez indiqué une année de pacs antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de pacs antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l0qu7e2g-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qu7e2g-CI-4-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l0qu7e2g-CI-4-IP-2 + 1 + + ANNEE_PACS + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l0qu7e2g-CI-4-IP-2)) and not(isnull(l0qu7e2g-CI-4-IP-1)) and cast(l0qu7e2g-CI-4-IP-2,integer) < cast(l0qu7e2g-CI-4-IP-1,integer)) + + + + + fr.insee + l0qujqzn-CI-0 + 1 + + MARI non renseigné + + + MARI non renseigné + + + fr.insee + l0qujqzn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qujqzn-CI-0-IP-1 + 1 + + MARI + + + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qujqzn-CI-0-IP-1) or l0qujqzn-CI-0-IP-1="" + + + + + fr.insee + l0qul94p-CI-0 + 1 + + ANNEE_MARI non renseigné + + + ANNEE_MARI non renseigné + + + fr.insee + l0qul94p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-0-IP-1 + 1 + + ANNEE_MARI + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-0-IP-1 + 1 + InParameter + + + isnull(l0qul94p-CI-0-IP-1) or l0qul94p-CI-0-IP-1 ="" + + + + + fr.insee + l0qul94p-CI-1 + 1 + + "Vous avez indiqué une année de mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qul94p-CI-1-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l0qul94p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l0qul94p-CI-1-IP-2)) and not(isnull(l0qul94p-CI-1-IP-1)) and cast(l0qul94p-CI-1-IP-2,integer) < l0qul94p-CI-1-IP-1) + + + + + fr.insee + l0qul94p-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre mariage. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre mariage. Est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l0qul94p-CI-2-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l0qul94p-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l0qul94p-CI-2-IP-2)) and not(isnull(l0qul94p-CI-2-IP-1)) and (l0qul94p-CI-2-IP-1 + 15 > cast(l0qul94p-CI-2-IP-2,integer))) + + + + + fr.insee + l0qul94p-CI-3 + 1 + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mariage. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mariage. Est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-3-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l0qul94p-CI-3-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l0qul94p-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l0qul94p-CI-3-IP-2)) and not(isnull(l0qul94p-CI-3-IP-1)) and (cast(l0qul94p-CI-3-IP-1,integer) + 15 > cast(l0qul94p-CI-3-IP-2,integer))) + + + + + fr.insee + l0qul94p-CI-4 + 1 + + "Vous avez indiqué une année de mariage antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mariage antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-4-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l0qul94p-CI-4-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l0qul94p-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l0qul94p-CI-4-IP-2)) and not(isnull(l0qul94p-CI-4-IP-1)) and cast(l0qul94p-CI-4-IP-2,integer) < cast(l0qul94p-CI-4-IP-1,integer)) + + + + + fr.insee + l0qul94p-CI-5 + 1 + + "Vous avez indiqué une année de mariage antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mariage antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + fr.insee + l0qul94p-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l0qul94p-CI-5-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l0qul94p-CI-5-IP-2 + 1 + + ANNEE_MARI + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qul94p-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-CI-5-IP-2 + 1 + InParameter + + + (not(isnull(l0qul94p-CI-5-IP-2)) and not(isnull(l0qul94p-CI-5-IP-1)) and l0qul94p-CI-5-IP-2 < l0qul94p-CI-5-IP-1) + + + + + fr.insee + l5kszr2f-CI-0 + 1 + + SEPARE non renseigné + + + SEPARE non renseigné + + + fr.insee + l5kszr2f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5kszr2f-CI-0-IP-1 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f-CI-0-IP-1 + 1 + InParameter + + + isnull(l5kszr2f-CI-0-IP-1) or l5kszr2f-CI-0-IP-1="" + + + + + fr.insee + l27dzhpw-CI-0 + 1 + + ANNEE_S non renseignée + + + ANNEE_S non renseignée + + + fr.insee + l27dzhpw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-0-IP-1 + 1 + + ANNEE_S + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dzhpw-CI-0-IP-1) or l27dzhpw-CI-0-IP-1="" + + + + + fr.insee + l27dzhpw-CI-1 + 1 + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l27dzhpw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dzhpw-CI-1-IP-2 + 1 + + ANNEE_S + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27dzhpw-CI-1-IP-2)) and not(isnull(l27dzhpw-CI-1-IP-1)) and cast(l27dzhpw-CI-1-IP-2,integer) < l27dzhpw-CI-1-IP-1) + + + + + fr.insee + l27dzhpw-CI-2 + 1 + + "Vous avez indiqué une année de séparation antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de séparation antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?" + + + fr.insee + l27dzhpw-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-2-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l27dzhpw-CI-2-IP-2 + 1 + + ANNEE_S + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27dzhpw-CI-2-IP-2)) and not(isnull(l27dzhpw-CI-2-IP-1)) and cast(l27dzhpw-CI-2-IP-2,integer) < cast(l27dzhpw-CI-2-IP-1,integer)) + + + + + fr.insee + l27dzhpw-CI-3 + 1 + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27dzhpw-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhpw-CI-3-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l27dzhpw-CI-3-IP-2 + 1 + + ANNEE_S + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l27dzhpw-CI-3-IP-2)) and not(isnull(l27dzhpw-CI-3-IP-1)) and cast(l27dzhpw-CI-3-IP-2,integer) < cast(l27dzhpw-CI-3-IP-1,integer)) + + + + + fr.insee + l155mqhc-CI-0 + 1 + + ANNEE_D non renseignée + + + ANNEE_D non renseignée + + + fr.insee + l155mqhc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-0-IP-1 + 1 + + ANNEE_D + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-0-IP-1 + 1 + InParameter + + + isnull(l155mqhc-CI-0-IP-1) or l155mqhc-CI-0-IP-1="" + + + + + fr.insee + l155mqhc-CI-1 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l155mqhc-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-1-IP-1 + 1 + + ANNAISCJ + + + + fr.insee + l155mqhc-CI-1-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + l155mqhc-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l155mqhc-CI-1-IP-2)) and not(isnull(l155mqhc-CI-1-IP-1)) and cast(l155mqhc-CI-1-IP-2,integer) < cast(l155mqhc-CI-1-IP-1,integer)) + + + + + fr.insee + l155mqhc-CI-2 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l155mqhc-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l155mqhc-CI-2-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l155mqhc-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l155mqhc-CI-2-IP-2)) and not(isnull(l155mqhc-CI-2-IP-1)) and cast(l155mqhc-CI-2-IP-2,integer) < l155mqhc-CI-2-IP-1) + + + + + fr.insee + l155mqhc-CI-3 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l155mqhc-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-3-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l155mqhc-CI-3-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l155mqhc-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l155mqhc-CI-3-IP-2)) and not(isnull(l155mqhc-CI-3-IP-1)) and cast(l155mqhc-CI-3-IP-2,integer) < cast(l155mqhc-CI-3-IP-1,integer)) + + + + + fr.insee + l155mqhc-CI-4 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + fr.insee + l155mqhc-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l155mqhc-CI-4-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l155mqhc-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l155mqhc-CI-4-IP-2)) and not(isnull(l155mqhc-CI-4-IP-1)) and cast(l155mqhc-CI-4-IP-2,integer) < cast(l155mqhc-CI-4-IP-1,integer)) + + + + + fr.insee + l155mqhc-CI-5 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + fr.insee + l155mqhc-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l155mqhc-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + fr.insee + l155mqhc-CI-5-IP-2 + 1 + + ANNEE_D + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l155mqhc-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-CI-5-IP-2 + 1 + InParameter + + + (not(isnull(l155mqhc-CI-5-IP-2)) and not(isnull(l155mqhc-CI-5-IP-1)) and cast(l155mqhc-CI-5-IP-2,integer) < cast(l155mqhc-CI-5-IP-1,integer)) + + + + + fr.insee + l8lz0355-CI-0 + 1 + + VECU_C non renseignée + + + VECU_C non renseignée + + + fr.insee + l8lz0355-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lz0355-CI-0-IP-1 + 1 + + VECU_C + + + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lz0355-CI-0-IP-1) or l8lz0355-CI-0-IP-1="" + + + + + fr.insee + l43u9qqf-CI-0 + 1 + + ENFAV_C non renseigné + + + ENFAV_C non renseigné + + + fr.insee + l43u9qqf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u9qqf-CI-0-IP-1 + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf-CI-0-IP-1 + 1 + InParameter + + + isnull(l43u9qqf-CI-0-IP-1) or l43u9qqf-CI-0-IP-1="" + + + + + fr.insee + l43u4x96-CI-0 + 1 + + NBENFAV_C non renseigné + + + NBENFAV_C non renseigné + + + fr.insee + l43u4x96-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u4x96-CI-0-IP-1 + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96-CI-0-IP-1 + 1 + InParameter + + + isnull(l43u4x96-CI-0-IP-1) + + + + + fr.insee + l5jnmvs2-CI-0 + 1 + + NBENFAV_VENU_C1 non renseigné + + + NBENFAV_VENU_C1 non renseigné + + + fr.insee + l5jnmvs2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5jnmvs2-CI-0-IP-1 + 1 + + NBENFAV_VENU_C1 + + + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2-CI-0-IP-1 + 1 + InParameter + + + isnull(l5jnmvs2-CI-0-IP-1) or l5jnmvs2-CI-0-IP-1 ="" + + + + + fr.insee + l43why6c-CI-0 + 1 + + NBENFAV_VENU_C non renseigné + + + NBENFAV_VENU_C non renseigné + + + fr.insee + l43why6c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43why6c-CI-0-IP-1 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-CI-0-IP-1 + 1 + InParameter + + + isnull(l43why6c-CI-0-IP-1) + + + + + fr.insee + l43why6c-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l43why6c-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43why6c-CI-1-IP-1 + 1 + + NBENFAV_C + + + + fr.insee + l43why6c-CI-1-IP-2 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43why6c-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-CI-1-IP-2 + 1 + InParameter + + + (nvl(l43why6c-CI-1-IP-2,0) > nvl(l43why6c-CI-1-IP-1,0)) + + + + + fr.insee + l43xg8do-CI-0 + 1 + + ENF21_AUTPAR_C non renseigné + + + ENF21_AUTPAR_C non renseigné + + + fr.insee + l43xg8do-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43xg8do-CI-0-IP-1 + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-CI-0-IP-2 + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-CI-0-IP-3 + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-CI-0-IP-4 + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-QOP-lv2h4pt2 + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2hb16f + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2h4sxw + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2h9xib + 1 + OutParameter + + + fr.insee + l43xg8do-CI-0-IP-4 + 1 + InParameter + + + (nvl(l43xg8do-CI-0-IP-1, false) = false and nvl(l43xg8do-CI-0-IP-2, false) = false and nvl(l43xg8do-CI-0-IP-3, false) = false and nvl(l43xg8do-CI-0-IP-4, false) = false) + + + + + fr.insee + l43xg8do-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l43xg8do-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l43xg8do-CI-1-IP-1 + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-CI-1-IP-2 + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-CI-1-IP-3 + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-CI-1-IP-4 + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-QOP-lv2h4pt2 + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2hb16f + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2h4sxw + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l43xg8do-QOP-lv2h9xib + 1 + OutParameter + + + fr.insee + l43xg8do-CI-1-IP-4 + 1 + InParameter + + + (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-2, false)) or (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-3, false)) or (nvl(l43xg8do-CI-1-IP-1, false) and nvl(l43xg8do-CI-1-IP-4, false)) + + + + + fr.insee + l15131wu-CI-0 + 1 + + AUT_UNION non renseigné + + + AUT_UNION non renseigné + + + fr.insee + l15131wu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l15131wu-CI-0-IP-1 + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu-CI-0-IP-1 + 1 + InParameter + + + isnull(l15131wu-CI-0-IP-1) or l15131wu-CI-0-IP-1="" + + + + + fr.insee + l43x1amr-CI-0 + 1 + + NB_AUT_UNION non renseigné + + + NB_AUT_UNION non renseigné + + + fr.insee + l43x1amr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43x1amr-CI-0-IP-1 + 1 + + NB_AUT_UNION + + + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr-CI-0-IP-1 + 1 + InParameter + + + isnull(l43x1amr-CI-0-IP-1) + + + + + fr.insee + kwqa53jx-CI-0 + 1 + + PRENOM_U1 non renseigné + + + PRENOM_U1 non renseigné + + + fr.insee + kwqa53jx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqa53jx-CI-0-IP-1 + 1 + + PRENOM_U1 + + + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqa53jx-CI-0-IP-1) or kwqa53jx-CI-0-IP-1="" + + + + + fr.insee + l4p8skko-CI-0 + 1 + + SEXE_U1H non renseigné + + + SEXE_U1H non renseigné + + + fr.insee + l4p8skko-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4p8skko-CI-0-IP-1 + 1 + + SEXE_U1H + + + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko-CI-0-IP-1 + 1 + InParameter + + + isnull(l4p8skko-CI-0-IP-1) or l4p8skko-CI-0-IP-1="" + + + + + fr.insee + lldenssh-CI-0 + 1 + + SEXE_U1F non renseigné + + + SEXE_U1F non renseigné + + + fr.insee + lldenssh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldenssh-CI-0-IP-1 + 1 + + SEXE_U1F + + + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh-CI-0-IP-1 + 1 + InParameter + + + isnull(lldenssh-CI-0-IP-1) or lldenssh-CI-0-IP-1="" + + + + + fr.insee + l34fzu5m-CI-0 + 1 + + ANNEE_U1 non renseignée + + + ANNEE_U1 non renseignée + + + fr.insee + l34fzu5m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-0-IP-1 + 1 + + ANNEE_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-0-IP-1 + 1 + InParameter + + + isnull(l34fzu5m-CI-0-IP-1) or l34fzu5m-CI-0-IP-1="" + + + + + fr.insee + l34fzu5m-CI-1 + 1 + + "Vous avez indiqué une année de première mise en couple postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de première mise en couple postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l34fzu5m-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-1-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l34fzu5m-CI-1-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l34fzu5m-CI-1-IP-2)) and not(isnull(l34fzu5m-CI-1-IP-1)) and cast(l34fzu5m-CI-1-IP-2,integer) > cast(l34fzu5m-CI-1-IP-1,integer)) + + + + + fr.insee + l34fzu5m-CI-2 + 1 + + "Vous avez indiqué une année de première mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de première mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l34fzu5m-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l34fzu5m-CI-2-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l34fzu5m-CI-2-IP-2)) and not(isnull(l34fzu5m-CI-2-IP-1)) and cast(l34fzu5m-CI-2-IP-2,integer) < l34fzu5m-CI-2-IP-1) + + + + + fr.insee + l34fzu5m-CI-3 + 1 + + "Il y a peu d'écart entre votre date de naissance et celle de votre première mise en couple. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre date de naissance et celle de votre première mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l34fzu5m-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l34fzu5m-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l34fzu5m-CI-3-IP-2 + 1 + + ANNEE_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l34fzu5m-CI-3-IP-2)) and not(isnull(l34fzu5m-CI-3-IP-1)) and (l34fzu5m-CI-3-IP-1 + 15 > cast(l34fzu5m-CI-3-IP-2,integer))) + + + + + fr.insee + l27dlnmq-CI-0 + 1 + + PACS_U1 non renseigné + + + PACS_U1 non renseigné + + + fr.insee + l27dlnmq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dlnmq-CI-0-IP-1 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dlnmq-CI-0-IP-1) or l27dlnmq-CI-0-IP-1 ="" + + + + + fr.insee + l27dns8a-CI-0 + 1 + + ANNEE_PACS_U1 non renseigné + + + ANNEE_PACS_U1 non renseigné + + + fr.insee + l27dns8a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-0-IP-1 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dns8a-CI-0-IP-1) or l27dns8a-CI-0-IP-1="" + + + + + fr.insee + l27dns8a-CI-1 + 1 + + "Vous avez indiqué une année de premier pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + "Vous avez indiqué une année de premier pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + + fr.insee + l27dns8a-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dns8a-CI-1-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dns8a-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27dns8a-CI-1-IP-2)) and not(isnull(l27dns8a-CI-1-IP-1)) and cast(l27dns8a-CI-1-IP-2,integer) < l27dns8a-CI-1-IP-1) + + + + + fr.insee + l27dns8a-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier pacs. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier pacs. Est-ce que vous confirmez ?" + + + fr.insee + l27dns8a-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dns8a-CI-2-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dns8a-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27dns8a-CI-2-IP-2)) and not(isnull(l27dns8a-CI-2-IP-1)) and (l27dns8a-CI-2-IP-1 + 15 > cast(l27dns8a-CI-2-IP-2,integer))) + + + + + fr.insee + l27dns8a-CI-3 + 1 + + "Vous avez indiqué une année de premier pacs antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + "Vous avez indiqué une année de premier pacs antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + + fr.insee + l27dns8a-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-3-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27dns8a-CI-3-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27dns8a-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l27dns8a-CI-3-IP-1)) and not(isnull(l27dns8a-CI-3-IP-2)) and cast(l27dns8a-CI-3-IP-2,integer) < cast(l27dns8a-CI-3-IP-1,integer)) + + + + + fr.insee + l27dns8a-CI-4 + 1 + + "Vous avez indiqué une année de premier pacs postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + "Vous avez indiqué une année de premier pacs postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + + fr.insee + l27dns8a-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dns8a-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l27dns8a-CI-4-IP-2 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l27dns8a-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l27dns8a-CI-4-IP-1)) and not(isnull(l27dns8a-CI-4-IP-2)) and cast(l27dns8a-CI-4-IP-2,integer) >= cast(l27dns8a-CI-4-IP-1,integer)) + + + + + fr.insee + l27duust-CI-0 + 1 + + MARI_U1 non renseigné + + + MARI_U1 non renseigné + + + fr.insee + l27duust-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27duust-CI-0-IP-1 + 1 + + MARI_U1 + + + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust-CI-0-IP-1 + 1 + InParameter + + + isnull(l27duust-CI-0-IP-1) or l27duust-CI-0-IP-1="" + + + + + fr.insee + l27e50tv-CI-0 + 1 + + ANNEE_MARI_U1 non renseigné + + + ANNEE_MARI_U1 non renseigné + + + fr.insee + l27e50tv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-0-IP-1 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-0-IP-1 + 1 + InParameter + + + isnull(l27e50tv-CI-0-IP-1) or l27e50tv-CI-0-IP-1="" + + + + + fr.insee + l27e50tv-CI-1 + 1 + + "Vous avez indiqué une année de premier mariage antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27e50tv-CI-1-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27e50tv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-1-IP-2)) and not(isnull(l27e50tv-CI-1-IP-1)) and cast(l27e50tv-CI-1-IP-2,integer) < cast(l27e50tv-CI-1-IP-1,integer)) + + + + + fr.insee + l27e50tv-CI-2 + 1 + + "Vous avez indiqué une année de premier mariage antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-2-IP-1 + 1 + + ANNEE_PACS_U1 + + + + fr.insee + l27e50tv-CI-2-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27e50tv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-2-IP-2)) and not(isnull(l27e50tv-CI-2-IP-1)) and cast(l27e50tv-CI-2-IP-2,integer) < cast(l27e50tv-CI-2-IP-1,integer)) + + + + + fr.insee + l27e50tv-CI-3 + 1 + + "Vous avez indiqué une année de premier mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e50tv-CI-3-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27e50tv-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-3-IP-2)) and not(isnull(l27e50tv-CI-3-IP-1)) and cast(l27e50tv-CI-3-IP-2,integer) < l27e50tv-CI-3-IP-1) + + + + + fr.insee + l27e50tv-CI-4 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier mariage. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier mariage. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-4-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e50tv-CI-4-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27e50tv-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-4-IP-2)) and not(isnull(l27e50tv-CI-4-IP-1)) and (l27e50tv-CI-4-IP-1 + 15 > cast(l27e50tv-CI-4-IP-2,integer))) + + + + + fr.insee + l27e50tv-CI-5 + 1 + + "Vous avez indiqué une année de premier mariage postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier mariage postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + fr.insee + l27e50tv-CI-5-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l27e50tv-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-5-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-5-IP-2)) and not(isnull(l27e50tv-CI-5-IP-1)) and cast(l27e50tv-CI-5-IP-2,integer) >= cast(l27e50tv-CI-5-IP-1,integer)) + + + + + fr.insee + l27e50tv-CI-6 + 1 + + "Vous avez indiqué une année de premier mariage postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier mariage postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27e50tv-CI-6-II-6 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e50tv-CI-6-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l27e50tv-CI-6-IP-2 + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27e50tv-CI-6-IP-1 + 1 + InParameter + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-CI-6-IP-2 + 1 + InParameter + + + (not(isnull(l27e50tv-CI-6-IP-2)) and not(isnull(l27e50tv-CI-6-IP-1)) and cast(l27e50tv-CI-6-IP-2,integer) > cast(l27e50tv-CI-6-IP-1,integer)) + + + + + fr.insee + l5ktf1wn-CI-0 + 1 + + SEPARE_U1 non renseigné + + + SEPARE_U1 non renseigné + + + fr.insee + l5ktf1wn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ktf1wn-CI-0-IP-1 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ktf1wn-CI-0-IP-1) or l5ktf1wn-CI-0-IP-1="" + + + + + fr.insee + l27dzhzv-CI-0 + 1 + + ANNEE_S_U1 non renseignée + + + ANNEE_S_U1 non renseignée + + + fr.insee + l27dzhzv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-0-IP-1 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-0-IP-1 + 1 + InParameter + + + isnull(l27dzhzv-CI-0-IP-1) or l27dzhzv-CI-0-IP-1="" + + + + + fr.insee + l27dzhzv-CI-1 + 1 + + "Vous avez indiqué une année de première séparation antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de première séparation antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27dzhzv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-1-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27dzhzv-CI-1-IP-2 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27dzhzv-CI-1-IP-2)) and not(isnull(l27dzhzv-CI-1-IP-1)) and cast(l27dzhzv-CI-1-IP-2,integer) < cast(l27dzhzv-CI-1-IP-1,integer)) + + + + + fr.insee + l27dzhzv-CI-2 + 1 + + "Vous avez indiqué une année de première séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de première séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l27dzhzv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27dzhzv-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l27dzhzv-CI-2-IP-2 + 1 + + ANNEE_S_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27dzhzv-CI-2-IP-2)) and not(isnull(l27dzhzv-CI-2-IP-1)) and cast(l27dzhzv-CI-2-IP-2,integer) < l27dzhzv-CI-2-IP-1) + + + + + fr.insee + l27e0qyq-CI-0 + 1 + + ANNEE_D_U1 non renseignée + + + ANNEE_D_U1 non renseignée + + + fr.insee + l27e0qyq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-0-IP-1 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-0-IP-1 + 1 + InParameter + + + isnull(l27e0qyq-CI-0-IP-1) or l27e0qyq-CI-0-IP-1="" + + + + + fr.insee + l27e0qyq-CI-1 + 1 + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l27e0qyq-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l27e0qyq-CI-1-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l27e0qyq-CI-1-IP-2)) and not(isnull(l27e0qyq-CI-1-IP-1)) and l27e0qyq-CI-1-IP-2 < l27e0qyq-CI-1-IP-1) + + + + + fr.insee + l27e0qyq-CI-2 + 1 + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l27e0qyq-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-2-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l27e0qyq-CI-2-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l27e0qyq-CI-2-IP-2)) and not(isnull(l27e0qyq-CI-2-IP-1)) and cast(l27e0qyq-CI-2-IP-2,integer) < cast(l27e0qyq-CI-2-IP-1,integer)) + + + + + fr.insee + l27e0qyq-CI-3 + 1 + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier pacs. Est-ce que vous confirmez ?" + + + fr.insee + l27e0qyq-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-3-IP-1 + 1 + + ANNEE_PACS_U1 + + + + fr.insee + l27e0qyq-CI-3-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l27e0qyq-CI-3-IP-2)) and not(isnull(l27e0qyq-CI-3-IP-1)) and cast(l27e0qyq-CI-3-IP-2,integer) < cast(l27e0qyq-CI-3-IP-1,integer)) + + + + + fr.insee + l27e0qyq-CI-4 + 1 + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier mariage. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier mariage. Est-ce que vous confirmez ?" + + + fr.insee + l27e0qyq-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27e0qyq-CI-4-IP-1 + 1 + + ANNEE_MARI_U1 + + + + fr.insee + l27e0qyq-CI-4-IP-2 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l27e0qyq-CI-4-IP-2)) and not(isnull(l27e0qyq-CI-4-IP-1)) and cast(l27e0qyq-CI-4-IP-2,integer) < cast(l27e0qyq-CI-4-IP-1,integer)) + + + + + fr.insee + l4cjg2rp-CI-0 + 1 + + ENFAV_C_U1 non renseigné + + + ENFAV_C_U1 non renseigné + + + fr.insee + l4cjg2rp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjg2rp-CI-0-IP-1 + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjg2rp-CI-0-IP-1) or l4cjg2rp-CI-0-IP-1="" + + + + + fr.insee + l4cja8pm-CI-0 + 1 + + NBENFAV_C_U1 non renseigné + + + NBENFAV_C_U1 non renseigné + + + fr.insee + l4cja8pm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cja8pm-CI-0-IP-1 + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cja8pm-CI-0-IP-1) + + + + + fr.insee + l5ilbb89-CI-0 + 1 + + NBENFAV_C1_VENU_U1 non renseigné + + + NBENFAV_C1_VENU_U1 non renseigné + + + fr.insee + l5ilbb89-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ilbb89-CI-0-IP-1 + 1 + + NBENFAV_C1_VENU_U1 + + + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ilbb89-CI-0-IP-1) or l5ilbb89-CI-0-IP-1="" + + + + + fr.insee + l4o5x7yq-CI-0 + 1 + + NBENFAV_C_VENU_U1 non renseigné + + + NBENFAV_C_VENU_U1 non renseigné + + + fr.insee + l4o5x7yq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o5x7yq-CI-0-IP-1 + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o5x7yq-CI-0-IP-1) + + + + + fr.insee + l4o5x7yq-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l4o5x7yq-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o5x7yq-CI-1-IP-1 + 1 + + NBENFAV_C_U1 + + + + fr.insee + l4o5x7yq-CI-1-IP-2 + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-CI-1-IP-2 + 1 + InParameter + + + (nvl(l4o5x7yq-CI-1-IP-2,0) > nvl(l4o5x7yq-CI-1-IP-1,0)) + + + + + fr.insee + l9il0i0h-CI-0 + 1 + + AUT_U2 non renseigné + + + AUT_U2 non renseigné + + + fr.insee + l9il0i0h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9il0i0h-CI-0-IP-1 + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h-CI-0-IP-1 + 1 + InParameter + + + isnull(l9il0i0h-CI-0-IP-1) or l9il0i0h-CI-0-IP-1="" + + + + + fr.insee + l9ilcol6-CI-0 + 1 + + PRENOM_U2 non renseigné + + + PRENOM_U2 non renseigné + + + fr.insee + l9ilcol6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ilcol6-CI-0-IP-1 + 1 + + PRENOM_U2 + + + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ilcol6-CI-0-IP-1) or l9ilcol6-CI-0-IP-1="" + + + + + fr.insee + l9ikne2h-CI-0 + 1 + + SEXE_U2H non renseigné + + + SEXE_U2H non renseigné + + + fr.insee + l9ikne2h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikne2h-CI-0-IP-1 + 1 + + SEXE_U2H + + + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikne2h-CI-0-IP-1) or l9ikne2h-CI-0-IP-1="" + + + + + fr.insee + lldetngg-CI-0 + 1 + + SEXE_U2F non renseigné + + + SEXE_U2F non renseigné + + + fr.insee + lldetngg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lldetngg-CI-0-IP-1 + 1 + + SEXE_U2F + + + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg-CI-0-IP-1 + 1 + InParameter + + + isnull(lldetngg-CI-0-IP-1) or lldetngg-CI-0-IP-1="" + + + + + fr.insee + l9ikn3ea-CI-0 + 1 + + ANNEE_U2 non renseigné + + + ANNEE_U2 non renseigné + + + fr.insee + l9ikn3ea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-0-IP-1 + 1 + + ANNEE_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikn3ea-CI-0-IP-1) or l9ikn3ea-CI-0-IP-1="" + + + + + fr.insee + l9ikn3ea-CI-1 + 1 + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l9ikn3ea-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikn3ea-CI-1-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l9ikn3ea-CI-1-IP-2)) and not(isnull(l9ikn3ea-CI-1-IP-1)) and cast(l9ikn3ea-CI-1-IP-2,integer) < l9ikn3ea-CI-1-IP-1) + + + + + fr.insee + l9ikn3ea-CI-2 + 1 + + "Il y a peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9ikn3ea-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikn3ea-CI-2-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l9ikn3ea-CI-2-IP-2)) and not(isnull(l9ikn3ea-CI-2-IP-1)) and (l9ikn3ea-CI-2-IP-1 + 15 > cast(l9ikn3ea-CI-2-IP-2,integer))) + + + + + fr.insee + l9ikn3ea-CI-3 + 1 + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l9ikn3ea-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-3-IP-1 + 1 + + ANNEE_U1 + + + + fr.insee + l9ikn3ea-CI-3-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l9ikn3ea-CI-3-IP-2)) and not(isnull(l9ikn3ea-CI-3-IP-1)) and cast(l9ikn3ea-CI-3-IP-2,integer) < cast(l9ikn3ea-CI-3-IP-1,integer)) + + + + + fr.insee + l9ikn3ea-CI-4 + 1 + + "Vous avez indiqué une année de mise en couple de cette autre union postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de mise en couple de cette autre union postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l9ikn3ea-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikn3ea-CI-4-IP-1 + 1 + + ANNEE_U + + + + fr.insee + l9ikn3ea-CI-4-IP-2 + 1 + + ANNEE_U2 + + + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l9ikn3ea-CI-4-IP-2)) and not(isnull(l9ikn3ea-CI-4-IP-1)) and cast(l9ikn3ea-CI-4-IP-1,integer) < cast(l9ikn3ea-CI-4-IP-2,integer)) + + + + + fr.insee + l9il24ft-CI-0 + 1 + + PACS_U2 non renseigné + + + PACS_U2 non renseigné + + + fr.insee + l9il24ft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9il24ft-CI-0-IP-1 + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft-CI-0-IP-1 + 1 + InParameter + + + isnull(l9il24ft-CI-0-IP-1) or l9il24ft-CI-0-IP-1 ="" + + + + + fr.insee + l9ikxoxa-CI-0 + 1 + + ANNEE_PACS_U2 non renseigné + + + ANNEE_PACS_U2 non renseigné + + + fr.insee + l9ikxoxa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-0-IP-1 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikxoxa-CI-0-IP-1) or l9ikxoxa-CI-0-IP-1="" + + + + + fr.insee + l9ikxoxa-CI-1 + 1 + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l9ikxoxa-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikxoxa-CI-1-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l9ikxoxa-CI-1-IP-1)) and not(isnull(l9ikxoxa-CI-1-IP-2)) and cast(l9ikxoxa-CI-1-IP-2,integer) < cast(l9ikxoxa-CI-1-IP-1,integer)) + + + + + fr.insee + l9ikxoxa-CI-2 + 1 + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l9ikxoxa-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikxoxa-CI-2-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l9ikxoxa-CI-2-IP-2)) and not(isnull(l9ikxoxa-CI-2-IP-1)) and cast(l9ikxoxa-CI-2-IP-2,integer) < l9ikxoxa-CI-2-IP-1) + + + + + fr.insee + l9ikxoxa-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle du pacs de cette autre union. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle du pacs de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9ikxoxa-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikxoxa-CI-3-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l9ikxoxa-CI-3-IP-2)) and not(isnull(l9ikxoxa-CI-3-IP-1)) and (l9ikxoxa-CI-3-IP-1 + 15 > cast(l9ikxoxa-CI-3-IP-2,integer))) + + + + + fr.insee + l9ikxoxa-CI-4 + 1 + + "Vous avez indiqué une année de pacs de cette autre union postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de pacs de cette autre union postérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + fr.insee + l9ikxoxa-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxoxa-CI-4-IP-1 + 1 + + ANNEE_PACS + + + + fr.insee + l9ikxoxa-CI-4-IP-2 + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l9ikxoxa-CI-4-IP-1)) and not(isnull(l9ikxoxa-CI-4-IP-2)) and cast(l9ikxoxa-CI-4-IP-2,integer) >= cast(l9ikxoxa-CI-4-IP-1,integer)) + + + + + fr.insee + l9ikvx4n-CI-0 + 1 + + MARI_U2 non renseigné + + + MARI_U2 non renseigné + + + fr.insee + l9ikvx4n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikvx4n-CI-0-IP-1 + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikvx4n-CI-0-IP-1) or l9ikvx4n-CI-0-IP-1="" + + + + + fr.insee + l9iklcix-CI-0 + 1 + + ANNEE_MARI_U2 non renseigné + + + ANNEE_MARI_U2 non renseigné + + + fr.insee + l9iklcix-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-0-IP-1 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-0-IP-1 + 1 + InParameter + + + isnull(l9iklcix-CI-0-IP-1) or l9iklcix-CI-0-IP-1="" + + + + + fr.insee + l9iklcix-CI-1 + 1 + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9iklcix-CI-1-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9iklcix-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l9iklcix-CI-1-IP-2)) and not(isnull(l9iklcix-CI-1-IP-1)) and cast(l9iklcix-CI-1-IP-2,integer) < cast(l9iklcix-CI-1-IP-1,integer)) + + + + + fr.insee + l9iklcix-CI-2 + 1 + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de pacs. Est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-2-IP-1 + 1 + + ANNEE_PACS_U2 + + + + fr.insee + l9iklcix-CI-2-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9iklcix-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l9iklcix-CI-2-IP-2)) and not(isnull(l9iklcix-CI-2-IP-1)) and cast(l9iklcix-CI-2-IP-2,integer) < cast(l9iklcix-CI-2-IP-1,integer)) + + + + + fr.insee + l9iklcix-CI-3 + 1 + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + l9iklcix-CI-3-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9iklcix-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l9iklcix-CI-3-IP-2)) and not(isnull(l9iklcix-CI-3-IP-1)) and cast(l9iklcix-CI-3-IP-2,integer) < cast(l9iklcix-CI-3-IP-1,integer)) + + + + + fr.insee + l9iklcix-CI-4 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle du mariage de cette autre union. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle du mariage de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-4-IP-1 + 1 + + ANAIS + + + + fr.insee + l9iklcix-CI-4-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9iklcix-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l9iklcix-CI-4-IP-2)) and not(isnull(l9iklcix-CI-4-IP-1)) and (cast(l9iklcix-CI-4-IP-1,integer) + 15 > cast(l9iklcix-CI-4-IP-2,integer))) + + + + + fr.insee + l9iklcix-CI-5 + 1 + + "Vous avez indiqué une année du mariage de cette autre union postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du mariage de cette autre union postérieure à votre année de mariage. Est-ce que vous confirmez ?" + + + fr.insee + l9iklcix-CI-5-II-5 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iklcix-CI-5-IP-1 + 1 + + ANNEE_MARI + + + + fr.insee + l9iklcix-CI-5-IP-2 + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l9iklcix-CI-5-IP-1 + 1 + InParameter + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-CI-5-IP-2 + 1 + InParameter + + + (not(isnull(l9iklcix-CI-5-IP-2)) and not(isnull(l9iklcix-CI-5-IP-1)) and cast(l9iklcix-CI-5-IP-2,integer) >= cast(l9iklcix-CI-5-IP-1,integer)) + + + + + fr.insee + l9ikqlwv-CI-0 + 1 + + SEPARE_U2 non renseigné + + + SEPARE_U2 non renseigné + + + fr.insee + l9ikqlwv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikqlwv-CI-0-IP-1 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikqlwv-CI-0-IP-1) or l9ikqlwv-CI-0-IP-1="" + + + + + fr.insee + l9ikze1y-CI-0 + 1 + + ANNEE_S_U2 non renseigné + + + ANNEE_S_U2 non renseigné + + + fr.insee + l9ikze1y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-0-IP-1 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikze1y-CI-0-IP-1) or l9ikze1y-CI-0-IP-1="" + + + + + fr.insee + l9ikze1y-CI-1 + 1 + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l9ikze1y-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikze1y-CI-1-IP-2 + 1 + + ANNEE_S_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l9ikze1y-CI-1-IP-2)) and not(isnull(l9ikze1y-CI-1-IP-1))and cast(l9ikze1y-CI-1-IP-2,integer) < l9ikze1y-CI-1-IP-1) + + + + + fr.insee + l9ikze1y-CI-2 + 1 + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?" + + + fr.insee + l9ikze1y-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikze1y-CI-2-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikze1y-CI-2-IP-2 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l9ikze1y-CI-2-IP-2)) and not(isnull(l9ikze1y-CI-2-IP-1)) and cast(l9ikze1y-CI-2-IP-2,integer) < cast(l9ikze1y-CI-2-IP-1,integer)) + + + + + fr.insee + l9ikmjqm-CI-0 + 1 + + ANNEE_D_U2 non renseignée + + + ANNEE_D_U2 non renseignée + + + fr.insee + l9ikmjqm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-0-IP-1 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikmjqm-CI-0-IP-1) or l9ikmjqm-CI-0-IP-1="" + + + + + fr.insee + l9ikmjqm-CI-1 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mise en couple de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9ikmjqm-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-1-IP-1 + 1 + + ANNEE_U2 + + + + fr.insee + l9ikmjqm-CI-1-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l9ikmjqm-CI-1-IP-2)) and not(isnull(l9ikmjqm-CI-1-IP-1)) and cast(l9ikmjqm-CI-1-IP-2,integer) < cast(l9ikmjqm-CI-1-IP-1,integer)) + + + + + fr.insee + l9ikmjqm-CI-2 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l9ikmjqm-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l9ikmjqm-CI-2-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l9ikmjqm-CI-2-IP-2)) and not(isnull(l9ikmjqm-CI-2-IP-1)) and cast(l9ikmjqm-CI-2-IP-2,integer) < cast(l9ikmjqm-CI-2-IP-1,integer)) + + + + + fr.insee + l9ikmjqm-CI-3 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de pacs de cette autre union. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de pacs de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9ikmjqm-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-3-IP-1 + 1 + + ANNEE_PACS_U2 + + + + fr.insee + l9ikmjqm-CI-3-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(l9ikmjqm-CI-3-IP-2)) and not(isnull(l9ikmjqm-CI-3-IP-1)) and cast(l9ikmjqm-CI-3-IP-2,integer) < cast(l9ikmjqm-CI-3-IP-1,integer)) + + + + + fr.insee + l9ikmjqm-CI-4 + 1 + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mariage de cette autre union. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mariage de cette autre union. Est-ce que vous confirmez ?" + + + fr.insee + l9ikmjqm-CI-4-II-4 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikmjqm-CI-4-IP-1 + 1 + + ANNEE_MARI_U2 + + + + fr.insee + l9ikmjqm-CI-4-IP-2 + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-4-IP-1 + 1 + InParameter + + + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-CI-4-IP-2 + 1 + InParameter + + + (not(isnull(l9ikmjqm-CI-4-IP-2)) and not(isnull(l9ikmjqm-CI-4-IP-1)) and cast(l9ikmjqm-CI-4-IP-2,integer) < cast(l9ikmjqm-CI-4-IP-1,integer)) + + + + + fr.insee + l9ikxndo-CI-0 + 1 + + ENFAV_C_U2 non renseigné + + + ENFAV_C_U2 non renseigné + + + fr.insee + l9ikxndo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikxndo-CI-0-IP-1 + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikxndo-CI-0-IP-1) or l9ikxndo-CI-0-IP-1="" + + + + + fr.insee + l9ikuqoe-CI-0 + 1 + + NBENFAV_C_U2 non renseigné + + + NBENFAV_C_U2 non renseigné + + + fr.insee + l9ikuqoe-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikuqoe-CI-0-IP-1 + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikuqoe-CI-0-IP-1) + + + + + fr.insee + l9ikekzu-CI-0 + 1 + + NBENFAV_C1_VENU_U2 non renseigné + + + NBENFAV_C1_VENU_U2 non renseigné + + + fr.insee + l9ikekzu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9ikekzu-CI-0-IP-1 + 1 + + NBENFAV_C1_VENU_U2 + + + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu-CI-0-IP-1 + 1 + InParameter + + + isnull(l9ikekzu-CI-0-IP-1) or l9ikekzu-CI-0-IP-1="" + + + + + fr.insee + l9iks078-CI-0 + 1 + + NBENFAV_C_VENU_U2 non renseigné + + + NBENFAV_C_VENU_U2 non renseigné + + + fr.insee + l9iks078-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iks078-CI-0-IP-1 + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-CI-0-IP-1 + 1 + InParameter + + + isnull(l9iks078-CI-0-IP-1) + + + + + fr.insee + l9iks078-CI-1 + 1 + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l9iks078-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l9iks078-CI-1-IP-1 + 1 + + NBENFAV_C_U2 + + + + fr.insee + l9iks078-CI-1-IP-2 + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9iks078-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-CI-1-IP-2 + 1 + InParameter + + + (nvl(l9iks078-CI-1-IP-2,0) > nvl(l9iks078-CI-1-IP-1,0)) + + + + + fr.insee + kwqigxtx-CI-0 + 1 + + ENF non renseigné + + + ENF non renseigné + + + fr.insee + kwqigxtx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqigxtx-CI-0-IP-1 + 1 + + ENF + + + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqigxtx-CI-0-IP-1) or kwqigxtx-CI-0-IP-1="" + + + + + fr.insee + kwqi5zsm-CI-0 + 1 + + NBENF non renseigné + + + NBENF non renseigné + + + fr.insee + kwqi5zsm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqi5zsm-CI-0-IP-1 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqi5zsm-CI-0-IP-1) + + + + + fr.insee + l1gkeq97-CI-0 + 1 + + NBENF_ADOP_UN non renseigné + + + NBENF_ADOP_UN non renseigné + + + fr.insee + l1gkeq97-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gkeq97-CI-0-IP-1 + 1 + + NBENF_ADOP_UN + + + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gkeq97-CI-0-IP-1) or l1gkeq97-CI-0-IP-1="" + + + + + fr.insee + l7rlim3p-CI-0 + 1 + + NBENF_ADOP non renseigné + + + NBENF_ADOP non renseigné + + + fr.insee + l7rlim3p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7rlim3p-CI-0-IP-1 + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-0-IP-1 + 1 + InParameter + + + isnull(l7rlim3p-CI-0-IP-1) + + + + + fr.insee + l7rlim3p-CI-1 + 1 + + "Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants adoptés ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l7rlim3p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7rlim3p-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l7rlim3p-CI-1-IP-2 + 1 + + NBENF_ADOP + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-CI-1-IP-2 + 1 + InParameter + + + (nvl(l7rlim3p-CI-1-IP-2,0) > nvl(l7rlim3p-CI-1-IP-1,0)) + + + + + fr.insee + lumogysw-CI-0 + 1 + + LANGUE1_ENFL + + + LANGUE1_ENFL + + + fr.insee + lumogysw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumogysw-CI-0-IP-1 + 1 + + LANGUE1_ENFL + + + + + fr.insee + lumogysw-QOP-lumot76k + 1 + OutParameter + + + fr.insee + lumogysw-CI-0-IP-1 + 1 + InParameter + + + isnull(lumogysw-CI-0-IP-1) or lumogysw-CI-0-IP-1="" + + + + + fr.insee + lw52ifu3-CI-0 + 1 + + LANGUE2_ENFE non renseignée + + + LANGUE2_ENFE non renseignée + + + fr.insee + lw52ifu3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw52ifu3-CI-0-IP-1 + 1 + + LANGUE2_ENFE + + + + + fr.insee + lw52ifu3-QOP-lw54ol76 + 1 + OutParameter + + + fr.insee + lw52ifu3-CI-0-IP-1 + 1 + InParameter + + + isnull(lw52ifu3-CI-0-IP-1) or lw52ifu3-CI-0-IP-1="" + + + + + fr.insee + l445u9x8-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + l445u9x8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445u9x8-CI-0-IP-1 + 1 + + LANGUE1_ENF + + + + fr.insee + l445u9x8-CI-0-IP-2 + 1 + + LANGUE2_ENF + + + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l445u9x8-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(l445u9x8-CI-0-IP-1)) and not(isnull(l445u9x8-CI-0-IP-2)) and l445u9x8-CI-0-IP-2=l445u9x8-CI-0-IP-1) + + + + + fr.insee + lumstcob-CI-0 + 1 + + LANGUE2_ENFL non renseignée + + + LANGUE2_ENFL non renseignée + + + fr.insee + lumstcob-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumstcob-CI-0-IP-1 + 1 + + LANGUE2_ENFL + + + + + fr.insee + lumstcob-QOP-lumstrv3 + 1 + OutParameter + + + fr.insee + lumstcob-CI-0-IP-1 + 1 + InParameter + + + isnull(lumstcob-CI-0-IP-1) or lumstcob-CI-0-IP-1="" + + + + + fr.insee + lumnxb5k-CI-0 + 1 + + LANGUE3_ENFE non renseignée + + + LANGUE3_ENFE non renseignée + + + fr.insee + lumnxb5k-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumnxb5k-CI-0-IP-1 + 1 + + LANGUE3_ENFE + + + + + fr.insee + lumnxb5k-QOP-lw54m4hq + 1 + OutParameter + + + fr.insee + lumnxb5k-CI-0-IP-1 + 1 + InParameter + + + isnull(lumnxb5k-CI-0-IP-1) or lumnxb5k-CI-0-IP-1="" + + + + + fr.insee + lw543f35-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw543f35-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw543f35-CI-0-IP-1 + 1 + + LANGUE2_ENF + + + + fr.insee + lw543f35-CI-0-IP-2 + 1 + + LANGUE3_ENF + + + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + lw543f35-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + fr.insee + lw543f35-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw543f35-CI-0-IP-2)) and not(isnull(lw543f35-CI-0-IP-1)) and lw543f35-CI-0-IP-1=lw543f35-CI-0-IP-2) + + + + + fr.insee + lumsq0y7-CI-0 + 1 + + LANGUE3_ENFL non renseignée + + + LANGUE3_ENFL non renseignée + + + fr.insee + lumsq0y7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsq0y7-CI-0-IP-1 + 1 + + LANGUE3_ENFL + + + + + fr.insee + lumsq0y7-QOP-lumssga8 + 1 + OutParameter + + + fr.insee + lumsq0y7-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsq0y7-CI-0-IP-1) or lumsq0y7-CI-0-IP-1="" + + + + + fr.insee + lumnyjae-CI-0 + 1 + + LANGUE4_ENFE non renseignée + + + LANGUE4_ENFE non renseignée + + + fr.insee + lumnyjae-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumnyjae-CI-0-IP-1 + 1 + + LANGUE4_ENFE + + + + + fr.insee + lumnyjae-QOP-lw54f3wu + 1 + OutParameter + + + fr.insee + lumnyjae-CI-0-IP-1 + 1 + InParameter + + + isnull(lumnyjae-CI-0-IP-1) or lumnyjae-CI-0-IP-1="" + + + + + fr.insee + lw547oxc-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw547oxc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw547oxc-CI-0-IP-1 + 1 + + LANGUE3_ENF + + + + fr.insee + lw547oxc-CI-0-IP-2 + 1 + + LANGUE4_ENF + + + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + fr.insee + lw547oxc-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw547oxc-QOP-lw53vioh + 1 + OutParameter + + + fr.insee + lw547oxc-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw547oxc-CI-0-IP-2)) and not(isnull(lw547oxc-CI-0-IP-1)) and lw547oxc-CI-0-IP-1=lw547oxc-CI-0-IP-2) + + + + + fr.insee + lumsq00h-CI-0 + 1 + + LANGUE4_ENFL non renseignée + + + LANGUE4_ENFL non renseignée + + + fr.insee + lumsq00h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsq00h-CI-0-IP-1 + 1 + + LANGUE4_ENFL + + + + + fr.insee + lumsq00h-QOP-lumszz44 + 1 + OutParameter + + + fr.insee + lumsq00h-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsq00h-CI-0-IP-1) or lumsq00h-CI-0-IP-1="" + + + + + fr.insee + l4idom4o-CI-0 + 1 + + NBENFLOG_UN non renseigné + + + NBENFLOG_UN non renseigné + + + fr.insee + l4idom4o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idom4o-CI-0-IP-1 + 1 + + NBENFLOG_UN + + + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idom4o-CI-0-IP-1) or l4idom4o-CI-0-IP-1="" + + + + + fr.insee + l4lcr3vb-CI-0 + 1 + + CBENFLOG non renseigné + + + CBENFLOG non renseigné + + + fr.insee + l4lcr3vb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcr3vb-CI-0-IP-1 + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lcr3vb-CI-0-IP-1) + + + + + fr.insee + l4lcr3vb-CI-1 + 1 + + "Le nombre d’enfants qui vivent avec vous ne peut pas être supérieur au nombre total d’enfants." + + + "Le nombre d’enfants qui vivent avec vous ne peut pas être supérieur au nombre total d’enfants." + + + fr.insee + l4lcr3vb-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcr3vb-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l4lcr3vb-CI-1-IP-2 + 1 + + CBENFLOG + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-CI-1-IP-2 + 1 + InParameter + + + (nvl(l4lcr3vb-CI-1-IP-2,0) > nvl(l4lcr3vb-CI-1-IP-1,0)) + + + + + fr.insee + ltd0h1g7-CI-0 + 1 + + NBENFAIL_UN non renseigné + + + NBENFAIL_UN non renseigné + + + fr.insee + ltd0h1g7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + ltd0h1g7-CI-0-IP-1 + 1 + + NBENFAIL_UN + + + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + fr.insee + ltd0h1g7-CI-0-IP-1 + 1 + InParameter + + + ltd0h1g7-CI-0-IP-1="" or isnull(ltd0h1g7-CI-0-IP-1) + + + + + fr.insee + l4lfzig7-CI-0 + 1 + + CBENFAIL non renseigné + + + CBENFAIL non renseigné + + + fr.insee + l4lfzig7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfzig7-CI-0-IP-1 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfzig7-CI-0-IP-1) + + + + + fr.insee + l4lfzig7-CI-1 + 1 + + Le nombre d'enfants vivant dans le logement ou ailleurs est différent du nombre total d'enfants + + + Le nombre d'enfants vivant dans le logement ou ailleurs est différent du nombre total d'enfants + + + fr.insee + l4lfzig7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfzig7-CI-1-IP-1 + 1 + + NBENF + + + + fr.insee + l4lfzig7-CI-1-IP-2 + 1 + + CBENFLOG + + + + fr.insee + l4lfzig7-CI-1-IP-3 + 1 + + CBENFAIL + + + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-CI-1-IP-3 + 1 + InParameter + + + (nvl(l4lfzig7-CI-1-IP-3,0) + nvl(l4lfzig7-CI-1-IP-2,0) <> nvl(l4lfzig7-CI-1-IP-1,0)) + + + + + fr.insee + l446nede-CI-0 + 1 + + PRENOM_ENFLOG1 non renseigné + + + PRENOM_ENFLOG1 non renseigné + + + fr.insee + l446nede-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l446nede-CI-0-IP-1 + 1 + + PRENOM_ENFLOG1 + + + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede-CI-0-IP-1 + 1 + InParameter + + + isnull(l446nede-CI-0-IP-1) or l446nede-CI-0-IP-1="" + + + + + fr.insee + kwqjk80w-CI-0 + 1 + + SEXE_ENFLOG1 non renseigné + + + SEXE_ENFLOG1 non renseigné + + + fr.insee + kwqjk80w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjk80w-CI-0-IP-1 + 1 + + SEXE_ENFLOG1 + + + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w-CI-0-IP-1 + 1 + InParameter + + + isnull (kwqjk80w-CI-0-IP-1) or kwqjk80w-CI-0-IP-1="" + + + + + fr.insee + kwqjmq2o-CI-0 + 1 + + ANAI_ENFLOG1 non renseigné + + + ANAI_ENFLOG1 non renseigné + + + fr.insee + kwqjmq2o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-0-IP-1 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmq2o-CI-0-IP-1) or kwqjmq2o-CI-0-IP-1="" + + + + + fr.insee + kwqjmq2o-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + kwqjmq2o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqjmq2o-CI-1-IP-2 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqjmq2o-CI-1-IP-2)) and not(isnull(kwqjmq2o-CI-1-IP-1)) and cast(kwqjmq2o-CI-1-IP-2,integer) < kwqjmq2o-CI-1-IP-1) + + + + + fr.insee + kwqjmq2o-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + kwqjmq2o-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmq2o-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqjmq2o-CI-2-IP-2 + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(kwqjmq2o-CI-2-IP-2)) and not(isnull(kwqjmq2o-CI-2-IP-1)) and (kwqjmq2o-CI-2-IP-1 + 15 > cast(kwqjmq2o-CI-2-IP-2,integer))) + + + + + fr.insee + l4qtls9o-CI-0 + 1 + + NEFRANCE_ENFLOG1 non renseigné + + + NEFRANCE_ENFLOG1 non renseigné + + + fr.insee + l4qtls9o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtls9o-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG1 + + + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtls9o-CI-0-IP-1) or l4qtls9o-CI-0-IP-1 ="" + + + + + fr.insee + lv3teph7-CI-0 + 1 + + ADOPT_ENFLOG1 non renseignée + + + ADOPT_ENFLOG1 non renseignée + + + fr.insee + lv3teph7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3teph7-CI-0-IP-1 + 1 + + ADOPT_ENFLOG1 + + + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + OutParameter + + + fr.insee + lv3teph7-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3teph7-CI-0-IP-1) or lv3teph7-CI-0-IP-1 ="" + + + + + fr.insee + lv3ts84i-CI-0 + 1 + + ANADOPT_ENFLOG1 non renseignée + + + ANADOPT_ENFLOG1 non renseignée + + + fr.insee + lv3ts84i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ts84i-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG1 + + + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3ts84i-CI-0-IP-1) or lv3ts84i-CI-0-IP-1="" + + + + + fr.insee + lv3ts84i-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3ts84i-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ts84i-CI-1-IP-1 + 1 + + ANAI_ENFLOG1 + + + + fr.insee + lv3ts84i-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG1 + + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv3ts84i-CI-1-IP-2)) and not(isnull(lv3ts84i-CI-1-IP-1)) and cast(lv3ts84i-CI-1-IP-2,integer) < cast(lv3ts84i-CI-1-IP-1,integer)) + + + + + fr.insee + lv3ts84i-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3ts84i-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ts84i-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3ts84i-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv3ts84i-CI-2-IP-2)) and not(isnull(lv3ts84i-CI-2-IP-1)) and cast(lv3ts84i-CI-2-IP-2,integer) < lv3ts84i-CI-2-IP-1) + + + + + fr.insee + lv3ts84i-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv3ts84i-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ts84i-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3ts84i-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv3ts84i-CI-3-IP-2)) and not(isnull(lv3ts84i-CI-3-IP-1)) and (lv3ts84i-CI-3-IP-1 + 15 > cast(lv3ts84i-CI-3-IP-2,integer))) + + + + + fr.insee + kwqjol7e-CI-0 + 1 + + PARENT_VIT_ENFLOG1 non renseigné + + + PARENT_VIT_ENFLOG1 non renseigné + + + fr.insee + kwqjol7e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjol7e-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjol7e-CI-0-IP-1) or kwqjol7e-CI-0-IP-1="" + + + + + fr.insee + l4iaicn8-CI-0 + 1 + + PARENT_FR_ENFLOG1 non renseigné + + + PARENT_FR_ENFLOG1 non renseigné + + + fr.insee + l4iaicn8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iaicn8-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iaicn8-CI-0-IP-1) or l4iaicn8-CI-0-IP-1="" + + + + + fr.insee + l4parilg-CI-0 + 1 + + PARENT_COM_ENFLOG1 non renseigné + + + PARENT_COM_ENFLOG1 non renseigné + + + fr.insee + l4parilg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4parilg-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG1 + + + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4parilg-CI-0-IP-1) or l4parilg-CI-0-IP-1="" + + + + + fr.insee + l4pav1bd-CI-0 + 1 + + PARENT_DEP_ENFLOG1 non renseigné + + + PARENT_DEP_ENFLOG1 non renseigné + + + fr.insee + l4pav1bd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pav1bd-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG1 + + + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pav1bd-CI-0-IP-1) or l4pav1bd-CI-0-IP-1="" + + + + + fr.insee + l4pavrnh-CI-0 + 1 + + PARENT_PAY_ENFLOG1 non renseigné + + + PARENT_PAY_ENFLOG1 non renseigné + + + fr.insee + l4pavrnh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pavrnh-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG1 + + + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pavrnh-CI-0-IP-1) or l4pavrnh-CI-0-IP-1="" + + + + + fr.insee + l1ez78st-CI-0 + 1 + + PARENT_FREQ_ENFLOG1 non renseigné + + + PARENT_FREQ_ENFLOG1 non renseigné + + + fr.insee + l1ez78st-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ez78st-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG1 + + + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ez78st-CI-0-IP-1) or l1ez78st-CI-0-IP-1="" + + + + + fr.insee + l4iain70-CI-0 + 1 + + PARENT_DORT_ENFLOG1 non renseigné + + + PARENT_DORT_ENFLOG1 non renseigné + + + fr.insee + l4iain70-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iain70-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG1 + + + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iain70-CI-0-IP-1) or l4iain70-CI-0-IP-1="" + + + + + fr.insee + kwqk3gx2-CI-0 + 1 + + PARENT_VECU_ENFLOG1 non renseigné + + + PARENT_VECU_ENFLOG1 non renseigné + + + fr.insee + kwqk3gx2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3gx2-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG1 + + + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3gx2-CI-0-IP-1) or kwqk3gx2-CI-0-IP-1 ="" + + + + + fr.insee + la6ydnyh-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG1 non renseigné + + + SEP_AUT_PAR_ENFLOG1 non renseigné + + + fr.insee + la6ydnyh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6ydnyh-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh-CI-0-IP-1 + 1 + InParameter + + + isnull(la6ydnyh-CI-0-IP-1) or la6ydnyh-CI-0-IP-1="" + + + + + fr.insee + kwqjmy9d-CI-0 + 1 + + RESID_ENFLOG1 non renseigné + + + RESID_ENFLOG1 non renseigné + + + fr.insee + kwqjmy9d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmy9d-CI-0-IP-1 + 1 + + RESID_ENFLOG1 + + + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmy9d-CI-0-IP-1) or kwqjmy9d-CI-0-IP-1="" + + + + + fr.insee + l1gia5uh-CI-0 + 1 + + SANTE_ENFLOG1 non renseigné + + + SANTE_ENFLOG1 non renseigné + + + fr.insee + l1gia5uh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gia5uh-CI-0-IP-1 + 1 + + SANTE_ENFLOG1 + + + + + fr.insee + l1gia5uh-QOP-lvgobnzd + 1 + OutParameter + + + fr.insee + l1gia5uh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gia5uh-CI-0-IP-1) or l1gia5uh-CI-0-IP-1 = "" + + + + + fr.insee + lvgn6d99-CI-0 + 1 + + ASE_ENFLOG1 non renseigné + + + ASE_ENFLOG1 non renseigné + + + fr.insee + lvgn6d99-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgn6d99-CI-0-IP-1 + 1 + + ASE_ENFLOG1 + + + + + fr.insee + lvgn6d99-QOP-lvgo9bqf + 1 + OutParameter + + + fr.insee + lvgn6d99-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgn6d99-CI-0-IP-1) or lvgn6d99-CI-0-IP-1="" + + + + + fr.insee + l4i9118b-CI-0 + 1 + + PRENOM_ENFLOG2 non renseigné + + + PRENOM_ENFLOG2 non renseigné + + + fr.insee + l4i9118b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4i9118b-CI-0-IP-1 + 1 + + PRENOM_ENFLOG2 + + + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b-CI-0-IP-1 + 1 + InParameter + + + isnull(l4i9118b-CI-0-IP-1) or l4i9118b-CI-0-IP-1="" + + + + + fr.insee + l4i8zu5m-CI-0 + 1 + + SEXE_ENFLOG2 non renseigné + + + SEXE_ENFLOG2 non renseigné + + + fr.insee + l4i8zu5m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4i8zu5m-CI-0-IP-1 + 1 + + SEXE_ENFLOG2 + + + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m-CI-0-IP-1 + 1 + InParameter + + + isnull(l4i8zu5m-CI-0-IP-1) or l4i8zu5m-CI-0-IP-1="" + + + + + fr.insee + l4ia7rxn-CI-0 + 1 + + ANAI_ENFLOG2 non renseigné + + + ANAI_ENFLOG2 non renseigné + + + fr.insee + l4ia7rxn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-0-IP-1 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ia7rxn-CI-0-IP-1) or l4ia7rxn-CI-0-IP-1="" + + + + + fr.insee + l4ia7rxn-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4ia7rxn-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ia7rxn-CI-1-IP-2 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4ia7rxn-CI-1-IP-2)) and not(isnull(l4ia7rxn-CI-1-IP-1)) and cast(l4ia7rxn-CI-1-IP-2,integer) < l4ia7rxn-CI-1-IP-1) + + + + + fr.insee + l4ia7rxn-CI-2 + 1 + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + "Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?" + + + fr.insee + l4ia7rxn-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7rxn-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ia7rxn-CI-2-IP-2 + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4ia7rxn-CI-2-IP-2)) and not(isnull(l4ia7rxn-CI-2-IP-1)) and (l4ia7rxn-CI-2-IP-1 + 15 > cast(l4ia7rxn-CI-2-IP-2,integer))) + + + + + fr.insee + l4qtpg9f-CI-0 + 1 + + NEFRANCE_ENFLOG2 non renseigné + + + NEFRANCE_ENFLOG2 non renseigné + + + fr.insee + l4qtpg9f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtpg9f-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG2 + + + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtpg9f-CI-0-IP-1) or l4qtpg9f-CI-0-IP-1="" + + + + + fr.insee + lv3u5cvk-CI-0 + 1 + + ADOPT_ENFLOG2 non renseigné + + + ADOPT_ENFLOG2 non renseigné + + + fr.insee + lv3u5cvk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3u5cvk-CI-0-IP-1 + 1 + + ADOPT_ENFLOG2 + + + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + OutParameter + + + fr.insee + lv3u5cvk-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3u5cvk-CI-0-IP-1) or lv3u5cvk-CI-0-IP-1="" + + + + + fr.insee + lv3ule5a-CI-0 + 1 + + ANADOPT_ENFLOG2 non renseignée + + + ANADOPT_ENFLOG2 non renseignée + + + fr.insee + lv3ule5a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ule5a-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG2 + + + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3ule5a-CI-0-IP-1) or lv3ule5a-CI-0-IP-1="" + + + + + fr.insee + lv3ule5a-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3ule5a-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ule5a-CI-1-IP-1 + 1 + + ANAI_ENFLOG2 + + + + fr.insee + lv3ule5a-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG2 + + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv3ule5a-CI-1-IP-2)) and not(isnull(lv3ule5a-CI-1-IP-1)) and cast(lv3ule5a-CI-1-IP-2,integer) < cast(lv3ule5a-CI-1-IP-1,integer)) + + + + + fr.insee + lv3ule5a-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3ule5a-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ule5a-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3ule5a-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv3ule5a-CI-2-IP-2)) and not(isnull(lv3ule5a-CI-2-IP-1)) and cast(lv3ule5a-CI-2-IP-2,integer) < lv3ule5a-CI-2-IP-1) + + + + + fr.insee + lv3ule5a-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv3ule5a-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3ule5a-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3ule5a-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv3ule5a-CI-3-IP-2)) and not(isnull(lv3ule5a-CI-3-IP-1)) and (lv3ule5a-CI-3-IP-1 + 15 > cast(lv3ule5a-CI-3-IP-2,integer))) + + + + + fr.insee + l4iano52-CI-0 + 1 + + PARENT_VIT_ENFLOG2 non renseigné + + + PARENT_VIT_ENFLOG2 non renseigné + + + fr.insee + l4iano52-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4iano52-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52-CI-0-IP-1 + 1 + InParameter + + + isnull(l4iano52-CI-0-IP-1) or l4iano52-CI-0-IP-1="" + + + + + fr.insee + kwqjmujx-CI-0 + 1 + + PARENT_FR_ENFLOG2 non renseigné + + + PARENT_FR_ENFLOG2 non renseigné + + + fr.insee + kwqjmujx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjmujx-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjmujx-CI-0-IP-1) or kwqjmujx-CI-0-IP-1="" + + + + + fr.insee + l4pasuts-CI-0 + 1 + + PARENT_COM_ENFLOG2 non renseigné + + + PARENT_COM_ENFLOG2 non renseigné + + + fr.insee + l4pasuts-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pasuts-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG2 + + + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pasuts-CI-0-IP-1) or l4pasuts-CI-0-IP-1="" + + + + + fr.insee + l4pannoa-CI-0 + 1 + + PARENT_DEP_ENFLOG2 non renseigné + + + PARENT_DEP_ENFLOG2 non renseigné + + + fr.insee + l4pannoa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pannoa-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG2 + + + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pannoa-CI-0-IP-1) or l4pannoa-CI-0-IP-1="" + + + + + fr.insee + l4pbc5wa-CI-0 + 1 + + PARENT_PAY_ENFLOG2 non renseigné + + + PARENT_PAY_ENFLOG2 non renseigné + + + fr.insee + l4pbc5wa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pbc5wa-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG2 + + + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pbc5wa-CI-0-IP-1) or l4pbc5wa-CI-0-IP-1="" + + + + + fr.insee + l4idgpbr-CI-0 + 1 + + PARENT_FREQ_ENFLOG2 non renseignée + + + PARENT_FREQ_ENFLOG2 non renseignée + + + fr.insee + l4idgpbr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idgpbr-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG2 + + + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idgpbr-CI-0-IP-1) or l4idgpbr-CI-0-IP-1="" + + + + + fr.insee + l4486unb-CI-0 + 1 + + PARENT_DORT_ENFLOG2 non renseigné + + + PARENT_DORT_ENFLOG2 non renseigné + + + fr.insee + l4486unb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4486unb-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG2 + + + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4486unb-CI-0-IP-1) or l4486unb-CI-0-IP-1="" + + + + + fr.insee + l4ia5o28-CI-0 + 1 + + PARENT_VECU_ENFLOG2 non renseigné + + + PARENT_VECU_ENFLOG2 non renseigné + + + fr.insee + l4ia5o28-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia5o28-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG2 + + + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ia5o28-CI-0-IP-1) or l4ia5o28-CI-0-IP-1="" + + + + + fr.insee + la6yjh65-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG2 non renseigné + + + SEP_AUT_PAR_ENFLOG2 non renseigné + + + fr.insee + la6yjh65-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6yjh65-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65-CI-0-IP-1 + 1 + InParameter + + + isnull(la6yjh65-CI-0-IP-1) or la6yjh65-CI-0-IP-1="" + + + + + fr.insee + l4idgqx9-CI-0 + 1 + + RESID_ENFLOG2 non renseignée + + + RESID_ENFLOG2 non renseignée + + + fr.insee + l4idgqx9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idgqx9-CI-0-IP-1 + 1 + + RESID_ENFLOG2 + + + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idgqx9-CI-0-IP-1) or l4idgqx9-CI-0-IP-1 ="" + + + + + fr.insee + l4ia7y0p-CI-0 + 1 + + SANTE_ENFLOG2 non renseigné + + + SANTE_ENFLOG2 non renseigné + + + fr.insee + l4ia7y0p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ia7y0p-CI-0-IP-1 + 1 + + SANTE_ENFLOG2 + + + + + fr.insee + l4ia7y0p-QOP-lvgocsz8 + 1 + OutParameter + + + fr.insee + l4ia7y0p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ia7y0p-CI-0-IP-1) or l4ia7y0p-CI-0-IP-1="" + + + + + fr.insee + lvgneyls-CI-0 + 1 + + ASE_ENFLOG2 non renseignée + + + ASE_ENFLOG2 non renseignée + + + fr.insee + lvgneyls-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgneyls-CI-0-IP-1 + 1 + + ASE_ENFLOG2 + + + + + fr.insee + lvgneyls-QOP-lvgo7bos + 1 + OutParameter + + + fr.insee + lvgneyls-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgneyls-CI-0-IP-1) or lvgneyls-CI-0-IP-1="" + + + + + fr.insee + l4ld0ziw-CI-0 + 1 + + PRENOM_ENFLOG3 non renseigné + + + PRENOM_ENFLOG3 non renseigné + + + fr.insee + l4ld0ziw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0ziw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG3 + + + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0ziw-CI-0-IP-1) or l4ld0ziw-CI-0-IP-1="" + + + + + fr.insee + l4lcp4co-CI-0 + 1 + + SEXE_ENFLOG3 non renseigné + + + SEXE_ENFLOG3 non renseigné + + + fr.insee + l4lcp4co-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcp4co-CI-0-IP-1 + 1 + + SEXE_ENFLOG3 + + + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lcp4co-CI-0-IP-1) or l4lcp4co-CI-0-IP-1="" + + + + + fr.insee + l4ld3y0j-CI-0 + 1 + + ANAI_ENFLOG3 non renseigné + + + ANAI_ENFLOG3 non renseigné + + + fr.insee + l4ld3y0j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-0-IP-1 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld3y0j-CI-0-IP-1) or l4ld3y0j-CI-0-IP-1="" + + + + + fr.insee + l4ld3y0j-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4ld3y0j-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ld3y0j-CI-1-IP-2 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4ld3y0j-CI-1-IP-2)) and not(isnull(l4ld3y0j-CI-1-IP-1)) and cast(l4ld3y0j-CI-1-IP-2,integer) < l4ld3y0j-CI-1-IP-1) + + + + + fr.insee + l4ld3y0j-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4ld3y0j-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld3y0j-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4ld3y0j-CI-2-IP-2 + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4ld3y0j-CI-2-IP-2)) and not(isnull(l4ld3y0j-CI-2-IP-1)) and (l4ld3y0j-CI-2-IP-1 + 15 > cast(l4ld3y0j-CI-2-IP-2,integer))) + + + + + fr.insee + l4qty53i-CI-0 + 1 + + NEFRANCE_ENFLOG3 non renseigné + + + NEFRANCE_ENFLOG3 non renseigné + + + fr.insee + l4qty53i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qty53i-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG3 + + + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qty53i-CI-0-IP-1) or l4qty53i-CI-0-IP-1="" + + + + + fr.insee + lv3uun9e-CI-0 + 1 + + ADOPT_ENFLOG3 non renseignée + + + ADOPT_ENFLOG3 non renseignée + + + fr.insee + lv3uun9e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3uun9e-CI-0-IP-1 + 1 + + ADOPT_ENFLOG3 + + + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + OutParameter + + + fr.insee + lv3uun9e-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3uun9e-CI-0-IP-1) or lv3uun9e-CI-0-IP-1="" + + + + + fr.insee + lv3v5m6c-CI-0 + 1 + + ANADOPT_ENFLOG3 non renseignée + + + ANADOPT_ENFLOG3 non renseignée + + + fr.insee + lv3v5m6c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3v5m6c-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG3 + + + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3v5m6c-CI-0-IP-1) or lv3v5m6c-CI-0-IP-1="" + + + + + fr.insee + lv3v5m6c-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3v5m6c-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3v5m6c-CI-1-IP-1 + 1 + + ANAI_ENFLOG3 + + + + fr.insee + lv3v5m6c-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG3 + + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv3v5m6c-CI-1-IP-2)) and not(isnull(lv3v5m6c-CI-1-IP-1)) and cast(lv3v5m6c-CI-1-IP-2,integer) < cast(lv3v5m6c-CI-1-IP-1,integer)) + + + + + fr.insee + lv3v5m6c-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3v5m6c-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3v5m6c-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3v5m6c-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv3v5m6c-CI-2-IP-2)) and not(isnull(lv3v5m6c-CI-2-IP-1)) and cast(lv3v5m6c-CI-2-IP-2,integer) < lv3v5m6c-CI-2-IP-1) + + + + + fr.insee + lv3v5m6c-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv3v5m6c-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3v5m6c-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3v5m6c-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv3v5m6c-CI-3-IP-2)) and not(isnull(lv3v5m6c-CI-3-IP-1)) and (lv3v5m6c-CI-3-IP-1 + 15 > cast(lv3v5m6c-CI-3-IP-2,integer))) + + + + + fr.insee + l4lct7cb-CI-0 + 1 + + PARENT_VIT_ENFLOG3 non renseigné + + + PARENT_VIT_ENFLOG3 non renseigné + + + fr.insee + l4lct7cb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lct7cb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lct7cb-CI-0-IP-1) or l4lct7cb-CI-0-IP-1="" + + + + + fr.insee + l4ld827i-CI-0 + 1 + + PARENT_FR_ENFLOG3 non renseigné + + + PARENT_FR_ENFLOG3 non renseigné + + + fr.insee + l4ld827i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld827i-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld827i-CI-0-IP-1) or l4ld827i-CI-0-IP-1 ="" + + + + + fr.insee + l4pavp6y-CI-0 + 1 + + PARENT_COM_ENFLOG3 non renseigné + + + PARENT_COM_ENFLOG3 non renseigné + + + fr.insee + l4pavp6y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pavp6y-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG3 + + + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pavp6y-CI-0-IP-1) or l4pavp6y-CI-0-IP-1="" + + + + + fr.insee + l4pat7vx-CI-0 + 1 + + PARENT_DEP_ENFLOG3 non renseigné + + + PARENT_DEP_ENFLOG3 non renseigné + + + fr.insee + l4pat7vx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pat7vx-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG3 + + + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pat7vx-CI-0-IP-1) or l4pat7vx-CI-0-IP-1="" + + + + + fr.insee + l4pb77tv-CI-0 + 1 + + PARENT_PAY_ENFLOG3 non renseigné + + + PARENT_PAY_ENFLOG3 non renseigné + + + fr.insee + l4pb77tv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pb77tv-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG3 + + + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pb77tv-CI-0-IP-1) or l4pb77tv-CI-0-IP-1="" + + + + + fr.insee + l4ld15su-CI-0 + 1 + + PARENT_FREQ_ENFLOG3 non renseigné + + + PARENT_FREQ_ENFLOG3 non renseigné + + + fr.insee + l4ld15su-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld15su-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG3 + + + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld15su-CI-0-IP-1) or l4ld15su-CI-0-IP-1="" + + + + + fr.insee + l4ld0zmv-CI-0 + 1 + + PARENT_DORT_ENFLOG3 non renseigné + + + PARENT_DORT_ENFLOG3 non renseigné + + + fr.insee + l4ld0zmv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0zmv-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG3 + + + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0zmv-CI-0-IP-1) or l4ld0zmv-CI-0-IP-1="" + + + + + fr.insee + l4ld0jea-CI-0 + 1 + + PARENT_VECU_ENFLOG3 non renseigné + + + PARENT_VECU_ENFLOG3 non renseigné + + + fr.insee + l4ld0jea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ld0jea-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG3 + + + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ld0jea-CI-0-IP-1) or l4ld0jea-CI-0-IP-1="" + + + + + fr.insee + la6y9flo-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG3 non renseigné + + + + SEP_AUT_PAR_ENFLOG3 non renseigné + + + + fr.insee + la6y9flo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y9flo-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y9flo-CI-0-IP-1) or la6y9flo-CI-0-IP-1="" + + + + + fr.insee + l4lde13h-CI-0 + 1 + + RESID_ENFLOG3 non renseigné + + + RESID_ENFLOG3 non renseigné + + + fr.insee + l4lde13h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lde13h-CI-0-IP-1 + 1 + + RESID_ENFLOG3 + + + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lde13h-CI-0-IP-1) or l4lde13h-CI-0-IP-1="" + + + + + fr.insee + l4lcuoke-CI-0 + 1 + + SANTE_ENFLOG3 non renseigné + + + SANTE_ENFLOG3 non renseigné + + + fr.insee + l4lcuoke-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lcuoke-CI-0-IP-1 + 1 + + SANTE_ENFLOG3 + + + + + fr.insee + l4lcuoke-QOP-lvgoe8l2 + 1 + OutParameter + + + fr.insee + l4lcuoke-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lcuoke-CI-0-IP-1) or l4lcuoke-CI-0-IP-1="" + + + + + fr.insee + lvgnpugy-CI-0 + 1 + + ASE_ENFLOG3 non renseignée + + + ASE_ENFLOG3 non renseignée + + + fr.insee + lvgnpugy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgnpugy-CI-0-IP-1 + 1 + + ASE_ENFLOG3 + + + + + fr.insee + lvgnpugy-QOP-lvgoc0ak + 1 + OutParameter + + + fr.insee + lvgnpugy-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgnpugy-CI-0-IP-1) or lvgnpugy-CI-0-IP-1="" + + + + + fr.insee + l4lec0rk-CI-0 + 1 + + PRENOM_ENFLOG4 non renseigné + + + PRENOM_ENFLOG4 non renseigné + + + fr.insee + l4lec0rk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lec0rk-CI-0-IP-1 + 1 + + PRENOM_ENFLOG4 + + + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lec0rk-CI-0-IP-1) or l4lec0rk-CI-0-IP-1="" + + + + + fr.insee + l4lefdoh-CI-0 + 1 + + SEXE_ENFLOG4 non renseigné + + + SEXE_ENFLOG4 non renseigné + + + fr.insee + l4lefdoh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lefdoh-CI-0-IP-1 + 1 + + SEXE_ENFLOG4 + + + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh-CI-0-IP-1 + 1 + InParameter + + + insull(l4lefdoh-CI-0-IP-1) or l4lefdoh-CI-0-IP-1="" + + + + + fr.insee + l4le9rs3-CI-0 + 1 + + ANAI_ENFLOG4 non renseigné + + + ANAI_ENFLOG4 non renseigné + + + fr.insee + l4le9rs3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-0-IP-1 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-0-IP-1 + 1 + InParameter + + + isnull(l4le9rs3-CI-0-IP-1) or l4le9rs3-CI-0-IP-1 ="" + + + + + fr.insee + l4le9rs3-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4le9rs3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4le9rs3-CI-1-IP-2 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4le9rs3-CI-1-IP-2)) and not(isnull(l4le9rs3-CI-1-IP-1)) and cast(l4le9rs3-CI-1-IP-2,integer) < l4le9rs3-CI-1-IP-1) + + + + + fr.insee + l4le9rs3-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4le9rs3-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4le9rs3-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4le9rs3-CI-2-IP-2 + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4le9rs3-CI-2-IP-2)) and not(isnull(l4le9rs3-CI-2-IP-1)) and (l4le9rs3-CI-2-IP-1 + 15 > cast(l4le9rs3-CI-2-IP-2,integer))) + + + + + fr.insee + l4qtvt71-CI-0 + 1 + + NEFRANCE_ENFLOG4 non renseigné + + + NEFRANCE_ENFLOG4 non renseigné + + + fr.insee + l4qtvt71-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtvt71-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG4 + + + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtvt71-CI-0-IP-1) or l4qtvt71-CI-0-IP-1="" + + + + + fr.insee + lv3w60ed-CI-0 + 1 + + ADOPT_ENFLOG4 non renseigné + + + ADOPT_ENFLOG4 non renseigné + + + fr.insee + lv3w60ed-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3w60ed-CI-0-IP-1 + 1 + + ADOPT_ENFLOG4 + + + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + OutParameter + + + fr.insee + lv3w60ed-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3w60ed-CI-0-IP-1) or lv3w60ed-CI-0-IP-1="" + + + + + fr.insee + lv3w2pql-CI-0 + 1 + + ANADOPT_ENFLOG4 non renseignée + + + ANADOPT_ENFLOG4 non renseignée + + + fr.insee + lv3w2pql-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3w2pql-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG4 + + + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-0-IP-1 + 1 + InParameter + + + isnull(lv3w2pql-CI-0-IP-1) or lv3w2pql-CI-0-IP-1="" + + + + + fr.insee + lv3w2pql-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3w2pql-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3w2pql-CI-1-IP-1 + 1 + + ANAI_ENFLOG4 + + + + fr.insee + lv3w2pql-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG4 + + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv3w2pql-CI-1-IP-2)) and not(isnull(lv3w2pql-CI-1-IP-1)) and cast(lv3w2pql-CI-1-IP-2,integer) < cast(lv3w2pql-CI-1-IP-1,integer)) + + + + + fr.insee + lv3w2pql-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv3w2pql-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3w2pql-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3w2pql-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv3w2pql-CI-2-IP-2)) and not(isnull(lv3w2pql-CI-2-IP-1)) and cast(lv3w2pql-CI-2-IP-2,integer) < lv3w2pql-CI-2-IP-1) + + + + + fr.insee + lv3w2pql-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv3w2pql-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv3w2pql-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv3w2pql-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv3w2pql-CI-3-IP-2)) and not(isnull(lv3w2pql-CI-3-IP-1)) and (lv3w2pql-CI-3-IP-1 + 15 > cast(lv3w2pql-CI-3-IP-2,integer))) + + + + + fr.insee + l4ler7fu-CI-0 + 1 + + PARENT_VIT_ENFLOG4 non renseigné + + + PARENT_VIT_ENFLOG4 non renseigné + + + fr.insee + l4ler7fu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ler7fu-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ler7fu-CI-0-IP-1) or l4ler7fu-CI-0-IP-1="" + + + + + fr.insee + l4lemegm-CI-0 + 1 + + PARENT_FR_ENFLOG4 non renseigné + + + PARENT_FR_ENFLOG4 non renseigné + + + fr.insee + l4lemegm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lemegm-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lemegm-CI-0-IP-1) or l4lemegm-CI-0-IP-1="" + + + + + fr.insee + l4paz6m4-CI-0 + 1 + + PARENT_COM_ENFLOG4 non renseigné + + + PARENT_COM_ENFLOG4 non renseigné + + + fr.insee + l4paz6m4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4paz6m4-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG4 + + + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4paz6m4-CI-0-IP-1) or l4paz6m4-CI-0-IP-1="" + + + + + fr.insee + l4payjff-CI-0 + 1 + + PARENT_DEP_ENFLOG4 non renseigné + + + PARENT_DEP_ENFLOG4 non renseigné + + + fr.insee + l4payjff-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4payjff-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG4 + + + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff-CI-0-IP-1 + 1 + InParameter + + + isnull(l4payjff-CI-0-IP-1) or l4payjff-CI-0-IP-1="" + + + + + fr.insee + l4pbax4x-CI-0 + 1 + + PARENT_PAY_ENFLOG4 non renseigné + + + PARENT_PAY_ENFLOG4 non renseigné + + + fr.insee + l4pbax4x-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pbax4x-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG4 + + + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pbax4x-CI-0-IP-1) or l4pbax4x-CI-0-IP-1="" + + + + + fr.insee + l4letwtq-CI-0 + 1 + + PARENT_FREQ_ENFLOG4 non renseigné + + + PARENT_FREQ_ENFLOG4 non renseigné + + + fr.insee + l4letwtq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4letwtq-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG4 + + + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4letwtq-CI-0-IP-1) or l4letwtq-CI-0-IP-1 ="" + + + + + fr.insee + l4letk9j-CI-0 + 1 + + PARENT_DORT_ENFLOG4 non renseigné + + + PARENT_DORT_ENFLOG4 non renseigné + + + fr.insee + l4letk9j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4letk9j-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG4 + + + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j-CI-0-IP-1 + 1 + InParameter + + + isnull(l4letk9j-CI-0-IP-1) or l4letk9j-CI-0-IP-1="" + + + + + fr.insee + l4lekh2t-CI-0 + 1 + + PARENT_VECU_ENFLOG4 non renseigné + + + PARENT_VECU_ENFLOG4 non renseigné + + + fr.insee + l4lekh2t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lekh2t-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG4 + + + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lekh2t-CI-0-IP-1) or l4lekh2t-CI-0-IP-1="" + + + + + fr.insee + la6y7rno-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG4 non renseigné + + + + SEP_AUT_PAR_ENFLOG4 non renseigné + + + + fr.insee + la6y7rno-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y7rno-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y7rno-CI-0-IP-1) or la6y7rno-CI-0-IP-1="" + + + + + fr.insee + l4lexatl-CI-0 + 1 + + RESID_ENFLOG4 non renseigné + + + RESID_ENFLOG4 non renseigné + + + fr.insee + l4lexatl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lexatl-CI-0-IP-1 + 1 + + RESID_ENFLOG4 + + + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lexatl-CI-0-IP-1) or l4lexatl-CI-0-IP-1="" + + + + + fr.insee + l4lec2qz-CI-0 + 1 + + SANTE_ENFLOG4 non renseigné + + + SANTE_ENFLOG4 non renseigné + + + fr.insee + l4lec2qz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lec2qz-CI-0-IP-1 + 1 + + SANTE_ENFLOG4 + + + + + fr.insee + l4lec2qz-QOP-lvgntssj + 1 + OutParameter + + + fr.insee + l4lec2qz-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lec2qz-CI-0-IP-1) or l4lec2qz-CI-0-IP-1="" + + + + + fr.insee + lvgnp3j5-CI-0 + 1 + + ASE_ENFLOG4 non renseignée + + + ASE_ENFLOG4 non renseignée + + + fr.insee + lvgnp3j5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgnp3j5-CI-0-IP-1 + 1 + + ASE_ENFLOG4 + + + + + fr.insee + lvgnp3j5-QOP-lvgnuf33 + 1 + OutParameter + + + fr.insee + lvgnp3j5-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgnp3j5-CI-0-IP-1) or lvgnp3j5-CI-0-IP-1="" + + + + + fr.insee + l4leulqw-CI-0 + 1 + + PRENOM_ENFLOG5 non renseigné + + + PRENOM_ENFLOG5 non renseigné + + + fr.insee + l4leulqw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4leulqw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG5 + + + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4leulqw-CI-0-IP-1) or l4leulqw-CI-0-IP-1="" + + + + + fr.insee + l4lem0yg-CI-0 + 1 + + SEXE_ENFLOG5 non renseigné + + + SEXE_ENFLOG5 non renseigné + + + fr.insee + l4lem0yg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lem0yg-CI-0-IP-1 + 1 + + SEXE_ENFLOG5 + + + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lem0yg-CI-0-IP-1) or l4lem0yg-CI-0-IP-1="" + + + + + fr.insee + l4lffj1f-CI-0 + 1 + + ANAI_ENFLOG5 non renseigné + + + ANAI_ENFLOG5 non renseigné + + + fr.insee + l4lffj1f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-0-IP-1 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lffj1f-CI-0-IP-1) or l4lffj1f-CI-0-IP-1 ="" + + + + + fr.insee + l4lffj1f-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4lffj1f-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lffj1f-CI-1-IP-2 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lffj1f-CI-1-IP-2)) and not(isnull(l4lffj1f-CI-1-IP-1)) and cast(l4lffj1f-CI-1-IP-2,integer) < l4lffj1f-CI-1-IP-1) + + + + + fr.insee + l4lffj1f-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4lffj1f-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lffj1f-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lffj1f-CI-2-IP-2 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4lffj1f-CI-2-IP-2)) and not(isnull(l4lffj1f-CI-2-IP-1)) and (l4lffj1f-CI-2-IP-1 + 15 > cast(l4lffj1f-CI-2-IP-2,integer))) + + + + + fr.insee + l4qtm8di-CI-0 + 1 + + NEFRANCE_ENFLOG5 non renseigné + + + NEFRANCE_ENFLOG5 non renseigné + + + fr.insee + l4qtm8di-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4qtm8di-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG5 + + + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di-CI-0-IP-1 + 1 + InParameter + + + isnull(l4qtm8di-CI-0-IP-1) or l4qtm8di-CI-0-IP-1="" + + + + + fr.insee + lv5dkuad-CI-0 + 1 + + ADOPT_ENFLOG5 non renseigné + + + ADOPT_ENFLOG5 non renseigné + + + fr.insee + lv5dkuad-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv5dkuad-CI-0-IP-1 + 1 + + ADOPT_ENFLOG5 + + + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + OutParameter + + + fr.insee + lv5dkuad-CI-0-IP-1 + 1 + InParameter + + + isnull(lv5dkuad-CI-0-IP-1) or lv5dkuad-CI-0-IP-1="" + + + + + fr.insee + lv5db081-CI-0 + 1 + + ANADOPT_ENFLOG5 non renseignée + + + ANADOPT_ENFLOG5 non renseignée + + + fr.insee + lv5db081-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv5db081-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG5 + + + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081-CI-0-IP-1 + 1 + InParameter + + + isnull(lv5db081-CI-0-IP-1) or lv5db081-CI-0-IP-1="" + + + + + fr.insee + lv5db081-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv5db081-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv5db081-CI-1-IP-1 + 1 + + ANAI_ENFLOG5 + + + + fr.insee + lv5db081-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG5 + + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + lv5db081-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv5db081-CI-1-IP-2)) and not(isnull(lv5db081-CI-1-IP-1)) and cast(lv5db081-CI-1-IP-2,integer) < cast(lv5db081-CI-1-IP-1,integer)) + + + + + fr.insee + lv5db081-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv5db081-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv5db081-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv5db081-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv5db081-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv5db081-CI-2-IP-2)) and not(isnull(lv5db081-CI-2-IP-1)) and cast(lv5db081-CI-2-IP-2,integer) < lv5db081-CI-2-IP-1) + + + + + fr.insee + lv5db081-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv5db081-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv5db081-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv5db081-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv5db081-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv5db081-CI-3-IP-2)) and not(isnull(lv5db081-CI-3-IP-1)) and (lv5db081-CI-3-IP-1 + 15 > cast(lv5db081-CI-3-IP-2,integer))) + + + + + fr.insee + l4lfye1g-CI-0 + 1 + + PARENT_VIT_ENFLOG5 non renseigné + + + PARENT_VIT_ENFLOG5 non renseigné + + + fr.insee + l4lfye1g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfye1g-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfye1g-CI-0-IP-1) or l4lfye1g-CI-0-IP-1= "" + + + + + fr.insee + l4lfoek4-CI-0 + 1 + + PARENT_FR_ENFLOG5 non renseigné + + + PARENT_FR_ENFLOG5 non renseigné + + + fr.insee + l4lfoek4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfoek4-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfoek4-CI-0-IP-1) or l4lfoek4-CI-0-IP-1="" + + + + + fr.insee + l4paw4ax-CI-0 + 1 + + PARENT_COM_ENFLOG5 non renseigné + + + PARENT_COM_ENFLOG5 non renseigné + + + fr.insee + l4paw4ax-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4paw4ax-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG5 + + + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax-CI-0-IP-1 + 1 + InParameter + + + isnull(l4paw4ax-CI-0-IP-1) or l4paw4ax-CI-0-IP-1="" + + + + + fr.insee + l4pauqgi-CI-0 + 1 + + PARENT_DEP_ENFLOG5 non renseigné + + + PARENT_DEP_ENFLOG5 non renseigné + + + fr.insee + l4pauqgi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pauqgi-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG5 + + + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pauqgi-CI-0-IP-1) or l4pauqgi-CI-0-IP-1 ="" + + + + + fr.insee + l4pb234a-CI-0 + 1 + + PARENT_PAY_ENFLOG5 non renseigné + + + PARENT_PAY_ENFLOG5 non renseigné + + + fr.insee + l4pb234a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4pb234a-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG5 + + + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a-CI-0-IP-1 + 1 + InParameter + + + isnull(l4pb234a-CI-0-IP-1) or l4pb234a-CI-0-IP-1 ="" + + + + + fr.insee + l8n262ck-CI-0 + 1 + + PARENT_FREQ_ENFLOG5 non renseigné + + + PARENT_FREQ_ENFLOG5 non renseigné + + + fr.insee + l8n262ck-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n262ck-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG5 + + + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n262ck-CI-0-IP-1) or l8n262ck-CI-0-IP-1="" + + + + + fr.insee + l4lfr4qa-CI-0 + 1 + + PARENT_DORT_ENFLOG5 non renseigné + + + PARENT_DORT_ENFLOG5 non renseigné + + + fr.insee + l4lfr4qa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfr4qa-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG5 + + + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfr4qa-CI-0-IP-1) or l4lfr4qa-CI-0-IP-1="" + + + + + fr.insee + l4lfvape-CI-0 + 1 + + PARENT_VECU_ENFLOG5 non renseigné + + + PARENT_VECU_ENFLOG5 non renseigné + + + fr.insee + l4lfvape-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfvape-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG5 + + + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfvape-CI-0-IP-1) or l4lfvape-CI-0-IP-1="" + + + + + fr.insee + la6yfjnf-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG5 non renseigné + + + SEP_AUT_PAR_ENFLOG5 non renseigné + + + fr.insee + la6yfjnf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6yfjnf-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf-CI-0-IP-1 + 1 + InParameter + + + isnull(la6yfjnf-CI-0-IP-1) or la6yfjnf-CI-0-IP-1="" + + + + + fr.insee + l4lg25av-CI-0 + 1 + + RESID_ENFLOG5 non renseigné + + + RESID_ENFLOG5 non renseigné + + + fr.insee + l4lg25av-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg25av-CI-0-IP-1 + 1 + + RESID_ENFLOG5 + + + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg25av-CI-0-IP-1) or l4lg25av-CI-0-IP-1="" + + + + + fr.insee + l4lfclty-CI-0 + 1 + + SANTE_ENFLOG5 non renseigné + + + SANTE_ENFLOG5 non renseigné + + + fr.insee + l4lfclty-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfclty-CI-0-IP-1 + 1 + + SANTE_ENFLOG5 + + + + + fr.insee + l4lfclty-QOP-lvgo6ny4 + 1 + OutParameter + + + fr.insee + l4lfclty-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfclty-CI-0-IP-1) or l4lfclty-CI-0-IP-1="" + + + + + fr.insee + lvgo5arn-CI-0 + 1 + + ASE_ENFLOG5 non renseignée + + + ASE_ENFLOG5 non renseignée + + + fr.insee + lvgo5arn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgo5arn-CI-0-IP-1 + 1 + + ASE_ENFLOG5 + + + + + fr.insee + lvgo5arn-QOP-lvgob02e + 1 + OutParameter + + + fr.insee + lvgo5arn-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgo5arn-CI-0-IP-1) or lvgo5arn-CI-0-IP-1="" + + + + + fr.insee + l8n2umnw-CI-0 + 1 + + PRENOM_ENFLOG6 non renseigné + + + PRENOM_ENFLOG6 non renseigné + + + fr.insee + l8n2umnw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2umnw-CI-0-IP-1 + 1 + + PRENOM_ENFLOG6 + + + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2umnw-CI-0-IP-1) or l8n2umnw-CI-0-IP-1="" + + + + + fr.insee + l8n2e1mr-CI-0 + 1 + + SEXE_ENFLOG6 non renseigné + + + SEXE_ENFLOG6 non renseigné + + + fr.insee + l8n2e1mr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2e1mr-CI-0-IP-1 + 1 + + SEXE_ENFLOG6 + + + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2e1mr-CI-0-IP-1) or l8n2e1mr-CI-0-IP-1="" + + + + + fr.insee + l8n2lctv-CI-0 + 1 + + ANAI_ENFLOG6 non renseigné + + + ANAI_ENFLOG6 non renseigné + + + fr.insee + l8n2lctv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-0-IP-1 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2lctv-CI-0-IP-1) or l8n2lctv-CI-0-IP-1="" + + + + + fr.insee + l8n2lctv-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8n2lctv-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n2lctv-CI-1-IP-2 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8n2lctv-CI-1-IP-2)) and not(isnull(l8n2lctv-CI-1-IP-1)) and cast(l8n2lctv-CI-1-IP-2,integer) < l8n2lctv-CI-1-IP-1) + + + + + fr.insee + l8n2lctv-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8n2lctv-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2lctv-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n2lctv-CI-2-IP-2 + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8n2lctv-CI-2-IP-2)) and not(isnull(l8n2lctv-CI-2-IP-1)) and (l8n2lctv-CI-2-IP-1 + 15 > cast(l8n2lctv-CI-2-IP-2,integer))) + + + + + fr.insee + l8n2gmuq-CI-0 + 1 + + NEFRANCE_ENFLOG6 non renseigné + + + NEFRANCE_ENFLOG6 non renseigné + + + fr.insee + l8n2gmuq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2gmuq-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG6 + + + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2gmuq-CI-0-IP-1) or l8n2gmuq-CI-0-IP-1="" + + + + + fr.insee + lv6b9lq6-CI-0 + 1 + + ADOPT_ENFLOG6 non renseigné + + + ADOPT_ENFLOG6 non renseigné + + + fr.insee + lv6b9lq6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6b9lq6-CI-0-IP-1 + 1 + + ADOPT_ENFLOG6 + + + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + OutParameter + + + fr.insee + lv6b9lq6-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6b9lq6-CI-0-IP-1) or lv6b9lq6-CI-0-IP-1="" + + + + + fr.insee + lv6bv1fo-CI-0 + 1 + + ANADOPT_ENFLOG6 non renseignée + + + ANADOPT_ENFLOG6 non renseignée + + + fr.insee + lv6bv1fo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6bv1fo-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG6 + + + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6bv1fo-CI-0-IP-1) or lv6bv1fo-CI-0-IP-1="" + + + + + fr.insee + lv6bv1fo-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6bv1fo-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6bv1fo-CI-1-IP-1 + 1 + + ANAI_ENFLOG6 + + + + fr.insee + lv6bv1fo-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG6 + + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6bv1fo-CI-1-IP-2)) and not(isnull(lv6bv1fo-CI-1-IP-1)) and cast(lv6bv1fo-CI-1-IP-2,integer) < cast(lv6bv1fo-CI-1-IP-1,integer)) + + + + + fr.insee + lv6bv1fo-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6bv1fo-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6bv1fo-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6bv1fo-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6bv1fo-CI-2-IP-2)) and not(isnull(lv6bv1fo-CI-2-IP-1)) and cast(lv6bv1fo-CI-2-IP-2,integer) < lv6bv1fo-CI-2-IP-1) + + + + + fr.insee + lv6bv1fo-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6bv1fo-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6bv1fo-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6bv1fo-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6bv1fo-CI-3-IP-2)) and not(isnull(lv6bv1fo-CI-3-IP-1)) and (lv6bv1fo-CI-3-IP-1 + 15 > cast(lv6bv1fo-CI-3-IP-2,integer))) + + + + + fr.insee + l8n2ilpb-CI-0 + 1 + + PARENT_VIT_ENFLOG6 non renseigné + + + PARENT_VIT_ENFLOG6 non renseigné + + + fr.insee + l8n2ilpb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2ilpb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2ilpb-CI-0-IP-1) or l8n2ilpb-CI-0-IP-1="" + + + + + fr.insee + l8n1zy7o-CI-0 + 1 + + PARENT_FR_ENFLOG6 non renseigné + + + PARENT_FR_ENFLOG6 non renseigné + + + fr.insee + l8n1zy7o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1zy7o-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1zy7o-CI-0-IP-1) or l8n1zy7o-CI-0-IP-1="" + + + + + fr.insee + l8n1u6yt-CI-0 + 1 + + PARENT_COM_ENFLOG6 non renseigné + + + PARENT_COM_ENFLOG6 non renseigné + + + fr.insee + l8n1u6yt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1u6yt-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG6 + + + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1u6yt-CI-0-IP-1) or l8n1u6yt-CI-0-IP-1="" + + + + + fr.insee + l8n2awb0-CI-0 + 1 + + PARENT_DEP_ENFLOG6 non renseigné + + + PARENT_DEP_ENFLOG6 non renseigné + + + fr.insee + l8n2awb0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2awb0-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG6 + + + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2awb0-CI-0-IP-1) or l8n2awb0-CI-0-IP-1="" + + + + + fr.insee + l8n20r8i-CI-0 + 1 + + PARENT_PAY_ENFLOG6 non renseigné + + + PARENT_PAY_ENFLOG6 non renseigné + + + fr.insee + l8n20r8i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n20r8i-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG6 + + + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n20r8i-CI-0-IP-1) or l8n20r8i-CI-0-IP-1="" + + + + + fr.insee + l4lfnqiq-CI-0 + 1 + + PARENT_FREQ_ENFLOG6 non renseigné + + + PARENT_FREQ_ENFLOG6 non renseigné + + + fr.insee + l4lfnqiq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lfnqiq-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG6 + + + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lfnqiq-CI-0-IP-1) or l4lfnqiq-CI-0-IP-1="" + + + + + fr.insee + l8n29jww-CI-0 + 1 + + PARENT_DORT_ENFLOG6 non renseigné + + + PARENT_DORT_ENFLOG6 non renseigné + + + fr.insee + l8n29jww-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n29jww-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG6 + + + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n29jww-CI-0-IP-1) or l8n29jww-CI-0-IP-1="" + + + + + fr.insee + l8n1p0yj-CI-0 + 1 + + PARENT_VECU_ENFLOG6 non renseigné + + + PARENT_VECU_ENFLOG6 non renseigné + + + fr.insee + l8n1p0yj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1p0yj-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG6 + + + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1p0yj-CI-0-IP-1) or l8n1p0yj-CI-0-IP-1="" + + + + + fr.insee + la6y7ni0-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG6 non renseigné + + + SEP_AUT_PAR_ENFLOG6 non renseigné + + + fr.insee + la6y7ni0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y7ni0-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y7ni0-CI-0-IP-1) or la6y7ni0-CI-0-IP-1="" + + + + + fr.insee + l8n1u2kg-CI-0 + 1 + + RESID_ENFLOG6 non renseigné + + + RESID_ENFLOG6 non renseigné + + + fr.insee + l8n1u2kg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n1u2kg-CI-0-IP-1 + 1 + + RESID_ENFLOG6 + + + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n1u2kg-CI-0-IP-1) or l8n1u2kg-CI-0-IP-1 ="" + + + + + fr.insee + l8n2hdgw-CI-0 + 1 + + SANTE_ENFLOG6 non renseigné + + + SANTE_ENFLOG6 non renseigné + + + fr.insee + l8n2hdgw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2hdgw-CI-0-IP-1 + 1 + + SANTE_ENFLOG6 + + + + + fr.insee + l8n2hdgw-QOP-lvgnv3bn + 1 + OutParameter + + + fr.insee + l8n2hdgw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2hdgw-CI-0-IP-1) or l8n2hdgw-CI-0-IP-1="" + + + + + fr.insee + lvgnrib2-CI-0 + 1 + + ASE_ENFLOG6 non renseignée + + + ASE_ENFLOG6 non renseignée + + + fr.insee + lvgnrib2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgnrib2-CI-0-IP-1 + 1 + + ASE_ENFLOG6 + + + + + fr.insee + lvgnrib2-QOP-lvgo6nvx + 1 + OutParameter + + + fr.insee + lvgnrib2-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgnrib2-CI-0-IP-1) or lvgnrib2-CI-0-IP-1="" + + + + + fr.insee + l8n3pb4f-CI-0 + 1 + + PRENOM_ENFLOG7 non renseigné + + + PRENOM_ENFLOG7 non renseigné + + + fr.insee + l8n3pb4f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3pb4f-CI-0-IP-1 + 1 + + PRENOM_ENFLOG7 + + + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3pb4f-CI-0-IP-1) or l8n3pb4f-CI-0-IP-1="" + + + + + fr.insee + l8n3mik2-CI-0 + 1 + + SEXE_ENFLOG7 non renseigné + + + SEXE_ENFLOG7 non renseigné + + + fr.insee + l8n3mik2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3mik2-CI-0-IP-1 + 1 + + SEXE_ENFLOG7 + + + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3mik2-CI-0-IP-1) or l8n3mik2-CI-0-IP-1="" + + + + + fr.insee + l8n3jmk8-CI-0 + 1 + + ANAI_ENFLOG7 non renseigné + + + ANAI_ENFLOG7 non renseigné + + + fr.insee + l8n3jmk8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-0-IP-1 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3jmk8-CI-0-IP-1) or l8n3jmk8-CI-0-IP-1="" + + + + + fr.insee + l8n3jmk8-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8n3jmk8-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3jmk8-CI-1-IP-2 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8n3jmk8-CI-1-IP-2)) and not(isnull(l8n3jmk8-CI-1-IP-1)) and (l8n3jmk8-CI-1-IP-1 + 15 > cast(l8n3jmk8-CI-1-IP-2,integer))) + + + + + fr.insee + l8n3jmk8-CI-2 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8n3jmk8-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3jmk8-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3jmk8-CI-2-IP-2 + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8n3jmk8-CI-2-IP-2)) and not(isnull(l8n3jmk8-CI-2-IP-1)) and cast(l8n3jmk8-CI-2-IP-2,integer) < l8n3jmk8-CI-2-IP-1) + + + + + fr.insee + l8n36fv3-CI-0 + 1 + + NEFRANCE_ENFLOG7 non renseigné + + + NEFRANCE_ENFLOG7 non renseigné + + + fr.insee + l8n36fv3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n36fv3-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG7 + + + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n36fv3-CI-0-IP-1) or l8n36fv3-CI-0-IP-1="" + + + + + fr.insee + lv6ecg0i-CI-0 + 1 + + ADOPT_ENFLOG7 non renseigné + + + ADOPT_ENFLOG7 non renseigné + + + fr.insee + lv6ecg0i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6ecg0i-CI-0-IP-1 + 1 + + ADOPT_ENFLOG7 + + + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + OutParameter + + + fr.insee + lv6ecg0i-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6ecg0i-CI-0-IP-1) or lv6ecg0i-CI-0-IP-1="" + + + + + fr.insee + lv6eqkwn-CI-0 + 1 + + ANADOPT_ENFLOG7 non renseignée + + + ANADOPT_ENFLOG7 non renseignée + + + fr.insee + lv6eqkwn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6eqkwn-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG7 + + + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6eqkwn-CI-0-IP-1) or lv6eqkwn-CI-0-IP-1="" + + + + + fr.insee + lv6eqkwn-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6eqkwn-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6eqkwn-CI-1-IP-1 + 1 + + ANAI_ENFLOG7 + + + + fr.insee + lv6eqkwn-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG7 + + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6eqkwn-CI-1-IP-2)) and not(isnull(lv6eqkwn-CI-1-IP-1)) and cast(lv6eqkwn-CI-1-IP-2,integer) < cast(lv6eqkwn-CI-1-IP-1,integer)) + + + + + fr.insee + lv6eqkwn-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6eqkwn-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6eqkwn-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6eqkwn-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6eqkwn-CI-2-IP-2)) and not(isnull(lv6eqkwn-CI-2-IP-1)) and cast(lv6eqkwn-CI-2-IP-2,integer) < lv6eqkwn-CI-2-IP-1) + + + + + fr.insee + lv6eqkwn-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6eqkwn-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6eqkwn-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6eqkwn-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6eqkwn-CI-3-IP-2)) and not(isnull(lv6eqkwn-CI-3-IP-1)) and (lv6eqkwn-CI-3-IP-1 + 15 > cast(lv6eqkwn-CI-3-IP-2,integer))) + + + + + fr.insee + l8n3ff6s-CI-0 + 1 + + PARENT_VIT_ENFLOG7 non renseigné + + + PARENT_VIT_ENFLOG7 non renseigné + + + fr.insee + l8n3ff6s-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ff6s-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ff6s-CI-0-IP-1) or l8n3ff6s-CI-0-IP-1="" + + + + + fr.insee + l8n3b7uo-CI-0 + 1 + + PARENT_FR_ENFLOG7 non renseigné + + + PARENT_FR_ENFLOG7 non renseigné + + + fr.insee + l8n3b7uo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3b7uo-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3b7uo-CI-0-IP-1) or l8n3b7uo-CI-0-IP-1="" + + + + + fr.insee + l8n3485v-CI-0 + 1 + + PARENT_COM_ENFLOG7 non renseigné + + + PARENT_COM_ENFLOG7 non renseigné + + + fr.insee + l8n3485v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3485v-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG7 + + + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3485v-CI-0-IP-1) or l8n3485v-CI-0-IP-1="" + + + + + fr.insee + l8n3fzap-CI-0 + 1 + + PARENT_DEP_ENFLOG7 non renseigné + + + PARENT_DEP_ENFLOG7 non renseigné + + + fr.insee + l8n3fzap-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3fzap-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG7 + + + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3fzap-CI-0-IP-1) or l8n3fzap-CI-0-IP-1="" + + + + + fr.insee + l8n3burz-CI-0 + 1 + + PARENT_PAY_ENFLOG7 non renseigné + + + PARENT_PAY_ENFLOG7 non renseigné + + + fr.insee + l8n3burz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3burz-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG7 + + + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3burz-CI-0-IP-1) or l8n3burz-CI-0-IP-1="" + + + + + fr.insee + l8n32xk9-CI-0 + 1 + + PARENT_FREQ_ENFLOG7 non renseigné + + + PARENT_FREQ_ENFLOG7 non renseigné + + + fr.insee + l8n32xk9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n32xk9-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG7 + + + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n32xk9-CI-0-IP-1) or l8n32xk9-CI-0-IP-1="" + + + + + fr.insee + l8n2x7q4-CI-0 + 1 + + PARENT_DORT_ENFLOG7 non renseigné + + + PARENT_DORT_ENFLOG7 non renseigné + + + fr.insee + l8n2x7q4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2x7q4-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG7 + + + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2x7q4-CI-0-IP-1) or l8n2x7q4-CI-0-IP-1="" + + + + + fr.insee + l8n3ary8-CI-0 + 1 + + PARENT_VECU_ENFLOG7 non renseigné + + + PARENT_VECU_ENFLOG7 non renseigné + + + fr.insee + l8n3ary8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ary8-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG7 + + + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ary8-CI-0-IP-1) or l8n3ary8-CI-0-IP-1="" + + + + + fr.insee + la6y542q-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG7 non renseigné + + + SEP_AUT_PAR_ENFLOG7 non renseigné + + + fr.insee + la6y542q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6y542q-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q-CI-0-IP-1 + 1 + InParameter + + + isnull(la6y542q-CI-0-IP-1) or la6y542q-CI-0-IP-1="" + + + + + fr.insee + l8n2t39d-CI-0 + 1 + + RESID_ENFLOG7 non renseigné + + + RESID_ENFLOG7 non renseigné + + + fr.insee + l8n2t39d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n2t39d-CI-0-IP-1 + 1 + + RESID_ENFLOG7 + + + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n2t39d-CI-0-IP-1) or l8n2t39d-CI-0-IP-1="" + + + + + fr.insee + l8n3bp4o-CI-0 + 1 + + SANTE_ENFLOG7 non renseigné + + + SANTE_ENFLOG7 non renseigné + + + fr.insee + l8n3bp4o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3bp4o-CI-0-IP-1 + 1 + + SANTE_ENFLOG7 + + + + + fr.insee + l8n3bp4o-QOP-lvgqcrys + 1 + OutParameter + + + fr.insee + l8n3bp4o-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3bp4o-CI-0-IP-1) or l8n3bp4o-CI-0-IP-1="" + + + + + fr.insee + lvgp60q8-CI-0 + 1 + + ASE_ENFLOG7 non renseignée + + + ASE_ENFLOG7 non renseignée + + + fr.insee + lvgp60q8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgp60q8-CI-0-IP-1 + 1 + + ASE_ENFLOG7 + + + + + fr.insee + lvgp60q8-QOP-lvgos8ft + 1 + OutParameter + + + fr.insee + lvgp60q8-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgp60q8-CI-0-IP-1) or lvgp60q8-CI-0-IP-1="" + + + + + fr.insee + l8n4cayp-CI-0 + 1 + + PRENOM_ENFLOG8 non renseigné + + + PRENOM_ENFLOG8 non renseigné + + + fr.insee + l8n4cayp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n4cayp-CI-0-IP-1 + 1 + + PRENOM_ENFLOG8 + + + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n4cayp-CI-0-IP-1) or l8n4cayp-CI-0-IP-1="" + + + + + fr.insee + l8n406m9-CI-0 + 1 + + SEXE_ENFLOG8 non renseigné + + + SEXE_ENFLOG8 non renseigné + + + fr.insee + l8n406m9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n406m9-CI-0-IP-1 + 1 + + SEXE_ENFLOG8 + + + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n406m9-CI-0-IP-1) or l8n406m9-CI-0-IP-1="" + + + + + fr.insee + l8n3tya0-CI-0 + 1 + + ANAI_ENFLOG8 non renseigné + + + ANAI_ENFLOG8 non renseigné + + + fr.insee + l8n3tya0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-0-IP-1 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tya0-CI-0-IP-1) or l8n3tya0-CI-0-IP-1="" + + + + + fr.insee + l8n3tya0-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8n3tya0-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3tya0-CI-1-IP-2 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8n3tya0-CI-1-IP-2)) and not(isnull(l8n3tya0-CI-1-IP-1)) and cast(l8n3tya0-CI-1-IP-2,integer) < l8n3tya0-CI-1-IP-1) + + + + + fr.insee + l8n3tya0-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8n3tya0-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tya0-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8n3tya0-CI-2-IP-2 + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8n3tya0-CI-2-IP-2)) and not(isnull(l8n3tya0-CI-2-IP-1)) and (l8n3tya0-CI-2-IP-1 + 15 > cast(l8n3tya0-CI-2-IP-2,integer))) + + + + + fr.insee + l8n3vr8b-CI-0 + 1 + + NEFRANCE_ENFLOG8 non renseigné + + + NEFRANCE_ENFLOG8 non renseigné + + + fr.insee + l8n3vr8b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3vr8b-CI-0-IP-1 + 1 + + NEFRANCE_ENFLOG8 + + + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3vr8b-CI-0-IP-1) or l8n3vr8b-CI-0-IP-1="" + + + + + fr.insee + lv6evuvu-CI-0 + 1 + + ADOPT_ENFLOG8 non renseigné + + + ADOPT_ENFLOG8 non renseigné + + + fr.insee + lv6evuvu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6evuvu-CI-0-IP-1 + 1 + + ADOPT_ENFLOG8 + + + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + OutParameter + + + fr.insee + lv6evuvu-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6evuvu-CI-0-IP-1) or lv6evuvu-CI-0-IP-1="" + + + + + fr.insee + lv6ev10t-CI-0 + 1 + + ANADOPT_ENFLOG8 non renseignée + + + ANADOPT_ENFLOG8 non renseignée + + + fr.insee + lv6ev10t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6ev10t-CI-0-IP-1 + 1 + + ANADOPT_ENFLOG8 + + + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6ev10t-CI-0-IP-1) or lv6ev10t-CI-0-IP-1="" + + + + + fr.insee + lv6ev10t-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6ev10t-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6ev10t-CI-1-IP-1 + 1 + + ANAI_ENFLOG8 + + + + fr.insee + lv6ev10t-CI-1-IP-2 + 1 + + ANADOPT_ENFLOG8 + + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6ev10t-CI-1-IP-2)) and not(isnull(lv6ev10t-CI-1-IP-1)) and cast(lv6ev10t-CI-1-IP-2,integer) < cast(lv6ev10t-CI-1-IP-1,integer)) + + + + + fr.insee + lv6ev10t-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6ev10t-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6ev10t-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6ev10t-CI-2-IP-2 + 1 + + ANADOPT_ENFLOG8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6ev10t-CI-2-IP-2)) and not(isnull(lv6ev10t-CI-2-IP-1)) and cast(lv6ev10t-CI-2-IP-2,integer) < lv6ev10t-CI-2-IP-1) + + + + + fr.insee + lv6ev10t-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6ev10t-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6ev10t-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6ev10t-CI-3-IP-2 + 1 + + ANADOPT_ENFLOG8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6ev10t-CI-3-IP-2)) and not(isnull(lv6ev10t-CI-3-IP-1)) and (lv6ev10t-CI-3-IP-1 + 15 > cast(lv6ev10t-CI-3-IP-2,integer))) + + + + + fr.insee + l8n427a2-CI-0 + 1 + + PARENT_VIT_ENFLOG8 non renseigné + + + PARENT_VIT_ENFLOG8 non renseigné + + + fr.insee + l8n427a2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n427a2-CI-0-IP-1 + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n427a2-CI-0-IP-1) or l8n427a2-CI-0-IP-1="" + + + + + fr.insee + l8n41hvu-CI-0 + 1 + + PARENT_FR_ENFLOG8 non renseigné + + + PARENT_FR_ENFLOG8 non renseigné + + + fr.insee + l8n41hvu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n41hvu-CI-0-IP-1 + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n41hvu-CI-0-IP-1) or l8n41hvu-CI-0-IP-1="" + + + + + fr.insee + l8n3tbmd-CI-0 + 1 + + PARENT_COM_ENFLOG8 non renseigné + + + PARENT_COM_ENFLOG8 non renseigné + + + fr.insee + l8n3tbmd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tbmd-CI-0-IP-1 + 1 + + PARENT_COM_ENFLOG8 + + + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tbmd-CI-0-IP-1) or l8n3tbmd-CI-0-IP-1="" + + + + + fr.insee + l8n41c78-CI-0 + 1 + + PARENT_DEP_ENFLOG8 non renseigné + + + PARENT_DEP_ENFLOG8 non renseigné + + + fr.insee + l8n41c78-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n41c78-CI-0-IP-1 + 1 + + PARENT_DEP_ENFLOG8 + + + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n41c78-CI-0-IP-1) or l8n41c78-CI-0-IP-1="" + + + + + fr.insee + l8n40r7t-CI-0 + 1 + + PARENT_PAY_ENFLOG8 non renseigné + + + PARENT_PAY_ENFLOG8 non renseigné + + + fr.insee + l8n40r7t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n40r7t-CI-0-IP-1 + 1 + + PARENT_PAY_ENFLOG8 + + + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n40r7t-CI-0-IP-1) or l8n40r7t-CI-0-IP-1="" + + + + + fr.insee + l8n3fpp7-CI-0 + 1 + + PARENT_FREQ_ENFLOG8 non renseigné + + + PARENT_FREQ_ENFLOG8 non renseigné + + + fr.insee + l8n3fpp7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3fpp7-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFLOG8 + + + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3fpp7-CI-0-IP-1) or l8n3fpp7-CI-0-IP-1="" + + + + + fr.insee + l8n3xb0z-CI-0 + 1 + + PARENT_DORT_ENFLOG8 non renseigné + + + PARENT_DORT_ENFLOG8 non renseigné + + + fr.insee + l8n3xb0z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3xb0z-CI-0-IP-1 + 1 + + PARENT_DORT_ENFLOG8 + + + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3xb0z-CI-0-IP-1) or l8n3xb0z-CI-0-IP-1="" + + + + + fr.insee + l8n3tjlw-CI-0 + 1 + + PARENT_VECU_ENFLOG8 non renseigné + + + PARENT_VECU_ENFLOG8 non renseigné + + + fr.insee + l8n3tjlw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3tjlw-CI-0-IP-1 + 1 + + PARENT_VECU_ENFLOG8 + + + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3tjlw-CI-0-IP-1) or l8n3tjlw-CI-0-IP-1="" + + + + + fr.insee + la6v947r-CI-0 + 1 + + SEP_AUT_PAR_ENFLOG8 non renseigné + + + SEP_AUT_PAR_ENFLOG8 non renseigné + + + fr.insee + la6v947r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + la6v947r-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r-CI-0-IP-1 + 1 + InParameter + + + isnull(la6v947r-CI-0-IP-1) or la6v947r-CI-0-IP-1="" + + + + + fr.insee + l8n3ocd5-CI-0 + 1 + + RESID_ENFLOG8 non renseigné + + + RESID_ENFLOG8 non renseigné + + + fr.insee + l8n3ocd5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3ocd5-CI-0-IP-1 + 1 + + RESID_ENFLOG8 + + + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3ocd5-CI-0-IP-1) or l8n3ocd5-CI-0-IP-1="" + + + + + fr.insee + l8n3uqr2-CI-0 + 1 + + SANTE_ENFLOG8 non renseigné + + + SANTE_ENFLOG8 non renseigné + + + fr.insee + l8n3uqr2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8n3uqr2-CI-0-IP-1 + 1 + + SANTE_ENFLOG8 + + + + + fr.insee + l8n3uqr2-QOP-lvgqdlet + 1 + OutParameter + + + fr.insee + l8n3uqr2-CI-0-IP-1 + 1 + InParameter + + + isnull(l8n3uqr2-CI-0-IP-1) or l8n3uqr2-CI-0-IP-1="" + + + + + fr.insee + lvgp89uy-CI-0 + 1 + + ASE_ENFLOG8 non renseignée + + + ASE_ENFLOG8 non renseignée + + + fr.insee + lvgp89uy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgp89uy-CI-0-IP-1 + 1 + + ASE_ENFLOG8 + + + + + fr.insee + lvgp89uy-QOP-lvgpfso0 + 1 + OutParameter + + + fr.insee + lvgp89uy-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgp89uy-CI-0-IP-1) or lvgp89uy-CI-0-IP-1="" + + + + + fr.insee + l4idug6p-CI-0 + 1 + + PRENOM_ENFAIL1 non renseigné + + + PRENOM_ENFAIL1 non renseigné + + + fr.insee + l4idug6p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4idug6p-CI-0-IP-1 + 1 + + PRENOM_ENFAIL1 + + + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4idug6p-CI-0-IP-1) or l4idug6p-CI-0-IP-1="" + + + + + fr.insee + kwqix1j5-CI-0 + 1 + + SEXE_ENFAIL1 non renseigné + + + SEXE_ENFAIL1 non renseigné + + + fr.insee + kwqix1j5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqix1j5-CI-0-IP-1 + 1 + + SEXE_ENFAIL1 + + + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqix1j5-CI-0-IP-1) or kwqix1j5-CI-0-IP-1="" + + + + + fr.insee + kwqj561a-CI-0 + 1 + + ANAI_ENFAIL1 non renseigné + + + ANAI_ENFAIL1 non renseigné + + + fr.insee + kwqj561a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-0-IP-1 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqj561a-CI-0-IP-1) or kwqj561a-CI-0-IP-1="" + + + + + fr.insee + kwqj561a-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + kwqj561a-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqj561a-CI-1-IP-2 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqj561a-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqj561a-CI-1-IP-2)) and not(isnull(kwqj561a-CI-1-IP-1)) and cast(kwqj561a-CI-1-IP-2,integer) < kwqj561a-CI-1-IP-1) + + + + + fr.insee + kwqj561a-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + kwqj561a-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj561a-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqj561a-CI-2-IP-2 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqj561a-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(kwqj561a-CI-2-IP-2)) and not(isnull(kwqj561a-CI-2-IP-1)) and (kwqj561a-CI-2-IP-1 + 15 > cast(kwqj561a-CI-2-IP-2,integer))) + + + + + fr.insee + l4cjlk0i-CI-0 + 1 + + NEFRANCE_ENFAIL1 non renseigné + + + NEFRANCE_ENFAIL1 non renseigné + + + fr.insee + l4cjlk0i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjlk0i-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL1 + + + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjlk0i-CI-0-IP-1) or l4cjlk0i-CI-0-IP-1="" + + + + + fr.insee + lv6fvjdh-CI-0 + 1 + + ADOPT_ENFAIL1 non renseigné + + + ADOPT_ENFAIL1 non renseigné + + + fr.insee + lv6fvjdh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6fvjdh-CI-0-IP-1 + 1 + + ADOPT_ENFAIL1 + + + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + OutParameter + + + fr.insee + lv6fvjdh-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6fvjdh-CI-0-IP-1) or lv6fvjdh-CI-0-IP-1="" + + + + + fr.insee + lv6fuaur-CI-0 + 1 + + ANADOPT_ENFAIL1 non renseignée + + + ANADOPT_ENFAIL1 non renseignée + + + fr.insee + lv6fuaur-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6fuaur-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL1 + + + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6fuaur-CI-0-IP-1) or lv6fuaur-CI-0-IP-1="" + + + + + fr.insee + lv6fuaur-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6fuaur-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6fuaur-CI-1-IP-1 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + lv6fuaur-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL1 + + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6fuaur-CI-1-IP-2)) and not(isnull(lv6fuaur-CI-1-IP-1)) and cast(lv6fuaur-CI-1-IP-2,integer) < cast(lv6fuaur-CI-1-IP-1,integer)) + + + + + fr.insee + lv6fuaur-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6fuaur-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6fuaur-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6fuaur-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6fuaur-CI-2-IP-2)) and not(isnull(lv6fuaur-CI-2-IP-1)) and cast(lv6fuaur-CI-2-IP-2,integer) < lv6fuaur-CI-2-IP-1) + + + + + fr.insee + lv6fuaur-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6fuaur-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6fuaur-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6fuaur-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6fuaur-CI-3-IP-2)) and not(isnull(lv6fuaur-CI-3-IP-1)) and (lv6fuaur-CI-3-IP-1 + 15 > cast(lv6fuaur-CI-3-IP-2,integer))) + + + + + fr.insee + l4cjivdg-CI-0 + 1 + + PARENT_VIT_ENFAIL1 non renseigné + + + PARENT_VIT_ENFAIL1 non renseigné + + + fr.insee + l4cjivdg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjivdg-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjivdg-CI-0-IP-1) or l4cjivdg-CI-0-IP-1="" + + + + + fr.insee + l8lzt19v-CI-0 + 1 + + PARENT_VECU_ENFAIL1 non renseigné + + + PARENT_VECU_ENFAIL1 non renseigné + + + fr.insee + l8lzt19v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lzt19v-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL1 + + + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lzt19v-CI-0-IP-1) or l8lzt19v-CI-0-IP-1="" + + + + + fr.insee + l4485tkr-CI-0 + 1 + + DC_ENFAIL1 non renseigné + + + DC_ENFAIL1 non renseigné + + + fr.insee + l4485tkr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4485tkr-CI-0-IP-1 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr-CI-0-IP-1 + 1 + InParameter + + + isnull(l4485tkr-CI-0-IP-1) or l4485tkr-CI-0-IP-1="" + + + + + fr.insee + kwqkh05l-CI-0 + 1 + + AG_DC_ENFAIL1 non renseigné + + + AG_DC_ENFAIL1 non renseigné + + + fr.insee + kwqkh05l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkh05l-CI-0-IP-1 + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqkh05l-CI-0-IP-1) + + + + + fr.insee + kwqkh05l-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + kwqkh05l-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkh05l-CI-1-IP-1 + 1 + + AG_ENFAIL1 + + + + fr.insee + kwqkh05l-CI-1-IP-2 + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + ltd20wke-GOP + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqkh05l-CI-1-IP-1)) and not (isnull(kwqkh05l-CI-1-IP-2)) and cast(kwqkh05l-CI-1-IP-2,integer) > cast(kwqkh05l-CI-1-IP-1,integer)) + + + + + fr.insee + kwqk3ki3-CI-0 + 1 + + AG_DEPART_ENFAIL1 non renseigné + + + AG_DEPART_ENFAIL1 non renseigné + + + fr.insee + kwqk3ki3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3ki3-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3ki3-CI-0-IP-1) + + + + + fr.insee + kwqk3ki3-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + kwqk3ki3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3ki3-CI-1-IP-1 + 1 + + AG_ENFAIL1 + + + + fr.insee + kwqk3ki3-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + ltd20wke-GOP + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqk3ki3-CI-1-IP-2)) and not(isnull(kwqk3ki3-CI-1-IP-1)) and cast(kwqk3ki3-CI-1-IP-2,integer) > cast(kwqk3ki3-CI-1-IP-1,integer)) + + + + + fr.insee + kwqkmusz-CI-0 + 1 + + PARENT_FREQ_ENFAIL1 non renseigné + + + PARENT_FREQ_ENFAIL1 non renseigné + + + fr.insee + kwqkmusz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqkmusz-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL1 + + + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqkmusz-CI-0-IP-1) or kwqkmusz-CI-0-IP-1="" + + + + + fr.insee + kwqjp9yr-CI-0 + 1 + + FR_ENFAIL1 non renseigné + + + FR_ENFAIL1 non renseigné + + + fr.insee + kwqjp9yr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqjp9yr-CI-0-IP-1 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqjp9yr-CI-0-IP-1) or kwqjp9yr-CI-0-IP-1="" + + + + + fr.insee + l4onsq99-CI-0 + 1 + + COM_ENFAIL1 non renseigné + + + COM_ENFAIL1 non renseigné + + + fr.insee + l4onsq99-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onsq99-CI-0-IP-1 + 1 + + COM_ENFAIL1 + + + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onsq99-CI-0-IP-1) or l4onsq99-CI-0-IP-1="" + + + + + fr.insee + l4onskib-CI-0 + 1 + + DEP_ENFAIL1 + + + DEP_ENFAIL1 + + + fr.insee + l4onskib-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onskib-CI-0-IP-1 + 1 + + DEP_ENFAIL1 + + + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onskib-CI-0-IP-1) or l4onskib-CI-0-IP-1="" + + + + + fr.insee + l4onsf7y-CI-0 + 1 + + PAY_ENFAIL1 non renseigné + + + PAY_ENFAIL1 non renseigné + + + fr.insee + l4onsf7y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onsf7y-CI-0-IP-1 + 1 + + PAY_ENFAIL1 + + + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onsf7y-CI-0-IP-1) or l4onsf7y-CI-0-IP-1 ="" + + + + + fr.insee + kwqk3a58-CI-0 + 1 + + LOG_ENFAIL1 non renseigné + + + LOG_ENFAIL1 non renseigné + + + fr.insee + kwqk3a58-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqk3a58-CI-0-IP-1 + 1 + + LOG_ENFAIL1 + + + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqk3a58-CI-0-IP-1) or kwqk3a58-CI-0-IP-1="" + + + + + fr.insee + l44849iu-CI-0 + 1 + + AUT_PAR_ENFAIL1 non renseigné + + + AUT_PAR_ENFAIL1 non renseigné + + + fr.insee + l44849iu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l44849iu-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL1 + + + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu-CI-0-IP-1 + 1 + InParameter + + + isnull(l44849iu-CI-0-IP-1) or l44849iu-CI-0-IP-1="" + + + + + fr.insee + kwqj7xh6-CI-0 + 1 + + DORT_ENFAIL1 non renseigné + + + DORT_ENFAIL1 non renseigné + + + fr.insee + kwqj7xh6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqj7xh6-CI-0-IP-1 + 1 + + DORT_ENFAIL1 + + + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqj7xh6-CI-0-IP-1) or kwqj7xh6-CI-0-IP-1="" + + + + + fr.insee + l4o74e6d-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL1 non renseigné + + + SEP_AUT_PAR_ENFAIL1 non renseigné + + + fr.insee + l4o74e6d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o74e6d-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o74e6d-CI-0-IP-1) or l4o74e6d-CI-0-IP-1="" + + + + + fr.insee + l1gknpsx-CI-0 + 1 + + RESID_ENFAIL1 non renseigné + + + RESID_ENFAIL1 non renseigné + + + fr.insee + l1gknpsx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gknpsx-CI-0-IP-1 + 1 + + RESID_ENFAIL1 + + + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gknpsx-CI-0-IP-1) or l1gknpsx-CI-0-IP-1="" + + + + + fr.insee + l1gi8vrf-CI-0 + 1 + + SANTE_ENFAIL1 non renseigné + + + SANTE_ENFAIL1 non renseigné + + + fr.insee + l1gi8vrf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gi8vrf-CI-0-IP-1 + 1 + + SANTE_ENFAIL1 + + + + + fr.insee + l1gi8vrf-QOP-lvgqmd1b + 1 + OutParameter + + + fr.insee + l1gi8vrf-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gi8vrf-CI-0-IP-1) or l1gi8vrf-CI-0-IP-1="" + + + + + fr.insee + lvgpkb6t-CI-0 + 1 + + ASE_ENFAIL1 non renseigné + + + ASE_ENFAIL1 non renseigné + + + fr.insee + lvgpkb6t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgpkb6t-CI-0-IP-1 + 1 + + ASE_ENFAIL1 + + + + + fr.insee + lvgpkb6t-QOP-lvgqcmjp + 1 + OutParameter + + + fr.insee + lvgpkb6t-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgpkb6t-CI-0-IP-1) or lvgpkb6t-CI-0-IP-1="" + + + + + fr.insee + l4lg1tus-CI-0 + 1 + + PRENOM_ENFAIL2 non renseigné + + + PRENOM_ENFAIL2 non renseigné + + + fr.insee + l4lg1tus-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg1tus-CI-0-IP-1 + 1 + + PRENOM_ENFAIL2 + + + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg1tus-CI-0-IP-1) or l4lg1tus-CI-0-IP-1="" + + + + + fr.insee + l4lgd8bs-CI-0 + 1 + + SEXE_ENFAIL2 non renseigné + + + SEXE_ENFAIL2 non renseigné + + + fr.insee + l4lgd8bs-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgd8bs-CI-0-IP-1 + 1 + + SEXE_ENFAIL2 + + + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgd8bs-CI-0-IP-1) or l4lgd8bs-CI-0-IP-1="" + + + + + fr.insee + l4lgjbi8-CI-0 + 1 + + ANAI_ENFAIL2 non renseigné + + + ANAI_ENFAIL2 non renseigné + + + fr.insee + l4lgjbi8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-0-IP-1 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgjbi8-CI-0-IP-1) or l4lgjbi8-CI-0-IP-1="" + + + + + fr.insee + l4lgjbi8-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4lgjbi8-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgjbi8-CI-1-IP-2 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lgjbi8-CI-1-IP-2)) and not(isnull(l4lgjbi8-CI-1-IP-1)) and cast(l4lgjbi8-CI-1-IP-2,integer) < l4lgjbi8-CI-1-IP-1) + + + + + fr.insee + l4lgjbi8-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4lgjbi8-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgjbi8-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgjbi8-CI-2-IP-2 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4lgjbi8-CI-2-IP-2)) and not(isnull(l4lgjbi8-CI-2-IP-1)) and (l4lgjbi8-CI-2-IP-1 + 15 > cast(l4lgjbi8-CI-2-IP-2,integer))) + + + + + fr.insee + l4lgtwy7-CI-0 + 1 + + NEFRANCE_ENFAIL2 non renseigné + + + NEFRANCE_ENFAIL2 non renseigné + + + fr.insee + l4lgtwy7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgtwy7-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL2 + + + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgtwy7-CI-0-IP-1) or l4lgtwy7-CI-0-IP-1="" + + + + + fr.insee + lv6g9dow-CI-0 + 1 + + ADOPT_ENFAIL2 non renseigné + + + ADOPT_ENFAIL2 non renseigné + + + fr.insee + lv6g9dow-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6g9dow-CI-0-IP-1 + 1 + + ADOPT_ENFAIL2 + + + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + OutParameter + + + fr.insee + lv6g9dow-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6g9dow-CI-0-IP-1) or lv6g9dow-CI-0-IP-1="" + + + + + fr.insee + lv6gdru6-CI-0 + 1 + + ANADOPT_ENFAIL2 non renseignée + + + ANADOPT_ENFAIL2 non renseignée + + + fr.insee + lv6gdru6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gdru6-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL2 + + + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6gdru6-CI-0-IP-1) or lv6gdru6-CI-0-IP-1="" + + + + + fr.insee + lv6gdru6-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gdru6-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gdru6-CI-1-IP-1 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + lv6gdru6-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL2 + + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6gdru6-CI-1-IP-2)) and not(isnull(lv6gdru6-CI-1-IP-1)) and cast(lv6gdru6-CI-1-IP-2,integer) < cast(lv6gdru6-CI-1-IP-1,integer)) + + + + + fr.insee + lv6gdru6-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gdru6-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gdru6-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gdru6-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6gdru6-CI-2-IP-2)) and not(isnull(lv6gdru6-CI-2-IP-1)) and cast(lv6gdru6-CI-2-IP-2,integer) < lv6gdru6-CI-2-IP-1) + + + + + fr.insee + lv6gdru6-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6gdru6-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gdru6-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gdru6-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6gdru6-CI-3-IP-2)) and not(isnull(lv6gdru6-CI-3-IP-1)) and (lv6gdru6-CI-3-IP-1 + 15 > cast(lv6gdru6-CI-3-IP-2,integer))) + + + + + fr.insee + l4lgqbdk-CI-0 + 1 + + PARENT_VIT_ENFAIL2 non renseigné + + + PARENT_VIT_ENFAIL2 non renseigné + + + fr.insee + l4lgqbdk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgqbdk-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgqbdk-CI-0-IP-1) or l4lgqbdk-CI-0-IP-1="" + + + + + fr.insee + l8lzthqx-CI-0 + 1 + + PARENT_VECU_ENFAIL2 non renseigné + + + PARENT_VECU_ENFAIL2 non renseigné + + + fr.insee + l8lzthqx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8lzthqx-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL2 + + + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx-CI-0-IP-1 + 1 + InParameter + + + isnull(l8lzthqx-CI-0-IP-1) or l8lzthqx-CI-0-IP-1="" + + + + + fr.insee + l4lh1bvw-CI-0 + 1 + + DC_ENFAIL2 non renseigné + + + DC_ENFAIL2 non renseigné + + + fr.insee + l4lh1bvw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh1bvw-CI-0-IP-1 + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh1bvw-CI-0-IP-1) or l4lh1bvw-CI-0-IP-1="" + + + + + fr.insee + l4lhc03p-CI-0 + 1 + + AG_DC_ENFAIL2 non renseigné + + + AG_DC_ENFAIL2 non renseigné + + + fr.insee + l4lhc03p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhc03p-CI-0-IP-1 + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhc03p-CI-0-IP-1) + + + + + fr.insee + l4lhc03p-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhc03p-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhc03p-CI-1-IP-1 + 1 + + AG_ENFAIL2 + + + + fr.insee + l4lhc03p-CI-1-IP-2 + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + ltd1nmcl-GOP + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhc03p-CI-1-IP-1)) and not (isnull(l4lhc03p-CI-1-IP-2)) and cast(l4lhc03p-CI-1-IP-2,integer) > cast(l4lhc03p-CI-1-IP-1,integer)) + + + + + fr.insee + l4lhkbmw-CI-0 + 1 + + AG_DEPART_ENFAIL2 non renseigné + + + AG_DEPART_ENFAIL2 non renseigné + + + fr.insee + l4lhkbmw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhkbmw-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhkbmw-CI-0-IP-1) + + + + + fr.insee + l4lhkbmw-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhkbmw-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhkbmw-CI-1-IP-1 + 1 + + AG_ENFAIL2 + + + + fr.insee + l4lhkbmw-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + ltd1nmcl-GOP + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhkbmw-CI-1-IP-2)) and not(isnull(l4lhkbmw-CI-1-IP-1)) and cast(l4lhkbmw-CI-1-IP-2,integer) > cast(l4lhkbmw-CI-1-IP-1,integer)) + + + + + fr.insee + l4liqyis-CI-0 + 1 + + PARENT_FREQ_ENFAIL2 non renseigné + + + PARENT_FREQ_ENFAIL2 non renseigné + + + fr.insee + l4liqyis-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4liqyis-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL2 + + + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis-CI-0-IP-1 + 1 + InParameter + + + isnull(l4liqyis-CI-0-IP-1) or l4liqyis-CI-0-IP-1="" + + + + + fr.insee + l4lj22ar-CI-0 + 1 + + FR_ENFAIL2 non renseigné + + + FR_ENFAIL2 non renseigné + + + fr.insee + l4lj22ar-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj22ar-CI-0-IP-1 + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj22ar-CI-0-IP-1) or l4lj22ar-CI-0-IP-1="" + + + + + fr.insee + l4oo2unu-CI-0 + 1 + + COM_ENFAIL2 non renseigné + + + COM_ENFAIL2 non renseigné + + + fr.insee + l4oo2unu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo2unu-CI-0-IP-1 + 1 + + COM_ENFAIL2 + + + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo2unu-CI-0-IP-1) or l4oo2unu-CI-0-IP-1="" + + + + + fr.insee + l4oo8gk0-CI-0 + 1 + + DEP_ENFAIL2 non renseigné + + + DEP_ENFAIL2 non renseigné + + + fr.insee + l4oo8gk0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo8gk0-CI-0-IP-1 + 1 + + DEP_ENFAIL2 + + + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo8gk0-CI-0-IP-1) or l4oo8gk0-CI-0-IP-1="" + + + + + fr.insee + l4ooebmj-CI-0 + 1 + + PAY_ENFAIL2 non renseigné + + + PAY_ENFAIL2 non renseigné + + + fr.insee + l4ooebmj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ooebmj-CI-0-IP-1 + 1 + + PAY_ENFAIL2 + + + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ooebmj-CI-0-IP-1) or l4ooebmj-CI-0-IP-1="" + + + + + fr.insee + l4liztyl-CI-0 + 1 + + LOG_ENFAIL2 non renseigné + + + LOG_ENFAIL2 non renseigné + + + fr.insee + l4liztyl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4liztyl-CI-0-IP-1 + 1 + + LOG_ENFAIL2 + + + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4liztyl-CI-0-IP-1) or l4liztyl-CI-0-IP-1="" + + + + + fr.insee + l4lk1w8p-CI-0 + 1 + + AUT_PAR_ENFAIL2non renseigné + + + AUT_PAR_ENFAIL2non renseigné + + + fr.insee + l4lk1w8p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lk1w8p-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL2 + + + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lk1w8p-CI-0-IP-1) or l4lk1w8p-CI-0-IP-1="" + + + + + fr.insee + l4ljkmaj-CI-0 + 1 + + DORT_ENFAIL2 non renseigné + + + DORT_ENFAIL2 non renseigné + + + fr.insee + l4ljkmaj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljkmaj-CI-0-IP-1 + 1 + + DORT_ENFAIL2 + + + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljkmaj-CI-0-IP-1) or l4ljkmaj-CI-0-IP-1="" + + + + + fr.insee + l4o73m0u-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL2 non renseigné + + + SEP_AUT_PAR_ENFAIL2 non renseigné + + + fr.insee + l4o73m0u-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o73m0u-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o73m0u-CI-0-IP-1) or l4o73m0u-CI-0-IP-1="" + + + + + fr.insee + l4lmxke4-CI-0 + 1 + + RESID_ENFAIL2 non renseigné + + + RESID_ENFAIL2 non renseigné + + + fr.insee + l4lmxke4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmxke4-CI-0-IP-1 + 1 + + RESID_ENFAIL2 + + + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmxke4-CI-0-IP-1) or l4lmxke4-CI-0-IP-1="" + + + + + fr.insee + l4ljj44i-CI-0 + 1 + + SANTE_ENFAIL2 non renseigné + + + SANTE_ENFAIL2 non renseigné + + + fr.insee + l4ljj44i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljj44i-CI-0-IP-1 + 1 + + SANTE_ENFAIL2 + + + + + fr.insee + l4ljj44i-QOP-lvgqml4j + 1 + OutParameter + + + fr.insee + l4ljj44i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljj44i-CI-0-IP-1) or l4ljj44i-CI-0-IP-1="" + + + + + fr.insee + lvgpi52w-CI-0 + 1 + + ASE_ENFAIL2 non renseigné + + + ASE_ENFAIL2 non renseigné + + + fr.insee + lvgpi52w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgpi52w-CI-0-IP-1 + 1 + + ASE_ENFAIL2 + + + + + fr.insee + lvgpi52w-QOP-lvgpy0fo + 1 + OutParameter + + + fr.insee + lvgpi52w-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgpi52w-CI-0-IP-1) or lvgpi52w-CI-0-IP-1="" + + + + + fr.insee + l4lg3j5g-CI-0 + 1 + + PRENOM_ENFAIL3 non renseigné + + + PRENOM_ENFAIL3 non renseigné + + + fr.insee + l4lg3j5g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg3j5g-CI-0-IP-1 + 1 + + PRENOM_ENFAIL3 + + + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg3j5g-CI-0-IP-1) or l4lg3j5g-CI-0-IP-1="" + + + + + fr.insee + l4lg6nx5-CI-0 + 1 + + SEXE_ENFAIL3 non renseigné + + + SEXE_ENFAIL3 non renseigné + + + fr.insee + l4lg6nx5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg6nx5-CI-0-IP-1 + 1 + + SEXE_ENFAIL3 + + + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg6nx5-CI-0-IP-1) or l4lg6nx5-CI-0-IP-1="" + + + + + fr.insee + l4lgenh5-CI-0 + 1 + + ANAI_ENFAIL3 non renseigné + + + ANAI_ENFAIL3 non renseigné + + + fr.insee + l4lgenh5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-0-IP-1 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgenh5-CI-0-IP-1) or l4lgenh5-CI-0-IP-1="" + + + + + fr.insee + l4lgenh5-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4lgenh5-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgenh5-CI-1-IP-2 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lgenh5-CI-1-IP-2)) and not(isnull(l4lgenh5-CI-1-IP-1)) and cast(l4lgenh5-CI-1-IP-2,integer) < l4lgenh5-CI-1-IP-1) + + + + + fr.insee + l4lgenh5-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4lgenh5-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgenh5-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgenh5-CI-2-IP-2 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4lgenh5-CI-2-IP-2)) and not(isnull(l4lgenh5-CI-2-IP-1)) and (l4lgenh5-CI-2-IP-1 + 15 > cast(l4lgenh5-CI-2-IP-2,integer))) + + + + + fr.insee + l4lh0q7i-CI-0 + 1 + + NEFRANCE_ENFAIL3 non renseigné + + + NEFRANCE_ENFAIL3 non renseigné + + + fr.insee + l4lh0q7i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh0q7i-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL3 + + + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh0q7i-CI-0-IP-1) or l4lh0q7i-CI-0-IP-1="" + + + + + fr.insee + lv6g0wv2-CI-0 + 1 + + ADOPT_ENFAIL3 non renseigné + + + ADOPT_ENFAIL3 non renseigné + + + fr.insee + lv6g0wv2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6g0wv2-CI-0-IP-1 + 1 + + ADOPT_ENFAIL3 + + + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + OutParameter + + + fr.insee + lv6g0wv2-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6g0wv2-CI-0-IP-1) or lv6g0wv2-CI-0-IP-1="" + + + + + fr.insee + lv6gixgd-CI-0 + 1 + + ANADOPT_ENFAIL3 non renseignée + + + ANADOPT_ENFAIL3 non renseignée + + + fr.insee + lv6gixgd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gixgd-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL3 + + + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6gixgd-CI-0-IP-1) or lv6gixgd-CI-0-IP-1="" + + + + + fr.insee + lv6gixgd-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gixgd-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gixgd-CI-1-IP-1 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + lv6gixgd-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL3 + + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6gixgd-CI-1-IP-2)) and not(isnull(lv6gixgd-CI-1-IP-1)) and cast(lv6gixgd-CI-1-IP-2,integer) < cast(lv6gixgd-CI-1-IP-1,integer)) + + + + + fr.insee + lv6gixgd-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gixgd-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gixgd-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gixgd-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6gixgd-CI-2-IP-2)) and not(isnull(lv6gixgd-CI-2-IP-1)) and cast(lv6gixgd-CI-2-IP-2,integer) < lv6gixgd-CI-2-IP-1) + + + + + fr.insee + lv6gixgd-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6gixgd-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gixgd-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gixgd-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL3 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6gixgd-CI-3-IP-2)) and not(isnull(lv6gixgd-CI-3-IP-1)) and (lv6gixgd-CI-3-IP-1 + 15 > cast(lv6gixgd-CI-3-IP-2,integer))) + + + + + fr.insee + l4lgysxq-CI-0 + 1 + + PARENT_VIT_ENFAIL3 non renseigné + + + PARENT_VIT_ENFAIL3 non renseigné + + + fr.insee + l4lgysxq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgysxq-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgysxq-CI-0-IP-1) or l4lgysxq-CI-0-IP-1="" + + + + + fr.insee + l8m0bu1o-CI-0 + 1 + + PARENT_VECU_ENFAIL3 non renseigné + + + PARENT_VECU_ENFAIL3 non renseigné + + + fr.insee + l8m0bu1o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m0bu1o-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL3 + + + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m0bu1o-CI-0-IP-1) or l8m0bu1o-CI-0-IP-1="" + + + + + fr.insee + l4lh0ofl-CI-0 + 1 + + DC_ENFAIL3 non renseigné + + + DC_ENFAIL3 non renseigné + + + fr.insee + l4lh0ofl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh0ofl-CI-0-IP-1 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh0ofl-CI-0-IP-1) or l4lh0ofl-CI-0-IP-1="" + + + + + fr.insee + l4lhbuxg-CI-0 + 1 + + AG_DC_ENFAIL3 non renseigné + + + AG_DC_ENFAIL3 non renseigné + + + fr.insee + l4lhbuxg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbuxg-CI-0-IP-1 + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhbuxg-CI-0-IP-1) + + + + + fr.insee + l4lhbuxg-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhbuxg-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbuxg-CI-1-IP-1 + 1 + + AG_ENFAIL3 + + + + fr.insee + l4lhbuxg-CI-1-IP-2 + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + ltd1z2u9-GOP + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhbuxg-CI-1-IP-1)) and not (isnull(l4lhbuxg-CI-1-IP-2)) and cast(l4lhbuxg-CI-1-IP-2,integer) > cast(l4lhbuxg-CI-1-IP-1,integer)) + + + + + fr.insee + l4lhdubm-CI-0 + 1 + + AG_DEPART_ENFAIL3 non renseigné + + + AG_DEPART_ENFAIL3 non renseigné + + + fr.insee + l4lhdubm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhdubm-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhdubm-CI-0-IP-1) + + + + + fr.insee + l4lhdubm-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhdubm-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhdubm-CI-1-IP-1 + 1 + + AG_ENFAIL3 + + + + fr.insee + l4lhdubm-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + ltd1z2u9-GOP + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhdubm-CI-1-IP-2)) and not(isnull(l4lhdubm-CI-1-IP-1)) and cast(l4lhdubm-CI-1-IP-2,integer) > cast(l4lhdubm-CI-1-IP-1,integer)) + + + + + fr.insee + l4lirpfm-CI-0 + 1 + + PARENT_FREQ_ENFAIL3 non renseigné + + + PARENT_FREQ_ENFAIL3 non renseigné + + + fr.insee + l4lirpfm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lirpfm-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL3 + + + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lirpfm-CI-0-IP-1) or l4lirpfm-CI-0-IP-1="" + + + + + fr.insee + l4lj2cqg-CI-0 + 1 + + FR_ENFAIL3 non renseigné + + + FR_ENFAIL3 non renseigné + + + fr.insee + l4lj2cqg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj2cqg-CI-0-IP-1 + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj2cqg-CI-0-IP-1) or l4lj2cqg-CI-0-IP-1="" + + + + + fr.insee + l4oo41j6-CI-0 + 1 + + COM_ENFAIL3 non renseigné + + + COM_ENFAIL3 non renseigné + + + fr.insee + l4oo41j6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo41j6-CI-0-IP-1 + 1 + + COM_ENFAIL3 + + + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo41j6-CI-0-IP-1) or l4oo41j6-CI-0-IP-1="" + + + + + fr.insee + l4oo03nq-CI-0 + 1 + + DEP_ENFAIL3 non renseigné + + + DEP_ENFAIL3 non renseigné + + + fr.insee + l4oo03nq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo03nq-CI-0-IP-1 + 1 + + DEP_ENFAIL3 + + + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo03nq-CI-0-IP-1) or l4oo03nq-CI-0-IP-1="" + + + + + fr.insee + l4ooe2gj-CI-0 + 1 + + PAY_ENFAIL3 non renseigné + + + PAY_ENFAIL3 non renseigné + + + fr.insee + l4ooe2gj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ooe2gj-CI-0-IP-1 + 1 + + PAY_ENFAIL3 + + + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ooe2gj-CI-0-IP-1) or l4ooe2gj-CI-0-IP-1="" + + + + + fr.insee + l4ljddzv-CI-0 + 1 + + LOG_ENFAIL3 non renseigné + + + LOG_ENFAIL3 non renseigné + + + fr.insee + l4ljddzv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljddzv-CI-0-IP-1 + 1 + + LOG_ENFAIL3 + + + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljddzv-CI-0-IP-1) or l4ljddzv-CI-0-IP-1="" + + + + + fr.insee + l4lmjzwd-CI-0 + 1 + + AUT_PAR_ENFAIL3 non renseigné + + + AUT_PAR_ENFAIL3 non renseigné + + + fr.insee + l4lmjzwd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmjzwd-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL3 + + + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmjzwd-CI-0-IP-1) or l4lmjzwd-CI-0-IP-1="" + + + + + fr.insee + l4ljm6cp-CI-0 + 1 + + DORT_ENFAIL3 non renseigné + + + DORT_ENFAIL3 non renseigné + + + fr.insee + l4ljm6cp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljm6cp-CI-0-IP-1 + 1 + + DORT_ENFAIL3 + + + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljm6cp-CI-0-IP-1) or l4ljm6cp-CI-0-IP-1="" + + + + + fr.insee + l4o7gt0n-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL3 non renseigné + + + SEP_AUT_PAR_ENFAIL3 non renseigné + + + fr.insee + l4o7gt0n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7gt0n-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7gt0n-CI-0-IP-1) or l4o7gt0n-CI-0-IP-1="" + + + + + fr.insee + l4lmszob-CI-0 + 1 + + RESID_ENFAIL3 non renseigné + + + RESID_ENFAIL3 non renseigné + + + fr.insee + l4lmszob-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmszob-CI-0-IP-1 + 1 + + RESID_ENFAIL3 + + + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmszob-CI-0-IP-1) or l4lmszob-CI-0-IP-1="" + + + + + fr.insee + l4ljg7fn-CI-0 + 1 + + SANTE_ENFAIL3 non renseigné + + + SANTE_ENFAIL3 non renseigné + + + fr.insee + l4ljg7fn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljg7fn-CI-0-IP-1 + 1 + + SANTE_ENFAIL3 + + + + + fr.insee + l4ljg7fn-QOP-lvgqc2yo + 1 + OutParameter + + + fr.insee + l4ljg7fn-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljg7fn-CI-0-IP-1) or l4ljg7fn-CI-0-IP-1="" + + + + + fr.insee + lvgq4efl-CI-0 + 1 + + ASE_ENFAIL3 non renseigné + + + ASE_ENFAIL3 non renseigné + + + fr.insee + lvgq4efl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgq4efl-CI-0-IP-1 + 1 + + ASE_ENFAIL3 + + + + + fr.insee + lvgq4efl-QOP-lvgpof4r + 1 + OutParameter + + + fr.insee + lvgq4efl-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgq4efl-CI-0-IP-1) or lvgq4efl-CI-0-IP-1="" + + + + + fr.insee + l4lg5t9v-CI-0 + 1 + + PRENOM_ENFAIL4 non renseigné + + + PRENOM_ENFAIL4 non renseigné + + + fr.insee + l4lg5t9v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg5t9v-CI-0-IP-1 + 1 + + PRENOM_ENFAIL4 + + + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg5t9v-CI-0-IP-1) or l4lg5t9v-CI-0-IP-1="" + + + + + fr.insee + l4lg3wub-CI-0 + 1 + + SEXE_ENFAIL4 non renseigné + + + SEXE_ENFAIL4 non renseigné + + + fr.insee + l4lg3wub-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lg3wub-CI-0-IP-1 + 1 + + SEXE_ENFAIL4 + + + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lg3wub-CI-0-IP-1) or l4lg3wub-CI-0-IP-1="" + + + + + fr.insee + l4lgfphb-CI-0 + 1 + + ANAI_ENFAIL4 non renseigné + + + ANAI_ENFAIL4 non renseigné + + + fr.insee + l4lgfphb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-0-IP-1 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgfphb-CI-0-IP-1) or l4lgfphb-CI-0-IP-1="" + + + + + fr.insee + l4lgfphb-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4lgfphb-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgfphb-CI-1-IP-2 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lgfphb-CI-1-IP-2)) and not(isnull(l4lgfphb-CI-1-IP-1)) and cast(l4lgfphb-CI-1-IP-2,integer) < l4lgfphb-CI-1-IP-1) + + + + + fr.insee + l4lgfphb-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4lgfphb-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgfphb-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgfphb-CI-2-IP-2 + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4lgfphb-CI-2-IP-2)) and not(isnull(l4lgfphb-CI-2-IP-1)) and (l4lgfphb-CI-2-IP-1 + 15 > cast(l4lgfphb-CI-2-IP-2,integer))) + + + + + fr.insee + l4lgr9ny-CI-0 + 1 + + NEFRANCE_ENFAIL4 non renseigné + + + NEFRANCE_ENFAIL4 non renseigné + + + fr.insee + l4lgr9ny-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgr9ny-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL4 + + + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgr9ny-CI-0-IP-1) or l4lgr9ny-CI-0-IP-1="" + + + + + fr.insee + lv6h7uqn-CI-0 + 1 + + ADOPT_ENFAIL4 non renseigné + + + ADOPT_ENFAIL4 non renseigné + + + fr.insee + lv6h7uqn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6h7uqn-CI-0-IP-1 + 1 + + ADOPT_ENFAIL4 + + + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + OutParameter + + + fr.insee + lv6h7uqn-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6h7uqn-CI-0-IP-1) or lv6h7uqn-CI-0-IP-1="" + + + + + fr.insee + lv6gsj3o-CI-0 + 1 + + ANADOPT_ENFAIL4 non renseignée + + + ANADOPT_ENFAIL4 non renseignée + + + fr.insee + lv6gsj3o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gsj3o-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL4 + + + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6gsj3o-CI-0-IP-1) or lv6gsj3o-CI-0-IP-1="" + + + + + fr.insee + lv6gsj3o-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gsj3o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gsj3o-CI-1-IP-1 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + lv6gsj3o-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL4 + + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-1-IP-2 + 1 + InParameter + + + not(isnull(lv6gsj3o-CI-1-IP-2)) and not(isnull(lv6gsj3o-CI-1-IP-1)) and cast(lv6gsj3o-CI-1-IP-2,integer) < cast(lv6gsj3o-CI-1-IP-1,integer) + + + + + fr.insee + lv6gsj3o-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6gsj3o-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gsj3o-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gsj3o-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-2-IP-2 + 1 + InParameter + + + not(isnull(lv6gsj3o-CI-2-IP-2)) and not(isnull(lv6gsj3o-CI-2-IP-1)) and cast(lv6gsj3o-CI-2-IP-2,integer) < lv6gsj3o-CI-2-IP-1 + + + + + fr.insee + lv6gsj3o-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6gsj3o-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6gsj3o-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6gsj3o-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL4 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o-CI-3-IP-2 + 1 + InParameter + + + not(isnull(lv6gsj3o-CI-3-IP-2)) and not(isnull(lv6gsj3o-CI-3-IP-1)) and (lv6gsj3o-CI-3-IP-1 + 15 > cast(lv6gsj3o-CI-3-IP-2,integer)) + + + + + fr.insee + l4lgo4yb-CI-0 + 1 + + PARENT_VIT_ENFAIL4 non renseigné + + + PARENT_VIT_ENFAIL4 non renseigné + + + fr.insee + l4lgo4yb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgo4yb-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgo4yb-CI-0-IP-1) or l4lgo4yb-CI-0-IP-1="" + + + + + fr.insee + l8m03w7m-CI-0 + 1 + + PARENT_VECU_ENFAIL4 non renseigné + + + PARENT_VECU_ENFAIL4 non renseigné + + + fr.insee + l8m03w7m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m03w7m-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL4 + + + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m03w7m-CI-0-IP-1) or l8m03w7m-CI-0-IP-1="" + + + + + fr.insee + l4lh1a42-CI-0 + 1 + + DC_ENFAIL4 non renseigné + + + DC_ENFAIL4 non renseigné + + + fr.insee + l4lh1a42-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh1a42-CI-0-IP-1 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh1a42-CI-0-IP-1) or l4lh1a42-CI-0-IP-1="" + + + + + fr.insee + l4lhbfxh-CI-0 + 1 + + AG_DC_ENFAIL4 non renseigné + + + AG_DC_ENFAIL4 non renseigné + + + fr.insee + l4lhbfxh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbfxh-CI-0-IP-1 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhbfxh-CI-0-IP-1) + + + + + fr.insee + l4lhbfxh-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhbfxh-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhbfxh-CI-1-IP-1 + 1 + + AG_ENFAIL4 + + + + fr.insee + l4lhbfxh-CI-1-IP-2 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + ltd22uk7-GOP + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhbfxh-CI-1-IP-1)) and not (isnull(l4lhbfxh-CI-1-IP-2)) and cast(l4lhbfxh-CI-1-IP-2,integer) > cast(l4lhbfxh-CI-1-IP-1,integer)) + + + + + fr.insee + l4lho0e2-CI-0 + 1 + + AG_DEPART_ENFAIL4 non renseigné + + + AG_DEPART_ENFAIL4 non renseigné + + + fr.insee + l4lho0e2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lho0e2-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lho0e2-CI-0-IP-1) + + + + + fr.insee + l4lho0e2-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lho0e2-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lho0e2-CI-1-IP-1 + 1 + + AG_ENFAIL4 + + + + fr.insee + l4lho0e2-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + ltd22uk7-GOP + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lho0e2-CI-1-IP-2)) and not(isnull(l4lho0e2-CI-1-IP-1)) and cast(l4lho0e2-CI-1-IP-2,integer) > cast(l4lho0e2-CI-1-IP-1,integer)) + + + + + fr.insee + l4lj5kv6-CI-0 + 1 + + PARENT_FREQ_ENFAIL4 non renseigné + + + PARENT_FREQ_ENFAIL4 non renseigné + + + fr.insee + l4lj5kv6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj5kv6-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL4 + + + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj5kv6-CI-0-IP-1) or l4lj5kv6-CI-0-IP-1="" + + + + + fr.insee + l4lj0iea-CI-0 + 1 + + FR_ENFAIL4 non renseigné + + + FR_ENFAIL4 non renseigné + + + fr.insee + l4lj0iea-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj0iea-CI-0-IP-1 + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj0iea-CI-0-IP-1) or l4lj0iea-CI-0-IP-1="" + + + + + fr.insee + l4onwhrf-CI-0 + 1 + + COM_ENFAIL4 non renseigné + + + COM_ENFAIL4 non renseigné + + + fr.insee + l4onwhrf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onwhrf-CI-0-IP-1 + 1 + + COM_ENFAIL4 + + + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onwhrf-CI-0-IP-1) or l4onwhrf-CI-0-IP-1="" + + + + + fr.insee + l4oo4x1t-CI-0 + 1 + + DEP_ENFAIL4 non renseigné + + + DEP_ENFAIL4 non renseigné + + + fr.insee + l4oo4x1t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo4x1t-CI-0-IP-1 + 1 + + DEP_ENFAIL4 + + + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo4x1t-CI-0-IP-1) or l4oo4x1t-CI-0-IP-1="" + + + + + fr.insee + l4oo1817-CI-0 + 1 + + PAY_ENFAIL4 non renseigné + + + PAY_ENFAIL4 non renseigné + + + fr.insee + l4oo1817-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo1817-CI-0-IP-1 + 1 + + PAY_ENFAIL4 + + + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo1817-CI-0-IP-1) or l4oo1817-CI-0-IP-1="" + + + + + fr.insee + l4lixcs2-CI-0 + 1 + + LOG_ENFAIL4 non renseigné + + + LOG_ENFAIL4 non renseigné + + + fr.insee + l4lixcs2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lixcs2-CI-0-IP-1 + 1 + + LOG_ENFAIL4 + + + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lixcs2-CI-0-IP-1) or l4lixcs2-CI-0-IP-1 ="" + + + + + fr.insee + l4lms9a0-CI-0 + 1 + + AUT_PAR_ENFAIL4 non renseigné + + + AUT_PAR_ENFAIL4 non renseigné + + + fr.insee + l4lms9a0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lms9a0-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL4 + + + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lms9a0-CI-0-IP-1) or l4lms9a0-CI-0-IP-1="" + + + + + fr.insee + l4ljmpiu-CI-0 + 1 + + DORT_ENFAIL4 non renseigné + + + DORT_ENFAIL4 non renseigné + + + fr.insee + l4ljmpiu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljmpiu-CI-0-IP-1 + 1 + + DORT_ENFAIL4 + + + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljmpiu-CI-0-IP-1) or l4ljmpiu-CI-0-IP-1="" + + + + + fr.insee + l4o7jdze-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL4 non renseigné + + + SEP_AUT_PAR_ENFAIL4 non renseigné + + + fr.insee + l4o7jdze-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7jdze-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7jdze-CI-0-IP-1) or l4o7jdze-CI-0-IP-1="" + + + + + fr.insee + l4lmvah7-CI-0 + 1 + + RESID_ENFAIL4 non renseigné + + + RESID_ENFAIL4 non renseigné + + + fr.insee + l4lmvah7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmvah7-CI-0-IP-1 + 1 + + RESID_ENFAIL4 + + + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmvah7-CI-0-IP-1) or l4lmvah7-CI-0-IP-1)="" + + + + + fr.insee + l4ljjvig-CI-0 + 1 + + SANTE_ENFAIL4 non renseigné + + + SANTE_ENFAIL4 non renseigné + + + fr.insee + l4ljjvig-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljjvig-CI-0-IP-1 + 1 + + SANTE_ENFAIL4 + + + + + fr.insee + l4ljjvig-QOP-lvgqq2fo + 1 + OutParameter + + + fr.insee + l4ljjvig-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljjvig-CI-0-IP-1) or l4ljjvig-CI-0-IP-1="" + + + + + fr.insee + lvgpyw4o-CI-0 + 1 + + ASE_ENFAIL4 non renseigné + + + ASE_ENFAIL4 non renseigné + + + fr.insee + lvgpyw4o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgpyw4o-CI-0-IP-1 + 1 + + ASE_ENFAIL4 + + + + + fr.insee + lvgpyw4o-QOP-lvgpsdqj + 1 + OutParameter + + + fr.insee + lvgpyw4o-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgpyw4o-CI-0-IP-1) or lvgpyw4o-CI-0-IP-1="" + + + + + fr.insee + l4lgayon-CI-0 + 1 + + PRENOM_ENFAIL5 non renseigné + + + PRENOM_ENFAIL5 non renseigné + + + fr.insee + l4lgayon-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgayon-CI-0-IP-1 + 1 + + PRENOM_ENFAIL5 + + + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgayon-CI-0-IP-1) or l4lgayon-CI-0-IP-1="" + + + + + fr.insee + l4lgep4c-CI-0 + 1 + + SEXE_ENFAIL5 non renseigné + + + SEXE_ENFAIL5 non renseigné + + + fr.insee + l4lgep4c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgep4c-CI-0-IP-1 + 1 + + SEXE_ENFAIL5 + + + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgep4c-CI-0-IP-1) or l4lgep4c-CI-0-IP-1="" + + + + + fr.insee + l4lgp1ft-CI-0 + 1 + + ANAI_ENFAIL5 non renseigné + + + ANAI_ENFAIL5 non renseigné + + + fr.insee + l4lgp1ft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-0-IP-1 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgp1ft-CI-0-IP-1) or l4lgp1ft-CI-0-IP-1="" + + + + + fr.insee + l4lgp1ft-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l4lgp1ft-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgp1ft-CI-1-IP-2 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lgp1ft-CI-1-IP-2)) and not(isnull(l4lgp1ft-CI-1-IP-1)) and cast(l4lgp1ft-CI-1-IP-2,integer) < l4lgp1ft-CI-1-IP-1) + + + + + fr.insee + l4lgp1ft-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l4lgp1ft-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgp1ft-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l4lgp1ft-CI-2-IP-2 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l4lgp1ft-CI-2-IP-2)) and not(isnull(l4lgp1ft-CI-2-IP-1)) and (l4lgp1ft-CI-2-IP-1 + 15 > cast(l4lgp1ft-CI-2-IP-2,integer))) + + + + + fr.insee + l4lgnphx-CI-0 + 1 + + NEFRANCE_ENFAIL5 non renseigné + + + NEFRANCE_ENFAIL5 non renseigné + + + fr.insee + l4lgnphx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lgnphx-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL5 + + + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lgnphx-CI-0-IP-1) or l4lgnphx-CI-0-IP-1="" + + + + + fr.insee + lv6h7z1u-CI-0 + 1 + + ADOPT_ENFAIL5 non renseigné + + + ADOPT_ENFAIL5 non renseigné + + + fr.insee + lv6h7z1u-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6h7z1u-CI-0-IP-1 + 1 + + ADOPT_ENFAIL5 + + + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + OutParameter + + + fr.insee + lv6h7z1u-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6h7z1u-CI-0-IP-1) or lv6h7z1u-CI-0-IP-1="" + + + + + fr.insee + lv6hzzia-CI-0 + 1 + + ANADOPT_ENFAIL5 non renseignée + + + ANADOPT_ENFAIL5 non renseignée + + + fr.insee + lv6hzzia-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6hzzia-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL5 + + + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6hzzia-CI-0-IP-1) or lv6hzzia-CI-0-IP-1="" + + + + + fr.insee + lv6hzzia-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6hzzia-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6hzzia-CI-1-IP-1 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + lv6hzzia-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL5 + + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6hzzia-CI-1-IP-2)) and not(isnull(lv6hzzia-CI-1-IP-1)) and cast(lv6hzzia-CI-1-IP-2,integer) < cast(lv6hzzia-CI-1-IP-1,integer)) + + + + + fr.insee + lv6hzzia-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6hzzia-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6hzzia-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6hzzia-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6hzzia-CI-2-IP-2)) and not(isnull(lv6hzzia-CI-2-IP-1)) and cast(lv6hzzia-CI-2-IP-2,integer) < lv6hzzia-CI-2-IP-1) + + + + + fr.insee + lv6hzzia-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6hzzia-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6hzzia-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6hzzia-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL5 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6hzzia-CI-3-IP-2)) and not(isnull(lv6hzzia-CI-3-IP-1)) and (lv6hzzia-CI-3-IP-1 + 15 > cast(lv6hzzia-CI-3-IP-2,integer))) + + + + + fr.insee + l4lh672z-CI-0 + 1 + + PARENT_VIT_ENFAIL5 non renseigné + + + PARENT_VIT_ENFAIL5 non renseigné + + + fr.insee + l4lh672z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh672z-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh672z-CI-0-IP-1) or l4lh672z-CI-0-IP-1="" + + + + + fr.insee + l8m0ld6c-CI-0 + 1 + + PARENT_VECU_ENFAIL5 non renseigné + + + PARENT_VECU_ENFAIL5 non renseigné + + + fr.insee + l8m0ld6c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8m0ld6c-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL5 + + + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c-CI-0-IP-1 + 1 + InParameter + + + isnull(l8m0ld6c-CI-0-IP-1) or l8m0ld6c-CI-0-IP-1="" + + + + + fr.insee + l4lhcdf6-CI-0 + 1 + + DC_ENFAIL5 non renseigné + + + DC_ENFAIL5 non renseigné + + + fr.insee + l4lhcdf6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhcdf6-CI-0-IP-1 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhcdf6-CI-0-IP-1) or l4lhcdf6-CI-0-IP-1="" + + + + + fr.insee + l4lh8c72-CI-0 + 1 + + AG_DC_ENFAIL5 non renseigné + + + AG_DC_ENFAIL5 non renseigné + + + fr.insee + l4lh8c72-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh8c72-CI-0-IP-1 + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lh8c72-CI-0-IP-1) + + + + + fr.insee + l4lh8c72-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lh8c72-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lh8c72-CI-1-IP-1 + 1 + + AG_ENFAIL5 + + + + fr.insee + l4lh8c72-CI-1-IP-2 + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + ltd24w90-GOP + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lh8c72-CI-1-IP-1)) and not (isnull(l4lh8c72-CI-1-IP-2)) and cast(l4lh8c72-CI-1-IP-2,integer) > cast(l4lh8c72-CI-1-IP-1,integer)) + + + + + fr.insee + l4lhn614-CI-0 + 1 + + AG_DEPART_ENFAIL5 non renseigné + + + AG_DEPART_ENFAIL5 non renseigné + + + fr.insee + l4lhn614-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhn614-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lhn614-CI-0-IP-1) + + + + + fr.insee + l4lhn614-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l4lhn614-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lhn614-CI-1-IP-1 + 1 + + AG_ENFAIL5 + + + + fr.insee + l4lhn614-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + ltd24w90-GOP + 1 + OutParameter + + + fr.insee + l4lhn614-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l4lhn614-CI-1-IP-2)) and not(isnull(l4lhn614-CI-1-IP-1)) and cast(l4lhn614-CI-1-IP-2,integer) > cast(l4lhn614-CI-1-IP-1,integer)) + + + + + fr.insee + l4lj98cz-CI-0 + 1 + + PARENT_FREQ_ENFAIL5 non renseigné + + + PARENT_FREQ_ENFAIL5 non renseigné + + + fr.insee + l4lj98cz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lj98cz-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL5 + + + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lj98cz-CI-0-IP-1) or l4lj98cz-CI-0-IP-1="" + + + + + fr.insee + l4lijtvo-CI-0 + 1 + + FR_ENFAIL5 non renseigné + + + FR_ENFAIL5 non renseigné + + + fr.insee + l4lijtvo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lijtvo-CI-0-IP-1 + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lijtvo-CI-0-IP-1) or l4lijtvo-CI-0-IP-1="" + + + + + fr.insee + l4oo41q4-CI-0 + 1 + + COM_ENFAIL5 non renseigné + + + COM_ENFAIL5 non renseigné + + + fr.insee + l4oo41q4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo41q4-CI-0-IP-1 + 1 + + COM_ENFAIL5 + + + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo41q4-CI-0-IP-1) or l4oo41q4-CI-0-IP-1="" + + + + + fr.insee + l4oo7lwi-CI-0 + 1 + + DEP_ENFAIL5 non renseigné + + + DEP_ENFAIL5 non renseigné + + + fr.insee + l4oo7lwi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo7lwi-CI-0-IP-1 + 1 + + DEP_ENFAIL5 + + + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo7lwi-CI-0-IP-1) or l4oo7lwi-CI-0-IP-1="" + + + + + fr.insee + l4oo5bj9-CI-0 + 1 + + PAY_ENFAIL5 non renseigné + + + PAY_ENFAIL5 non renseigné + + + fr.insee + l4oo5bj9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4oo5bj9-CI-0-IP-1 + 1 + + PAY_ENFAIL5 + + + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9-CI-0-IP-1 + 1 + InParameter + + + isnull(l4oo5bj9-CI-0-IP-1) or l4oo5bj9-CI-0-IP-1="" + + + + + fr.insee + l4lizygc-CI-0 + 1 + + LOG_ENFAIL5 non renseigné + + + LOG_ENFAIL5 non renseigné + + + fr.insee + l4lizygc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lizygc-CI-0-IP-1 + 1 + + LOG_ENFAIL5 + + + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lizygc-CI-0-IP-1) or l4lizygc-CI-0-IP-1="" + + + + + fr.insee + l4lmc52p-CI-0 + 1 + + AUT_PAR_ENFAIL5 non renseigné + + + AUT_PAR_ENFAIL5 non renseigné + + + fr.insee + l4lmc52p-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lmc52p-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL5 + + + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lmc52p-CI-0-IP-1) or l4lmc52p-CI-0-IP-1="" + + + + + fr.insee + l4ljxer7-CI-0 + 1 + + DORT_ENFAIL5 non renseigné + + + DORT_ENFAIL5 non renseigné + + + fr.insee + l4ljxer7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljxer7-CI-0-IP-1 + 1 + + DORT_ENFAIL5 + + + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljxer7-CI-0-IP-1) or l4ljxer7-CI-0-IP-1="" + + + + + fr.insee + l4o7vzru-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL5 non renseigné + + + SEP_AUT_PAR_ENFAIL5 non renseigné + + + fr.insee + l4o7vzru-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7vzru-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7vzru-CI-0-IP-1) or l4o7vzru-CI-0-IP-1="" + + + + + fr.insee + l4lms6u4-CI-0 + 1 + + RESID_ENFAIL5 non renseigné + + + RESID_ENFAIL5 non renseigné + + + fr.insee + l4lms6u4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lms6u4-CI-0-IP-1 + 1 + + RESID_ENFAIL5 + + + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lms6u4-CI-0-IP-1) or l4lms6u4-CI-0-IP-1="" + + + + + fr.insee + l4ljcdar-CI-0 + 1 + + SANTE_ENFAIL5 non renseigné + + + SANTE_ENFAIL5 non renseigné + + + fr.insee + l4ljcdar-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4ljcdar-CI-0-IP-1 + 1 + + SANTE_ENFAIL5 + + + + + fr.insee + l4ljcdar-QOP-lvgqicza + 1 + OutParameter + + + fr.insee + l4ljcdar-CI-0-IP-1 + 1 + InParameter + + + isnull(l4ljcdar-CI-0-IP-1) or l4ljcdar-CI-0-IP-1="" + + + + + fr.insee + lvgq0pjg-CI-0 + 1 + + ASE_ENFAIL5 non renseigné + + + ASE_ENFAIL5 non renseigné + + + fr.insee + lvgq0pjg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgq0pjg-CI-0-IP-1 + 1 + + ASE_ENFAIL5 + + + + + fr.insee + lvgq0pjg-QOP-lvgpu4qm + 1 + OutParameter + + + fr.insee + lvgq0pjg-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgq0pjg-CI-0-IP-1) or lvgq0pjg-CI-0-IP-1="" + + + + + fr.insee + l8oign0h-CI-0 + 1 + + PRENOM_ENFAIL6 non renseigné + + + PRENOM_ENFAIL6 non renseigné + + + fr.insee + l8oign0h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oign0h-CI-0-IP-1 + 1 + + PRENOM_ENFAIL6 + + + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oign0h-CI-0-IP-1) or l8oign0h-CI-0-IP-1="" + + + + + fr.insee + l8oi92w4-CI-0 + 1 + + SEXE_ENFAIL6 non renseigné + + + SEXE_ENFAIL6 non renseigné + + + fr.insee + l8oi92w4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi92w4-CI-0-IP-1 + 1 + + SEXE_ENFAIL6 + + + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oi92w4-CI-0-IP-1) or l8oi92w4-CI-0-IP-1="" + + + + + fr.insee + l8oi7q9f-CI-0 + 1 + + ANAI_ENFAIL6 non renseigné + + + ANAI_ENFAIL6 non renseigné + + + fr.insee + l8oi7q9f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-0-IP-1 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oi7q9f-CI-0-IP-1) or l8oi7q9f-CI-0-IP-1="" + + + + + fr.insee + l8oi7q9f-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8oi7q9f-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8oi7q9f-CI-1-IP-2 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8oi7q9f-CI-1-IP-2)) and not(isnull(l8oi7q9f-CI-1-IP-1)) and (l8oi7q9f-CI-1-IP-1 + 15 > cast(l8oi7q9f-CI-1-IP-2,integer))) + + + + + fr.insee + l8oi7q9f-CI-2 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8oi7q9f-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oi7q9f-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8oi7q9f-CI-2-IP-2 + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8oi7q9f-CI-2-IP-2)) and not(isnull(l8oi7q9f-CI-2-IP-1)) and cast(l8oi7q9f-CI-2-IP-2,integer) < l8oi7q9f-CI-2-IP-1) + + + + + fr.insee + l8oientz-CI-0 + 1 + + NEFRANCE_ENFAIL6 non renseigné + + + NEFRANCE_ENFAIL6 non renseigné + + + fr.insee + l8oientz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oientz-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL6 + + + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oientz-CI-0-IP-1) or l8oientz-CI-0-IP-1="" + + + + + fr.insee + lv6i7gwi-CI-0 + 1 + + ADOPT_ENFAIL6 non renseigné + + + ADOPT_ENFAIL6 non renseigné + + + fr.insee + lv6i7gwi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6i7gwi-CI-0-IP-1 + 1 + + ADOPT_ENFAIL6 + + + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + OutParameter + + + fr.insee + lv6i7gwi-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6i7gwi-CI-0-IP-1) or lv6i7gwi-CI-0-IP-1="" + + + + + fr.insee + lv6imul3-CI-0 + 1 + + ANADOPT_ENFAIL6 non renseignée + + + ANADOPT_ENFAIL6 non renseignée + + + fr.insee + lv6imul3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6imul3-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL6 + + + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6imul3-CI-0-IP-1) or lv6imul3-CI-0-IP-1="" + + + + + fr.insee + lv6imul3-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6imul3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6imul3-CI-1-IP-1 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + lv6imul3-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL6 + + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + lv6imul3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6imul3-CI-1-IP-2)) and not(isnull(lv6imul3-CI-1-IP-1)) and cast(lv6imul3-CI-1-IP-2,integer) < cast(lv6imul3-CI-1-IP-1,integer)) + + + + + fr.insee + lv6imul3-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6imul3-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6imul3-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6imul3-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6imul3-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6imul3-CI-2-IP-2)) and not(isnull(lv6imul3-CI-2-IP-1)) and cast(lv6imul3-CI-2-IP-2,integer) < lv6imul3-CI-2-IP-1) + + + + + fr.insee + lv6imul3-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6imul3-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6imul3-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6imul3-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL6 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6imul3-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6imul3-CI-3-IP-2)) and not(isnull(lv6imul3-CI-3-IP-1)) and (lv6imul3-CI-3-IP-1 + 15 > cast(lv6imul3-CI-3-IP-2,integer))) + + + + + fr.insee + l8oidc2m-CI-0 + 1 + + PARENT_VIT_ENFAIL6 non renseigné + + + PARENT_VIT_ENFAIL6 non renseigné + + + fr.insee + l8oidc2m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oidc2m-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oidc2m-CI-0-IP-1) or l8oidc2m-CI-0-IP-1="" + + + + + fr.insee + l8oib75g-CI-0 + 1 + + PARENT_VECU_ENFAIL6 non renseigné + + + PARENT_VECU_ENFAIL6 non renseigné + + + fr.insee + l8oib75g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oib75g-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL6 + + + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oib75g-CI-0-IP-1) or l8oib75g-CI-0-IP-1="" + + + + + fr.insee + l8ohus0v-CI-0 + 1 + + DC_ENFAIL6 non renseigné + + + DC_ENFAIL6 non renseigné + + + fr.insee + l8ohus0v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohus0v-CI-0-IP-1 + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohus0v-CI-0-IP-1) or l8ohus0v-CI-0-IP-1="" + + + + + fr.insee + l8ohrpn7-CI-0 + 1 + + AG_DC_ENFAIL6 non renseigné + + + AG_DC_ENFAIL6 non renseigné + + + fr.insee + l8ohrpn7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohrpn7-CI-0-IP-1 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohrpn7-CI-0-IP-1) + + + + + fr.insee + l8ohrpn7-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8ohrpn7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohrpn7-CI-1-IP-1 + 1 + + AG_ENFAIL6 + + + + fr.insee + l8ohrpn7-CI-1-IP-2 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + ltd1mo93-GOP + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ohrpn7-CI-1-IP-1)) and not (isnull(l8ohrpn7-CI-1-IP-2)) and cast(l8ohrpn7-CI-1-IP-2,integer) > cast(l8ohrpn7-CI-1-IP-1,integer)) + + + + + fr.insee + l8ohwpt9-CI-0 + 1 + + AG_DEPART_ENFAIL6 non renseigné + + + AG_DEPART_ENFAIL6 non renseigné + + + fr.insee + l8ohwpt9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohwpt9-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ohwpt9-CI-0-IP-1) + + + + + fr.insee + l8ohwpt9-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8ohwpt9-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ohwpt9-CI-1-IP-1 + 1 + + AG_ENFAIL6 + + + + fr.insee + l8ohwpt9-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + ltd1mo93-GOP + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ohwpt9-CI-1-IP-2)) and not(isnull(l8ohwpt9-CI-1-IP-1)) and cast(l8ohwpt9-CI-1-IP-2,integer) > cast(l8ohwpt9-CI-1-IP-1,integer)) + + + + + fr.insee + l8oh46rn-CI-0 + 1 + + PARENT_FREQ_ENFAIL6 non renseigné + + + PARENT_FREQ_ENFAIL6 non renseigné + + + fr.insee + l8oh46rn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oh46rn-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL6 + + + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oh46rn-CI-0-IP-1) or l8oh46rn-CI-0-IP-1="" + + + + + fr.insee + l8ogysyp-CI-0 + 1 + + FR_ENFAIL6 non renseigné + + + FR_ENFAIL6 non renseigné + + + fr.insee + l8ogysyp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogysyp-CI-0-IP-1 + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogysyp-CI-0-IP-1) or l8ogysyp-CI-0-IP-1="" + + + + + fr.insee + l8ogqig3-CI-0 + 1 + + COM_ENFAIL6 non renseigné + + + COM_ENFAIL6 non renseigné + + + fr.insee + l8ogqig3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogqig3-CI-0-IP-1 + 1 + + COM_ENFAIL6 + + + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogqig3-CI-0-IP-1) or l8ogqig3-CI-0-IP-1="" + + + + + fr.insee + l8ogp9jo-CI-0 + 1 + + DEP_ENFAIL6 non renseigné + + + DEP_ENFAIL6 non renseigné + + + fr.insee + l8ogp9jo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogp9jo-CI-0-IP-1 + 1 + + DEP_ENFAIL6 + + + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogp9jo-CI-0-IP-1) or l8ogp9jo-CI-0-IP-1="" + + + + + fr.insee + l8ogpnbn-CI-0 + 1 + + PAY_ENFAIL6 non renseigné + + + PAY_ENFAIL6 non renseigné + + + fr.insee + l8ogpnbn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogpnbn-CI-0-IP-1 + 1 + + PAY_ENFAIL6 + + + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogpnbn-CI-0-IP-1) or l8ogpnbn-CI-0-IP-1="" + + + + + fr.insee + l8ogukpt-CI-0 + 1 + + LOG_ENFAIL6 non renseigné + + + LOG_ENFAIL6 non renseigné + + + fr.insee + l8ogukpt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ogukpt-CI-0-IP-1 + 1 + + LOG_ENFAIL6 + + + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ogukpt-CI-0-IP-1) or l8ogukpt-CI-0-IP-1="" + + + + + fr.insee + l8ob0dk4-CI-0 + 1 + + AUT_PAR_ENFAIL6 non renseigné + + + AUT_PAR_ENFAIL6 non renseigné + + + fr.insee + l8ob0dk4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ob0dk4-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL6 + + + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ob0dk4-CI-0-IP-1) or l8ob0dk4-CI-0-IP-1="" + + + + + fr.insee + l8oarkxm-CI-0 + 1 + + DORT_ENFAIL6 non renseigné + + + DORT_ENFAIL6 non renseigné + + + fr.insee + l8oarkxm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oarkxm-CI-0-IP-1 + 1 + + DORT_ENFAIL6 + + + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oarkxm-CI-0-IP-1) or l8oarkxm-CI-0-IP-1="" + + + + + fr.insee + l8oaqbj5-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL6 non renseigné + + + SEP_AUT_PAR_ENFAIL6 non renseigné + + + fr.insee + l8oaqbj5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oaqbj5-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oaqbj5-CI-0-IP-1) or l8oaqbj5-CI-0-IP-1="" + + + + + fr.insee + l8oanpzw-CI-0 + 1 + + RESID_ENFAIL6 non renseigné + + + RESID_ENFAIL6 non renseigné + + + fr.insee + l8oanpzw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oanpzw-CI-0-IP-1 + 1 + + RESID_ENFAIL6 + + + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oanpzw-CI-0-IP-1) or l8oanpzw-CI-0-IP-1="" + + + + + fr.insee + l8oasgat-CI-0 + 1 + + SANTE_ENFAIL6 non renseigné + + + SANTE_ENFAIL6 non renseigné + + + fr.insee + l8oasgat-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oasgat-CI-0-IP-1 + 1 + + SANTE_ENFAIL6 + + + + + fr.insee + l8oasgat-QOP-lvgq6z78 + 1 + OutParameter + + + fr.insee + l8oasgat-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oasgat-CI-0-IP-1) or l8oasgat-CI-0-IP-1="" + + + + + fr.insee + lvgqbpim-CI-0 + 1 + + ASE_ENFAIL6 non renseigné + + + ASE_ENFAIL6 non renseigné + + + fr.insee + lvgqbpim-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgqbpim-CI-0-IP-1 + 1 + + ASE_ENFAIL6 + + + + + fr.insee + lvgqbpim-QOP-lvgqaha5 + 1 + OutParameter + + + fr.insee + lvgqbpim-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgqbpim-CI-0-IP-1) or lvgqbpim-CI-0-IP-1="" + + + + + fr.insee + l8ok9kmj-CI-0 + 1 + + PRENOM_ENFAIL7 non renseigné + + + PRENOM_ENFAIL7 non renseigné + + + fr.insee + l8ok9kmj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok9kmj-CI-0-IP-1 + 1 + + PRENOM_ENFAIL7 + + + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok9kmj-CI-0-IP-1) or l8ok9kmj-CI-0-IP-1="" + + + + + fr.insee + l8okbmv3-CI-0 + 1 + + SEXE_ENFAIL7 non renseigné + + + SEXE_ENFAIL7 non renseigné + + + fr.insee + l8okbmv3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okbmv3-CI-0-IP-1 + 1 + + SEXE_ENFAIL7 + + + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okbmv3-CI-0-IP-1) or l8okbmv3-CI-0-IP-1="" + + + + + fr.insee + l8okh65e-CI-0 + 1 + + ANAI_ENFAIL7 non renseigné + + + ANAI_ENFAIL7 non renseigné + + + fr.insee + l8okh65e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-0-IP-1 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okh65e-CI-0-IP-1) or l8okh65e-CI-0-IP-1="" + + + + + fr.insee + l8okh65e-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8okh65e-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8okh65e-CI-1-IP-2 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8okh65e-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8okh65e-CI-1-IP-2)) and not(isnull(l8okh65e-CI-1-IP-1)) and cast(l8okh65e-CI-1-IP-2,integer) < l8okh65e-CI-1-IP-1) + + + + + fr.insee + l8okh65e-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8okh65e-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okh65e-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8okh65e-CI-2-IP-2 + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8okh65e-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8okh65e-CI-2-IP-2)) and not(isnull(l8okh65e-CI-2-IP-1)) and (l8okh65e-CI-2-IP-1 + 15 > cast(l8okh65e-CI-2-IP-2,integer))) + + + + + fr.insee + l8okc5z9-CI-0 + 1 + + NEFRANCE_ENFAIL7 non renseigné + + + NEFRANCE_ENFAIL7 non renseigné + + + fr.insee + l8okc5z9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okc5z9-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL7 + + + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okc5z9-CI-0-IP-1) or l8okc5z9-CI-0-IP-1="" + + + + + fr.insee + lv6hwis8-CI-0 + 1 + + ADOPT_ENFAIL7 non renseigné + + + ADOPT_ENFAIL7 non renseigné + + + fr.insee + lv6hwis8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6hwis8-CI-0-IP-1 + 1 + + ADOPT_ENFAIL7 + + + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + OutParameter + + + fr.insee + lv6hwis8-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6hwis8-CI-0-IP-1) or lv6hwis8-CI-0-IP-1="" + + + + + fr.insee + lv6kasxf-CI-0 + 1 + + ANADOPT_ENFAIL7 non renseignée + + + ANADOPT_ENFAIL7 non renseignée + + + fr.insee + lv6kasxf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kasxf-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL7 + + + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6kasxf-CI-0-IP-1) or lv6kasxf-CI-0-IP-1="" + + + + + fr.insee + lv6kasxf-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6kasxf-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kasxf-CI-1-IP-1 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + lv6kasxf-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL7 + + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6kasxf-CI-1-IP-2)) and not(isnull(lv6kasxf-CI-1-IP-1)) and cast(lv6kasxf-CI-1-IP-2,integer) < cast(lv6kasxf-CI-1-IP-1,integer)) + + + + + fr.insee + lv6kasxf-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6kasxf-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kasxf-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6kasxf-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6kasxf-CI-2-IP-2)) and not(isnull(lv6kasxf-CI-2-IP-1)) and cast(lv6kasxf-CI-2-IP-2,integer) < lv6kasxf-CI-2-IP-1) + + + + + fr.insee + lv6kasxf-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6kasxf-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kasxf-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6kasxf-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL7 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6kasxf-CI-3-IP-2)) and not(isnull(lv6kasxf-CI-3-IP-1)) and (lv6kasxf-CI-3-IP-1 + 15 > cast(lv6kasxf-CI-3-IP-2,integer))) + + + + + fr.insee + l8okdoof-CI-0 + 1 + + PARENT_VIT_ENFAIL7 non renseigné + + + PARENT_VIT_ENFAIL7 non renseigné + + + fr.insee + l8okdoof-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okdoof-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okdoof-CI-0-IP-1) or l8okdoof-CI-0-IP-1="" + + + + + fr.insee + l8ok0d4y-CI-0 + 1 + + PARENT_VECU_ENFAIL7 non renseigné + + + PARENT_VECU_ENFAIL7 non renseigné + + + fr.insee + l8ok0d4y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok0d4y-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL7 + + + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok0d4y-CI-0-IP-1) or l8ok0d4y-CI-0-IP-1="" + + + + + fr.insee + l8ok0acp-CI-0 + 1 + + DC_ENFAIL7 non renseigné + + + DC_ENFAIL7 non renseigné + + + fr.insee + l8ok0acp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ok0acp-CI-0-IP-1 + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ok0acp-CI-0-IP-1) or l8ok0acp-CI-0-IP-1="" + + + + + fr.insee + l8ojs3vl-CI-0 + 1 + + AG_DC_ENFAIL7 non renseigné + + + AG_DC_ENFAIL7 non renseigné + + + fr.insee + l8ojs3vl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojs3vl-CI-0-IP-1 + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojs3vl-CI-0-IP-1) + + + + + fr.insee + l8ojs3vl-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8ojs3vl-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojs3vl-CI-1-IP-1 + 1 + + AG_ENFAIL7 + + + + fr.insee + l8ojs3vl-CI-1-IP-2 + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + ltd1tr9u-GOP + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ojs3vl-CI-1-IP-1)) and not (isnull(l8ojs3vl-CI-1-IP-2)) and cast(l8ojs3vl-CI-1-IP-2,integer) > cast(l8ojs3vl-CI-1-IP-1,integer)) + + + + + fr.insee + l8ojuhud-CI-0 + 1 + + AG_DEPART_ENFAIL7 non renseigné + + + AG_DEPART_ENFAIL7 non renseigné + + + fr.insee + l8ojuhud-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojuhud-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojuhud-CI-0-IP-1) + + + + + fr.insee + l8ojuhud-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8ojuhud-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojuhud-CI-1-IP-1 + 1 + + AG_ENFAIL7 + + + + fr.insee + l8ojuhud-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + ltd1tr9u-GOP + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ojuhud-CI-1-IP-2)) and not(isnull(l8ojuhud-CI-1-IP-1)) and cast(l8ojuhud-CI-1-IP-2,integer) > cast(l8ojuhud-CI-1-IP-1,integer)) + + + + + fr.insee + l8ojmjws-CI-0 + 1 + + PARENT_FREQ_ENFAIL7 non renseigné + + + PARENT_FREQ_ENFAIL7 non renseigné + + + fr.insee + l8ojmjws-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojmjws-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL7 + + + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojmjws-CI-0-IP-1) or l8ojmjws-CI-0-IP-1="" + + + + + fr.insee + l8oj98gw-CI-0 + 1 + + FR_ENFAIL7 non renseigné + + + FR_ENFAIL7 non renseigné + + + fr.insee + l8oj98gw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oj98gw-CI-0-IP-1 + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oj98gw-CI-0-IP-1) or l8oj98gw-CI-0-IP-1="" + + + + + fr.insee + l8ojczfv-CI-0 + 1 + + COM_ENFAIL7 non renseigné + + + COM_ENFAIL7 non renseigné + + + fr.insee + l8ojczfv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojczfv-CI-0-IP-1 + 1 + + COM_ENFAIL7 + + + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojczfv-CI-0-IP-1) or l8ojczfv-CI-0-IP-1="" + + + + + fr.insee + l8ojb4ub-CI-0 + 1 + + DEP_ENFAIL7 non renseigné + + + DEP_ENFAIL7 non renseigné + + + fr.insee + l8ojb4ub-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojb4ub-CI-0-IP-1 + 1 + + DEP_ENFAIL7 + + + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojb4ub-CI-0-IP-1) or l8ojb4ub-CI-0-IP-1="" + + + + + fr.insee + l8ojif3m-CI-0 + 1 + + PAY_ENFAIL7 non renseigné + + + PAY_ENFAIL7 non renseigné + + + fr.insee + l8ojif3m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ojif3m-CI-0-IP-1 + 1 + + PAY_ENFAIL7 + + + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ojif3m-CI-0-IP-1) or l8ojif3m-CI-0-IP-1="" + + + + + fr.insee + l8oja1pz-CI-0 + 1 + + LOG_ENFAIL7 non renseigné + + + LOG_ENFAIL7 non renseigné + + + fr.insee + l8oja1pz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oja1pz-CI-0-IP-1 + 1 + + LOG_ENFAIL7 + + + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oja1pz-CI-0-IP-1) or l8oja1pz-CI-0-IP-1="" + + + + + fr.insee + l8oiinpy-CI-0 + 1 + + AUT_PAR_ENFAIL7 non renseigné + + + AUT_PAR_ENFAIL7 non renseigné + + + fr.insee + l8oiinpy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oiinpy-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oiinpy-CI-0-IP-1) or l8oiinpy-CI-0-IP-1="" + + + + + fr.insee + l8oj67fo-CI-0 + 1 + + DORT_ENFAIL7 non renseigné + + + DORT_ENFAIL7 non renseigné + + + fr.insee + l8oj67fo-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oj67fo-CI-0-IP-1 + 1 + + DORT_ENFAIL7 + + + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oj67fo-CI-0-IP-1) or l8oj67fo-CI-0-IP-1="" + + + + + fr.insee + l8oiu9ax-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL7 non renseigné + + + SEP_AUT_PAR_ENFAIL7 non renseigné + + + fr.insee + l8oiu9ax-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oiu9ax-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oiu9ax-CI-0-IP-1) or l8oiu9ax-CI-0-IP-1="" + + + + + fr.insee + l8oicj6e-CI-0 + 1 + + RESID_ENFAIL7 non renseigné + + + RESID_ENFAIL7 non renseigné + + + fr.insee + l8oicj6e-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oicj6e-CI-0-IP-1 + 1 + + RESID_ENFAIL7 + + + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oicj6e-CI-0-IP-1) or l8oicj6e-CI-0-IP-1="" + + + + + fr.insee + l8oizp0r-CI-0 + 1 + + SANTE_ENFAIL7 non renseigné + + + SANTE_ENFAIL7 non renseigné + + + fr.insee + l8oizp0r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oizp0r-CI-0-IP-1 + 1 + + SANTE_ENFAIL7 + + + + + fr.insee + l8oizp0r-QOP-lvgql017 + 1 + OutParameter + + + fr.insee + l8oizp0r-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oizp0r-CI-0-IP-1) or l8oizp0r-CI-0-IP-1="" + + + + + fr.insee + lvgq4gkg-CI-0 + 1 + + ASE_ENFAIL7 non renseigné + + + ASE_ENFAIL7 non renseigné + + + fr.insee + lvgq4gkg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgq4gkg-CI-0-IP-1 + 1 + + ASE_ENFAIL7 + + + + + fr.insee + lvgq4gkg-QOP-lvgqgz9z + 1 + OutParameter + + + fr.insee + lvgq4gkg-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgq4gkg-CI-0-IP-1) or lvgq4gkg-CI-0-IP-1="" + + + + + fr.insee + l8olci32-CI-0 + 1 + + PRENOM_ENFAIL8 non renseigné + + + PRENOM_ENFAIL8 non renseigné + + + fr.insee + l8olci32-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olci32-CI-0-IP-1 + 1 + + PRENOM_ENFAIL8 + + + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olci32-CI-0-IP-1) or l8olci32-CI-0-IP-1="" + + + + + fr.insee + l8olbhxj-CI-0 + 1 + + SEXE_ENFAIL8 non renseigné + + + SEXE_ENFAIL8 non renseigné + + + fr.insee + l8olbhxj-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olbhxj-CI-0-IP-1 + 1 + + SEXE_ENFAIL8 + + + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olbhxj-CI-0-IP-1) or l8olbhxj-CI-0-IP-1="" + + + + + fr.insee + l8ol9xy3-CI-0 + 1 + + ANAI_ENFAIL8 non renseigné + + + ANAI_ENFAIL8 non renseigné + + + fr.insee + l8ol9xy3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-0-IP-1 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol9xy3-CI-0-IP-1) or l8ol9xy3-CI-0-IP-1="" + + + + + fr.insee + l8ol9xy3-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + l8ol9xy3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l8ol9xy3-CI-1-IP-2 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ol9xy3-CI-1-IP-2)) and not(isnull(l8ol9xy3-CI-1-IP-1)) and (l8ol9xy3-CI-1-IP-1 + 15 > cast(l8ol9xy3-CI-1-IP-2,integer))) + + + + + fr.insee + l8ol9xy3-CI-2 + 1 + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l8ol9xy3-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol9xy3-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l8ol9xy3-CI-2-IP-2 + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l8ol9xy3-CI-2-IP-2)) and not(isnull(l8ol9xy3-CI-2-IP-1)) and cast(l8ol9xy3-CI-2-IP-2,integer) < l8ol9xy3-CI-2-IP-1) + + + + + fr.insee + l8ola1mr-CI-0 + 1 + + NEFRANCE_ENFAIL8 non renseigné + + + NEFRANCE_ENFAIL8 non renseigné + + + fr.insee + l8ola1mr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ola1mr-CI-0-IP-1 + 1 + + NEFRANCE_ENFAIL8 + + + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ola1mr-CI-0-IP-1) or l8ola1mr-CI-0-IP-1="" + + + + + fr.insee + lv6igxed-CI-0 + 1 + + ADOPT_ENFAIL8 non renseigné + + + ADOPT_ENFAIL8 non renseigné + + + fr.insee + lv6igxed-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6igxed-CI-0-IP-1 + 1 + + ADOPT_ENFAIL8 + + + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + OutParameter + + + fr.insee + lv6igxed-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6igxed-CI-0-IP-1) or lv6igxed-CI-0-IP-1="" + + + + + fr.insee + lv6khz5j-CI-0 + 1 + + ANADOPT_ENFAIL8 non renseignée + + + ANADOPT_ENFAIL8 non renseignée + + + fr.insee + lv6khz5j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6khz5j-CI-0-IP-1 + 1 + + ANADOPT_ENFAIL8 + + + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6khz5j-CI-0-IP-1) or lv6khz5j-CI-0-IP-1="" + + + + + fr.insee + lv6khz5j-CI-1 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6khz5j-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6khz5j-CI-1-IP-1 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + lv6khz5j-CI-1-IP-2 + 1 + + ANADOPT_ENFAIL8 + + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6khz5j-CI-1-IP-2)) and not(isnull(lv6khz5j-CI-1-IP-1)) and cast(lv6khz5j-CI-1-IP-2,integer) < cast(lv6khz5j-CI-1-IP-1,integer)) + + + + + fr.insee + lv6khz5j-CI-2 + 1 + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + lv6khz5j-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6khz5j-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6khz5j-CI-2-IP-2 + 1 + + ANADOPT_ENFAIL8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6khz5j-CI-2-IP-2)) and not(isnull(lv6khz5j-CI-2-IP-1)) and cast(lv6khz5j-CI-2-IP-2,integer) < cast(lv6khz5j-CI-2-IP-1,integer)) + + + + + fr.insee + lv6khz5j-CI-3 + 1 + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?" + + + fr.insee + lv6khz5j-CI-3-II-3 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6khz5j-CI-3-IP-1 + 1 + + ANAIS + + + + fr.insee + lv6khz5j-CI-3-IP-2 + 1 + + ANADOPT_ENFAIL8 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-3-IP-1 + 1 + InParameter + + + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j-CI-3-IP-2 + 1 + InParameter + + + (not(isnull(lv6khz5j-CI-3-IP-2)) and not(isnull(lv6khz5j-CI-3-IP-1)) and (cast(lv6khz5j-CI-3-IP-1,integer) + 15 > cast(lv6khz5j-CI-3-IP-2,integer))) + + + + + fr.insee + l8okz45l-CI-0 + 1 + + PARENT_VIT_ENFAIL8 non renseigné + + + PARENT_VIT_ENFAIL8 non renseigné + + + fr.insee + l8okz45l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okz45l-CI-0-IP-1 + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okz45l-CI-0-IP-1) or l8okz45l-CI-0-IP-1="" + + + + + fr.insee + l8ol369l-CI-0 + 1 + + PARENT_VECU_ENFAIL8 non renseigné + + + PARENT_VECU_ENFAIL8 non renseigné + + + fr.insee + l8ol369l-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol369l-CI-0-IP-1 + 1 + + PARENT_VECU_ENFAIL8 + + + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol369l-CI-0-IP-1) or l8ol369l-CI-0-IP-1="" + + + + + fr.insee + l8ole120-CI-0 + 1 + + DC_ENFAIL8 non renseigné + + + DC_ENFAIL8 non renseigné + + + fr.insee + l8ole120-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ole120-CI-0-IP-1 + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ole120-CI-0-IP-1) or l8ole120-CI-0-IP-1="" + + + + + fr.insee + l8olcd8n-CI-0 + 1 + + AG_DC_ENFAIL8 non renseigné + + + AG_DC_ENFAIL8 non renseigné + + + fr.insee + l8olcd8n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olcd8n-CI-0-IP-1 + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-0-IP-1 + 1 + InParameter + + + isnull(l8olcd8n-CI-0-IP-1) + + + + + fr.insee + l8olcd8n-CI-1 + 1 + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8olcd8n-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8olcd8n-CI-1-IP-1 + 1 + + AG_ENFAIL8 + + + + fr.insee + l8olcd8n-CI-1-IP-2 + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + ltd1xvpk-GOP + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8olcd8n-CI-1-IP-1)) and not (isnull(l8olcd8n-CI-1-IP-2)) and cast(l8olcd8n-CI-1-IP-2,integer) > cast(l8olcd8n-CI-1-IP-1,integer)) + + + + + fr.insee + l8ol84b7-CI-0 + 1 + + AG_DEPART_ENFAIL8 non renseigné + + + AG_DEPART_ENFAIL8 non renseigné + + + fr.insee + l8ol84b7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol84b7-CI-0-IP-1 + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-0-IP-1 + 1 + InParameter + + + isnull(l8ol84b7-CI-0-IP-1) + + + + + fr.insee + l8ol84b7-CI-1 + 1 + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?" + + + fr.insee + l8ol84b7-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8ol84b7-CI-1-IP-1 + 1 + + AG_ENFAIL8 + + + + fr.insee + l8ol84b7-CI-1-IP-2 + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + ltd1xvpk-GOP + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l8ol84b7-CI-1-IP-2)) and not(isnull(l8ol84b7-CI-1-IP-1)) and cast(l8ol84b7-CI-1-IP-2,integer) > cast(l8ol84b7-CI-1-IP-1,integer)) + + + + + fr.insee + l8okx7cd-CI-0 + 1 + + PARENT_FREQ_ENFAIL8 non renseigné + + + PARENT_FREQ_ENFAIL8 non renseigné + + + fr.insee + l8okx7cd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okx7cd-CI-0-IP-1 + 1 + + PARENT_FREQ_ENFAIL8 + + + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okx7cd-CI-0-IP-1) or l8okx7cd-CI-0-IP-1="" + + + + + fr.insee + l8okpxv8-CI-0 + 1 + + FR_ENFAIL8 non renseigné + + + FR_ENFAIL8 non renseigné + + + fr.insee + l8okpxv8-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okpxv8-CI-0-IP-1 + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okpxv8-CI-0-IP-1) or l8okpxv8-CI-0-IP-1="" + + + + + fr.insee + l8okjfla-CI-0 + 1 + + COM_ENFAIL8 non renseigné + + + COM_ENFAIL8 non renseigné + + + fr.insee + l8okjfla-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okjfla-CI-0-IP-1 + 1 + + COM_ENFAIL8 + + + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okjfla-CI-0-IP-1) or l8okjfla-CI-0-IP-1="" + + + + + fr.insee + l8okue2t-CI-0 + 1 + + DEP_ENFAIL8 non renseigné + + + DEP_ENFAIL8 non renseigné + + + fr.insee + l8okue2t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okue2t-CI-0-IP-1 + 1 + + DEP_ENFAIL8 + + + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okue2t-CI-0-IP-1) or l8okue2t-CI-0-IP-1="" + + + + + fr.insee + l8okxgwv-CI-0 + 1 + + PAY_ENFAIL8 non renseigné + + + PAY_ENFAIL8 non renseigné + + + fr.insee + l8okxgwv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okxgwv-CI-0-IP-1 + 1 + + PAY_ENFAIL8 + + + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv-CI-0-IP-1 + 1 + InParameter + + + isnul(l8okxgwv-CI-0-IP-1) or l8okxgwv-CI-0-IP-1="" + + + + + fr.insee + l8oksuft-CI-0 + 1 + + LOG_ENFAIL8 non renseigné + + + LOG_ENFAIL8 non renseigné + + + fr.insee + l8oksuft-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oksuft-CI-0-IP-1 + 1 + + LOG_ENFAIL8 + + + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oksuft-CI-0-IP-1) or l8oksuft-CI-0-IP-1="" + + + + + fr.insee + l8okked6-CI-0 + 1 + + AUT_PAR_ENFAIL8 non renseigné + + + AUT_PAR_ENFAIL8 non renseigné + + + fr.insee + l8okked6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okked6-CI-0-IP-1 + 1 + + AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okked6-CI-0-IP-1) or l8okked6-CI-0-IP-1="" + + + + + fr.insee + l8okkkef-CI-0 + 1 + + DORT_ENFAIL8 non renseigné + + + DORT_ENFAIL8 non renseigné + + + fr.insee + l8okkkef-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okkkef-CI-0-IP-1 + 1 + + DORT_ENFAIL8 + + + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okkkef-CI-0-IP-1) or l8okkkef-CI-0-IP-1="" + + + + + fr.insee + l8okfvhy-CI-0 + 1 + + SEP_AUT_PAR_ENFAIL8 non renseigné + + + SEP_AUT_PAR_ENFAIL8 non renseigné + + + fr.insee + l8okfvhy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okfvhy-CI-0-IP-1 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okfvhy-CI-0-IP-1) or l8okfvhy-CI-0-IP-1="" + + + + + fr.insee + l8okioqc-CI-0 + 1 + + RESID_ENFAIL8 non renseigné + + + RESID_ENFAIL8 non renseigné + + + fr.insee + l8okioqc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8okioqc-CI-0-IP-1 + 1 + + RESID_ENFAIL8 + + + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc-CI-0-IP-1 + 1 + InParameter + + + isnull(l8okioqc-CI-0-IP-1) or l8okioqc-CI-0-IP-1="" + + + + + fr.insee + l8oklb21-CI-0 + 1 + + SANTE_ENFAIL8 non renseigné + + + SANTE_ENFAIL8 non renseigné + + + fr.insee + l8oklb21-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l8oklb21-CI-0-IP-1 + 1 + + SANTE_ENFAIL8 + + + + + fr.insee + l8oklb21-QOP-lvgqkscs + 1 + OutParameter + + + fr.insee + l8oklb21-CI-0-IP-1 + 1 + InParameter + + + isnull(l8oklb21-CI-0-IP-1) or l8oklb21-CI-0-IP-1="" + + + + + fr.insee + lvgq7nb7-CI-0 + 1 + + ASE_ENFAIL8 non renseigné + + + ASE_ENFAIL8 non renseigné + + + fr.insee + lvgq7nb7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lvgq7nb7-CI-0-IP-1 + 1 + + ASE_ENFAIL8 + + + + + fr.insee + lvgq7nb7-QOP-lvgq4rkd + 1 + OutParameter + + + fr.insee + lvgq7nb7-CI-0-IP-1 + 1 + InParameter + + + isnull(lvgq7nb7-CI-0-IP-1) or lvgq7nb7-CI-0-IP-1="" + + + + + fr.insee + l1f6a3qv-CI-0 + 1 + + PETIT_ENF non renseigné + + + PETIT_ENF non renseigné + + + fr.insee + l1f6a3qv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f6a3qv-CI-0-IP-1 + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f6a3qv-CI-0-IP-1) or l1f6a3qv-CI-0-IP-1="" + + + + + fr.insee + l1f6dz1j-CI-0 + 1 + + NB_PETIT_ENF non renseigné + + + NB_PETIT_ENF non renseigné + + + fr.insee + l1f6dz1j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f6dz1j-CI-0-IP-1 + 1 + + NB_PETIT_ENF + + + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f6dz1j-CI-0-IP-1) + + + + + fr.insee + l1f69ivh-CI-0 + 1 + + AG_PETIT_ENF non renseigné + + + AG_PETIT_ENF non renseigné + + + fr.insee + l1f69ivh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f69ivh-CI-0-IP-1 + 1 + + AG_PETIT_ENF + + + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f69ivh-CI-0-IP-1) + + + + + fr.insee + l1f69ivh-CI-1 + 1 + + "Il y a peu d'écart entre votre âge et celui de votre petit-enfant ou l'aîné(e) de vos petits-enfants. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre âge et celui de votre petit-enfant ou l'aîné(e) de vos petits-enfants. Est-ce que vous confirmez ?" + + + fr.insee + l1f69ivh-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f69ivh-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + l1f69ivh-CI-1-IP-2 + 1 + + AG_PETIT_ENF + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + l1f69ivh-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l1f69ivh-CI-1-IP-2)) and not(isnull(l1f69ivh-CI-1-IP-1)) and (cast(l1f69ivh-CI-1-IP-1,integer) - 35 < cast(l1f69ivh-CI-1-IP-2,integer))) + + + + + fr.insee + l1g3hka7-CI-0 + 1 + + FREQ_VU_PETIT_ENF non renseignée + + + FREQ_VU_PETIT_ENF non renseignée + + + fr.insee + l1g3hka7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3hka7-CI-0-IP-1 + 1 + + FREQ_VU_PETIT_ENF1 + + + + fr.insee + l1g3hka7-CI-0-IP-2 + 1 + + FREQ_VU_PETIT_ENF2 + + + + fr.insee + l1g3hka7-CI-0-IP-3 + 1 + + FREQ_VU_PETIT_ENF3 + + + + fr.insee + l1g3hka7-CI-0-IP-4 + 1 + + FREQ_VU_PETIT_ENF4 + + + + + fr.insee + l1g3hka7-QOP-lyset8xu + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-lysf9ivz + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-lysexinp + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g3hka7-QOP-lysfb2lu + 1 + OutParameter + + + fr.insee + l1g3hka7-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1g3hka7-CI-0-IP-1, false) = false and nvl(l1g3hka7-CI-0-IP-2, false) = false and nvl(l1g3hka7-CI-0-IP-3, false) = false and nvl(l1g3hka7-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1f4yrno-CI-0 + 1 + + FREQ_CONT_PETIT_ENF non renseignée + + + FREQ_CONT_PETIT_ENF non renseignée + + + fr.insee + l1f4yrno-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f4yrno-CI-0-IP-1 + 1 + + FREQ_CONT_PETIT_ENF1 + + + + fr.insee + l1f4yrno-CI-0-IP-2 + 1 + + FREQ_CONT_PETIT_ENF2 + + + + fr.insee + l1f4yrno-CI-0-IP-3 + 1 + + FREQ_CONT_PETIT_ENF3 + + + + fr.insee + l1f4yrno-CI-0-IP-4 + 1 + + FREQ_CONT_PETIT_ENF4 + + + + + fr.insee + l1f4yrno-QOP-lysew1yw + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-lysf8y6x + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-lysf9t6e + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1f4yrno-QOP-lysf9j6m + 1 + OutParameter + + + fr.insee + l1f4yrno-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1f4yrno-CI-0-IP-1, false) = false and nvl(l1f4yrno-CI-0-IP-2, false) = false and nvl(l1f4yrno-CI-0-IP-3, false) = false and nvl(l1f4yrno-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g87t8t-CI-0 + 1 + + AIDE_APPORT non renseignée + + + AIDE_APPORT non renseignée + + + fr.insee + l1g87t8t-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g87t8t-CI-0-IP-1 + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-CI-0-IP-2 + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-CI-0-IP-3 + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-CI-0-IP-4 + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-CI-0-IP-5 + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ksa9qw + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-0-IP-5 + 1 + InParameter + + + (nvl(l1g87t8t-CI-0-IP-1, false) = false and nvl(l1g87t8t-CI-0-IP-2, false) = false and nvl(l1g87t8t-CI-0-IP-3, false) = false and nvl(l1g87t8t-CI-0-IP-4, false) = false and nvl(l1g87t8t-CI-0-IP-5, false) = false ) + + + + + fr.insee + l1g87t8t-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l1g87t8t-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l1g87t8t-CI-1-IP-1 + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-CI-1-IP-2 + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-CI-1-IP-3 + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-CI-1-IP-4 + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-CI-1-IP-5 + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-4 + 1 + InParameter + + + + + fr.insee + l1g87t8t-QOP-m0ksa9qw + 1 + OutParameter + + + fr.insee + l1g87t8t-CI-1-IP-5 + 1 + InParameter + + + (nvl(l1g87t8t-CI-1-IP-1,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-2,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-3,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) or (nvl(l1g87t8t-CI-1-IP-4,false)=true and nvl(l1g87t8t-CI-1-IP-5,false)=true) + + + + + fr.insee + l1ggssgl-CI-0 + 1 + + QUI_AID_APP_11 non renseigné + + + QUI_AID_APP_11 non renseigné + + + fr.insee + l1ggssgl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggssgl-CI-0-IP-1 + 1 + + QUI_AID_APP_1A1 + + + + fr.insee + l1ggssgl-CI-0-IP-2 + 1 + + QUI_AID_APP_1A2 + + + + fr.insee + l1ggssgl-CI-0-IP-3 + 1 + + QUI_AID_APP_1A3 + + + + fr.insee + l1ggssgl-CI-0-IP-4 + 1 + + QUI_AID_APP_1A4 + + + + + fr.insee + l1ggssgl-QOP-m23czf6s + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-m23cq2u1 + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-m23cod6m + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggssgl-QOP-m23ch75l + 1 + OutParameter + + + fr.insee + l1ggssgl-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggssgl-CI-0-IP-1, false) = false and nvl(l1ggssgl-CI-0-IP-2, false) = false and nvl(l1ggssgl-CI-0-IP-3, false) = false and nvl(l1ggssgl-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7u5rox-CI-0 + 1 + + QUI_AID_APP_1B non renseignée + + + QUI_AID_APP_1B non renseignée + + + fr.insee + lw7u5rox-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7u5rox-CI-0-IP-1 + 1 + + QUI_AID_APP_1B1 + + + + fr.insee + lw7u5rox-CI-0-IP-2 + 1 + + QUI_AID_APP_1B2 + + + + fr.insee + lw7u5rox-CI-0-IP-3 + 1 + + QUI_AID_APP_1B3 + + + + + fr.insee + lw7u5rox-QOP-m23cqwzh + 1 + OutParameter + + + fr.insee + lw7u5rox-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7u5rox-QOP-m23cy792 + 1 + OutParameter + + + fr.insee + lw7u5rox-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7u5rox-QOP-m23cpqpj + 1 + OutParameter + + + fr.insee + lw7u5rox-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7u5rox-CI-0-IP-1, false) = false and nvl(lw7u5rox-CI-0-IP-2, false) = false and nvl(lw7u5rox-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7tzp47-CI-0 + 1 + + QUI_AID_APP_1C non renseignée + + + QUI_AID_APP_1C non renseignée + + + fr.insee + lw7tzp47-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7tzp47-CI-0-IP-1 + 1 + + QUI_AID_APP_1C1 + + + + fr.insee + lw7tzp47-CI-0-IP-2 + 1 + + QUI_AID_APP_1C2 + + + + fr.insee + lw7tzp47-CI-0-IP-3 + 1 + + QUI_AID_APP_1C3 + + + + + fr.insee + lw7tzp47-QOP-m23ctpym + 1 + OutParameter + + + fr.insee + lw7tzp47-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7tzp47-QOP-m23chyj6 + 1 + OutParameter + + + fr.insee + lw7tzp47-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7tzp47-QOP-m23cjnkj + 1 + OutParameter + + + fr.insee + lw7tzp47-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7tzp47-CI-0-IP-1, false) = false and nvl(lw7tzp47-CI-0-IP-2, false) = false and nvl(lw7tzp47-CI-0-IP-3, false) = false ) + + + + + fr.insee + lw7u3zby-CI-0 + 1 + + QUI_AID_APP_1D non renseignée + + + QUI_AID_APP_1D non renseignée + + + fr.insee + lw7u3zby-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7u3zby-CI-0-IP-1 + 1 + + QUI_AID_APP_1D1 + + + + fr.insee + lw7u3zby-CI-0-IP-2 + 1 + + QUI_AID_APP_1D2 + + + + + fr.insee + lw7u3zby-QOP-m23couft + 1 + OutParameter + + + fr.insee + lw7u3zby-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7u3zby-QOP-m23coud5 + 1 + OutParameter + + + fr.insee + lw7u3zby-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7u3zby-CI-0-IP-1, false) = false and nvl(lw7u3zby-CI-0-IP-2, false) = false ) + + + + + fr.insee + l1ggm06b-CI-0 + 1 + + QUI_AID_APP_2 non renseigné + + + QUI_AID_APP_2 non renseigné + + + fr.insee + l1ggm06b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggm06b-CI-0-IP-1 + 1 + + QUI_AID_APP_2A1 + + + + fr.insee + l1ggm06b-CI-0-IP-2 + 1 + + QUI_AID_APP_2A2 + + + + fr.insee + l1ggm06b-CI-0-IP-3 + 1 + + QUI_AID_APP_2A3 + + + + fr.insee + l1ggm06b-CI-0-IP-4 + 1 + + QUI_AID_APP_2A4 + + + + + fr.insee + l1ggm06b-QOP-m23cy63o + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-m23clw9y + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-m23cpj0g + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggm06b-QOP-m23cs9lm + 1 + OutParameter + + + fr.insee + l1ggm06b-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggm06b-CI-0-IP-1, false) = false and nvl(l1ggm06b-CI-0-IP-2, false) = false and nvl(l1ggm06b-CI-0-IP-3, false) = false and nvl(l1ggm06b-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7vzo64-CI-0 + 1 + + QUI_AID_APP_2B non renseignée + + + QUI_AID_APP_2B non renseignée + + + fr.insee + lw7vzo64-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7vzo64-CI-0-IP-1 + 1 + + QUI_AID_APP_2B1 + + + + fr.insee + lw7vzo64-CI-0-IP-2 + 1 + + QUI_AID_APP_2B2 + + + + fr.insee + lw7vzo64-CI-0-IP-3 + 1 + + QUI_AID_APP_2B3 + + + + + fr.insee + lw7vzo64-QOP-m23cpjyf + 1 + OutParameter + + + fr.insee + lw7vzo64-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7vzo64-QOP-m23cflls + 1 + OutParameter + + + fr.insee + lw7vzo64-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7vzo64-QOP-m23cm1g1 + 1 + OutParameter + + + fr.insee + lw7vzo64-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7vzo64-CI-0-IP-1, false) = false and nvl(lw7vzo64-CI-0-IP-2, false) = false and nvl(lw7vzo64-CI-0-IP-3, false) = false ) + + + + + fr.insee + lw7w4b79-CI-0 + 1 + + QUI_AID_APP_2C non renseignée + + + QUI_AID_APP_2C non renseignée + + + fr.insee + lw7w4b79-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7w4b79-CI-0-IP-1 + 1 + + QUI_AID_APP_2C1 + + + + fr.insee + lw7w4b79-CI-0-IP-2 + 1 + + QUI_AID_APP_2C2 + + + + fr.insee + lw7w4b79-CI-0-IP-3 + 1 + + QUI_AID_APP_2C3 + + + + + fr.insee + lw7w4b79-QOP-m23cwdhi + 1 + OutParameter + + + fr.insee + lw7w4b79-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7w4b79-QOP-m23cqhne + 1 + OutParameter + + + fr.insee + lw7w4b79-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7w4b79-QOP-m23cq935 + 1 + OutParameter + + + fr.insee + lw7w4b79-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7w4b79-CI-0-IP-1, false) = false and nvl(lw7w4b79-CI-0-IP-2, false) = false and nvl(lw7w4b79-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7w7lh9-CI-0 + 1 + + QUI_AID_APP_2D non renseignée + + + QUI_AID_APP_2D non renseignée + + + fr.insee + lw7w7lh9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7w7lh9-CI-0-IP-1 + 1 + + QUI_AID_APP_2D1 + + + + fr.insee + lw7w7lh9-CI-0-IP-2 + 1 + + QUI_AID_APP_2D2 + + + + + fr.insee + lw7w7lh9-QOP-m23cmpju + 1 + OutParameter + + + fr.insee + lw7w7lh9-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7w7lh9-QOP-m23ctsr1 + 1 + OutParameter + + + fr.insee + lw7w7lh9-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7w7lh9-CI-0-IP-1, false) = false and nvl(lw7w7lh9-CI-0-IP-2, false) = false ) + + + + + fr.insee + l1ggtznr-CI-0 + 1 + + QUI_AID_APP_3A non renseignée + + + QUI_AID_APP_3A non renseignée + + + fr.insee + l1ggtznr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggtznr-CI-0-IP-1 + 1 + + QUI_AID_APP_3A1 + + + + fr.insee + l1ggtznr-CI-0-IP-2 + 1 + + QUI_AID_APP_3A2 + + + + fr.insee + l1ggtznr-CI-0-IP-3 + 1 + + QUI_AID_APP_3A3 + + + + fr.insee + l1ggtznr-CI-0-IP-4 + 1 + + QUI_AID_APP_3A4 + + + + + fr.insee + l1ggtznr-QOP-m23cnl9o + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-m23cnawi + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-m23cyjky + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggtznr-QOP-m23cxrro + 1 + OutParameter + + + fr.insee + l1ggtznr-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggtznr-CI-0-IP-1, false) = false and nvl(l1ggtznr-CI-0-IP-2, false) = false and nvl(l1ggtznr-CI-0-IP-3, false) = false and nvl(l1ggtznr-CI-0-IP-4, false) = false) + + + + + fr.insee + lw7w2d1u-CI-0 + 1 + + QUI_AID_APP_3B non renseignée + + + QUI_AID_APP_3B non renseignée + + + fr.insee + lw7w2d1u-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7w2d1u-CI-0-IP-1 + 1 + + QUI_AID_APP_3B1 + + + + fr.insee + lw7w2d1u-CI-0-IP-2 + 1 + + QUI_AID_APP_3B2 + + + + fr.insee + lw7w2d1u-CI-0-IP-3 + 1 + + QUI_AID_APP_3B3 + + + + + fr.insee + lw7w2d1u-QOP-m23cvmpn + 1 + OutParameter + + + fr.insee + lw7w2d1u-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7w2d1u-QOP-m23cr5wt + 1 + OutParameter + + + fr.insee + lw7w2d1u-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7w2d1u-QOP-m23cunxx + 1 + OutParameter + + + fr.insee + lw7w2d1u-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7w2d1u-CI-0-IP-1, false) = false and nvl(lw7w2d1u-CI-0-IP-2, false) = false and nvl(lw7w2d1u-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7w9t0f-CI-0 + 1 + + QUI_AID_APP_3C non renseignée + + + QUI_AID_APP_3C non renseignée + + + fr.insee + lw7w9t0f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7w9t0f-CI-0-IP-1 + 1 + + QUI_AID_APP_3C1 + + + + fr.insee + lw7w9t0f-CI-0-IP-2 + 1 + + QUI_AID_APP_3C2 + + + + fr.insee + lw7w9t0f-CI-0-IP-3 + 1 + + QUI_AID_APP_3C3 + + + + + fr.insee + lw7w9t0f-QOP-m23cnzvc + 1 + OutParameter + + + fr.insee + lw7w9t0f-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7w9t0f-QOP-m23czjsl + 1 + OutParameter + + + fr.insee + lw7w9t0f-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7w9t0f-QOP-m23csrk4 + 1 + OutParameter + + + fr.insee + lw7w9t0f-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7w9t0f-CI-0-IP-1, false) = false and nvl(lw7w9t0f-CI-0-IP-2, false) = false and nvl(lw7w9t0f-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7w2fuz-CI-0 + 1 + + QUI_AID_APP_3D non renseignée + + + QUI_AID_APP_3D non renseignée + + + fr.insee + lw7w2fuz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7w2fuz-CI-0-IP-1 + 1 + + QUI_AID_APP_3D1 + + + + fr.insee + lw7w2fuz-CI-0-IP-2 + 1 + + QUI_AID_APP_3D2 + + + + + fr.insee + lw7w2fuz-QOP-m23cjrgd + 1 + OutParameter + + + fr.insee + lw7w2fuz-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7w2fuz-QOP-m23cjbmj + 1 + OutParameter + + + fr.insee + lw7w2fuz-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7w2fuz-CI-0-IP-1, false) = false and nvl(lw7w2fuz-CI-0-IP-2, false) = false) + + + + + fr.insee + l4lf0y9m-CI-0 + 1 + + QUI_AID_APP_4A non renseigné + + + QUI_AID_APP_4A non renseigné + + + fr.insee + l4lf0y9m-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lf0y9m-CI-0-IP-1 + 1 + + QUI_AID_APP_4A1 + + + + fr.insee + l4lf0y9m-CI-0-IP-2 + 1 + + QUI_AID_APP_4A2 + + + + fr.insee + l4lf0y9m-CI-0-IP-3 + 1 + + QUI_AID_APP_4A3 + + + + fr.insee + l4lf0y9m-CI-0-IP-4 + 1 + + QUI_AID_APP_4A4 + + + + + fr.insee + l4lf0y9m-QOP-m23cxxl5 + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-m23ci6zz + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-m23cxirx + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l4lf0y9m-QOP-m23cza8y + 1 + OutParameter + + + fr.insee + l4lf0y9m-CI-0-IP-4 + 1 + InParameter + + + (nvl(l4lf0y9m-CI-0-IP-1, false) = false and nvl(l4lf0y9m-CI-0-IP-2, false) = false and nvl(l4lf0y9m-CI-0-IP-3, false) = false and nvl(l4lf0y9m-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7wj733-CI-0 + 1 + + QUI_AID_APP_4B non renseiignée + + + QUI_AID_APP_4B non renseiignée + + + fr.insee + lw7wj733-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7wj733-CI-0-IP-1 + 1 + + QUI_AID_APP_4B1 + + + + fr.insee + lw7wj733-CI-0-IP-2 + 1 + + QUI_AID_APP_4B2 + + + + fr.insee + lw7wj733-CI-0-IP-3 + 1 + + QUI_AID_APP_4B3 + + + + + fr.insee + lw7wj733-QOP-m23cwime + 1 + OutParameter + + + fr.insee + lw7wj733-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7wj733-QOP-m23cu578 + 1 + OutParameter + + + fr.insee + lw7wj733-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7wj733-QOP-m23cllwq + 1 + OutParameter + + + fr.insee + lw7wj733-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7wj733-CI-0-IP-1, false) = false and nvl(lw7wj733-CI-0-IP-2, false) = false and nvl(lw7wj733-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7wk34s-CI-0 + 1 + + QUI_AID_APP_4C non renseignée + + + QUI_AID_APP_4C non renseignée + + + fr.insee + lw7wk34s-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7wk34s-CI-0-IP-1 + 1 + + QUI_AID_APP_4C1 + + + + fr.insee + lw7wk34s-CI-0-IP-2 + 1 + + QUI_AID_APP_4C2 + + + + fr.insee + lw7wk34s-CI-0-IP-3 + 1 + + QUI_AID_APP_4C3 + + + + + fr.insee + lw7wk34s-QOP-m23ckv5p + 1 + OutParameter + + + fr.insee + lw7wk34s-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7wk34s-QOP-m23cp9bk + 1 + OutParameter + + + fr.insee + lw7wk34s-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7wk34s-QOP-m23cf0ox + 1 + OutParameter + + + fr.insee + lw7wk34s-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7wk34s-CI-0-IP-1, false) = false and nvl(lw7wk34s-CI-0-IP-2, false) = false and nvl(lw7wk34s-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7wj3l9-CI-0 + 1 + + QUI_AID_APP_4D non renseignée + + + QUI_AID_APP_4D non renseignée + + + fr.insee + lw7wj3l9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7wj3l9-CI-0-IP-1 + 1 + + QUI_AID_APP_4D1 + + + + fr.insee + lw7wj3l9-CI-0-IP-2 + 1 + + QUI_AID_APP_4D2 + + + + + fr.insee + lw7wj3l9-QOP-m23cpbu6 + 1 + OutParameter + + + fr.insee + lw7wj3l9-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7wj3l9-QOP-m23ct687 + 1 + OutParameter + + + fr.insee + lw7wj3l9-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7wj3l9-CI-0-IP-1, false) = false and nvl(lw7wj3l9-CI-0-IP-2, false) = false) + + + + + fr.insee + l1g8o84g-CI-0 + 1 + + AIDE_RECUE non renseignée + + + AIDE_RECUE non renseignée + + + fr.insee + l1g8o84g-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g8o84g-CI-0-IP-1 + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-CI-0-IP-2 + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-CI-0-IP-3 + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-CI-0-IP-4 + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf9f4v + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1g8o84g-CI-0-IP-1, false) = false and nvl(l1g8o84g-CI-0-IP-2, false) = false and nvl(l1g8o84g-CI-0-IP-3, false) = false and nvl(l1g8o84g-CI-0-IP-4, false) = false ) + + + + + fr.insee + l1g8o84g-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + l1g8o84g-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l1g8o84g-CI-1-IP-1 + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-CI-1-IP-2 + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-CI-1-IP-3 + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-CI-1-IP-4 + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-3 + 1 + InParameter + + + + + fr.insee + l1g8o84g-QOP-lpsf9f4v + 1 + OutParameter + + + fr.insee + l1g8o84g-CI-1-IP-4 + 1 + InParameter + + + (nvl(l1g8o84g-CI-1-IP-1,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) or (nvl(l1g8o84g-CI-1-IP-2,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) or (nvl(l1g8o84g-CI-1-IP-3,false)=true and nvl(l1g8o84g-CI-1-IP-4,false)=true) + + + + + fr.insee + l1ggpjd7-CI-0 + 1 + + QUI_AID_REC_1 non renseignée + + + QUI_AID_REC_1 non renseignée + + + fr.insee + l1ggpjd7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggpjd7-CI-0-IP-1 + 1 + + QUI_AID_REC_1A1 + + + + fr.insee + l1ggpjd7-CI-0-IP-2 + 1 + + QUI_AID_REC_1A2 + + + + fr.insee + l1ggpjd7-CI-0-IP-3 + 1 + + QUI_AID_REC_1A3 + + + + fr.insee + l1ggpjd7-CI-0-IP-4 + 1 + + QUI_AID_REC_1A4 + + + + + fr.insee + l1ggpjd7-QOP-m23cls04 + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-m23cv59e + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-m23ci2xl + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggpjd7-QOP-m23cn8ns + 1 + OutParameter + + + fr.insee + l1ggpjd7-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggpjd7-CI-0-IP-1, false) = false and nvl(l1ggpjd7-CI-0-IP-2, false) = false and nvl(l1ggpjd7-CI-0-IP-3, false) = false and nvl(l1ggpjd7-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7yo1jt-CI-0 + 1 + + QUI_AID_REC_1B non renseignée + + + QUI_AID_REC_1B non renseignée + + + fr.insee + lw7yo1jt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7yo1jt-CI-0-IP-1 + 1 + + QUI_AID_REC_1B1 + + + + fr.insee + lw7yo1jt-CI-0-IP-2 + 1 + + QUI_AID_REC_1B2 + + + + fr.insee + lw7yo1jt-CI-0-IP-3 + 1 + + QUI_AID_REC_1B3 + + + + + fr.insee + lw7yo1jt-QOP-m23cezw9 + 1 + OutParameter + + + fr.insee + lw7yo1jt-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7yo1jt-QOP-m23cycg0 + 1 + OutParameter + + + fr.insee + lw7yo1jt-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7yo1jt-QOP-m23cwiht + 1 + OutParameter + + + fr.insee + lw7yo1jt-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7yo1jt-CI-0-IP-1, false) = false and nvl(lw7yo1jt-CI-0-IP-2, false) = false and nvl(lw7yo1jt-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7y7vqk-CI-0 + 1 + + QUI_AID_REC_1C non renseignée + + + QUI_AID_REC_1C non renseignée + + + fr.insee + lw7y7vqk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7y7vqk-CI-0-IP-1 + 1 + + QUI_AID_REC_1C1 + + + + fr.insee + lw7y7vqk-CI-0-IP-2 + 1 + + QUI_AID_REC_1C2 + + + + fr.insee + lw7y7vqk-CI-0-IP-3 + 1 + + QUI_AID_REC_1C3 + + + + + fr.insee + lw7y7vqk-QOP-m23cof6s + 1 + OutParameter + + + fr.insee + lw7y7vqk-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7y7vqk-QOP-m23cryfz + 1 + OutParameter + + + fr.insee + lw7y7vqk-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7y7vqk-QOP-m23chx84 + 1 + OutParameter + + + fr.insee + lw7y7vqk-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7y7vqk-CI-0-IP-1, false) = false and nvl(lw7y7vqk-CI-0-IP-2, false) = false and nvl(lw7y7vqk-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7yq0ti-CI-0 + 1 + + QUI_AID_REC_1D non renseignée + + + QUI_AID_REC_1D non renseignée + + + fr.insee + lw7yq0ti-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7yq0ti-CI-0-IP-1 + 1 + + QUI_AID_REC_1D1 + + + + fr.insee + lw7yq0ti-CI-0-IP-2 + 1 + + QUI_AID_REC_1D2 + + + + + fr.insee + lw7yq0ti-QOP-m23cxmnn + 1 + OutParameter + + + fr.insee + lw7yq0ti-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7yq0ti-QOP-m23ctm1u + 1 + OutParameter + + + fr.insee + lw7yq0ti-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7yq0ti-CI-0-IP-1, false) = false and nvl(lw7yq0ti-CI-0-IP-2, false) = false) + + + + + fr.insee + l1ggp8js-CI-0 + 1 + + QUI_AID_REC_2 non renseignée + + + QUI_AID_REC_2 non renseignée + + + fr.insee + l1ggp8js-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ggp8js-CI-0-IP-1 + 1 + + QUI_AID_REC_2A1 + + + + fr.insee + l1ggp8js-CI-0-IP-2 + 1 + + QUI_AID_REC_2A2 + + + + fr.insee + l1ggp8js-CI-0-IP-3 + 1 + + QUI_AID_REC_2A3 + + + + fr.insee + l1ggp8js-CI-0-IP-4 + 1 + + QUI_AID_REC_2A4 + + + + + fr.insee + l1ggp8js-QOP-m23cn5of + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-m23cey3c + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-m23cjnpj + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1ggp8js-QOP-m23ciwsc + 1 + OutParameter + + + fr.insee + l1ggp8js-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1ggp8js-CI-0-IP-1, false) = false and nvl(l1ggp8js-CI-0-IP-2, false) = false and nvl(l1ggp8js-CI-0-IP-3, false) = false and nvl(l1ggp8js-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7yq329-CI-0 + 1 + + QUI_AID_REC_2B non renseignée + + + QUI_AID_REC_2B non renseignée + + + fr.insee + lw7yq329-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7yq329-CI-0-IP-1 + 1 + + QUI_AID_REC_2B1 + + + + fr.insee + lw7yq329-CI-0-IP-2 + 1 + + QUI_AID_REC_2B2 + + + + fr.insee + lw7yq329-CI-0-IP-3 + 1 + + QUI_AID_REC_2B3 + + + + + fr.insee + lw7yq329-QOP-m23cvvst + 1 + OutParameter + + + fr.insee + lw7yq329-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7yq329-QOP-m23clx8q + 1 + OutParameter + + + fr.insee + lw7yq329-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7yq329-QOP-m23cpziv + 1 + OutParameter + + + fr.insee + lw7yq329-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7yq329-CI-0-IP-1, false) = false and nvl(lw7yq329-CI-0-IP-2, false) = false and nvl(lw7yq329-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7yo7oh-CI-0 + 1 + + QUI_AID_REC_2C non renseignée + + + QUI_AID_REC_2C non renseignée + + + fr.insee + lw7yo7oh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7yo7oh-CI-0-IP-1 + 1 + + QUI_AID_REC_2C1 + + + + fr.insee + lw7yo7oh-CI-0-IP-2 + 1 + + QUI_AID_REC_2C2 + + + + fr.insee + lw7yo7oh-CI-0-IP-3 + 1 + + QUI_AID_REC_2C3 + + + + + fr.insee + lw7yo7oh-QOP-m23cmlu2 + 1 + OutParameter + + + fr.insee + lw7yo7oh-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7yo7oh-QOP-m23chv5u + 1 + OutParameter + + + fr.insee + lw7yo7oh-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7yo7oh-QOP-m23cqna7 + 1 + OutParameter + + + fr.insee + lw7yo7oh-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7yo7oh-CI-0-IP-1, false) = false and nvl(lw7yo7oh-CI-0-IP-2, false) = false and nvl(lw7yo7oh-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7ypwx5-CI-0 + 1 + + QUI_AID_REC_2D non renseignée + + + QUI_AID_REC_2D non renseignée + + + fr.insee + lw7ypwx5-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7ypwx5-CI-0-IP-1 + 1 + + QUI_AID_REC_2D1 + + + + fr.insee + lw7ypwx5-CI-0-IP-2 + 1 + + QUI_AID_REC_2D2 + + + + + fr.insee + lw7ypwx5-QOP-m23ctdx6 + 1 + OutParameter + + + fr.insee + lw7ypwx5-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7ypwx5-QOP-m23ctlkf + 1 + OutParameter + + + fr.insee + lw7ypwx5-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7ypwx5-CI-0-IP-1, false) = false and nvl(lw7ypwx5-CI-0-IP-2, false) = false) + + + + + fr.insee + l1gh36ky-CI-0 + 1 + + QUI_AID_REC_3 non renseigné + + + QUI_AID_REC_3 non renseigné + + + fr.insee + l1gh36ky-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gh36ky-CI-0-IP-1 + 1 + + QUI_AID_REC_3A1 + + + + fr.insee + l1gh36ky-CI-0-IP-2 + 1 + + QUI_AID_REC_3A2 + + + + fr.insee + l1gh36ky-CI-0-IP-3 + 1 + + QUI_AID_REC_3A3 + + + + fr.insee + l1gh36ky-CI-0-IP-4 + 1 + + QUI_AID_REC_3A4 + + + + + fr.insee + l1gh36ky-QOP-m23cib87 + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-m23cxsfo + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-m23clsl9 + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1gh36ky-QOP-m23czis0 + 1 + OutParameter + + + fr.insee + l1gh36ky-CI-0-IP-4 + 1 + InParameter + + + (nvl(l1gh36ky-CI-0-IP-1, false) = false and nvl(l1gh36ky-CI-0-IP-2, false) = false and nvl(l1gh36ky-CI-0-IP-3, false) = false and nvl(l1gh36ky-CI-0-IP-4, false) = false ) + + + + + fr.insee + lw7yqyln-CI-0 + 1 + + QUI_AID_REC_3B non renseignée + + + QUI_AID_REC_3B non renseignée + + + fr.insee + lw7yqyln-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7yqyln-CI-0-IP-1 + 1 + + QUI_AID_REC_3B1 + + + + fr.insee + lw7yqyln-CI-0-IP-2 + 1 + + QUI_AID_REC_3B2 + + + + fr.insee + lw7yqyln-CI-0-IP-3 + 1 + + QUI_AID_REC_3B3 + + + + + fr.insee + lw7yqyln-QOP-m23cgm1y + 1 + OutParameter + + + fr.insee + lw7yqyln-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7yqyln-QOP-m23cwosm + 1 + OutParameter + + + fr.insee + lw7yqyln-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7yqyln-QOP-m23cspkk + 1 + OutParameter + + + fr.insee + lw7yqyln-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7yqyln-CI-0-IP-1, false) = false and nvl(lw7yqyln-CI-0-IP-2, false) = false and nvl(lw7yqyln-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7z0jkp-CI-0 + 1 + + QUI_AID_REC_3C non renseignée + + + QUI_AID_REC_3C non renseignée + + + fr.insee + lw7z0jkp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7z0jkp-CI-0-IP-1 + 1 + + QUI_AID_REC_3C1 + + + + fr.insee + lw7z0jkp-CI-0-IP-2 + 1 + + QUI_AID_REC_3C2 + + + + fr.insee + lw7z0jkp-CI-0-IP-3 + 1 + + QUI_AID_REC_3C3 + + + + + fr.insee + lw7z0jkp-QOP-m23cxwql + 1 + OutParameter + + + fr.insee + lw7z0jkp-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7z0jkp-QOP-m23crs3i + 1 + OutParameter + + + fr.insee + lw7z0jkp-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + lw7z0jkp-QOP-m23cvbj1 + 1 + OutParameter + + + fr.insee + lw7z0jkp-CI-0-IP-3 + 1 + InParameter + + + (nvl(lw7z0jkp-CI-0-IP-1, false) = false and nvl(lw7z0jkp-CI-0-IP-2, false) = false and nvl(lw7z0jkp-CI-0-IP-3, false) = false) + + + + + fr.insee + lw7z13d4-CI-0 + 1 + + QUI_AID_REC_3D non renseignée + + + QUI_AID_REC_3D non renseignée + + + fr.insee + lw7z13d4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw7z13d4-CI-0-IP-1 + 1 + + QUI_AID_REC_3D1 + + + + fr.insee + lw7z13d4-CI-0-IP-2 + 1 + + QUI_AID_REC_3D2 + + + + + fr.insee + lw7z13d4-QOP-m23cozck + 1 + OutParameter + + + fr.insee + lw7z13d4-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw7z13d4-QOP-m23co3ul + 1 + OutParameter + + + fr.insee + lw7z13d4-CI-0-IP-2 + 1 + InParameter + + + (nvl(lw7z13d4-CI-0-IP-1, false) = false and nvl(lw7z13d4-CI-0-IP-2, false) = false ) + + + + + fr.insee + l1g8apw2-CI-0 + 1 + + LANGUE1_ENTOUE non renseignée + + + LANGUE1_ENTOUE non renseignée + + + fr.insee + l1g8apw2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g8apw2-CI-0-IP-1 + 1 + + LANGUE1_ENTOUE + + + + + fr.insee + l1g8apw2-QOP-lw7p997k + 1 + OutParameter + + + fr.insee + l1g8apw2-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g8apw2-CI-0-IP-1) or l1g8apw2-CI-0-IP-1="" + + + + + fr.insee + lumpggg9-CI-0 + 1 + + LANGUE1_ENTOUL non renseignée + + + LANGUE1_ENTOUL non renseignée + + + fr.insee + lumpggg9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumpggg9-CI-0-IP-1 + 1 + + LANGUE1_ENTOUL + + + + + fr.insee + lumpggg9-QOP-lumpls3q + 1 + OutParameter + + + fr.insee + lumpggg9-CI-0-IP-1 + 1 + InParameter + + + isnull(lumpggg9-CI-0-IP-1) or lumpggg9-CI-0-IP-1="" + + + + + fr.insee + l43tgurz-CI-0 + 1 + + LANGUE2_ENTOUE non renseignée + + + LANGUE2_ENTOUE non renseignée + + + fr.insee + l43tgurz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43tgurz-CI-0-IP-1 + 1 + + LANGUE2_ENTOUE + + + + + fr.insee + l43tgurz-QOP-lw54fsoq + 1 + OutParameter + + + fr.insee + l43tgurz-CI-0-IP-1 + 1 + InParameter + + + isnull(l43tgurz-CI-0-IP-1) or l43tgurz-CI-0-IP-1="" + + + + + fr.insee + lw54iesv-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw54iesv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw54iesv-CI-0-IP-1 + 1 + + LANGUE1_ENTOU + + + + fr.insee + lw54iesv-CI-0-IP-2 + 1 + + LANGUE2_ENTOU + + + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + OutParameter + + + fr.insee + lw54iesv-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + fr.insee + lw54iesv-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw54iesv-CI-0-IP-1)) and not(isnull(lw54iesv-CI-0-IP-2)) and lw54iesv-CI-0-IP-2=lw54iesv-CI-0-IP-1) + + + + + fr.insee + lumsh65o-CI-0 + 1 + + LANGUE2_ENTOUL non renseignée + + + LANGUE2_ENTOUL non renseignée + + + fr.insee + lumsh65o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsh65o-CI-0-IP-1 + 1 + + LANGUE2_ENTOUL + + + + + fr.insee + lumsh65o-QOP-lumsrnf6 + 1 + OutParameter + + + fr.insee + lumsh65o-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsh65o-CI-0-IP-1) or lumsh65o-CI-0-IP-1="" + + + + + fr.insee + lump9kgk-CI-0 + 1 + + LANGUE3_ENTOUE non renseignée + + + LANGUE3_ENTOUE non renseignée + + + fr.insee + lump9kgk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lump9kgk-CI-0-IP-1 + 1 + + LANGUE3_ENTOUE + + + + + fr.insee + lump9kgk-QOP-lw54k7kt + 1 + OutParameter + + + fr.insee + lump9kgk-CI-0-IP-1 + 1 + InParameter + + + isnull(lump9kgk-CI-0-IP-1) or lump9kgk-CI-0-IP-1="" + + + + + fr.insee + lw54raav-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw54raav-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw54raav-CI-0-IP-1 + 1 + + LANGUE2_ENTOU + + + + fr.insee + lw54raav-CI-0-IP-2 + 1 + + LANGUE3_ENTOU + + + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + fr.insee + lw54raav-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw54raav-QOP-lw54ecer + 1 + OutParameter + + + fr.insee + lw54raav-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw54raav-CI-0-IP-2)) and not(isnull(lw54raav-CI-0-IP-1)) and lw54raav-CI-0-IP-1=lw54raav-CI-0-IP-2) + + + + + fr.insee + lumsobo2-CI-0 + 1 + + LANGUE3_ENTOUL + + + LANGUE3_ENTOUL + + + fr.insee + lumsobo2-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsobo2-CI-0-IP-1 + 1 + + LANGUE3_ENTOUL + + + + + fr.insee + lumsobo2-QOP-lumsf79d + 1 + OutParameter + + + fr.insee + lumsobo2-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsobo2-CI-0-IP-1) or lumsobo2-CI-0-IP-1="" + + + + + fr.insee + l2kjnm8k-CI-0 + 1 + + PRENOM_PAR1 non renseigné + + + PRENOM_PAR1 non renseigné + + + fr.insee + l2kjnm8k-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjnm8k-CI-0-IP-1 + 1 + + PRENOM_PAR1 + + + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjnm8k-CI-0-IP-1) or l2kjnm8k-CI-0-IP-1="" + + + + + fr.insee + l2kjy49o-CI-0 + 1 + + ANAI_PAR1 non renseigné + + + ANAI_PAR1 non renseigné + + + fr.insee + l2kjy49o-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-0-IP-1 + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjy49o-CI-0-IP-1) or l2kjy49o-CI-0-IP-1="" + + + + + fr.insee + l2kjy49o-CI-1 + 1 + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l2kjy49o-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l2kjy49o-CI-1-IP-2 + 1 + + ANAI_PAR1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l2kjy49o-CI-1-IP-2)) and not(isnull(l2kjy49o-CI-1-IP-1)) and cast(l2kjy49o-CI-1-IP-2,integer) > l2kjy49o-CI-1-IP-1) + + + + + fr.insee + l2kjy49o-CI-2 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + fr.insee + l2kjy49o-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjy49o-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l2kjy49o-CI-2-IP-2 + 1 + + ANAI_PAR1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l2kjy49o-CI-2-IP-2)) and not(isnull(l2kjy49o-CI-2-IP-1)) and (cast(l2kjy49o-CI-2-IP-2,integer) + 12 > l2kjy49o-CI-2-IP-1)) + + + + + fr.insee + l2kkvar7-CI-0 + 1 + + SEXE_PAR1 non renseigné + + + SEXE_PAR1 non renseigné + + + fr.insee + l2kkvar7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkvar7-CI-0-IP-1 + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7-CI-0-IP-1 + 1 + InParameter + + + isnull (l2kkvar7-CI-0-IP-1) or l2kkvar7-CI-0-IP-1="" + + + + + fr.insee + l7ywp1vk-CI-0 + 1 + + LIEUNAIS_PAR1 non renseigné + + + LIEUNAIS_PAR1 non renseigné + + + fr.insee + l7ywp1vk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywp1vk-CI-0-IP-1 + 1 + + LIEUNAIS_PAR1 + + + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywp1vk-CI-0-IP-1) or l7ywp1vk-CI-0-IP-1="" + + + + + fr.insee + lyod84wr-CI-0 + 1 + + PNAI_PAR1 non renseignée + + + PNAI_PAR1 non renseignée + + + fr.insee + lyod84wr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lyod84wr-CI-0-IP-1 + 1 + + PNAI_PAR1 + + + + + fr.insee + lyod84wr-QOP-lyodfigc + 1 + OutParameter + + + fr.insee + lyod84wr-CI-0-IP-1 + 1 + InParameter + + + isnull(lyod84wr-CI-0-IP-1) or lyod84wr-CI-0-IP-1="" + + + + + fr.insee + l2kk539f-CI-0 + 1 + + NATIO_PAR1 non renseignée + + + NATIO_PAR1 non renseignée + + + fr.insee + l2kk539f-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk539f-CI-0-IP-1 + 1 + + NATIO_PAR1 + + + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk539f-CI-0-IP-1) or l2kk539f-CI-0-IP-1 ="" + + + + + fr.insee + lyocgyi4-CI-0 + 1 + + TRAV_PAR1 non renseigné + + + TRAV_PAR1 non renseigné + + + fr.insee + lyocgyi4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lyocgyi4-CI-0-IP-1 + 1 + + TRAV_PAR1 + + + + + fr.insee + lyocgyi4-QOP-lyoc3xpu + 1 + OutParameter + + + fr.insee + lyocgyi4-CI-0-IP-1 + 1 + InParameter + + + lyocgyi4-CI-0-IP-1="" or isnull(lyocgyi4-CI-0-IP-1) + + + + + fr.insee + l45cjoj7-CI-0 + 1 + + PROF_PAR1_2 non renseignée + + + PROF_PAR1_2 non renseignée + + + fr.insee + l45cjoj7-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l45cjoj7-CI-0-IP-1 + 1 + + PROF_PAR1_2 + + + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7-CI-0-IP-1 + 1 + InParameter + + + isnull(l45cjoj7-CI-0-IP-1) or l45cjoj7-CI-0-IP-1="" + + + + + fr.insee + l2kjshy4-CI-0 + 1 + + STATUT_PAR1 non renseigné + + + STATUT_PAR1 non renseigné + + + fr.insee + l2kjshy4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjshy4-CI-0-IP-1 + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjshy4-CI-0-IP-1) or l2kjshy4-CI-0-IP-1="" + + + + + fr.insee + lpsjlk6w-CI-0 + 1 + + SAL_IND_PAR1 non renseigné + + + SAL_IND_PAR1 non renseigné + + + fr.insee + lpsjlk6w-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lpsjlk6w-CI-0-IP-1 + 1 + + SAL_IND_PAR1 + + + + + fr.insee + lpsjlk6w-QOP-lpsjoxrt + 1 + OutParameter + + + fr.insee + lpsjlk6w-CI-0-IP-1 + 1 + InParameter + + + lpsjlk6w-CI-0-IP-1="" or isnull(lpsjlk6w-CI-0-IP-1) + + + + + fr.insee + llgo5n7b-CI-0 + 1 + + SAL_FP_PAR1 non renseigné + + + SAL_FP_PAR1 non renseigné + + + fr.insee + llgo5n7b-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgo5n7b-CI-0-IP-1 + 1 + + SAL_FP_PAR1 + + + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b-CI-0-IP-1 + 1 + InParameter + + + llgo5n7b-CI-0-IP-1="" or isnull(llgo5n7b-CI-0-IP-1) + + + + + fr.insee + llgqspnh-CI-0 + 1 + + SAL_ENT_PAR1 non renseignée + + + SAL_ENT_PAR1 non renseignée + + + fr.insee + llgqspnh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgqspnh-CI-0-IP-1 + 1 + + SAL_ENT_PAR1 + + + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh-CI-0-IP-1 + 1 + InParameter + + + isnull(llgqspnh-CI-0-IP-1) or llgqspnh-CI-0-IP-1="" + + + + + fr.insee + lumppr7y-CI-0 + 1 + + LANGUE1_PAR1L non renseignée + + + LANGUE1_PAR1L non renseignée + + + fr.insee + lumppr7y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumppr7y-CI-0-IP-1 + 1 + + LANGUE1_PAR1L + + + + + fr.insee + lumppr7y-QOP-lumpxcez + 1 + OutParameter + + + fr.insee + lumppr7y-CI-0-IP-1 + 1 + InParameter + + + isnull(lumppr7y-CI-0-IP-1) or lumppr7y-CI-0-IP-1="" + + + + + fr.insee + l447j7cx-CI-0 + 1 + + LANGUE2_PAR1E non renseignée + + + LANGUE2_PAR1E non renseignée + + + fr.insee + l447j7cx-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l447j7cx-CI-0-IP-1 + 1 + + LANGUE2_PAR1E + + + + + fr.insee + l447j7cx-QOP-lw6jphbt + 1 + OutParameter + + + fr.insee + l447j7cx-CI-0-IP-1 + 1 + InParameter + + + isnull(l447j7cx-CI-0-IP-1) or l447j7cx-CI-0-IP-1="" + + + + + fr.insee + lw6don31-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6don31-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6don31-CI-0-IP-1 + 1 + + LANGUE1_PAR1 + + + + fr.insee + lw6don31-CI-0-IP-2 + 1 + + LANGUE2_PAR1 + + + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + lw6don31-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lw6don31-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6don31-CI-0-IP-1)) and not(isnull(lw6don31-CI-0-IP-2)) and lw6don31-CI-0-IP-2=lw6don31-CI-0-IP-1) + + + + + fr.insee + lumsnsej-CI-0 + 1 + + LANGUE2_PAR1L non renseignée + + + LANGUE2_PAR1L non renseignée + + + fr.insee + lumsnsej-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsnsej-CI-0-IP-1 + 1 + + LANGUE2_PAR1L + + + + + fr.insee + lumsnsej-QOP-lumsjuh5 + 1 + OutParameter + + + fr.insee + lumsnsej-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsnsej-CI-0-IP-1) or lumsnsej-CI-0-IP-1="" + + + + + fr.insee + lumptzfb-CI-0 + 1 + + LANGUE3_PAR1E non renseignée + + + LANGUE3_PAR1E non renseignée + + + fr.insee + lumptzfb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumptzfb-CI-0-IP-1 + 1 + + LANGUE3_PAR1E + + + + + fr.insee + lumptzfb-QOP-lw6jto2f + 1 + OutParameter + + + fr.insee + lumptzfb-CI-0-IP-1 + 1 + InParameter + + + isnull(lumptzfb-CI-0-IP-1) or lumptzfb-CI-0-IP-1="" + + + + + fr.insee + lw6dyxml-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6dyxml-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6dyxml-CI-0-IP-1 + 1 + + LANGUE2_PAR1 + + + + fr.insee + lw6dyxml-CI-0-IP-2 + 1 + + LANGUE3_PAR1 + + + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lw6dyxml-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lw6dyxml-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6dyxml-CI-0-IP-2)) and not(isnull(lw6dyxml-CI-0-IP-1)) and lw6dyxml-CI-0-IP-1=lw6dyxml-CI-0-IP-2) + + + + + fr.insee + lumsdl5a-CI-0 + 1 + + LANGUE3_PAR1L non renseignée + + + LANGUE3_PAR1L non renseignée + + + fr.insee + lumsdl5a-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsdl5a-CI-0-IP-1 + 1 + + LANGUE3_PAR1L + + + + + fr.insee + lumsdl5a-QOP-lumshoov + 1 + OutParameter + + + fr.insee + lumsdl5a-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsdl5a-CI-0-IP-1) or lumsdl5a-CI-0-IP-1="" + + + + + fr.insee + lumptuhp-CI-0 + 1 + + LANGUE4_PAR1E non renseignée + + + LANGUE4_PAR1E non renseignée + + + fr.insee + lumptuhp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumptuhp-CI-0-IP-1 + 1 + + LANGUE4_PAR1E + + + + + fr.insee + lumptuhp-QOP-lw6jzlgt + 1 + OutParameter + + + fr.insee + lumptuhp-CI-0-IP-1 + 1 + InParameter + + + isnull(lumptuhp-CI-0-IP-1) pr lumptuhp-CI-0-IP-1="" + + + + + fr.insee + lw6ecsey-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6ecsey-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6ecsey-CI-0-IP-1 + 1 + + LANGUE3_PAR1 + + + + fr.insee + lw6ecsey-CI-0-IP-2 + 1 + + LANGUE4_PAR1 + + + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lw6ecsey-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6ecsey-QOP-lw6ehg5h + 1 + OutParameter + + + fr.insee + lw6ecsey-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6ecsey-CI-0-IP-2)) and not(isnull(lw6ecsey-CI-0-IP-1)) and lw6ecsey-CI-0-IP-1=lw6ecsey-CI-0-IP-2) + + + + + fr.insee + lumswm4d-CI-0 + 1 + + LANGUE4_PAR1L non renseignée + + + LANGUE4_PAR1L non renseignée + + + fr.insee + lumswm4d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumswm4d-CI-0-IP-1 + 1 + + LANGUE4_PAR1L + + + + + fr.insee + lumswm4d-QOP-lumscasf + 1 + OutParameter + + + fr.insee + lumswm4d-CI-0-IP-1 + 1 + InParameter + + + isnull(lumswm4d-CI-0-IP-1) or lumswm4d-CI-0-IP-1="" + + + + + fr.insee + l2kjzugb-CI-0 + 1 + + VIV_PAR1 non renseignée + + + VIV_PAR1 non renseignée + + + fr.insee + l2kjzugb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kjzugb-CI-0-IP-1 + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kjzugb-CI-0-IP-1) or l2kjzugb-CI-0-IP-1="" + + + + + fr.insee + l2kkd59n-CI-0 + 1 + + ANNEE_DC_PAR1 non renseignée + + + ANNEE_DC_PAR1 non renseignée + + + fr.insee + l2kkd59n-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-0-IP-1 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkd59n-CI-0-IP-1) or l2kkd59n-CI-0-IP-1="" + + + + + fr.insee + l2kkd59n-CI-1 + 1 + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l2kkd59n-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-1-IP-1 + 1 + + ANAI_PAR1 + + + + fr.insee + l2kkd59n-CI-1-IP-2 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l2kkd59n-CI-1-IP-2)) and not(isnull(l2kkd59n-CI-1-IP-1)) and cast(l2kkd59n-CI-1-IP-2,integer) < cast(l2kkd59n-CI-1-IP-1,integer)) + + + + + fr.insee + l2kkd59n-CI-2 + 1 + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l2kkd59n-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkd59n-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + l2kkd59n-CI-2-IP-2 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(l2kkd59n-CI-2-IP-2)) and not(isnull(l2kkd59n-CI-2-IP-1)) and (cast(l2kkd59n-CI-2-IP-2,integer) + 1) < l2kkd59n-CI-2-IP-1) + + + + + fr.insee + l2kk4snz-CI-0 + 1 + + LOG_PAR1 non renseigné + + + LOG_PAR1 non renseigné + + + fr.insee + l2kk4snz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk4snz-CI-0-IP-1 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk4snz-CI-0-IP-1) or l2kk4snz-CI-0-IP-1="" + + + + + fr.insee + l2kkb4xa-CI-0 + 1 + + FR_PAR1 non renseigné + + + FR_PAR1 non renseigné + + + fr.insee + l2kkb4xa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkb4xa-CI-0-IP-1 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkb4xa-CI-0-IP-1) or l2kkb4xa-CI-0-IP-1="" + + + + + fr.insee + l4onhpvd-CI-0 + 1 + + COM_PAR1 non renseigné + + + COM_PAR1 non renseigné + + + fr.insee + l4onhpvd-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onhpvd-CI-0-IP-1 + 1 + + COM_PAR1 + + + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onhpvd-CI-0-IP-1) or l4onhpvd-CI-0-IP-1="" + + + + + fr.insee + l4o7ufzl-CI-0 + 1 + + DEP_PAR1 non renseigné + + + DEP_PAR1 non renseigné + + + fr.insee + l4o7ufzl-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o7ufzl-CI-0-IP-1 + 1 + + DEP_PAR1 + + + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o7ufzl-CI-0-IP-1) or l4o7ufzl-CI-0-IP-1="" + + + + + fr.insee + l4o8eale-CI-0 + 1 + + PAY_PAR1 non renseigné + + + PAY_PAR1 non renseigné + + + fr.insee + l4o8eale-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8eale-CI-0-IP-1 + 1 + + PAY_PAR1 + + + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8eale-CI-0-IP-1) or l4o8eale-CI-0-IP-1="" + + + + + fr.insee + l1ezkqes-CI-0 + 1 + + ETAB_PAR1 non renseigné + + + ETAB_PAR1 non renseigné + + + fr.insee + l1ezkqes-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ezkqes-CI-0-IP-1 + 1 + + ETAB_PAR1 + + + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ezkqes-CI-0-IP-1) or l1ezkqes-CI-0-IP-1="" + + + + + fr.insee + l2kkeqsz-CI-0 + 1 + + FREQ_VU_PAR1 non renseignée + + + FREQ_VU_PAR1 non renseignée + + + fr.insee + l2kkeqsz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkeqsz-CI-0-IP-1 + 1 + + FREQ_VU_PAR1 + + + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkeqsz-CI-0-IP-1) or l2kkeqsz-CI-0-IP-1="" + + + + + fr.insee + l2kk296y-CI-0 + 1 + + FREQ_CONT_PAR1 non renseignée + + + FREQ_CONT_PAR1 non renseignée + + + fr.insee + l2kk296y-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kk296y-CI-0-IP-1 + 1 + + FREQ_CONT_PAR1 + + + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kk296y-CI-0-IP-1) or l2kk296y-CI-0-IP-1="" + + + + + fr.insee + l4lojzxg-CI-0 + 1 + + PROX_EGO_PAR1 + + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4lojzxg-CI-0-IP-1 + 1 + + PROX_EGO_PAR1 + + + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg-CI-0-IP-1 + 1 + InParameter + + + isnull(l4lojzxg-CI-0-IP-1) or l4lojzxg-CI-0-IP-1="" + + + + + fr.insee + l43yap7r-CI-0 + 1 + + PROX_FRAT_PAR1 non renseigné + + + PROX_FRAT_PAR1 non renseigné + + + fr.insee + l43yap7r-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43yap7r-CI-0-IP-1 + 1 + + PROX_FRAT_PAR1 + + + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r-CI-0-IP-1 + 1 + InParameter + + + isnull(l43yap7r-CI-0-IP-1) or l43yap7r-CI-0-IP-1 ="" + + + + + fr.insee + l5axrwsa-CI-0 + 1 + + EXIST_PAR2 non renseigné + + + EXIST_PAR2 non renseigné + + + fr.insee + l5axrwsa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5axrwsa-CI-0-IP-1 + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa-CI-0-IP-1 + 1 + InParameter + + + isnull(l5axrwsa-CI-0-IP-1) or l5axrwsa-CI-0-IP-1="" + + + + + fr.insee + l27ijusa-CI-0 + 1 + + PRENOM_PAR2 non renseigné + + + PRENOM_PAR2 non renseigné + + + fr.insee + l27ijusa-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27ijusa-CI-0-IP-1 + 1 + + PRENOM_PAR2 + + + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa-CI-0-IP-1 + 1 + InParameter + + + isnull(l27ijusa-CI-0-IP-1) or l27ijusa-CI-0-IP-1="" + + + + + fr.insee + kwqfufye-CI-0 + 1 + + ANAI_PAR2 non renseignée + + + ANAI_PAR2 non renseignée + + + fr.insee + kwqfufye-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-0-IP-1 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfufye-CI-0-IP-1) or kwqfufye-CI-0-IP-1="" + + + + + fr.insee + kwqfufye-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?" + + + fr.insee + kwqfufye-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqfufye-CI-1-IP-2 + 1 + + ANAI_PAR2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqfufye-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqfufye-CI-1-IP-2)) and not(isnull(kwqfufye-CI-1-IP-1)) and (cast(kwqfufye-CI-1-IP-2,integer) + 12 > kwqfufye-CI-1-IP-1)) + + + + + fr.insee + kwqfufye-CI-2 + 1 + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + kwqfufye-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfufye-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqfufye-CI-2-IP-2 + 1 + + ANAI_PAR2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqfufye-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(kwqfufye-CI-2-IP-2)) and not(isnull(kwqfufye-CI-2-IP-1)) and cast(kwqfufye-CI-2-IP-2,integer) > kwqfufye-CI-2-IP-1) + + + + + fr.insee + l27ig4yy-CI-0 + 1 + + SEXE_PAR2 non renseigné + + + SEXE_PAR2 non renseigné + + + fr.insee + l27ig4yy-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l27ig4yy-CI-0-IP-1 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy-CI-0-IP-1 + 1 + InParameter + + + isnull(l27ig4yy-CI-0-IP-1) or l27ig4yy-CI-0-IP-1="" + + + + + fr.insee + lyoc66rt-CI-0 + 1 + + LIEUNAIS_PAR2 non renseignée + + + LIEUNAIS_PAR2 non renseignée + + + fr.insee + lyoc66rt-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lyoc66rt-CI-0-IP-1 + 1 + + LIEUNAIS_PAR2 + + + + + fr.insee + lyoc66rt-QOP-lyocagtc + 1 + OutParameter + + + fr.insee + lyoc66rt-CI-0-IP-1 + 1 + InParameter + + + isnull(lyoc66rt-CI-0-IP-1) or lyoc66rt-CI-0-IP-1="" + + + + + fr.insee + lyod9pq3-CI-0 + 1 + + PNAI_PAR2 non renseignée + + + PNAI_PAR2 non renseignée + + + fr.insee + lyod9pq3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lyod9pq3-CI-0-IP-1 + 1 + + PNAI_PAR2 + + + + + fr.insee + lyod9pq3-QOP-lyodex4x + 1 + OutParameter + + + fr.insee + lyod9pq3-CI-0-IP-1 + 1 + InParameter + + + isnull(lyod9pq3-CI-0-IP-1) or lyod9pq3-CI-0-IP-1="" + + + + + fr.insee + kwqfhhge-CI-0 + 1 + + NATIO_PAR2 non renseignée + + + NATIO_PAR2 non renseignée + + + fr.insee + kwqfhhge-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfhhge-CI-0-IP-1 + 1 + + NATIO_PAR2 + + + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfhhge-CI-0-IP-1) or kwqfhhge-CI-0-IP-1="" + + + + + fr.insee + l7ywxphs-CI-0 + 1 + + TRAV_PAR2 non renseigné + + + TRAV_PAR2 non renseigné + + + fr.insee + l7ywxphs-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l7ywxphs-CI-0-IP-1 + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs-CI-0-IP-1 + 1 + InParameter + + + isnull(l7ywxphs-CI-0-IP-1) or l7ywxphs-CI-0-IP-1="" + + + + + fr.insee + l444t31z-CI-0 + 1 + + PROF_PAR2_2 non renseignée + + + PROF_PAR2_2 non renseignée + + + fr.insee + l444t31z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l444t31z-CI-0-IP-1 + 1 + + PROF_PAR2_2 + + + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z-CI-0-IP-1 + 1 + InParameter + + + isnull(l444t31z-CI-0-IP-1) or l444t31z-CI-0-IP-1 ="" + + + + + fr.insee + kwqfto3c-CI-0 + 1 + + STATUT_PAR2 non renseigné + + + STATUT_PAR2 non renseigné + + + fr.insee + kwqfto3c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqfto3c-CI-0-IP-1 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqfto3c-CI-0-IP-1) or kwqfto3c-CI-0-IP-1="" + + + + + fr.insee + lptlrxcc-CI-0 + 1 + + SAL_IND_PAR2 non renseignée + + + SAL_IND_PAR2 non renseignée + + + fr.insee + lptlrxcc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lptlrxcc-CI-0-IP-1 + 1 + + SAL_IND_PAR2 + + + + + fr.insee + lptlrxcc-QOP-lptld3en + 1 + OutParameter + + + fr.insee + lptlrxcc-CI-0-IP-1 + 1 + InParameter + + + lptlrxcc-CI-0-IP-1="" or isnull(lptlrxcc-CI-0-IP-1) + + + + + fr.insee + llgosp3i-CI-0 + 1 + + SAL_FP_PAR2 non renseigné + + + SAL_FP_PAR2 non renseigné + + + fr.insee + llgosp3i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgosp3i-CI-0-IP-1 + 1 + + SAL_FP_PAR2 + + + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i-CI-0-IP-1 + 1 + InParameter + + + llgosp3i-CI-0-IP-1="" or isnull(llgosp3i-CI-0-IP-1) + + + + + fr.insee + llgrqyqg-CI-0 + 1 + + SAL_ENT_PAR2 non renseigné + + + SAL_ENT_PAR2 non renseigné + + + fr.insee + llgrqyqg-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + llgrqyqg-CI-0-IP-1 + 1 + + SAL_ENT_PAR2 + + + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg-CI-0-IP-1 + 1 + InParameter + + + isnull(llgrqyqg-CI-0-IP-1) or llgrqyqg-CI-0-IP-1="" + + + + + fr.insee + lums0dcm-CI-0 + 1 + + LANGUE1_PAR2L non renseignée + + + LANGUE1_PAR2L non renseignée + + + fr.insee + lums0dcm-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lums0dcm-CI-0-IP-1 + 1 + + LANGUE1_PAR2L + + + + + fr.insee + lums0dcm-QOP-lums9oq4 + 1 + OutParameter + + + fr.insee + lums0dcm-CI-0-IP-1 + 1 + InParameter + + + isnull(lums0dcm-CI-0-IP-1) or lums0dcm-CI-0-IP-1="" + + + + + fr.insee + l444xjux-CI-0 + 1 + + LANGUE2_PAR2E non renseignée + + + LANGUE2_PAR2E non renseignée + + + fr.insee + l444xjux-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l444xjux-CI-0-IP-1 + 1 + + LANGUE2_PAR2E + + + + + fr.insee + l444xjux-QOP-lw6k0w8i + 1 + OutParameter + + + fr.insee + l444xjux-CI-0-IP-1 + 1 + InParameter + + + isnull(l444xjux-CI-0-IP-1) or l444xjux-CI-0-IP-1="" + + + + + fr.insee + lw6eh4up-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6eh4up-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6eh4up-CI-0-IP-1 + 1 + + LANGUE1_PAR2 + + + + fr.insee + lw6eh4up-CI-0-IP-2 + 1 + + LANGUE2_PAR2 + + + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + lw6eh4up-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lw6eh4up-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6eh4up-CI-0-IP-1)) and not(isnull(lw6eh4up-CI-0-IP-2)) and lw6eh4up-CI-0-IP-2=lw6eh4up-CI-0-IP-1) + + + + + fr.insee + lumsfeeu-CI-0 + 1 + + LANGUE2_PAR2L non renseignée + + + LANGUE2_PAR2L non renseignée + + + fr.insee + lumsfeeu-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsfeeu-CI-0-IP-1 + 1 + + LANGUE2_PAR2L + + + + + fr.insee + lumsfeeu-QOP-lumsjma7 + 1 + OutParameter + + + fr.insee + lumsfeeu-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsfeeu-CI-0-IP-1) or lumsfeeu-CI-0-IP-1="" + + + + + fr.insee + lums26pp-CI-0 + 1 + + LANGUE3_PAR2E non renseignée + + + LANGUE3_PAR2E non renseignée + + + fr.insee + lums26pp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lums26pp-CI-0-IP-1 + 1 + + LANGUE3_PAR2E + + + + + fr.insee + lums26pp-QOP-lw6k49xr + 1 + OutParameter + + + fr.insee + lums26pp-CI-0-IP-1 + 1 + InParameter + + + isnull(lums26pp-CI-0-IP-1) or lums26pp-CI-0-IP-1="" + + + + + fr.insee + lw6euv9i-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6euv9i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6euv9i-CI-0-IP-1 + 1 + + LANGUE2_PAR2 + + + + fr.insee + lw6euv9i-CI-0-IP-2 + 1 + + LANGUE3_PAR2 + + + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lw6euv9i-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lw6euv9i-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6euv9i-CI-0-IP-2)) and not(isnull(lw6euv9i-CI-0-IP-1)) and lw6euv9i-CI-0-IP-1=lw6euv9i-CI-0-IP-2) + + + + + fr.insee + lumsp0o4-CI-0 + 1 + + LANGUE3_PAR2L non renseignée + + + LANGUE3_PAR2L non renseignée + + + fr.insee + lumsp0o4-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumsp0o4-CI-0-IP-1 + 1 + + LANGUE3_PAR2L + + + + + fr.insee + lumsp0o4-QOP-lumslfat + 1 + OutParameter + + + fr.insee + lumsp0o4-CI-0-IP-1 + 1 + InParameter + + + isnull(lumsp0o4-CI-0-IP-1) or lumsp0o4-CI-0-IP-1="" + + + + + fr.insee + lumrz70d-CI-0 + 1 + + LANGUE4_PAR2E non renseignée + + + LANGUE4_PAR2E non renseignée + + + fr.insee + lumrz70d-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumrz70d-CI-0-IP-1 + 1 + + LANGUE4_PAR2E + + + + + fr.insee + lumrz70d-QOP-lw6jlhek + 1 + OutParameter + + + fr.insee + lumrz70d-CI-0-IP-1 + 1 + InParameter + + + isnull(lumrz70d-CI-0-IP-1) or lumrz70d-CI-0-IP-1="" + + + + + fr.insee + lw6er2dw-CI-0 + 1 + + même langue + + + même langue + + + fr.insee + lw6er2dw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lw6er2dw-CI-0-IP-1 + 1 + + LANGUE3_PAR2 + + + + fr.insee + lw6er2dw-CI-0-IP-2 + 1 + + LANGUE4_PAR2 + + + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lw6er2dw-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + lw6er2dw-QOP-lw6epzej + 1 + OutParameter + + + fr.insee + lw6er2dw-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(lw6er2dw-CI-0-IP-1)) and not(isnull(lw6er2dw-CI-0-IP-2)) and lw6er2dw-CI-0-IP-1=lw6er2dw-CI-0-IP-2) + + + + + fr.insee + lumso5hv-CI-0 + 1 + + LANGUE4_PAR2L non renseignée + + + LANGUE4_PAR2L non renseignée + + + fr.insee + lumso5hv-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumso5hv-CI-0-IP-1 + 1 + + LANGUE4_PAR2L + + + + + fr.insee + lumso5hv-QOP-lumsrv1d + 1 + OutParameter + + + fr.insee + lumso5hv-CI-0-IP-1 + 1 + InParameter + + + isnull(lumso5hv-CI-0-IP-1) or lumso5hv-CI-0-IP-1="" + + + + + fr.insee + kwqhjfzk-CI-0 + 1 + + VIV_PAR2 non renseigné + + + VIV_PAR2 non renseigné + + + fr.insee + kwqhjfzk-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqhjfzk-CI-0-IP-1 + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqhjfzk-CI-0-IP-1) or kwqhjfzk-CI-0-IP-1="" + + + + + fr.insee + kwqg35i9-CI-0 + 1 + + ANNEE_DC_PAR2 non renseignée + + + ANNEE_DC_PAR2 non renseignée + + + fr.insee + kwqg35i9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-0-IP-1 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqg35i9-CI-0-IP-1) or kwqg35i9-CI-0-IP-1="" + + + + + fr.insee + kwqg35i9-CI-1 + 1 + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + kwqg35i9-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-1-IP-1 + 1 + + ANAI_PAR2 + + + + fr.insee + kwqg35i9-CI-1-IP-2 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(kwqg35i9-CI-1-IP-2)) and not(isnull(kwqg35i9-CI-1-IP-1)) and cast(kwqg35i9-CI-1-IP-2,integer) < cast(kwqg35i9-CI-1-IP-1,integer)) + + + + + fr.insee + kwqg35i9-CI-2 + 1 + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + kwqg35i9-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqg35i9-CI-2-IP-1 + 1 + + ANAIS + + + + fr.insee + kwqg35i9-CI-2-IP-2 + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(kwqg35i9-CI-2-IP-2)) and not(isnull(kwqg35i9-CI-2-IP-1)) and (cast(kwqg35i9-CI-2-IP-2,integer) + 1) < kwqg35i9-CI-2-IP-1) + + + + + fr.insee + kwqgffvw-CI-0 + 1 + + LOG_PAR2A non renseigné + + + LOG_PAR2A non renseigné + + + fr.insee + kwqgffvw-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqgffvw-CI-0-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-CI-0-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-CI-0-IP-3 + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-0-IP-3 + 1 + InParameter + + + (nvl(kwqgffvw-CI-0-IP-1, false) = false and nvl(kwqgffvw-CI-0-IP-2, false) = false and nvl(kwqgffvw-CI-0-IP-3, false) = false ) + + + + + fr.insee + kwqgffvw-CI-1 + 1 + + NON exclusif + + + NON exclusif + + + fr.insee + kwqgffvw-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + kwqgffvw-CI-1-IP-1 + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-CI-1-IP-2 + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-CI-1-IP-3 + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + OutParameter + + + fr.insee + kwqgffvw-CI-1-IP-3 + 1 + InParameter + + + (nvl(kwqgffvw-CI-1-IP-1,false)=true and nvl(kwqgffvw-CI-1-IP-3,false)=true) or (nvl(kwqgffvw-CI-1-IP-2,false)=true and nvl(kwqgffvw-CI-1-IP-3,false)=true) + + + + + fr.insee + lab6xfk9-CI-0 + 1 + + LOG_PAR2B non renseigné + + + LOG_PAR2B non renseigné + + + fr.insee + lab6xfk9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lab6xfk9-CI-0-IP-1 + 1 + + LOG_PAR2B + + + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9-CI-0-IP-1 + 1 + InParameter + + + isnull(lab6xfk9-CI-0-IP-1) or lab6xfk9-CI-0-IP-1="" + + + + + fr.insee + kwqgawqp-CI-0 + 1 + + FR_PAR2 non renseigné + + + FR_PAR2 non renseigné + + + fr.insee + kwqgawqp-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + kwqgawqp-CI-0-IP-1 + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp-CI-0-IP-1 + 1 + InParameter + + + isnull(kwqgawqp-CI-0-IP-1) or kwqgawqp-CI-0-IP-1="" + + + + + fr.insee + l4onk34z-CI-0 + 1 + + COM_PAR2 non renseigné + + + COM_PAR2 non renseigné + + + fr.insee + l4onk34z-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4onk34z-CI-0-IP-1 + 1 + + COM_PAR2 + + + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z-CI-0-IP-1 + 1 + InParameter + + + isnull(l4onk34z-CI-0-IP-1) or l4onk34z-CI-0-IP-1="" + + + + + fr.insee + l4o8co0c-CI-0 + 1 + + DEP_PAR2 non renseigné + + + DEP_PAR2 non renseigné + + + fr.insee + l4o8co0c-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8co0c-CI-0-IP-1 + 1 + + DEP_PAR2 + + + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8co0c-CI-0-IP-1) or l4o8co0c-CI-0-IP-1="" + + + + + fr.insee + l4o8dk7q-CI-0 + 1 + + PAY_PAR2 non renseigné + + + PAY_PAR2 non renseigné + + + fr.insee + l4o8dk7q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4o8dk7q-CI-0-IP-1 + 1 + + PAY_PAR2 + + + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q-CI-0-IP-1 + 1 + InParameter + + + isnull(l4o8dk7q-CI-0-IP-1) or l4o8dk7q-CI-0-IP-1="" + + + + + fr.insee + l2kkc8s9-CI-0 + 1 + + ETAB_PAR2 non renseigné + + + ETAB_PAR2 non renseigné + + + fr.insee + l2kkc8s9-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l2kkc8s9-CI-0-IP-1 + 1 + + ETAB_PAR2 + + + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9-CI-0-IP-1 + 1 + InParameter + + + isnull(l2kkc8s9-CI-0-IP-1) or l2kkc8s9-CI-0-IP-1="" + + + + + fr.insee + l1gl4054-CI-0 + 1 + + FREQ_VU_PAR2 non renseigné + + + FREQ_VU_PAR2 non renseigné + + + fr.insee + l1gl4054-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1gl4054-CI-0-IP-1 + 1 + + FREQ_VU_PAR2 + + + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054-CI-0-IP-1 + 1 + InParameter + + + isnull(l1gl4054-CI-0-IP-1) or l1gl4054-CI-0-IP-1="" + + + + + fr.insee + l1ezkbsf-CI-0 + 1 + + FREQ_CONT_PAR2 non renseigné + + + FREQ_CONT_PAR2 non renseigné + + + fr.insee + l1ezkbsf-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1ezkbsf-CI-0-IP-1 + 1 + + FREQ_CONT_PAR2 + + + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf-CI-0-IP-1 + 1 + InParameter + + + isnull(l1ezkbsf-CI-0-IP-1) or l1ezkbsf-CI-0-IP-1="" + + + + + fr.insee + l445itcb-CI-0 + 1 + + PROX_EGO_PAR2 non renseigné + + + PROX_EGO_PAR2 non renseigné + + + fr.insee + l445itcb-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445itcb-CI-0-IP-1 + 1 + + PROX_EGO_PAR2 + + + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb-CI-0-IP-1 + 1 + InParameter + + + isnull(l445itcb-CI-0-IP-1) or l445itcb-CI-0-IP-1 ="" + + + + + fr.insee + l4cjeqc0-CI-0 + 1 + + PROX_FRAT_PAR2 non renseigné + + + PROX_FRAT_PAR2 non renseigné + + + fr.insee + l4cjeqc0-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4cjeqc0-CI-0-IP-1 + 1 + + PROX_FRAT_PAR2 + + + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0-CI-0-IP-1 + 1 + InParameter + + + isnull(l4cjeqc0-CI-0-IP-1) or l4cjeqc0-CI-0-IP-1 ="" + + + + + fr.insee + l473kp51-CI-0 + 1 + + NB_FRERES non renseigné + + + NB_FRERES non renseigné + + + fr.insee + l473kp51-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473kp51-CI-0-IP-1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51-CI-0-IP-1 + 1 + InParameter + + + isnull(l473kp51-CI-0-IP-1) + + + + + fr.insee + l5ikk5zq-CI-0 + 1 + + NB_FRERES_VIV1 non renseigné + + + NB_FRERES_VIV1 non renseigné + + + fr.insee + l5ikk5zq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ikk5zq-CI-0-IP-1 + 1 + + NB_FRERES_VIV1 + + + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ikk5zq-CI-0-IP-1) or l5ikk5zq-CI-0-IP-1="" + + + + + fr.insee + l4740wd1-CI-0 + 1 + + NB_FRERES_VIV non renseigné + + + NB_FRERES_VIV non renseigné + + + fr.insee + l4740wd1-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4740wd1-CI-0-IP-1 + 1 + + NB_FRERES_VIV + + + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-CI-0-IP-1 + 1 + InParameter + + + isnull(l4740wd1-CI-0-IP-1) + + + + + fr.insee + l4740wd1-CI-1 + 1 + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + "Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères." + + + fr.insee + l4740wd1-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4740wd1-CI-1-IP-1 + 1 + + NB_FRERES + + + + fr.insee + l4740wd1-CI-1-IP-2 + 1 + + NB_FRERES_VIV + + + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l4740wd1-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-CI-1-IP-2 + 1 + InParameter + + + (nvl(l4740wd1-CI-1-IP-2,0) > nvl(l4740wd1-CI-1-IP-1,0)) + + + + + fr.insee + l4742c2v-CI-0 + 1 + + NB_SOEURS non renseigné + + + NB_SOEURS non renseigné + + + fr.insee + l4742c2v-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l4742c2v-CI-0-IP-1 + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v-CI-0-IP-1 + 1 + InParameter + + + isnull(l4742c2v-CI-0-IP-1) + + + + + fr.insee + l5ikyrbc-CI-0 + 1 + + NB_SOEURS_VIV1 non renseigné + + + NB_SOEURS_VIV1 non renseigné + + + fr.insee + l5ikyrbc-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l5ikyrbc-CI-0-IP-1 + 1 + + NB_SOEURS_VIV1 + + + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc-CI-0-IP-1 + 1 + InParameter + + + isnull(l5ikyrbc-CI-0-IP-1) or l5ikyrbc-CI-0-IP-1="" + + + + + fr.insee + l473w273-CI-0 + 1 + + NB_SOEURS_VIV non renseigné + + + NB_SOEURS_VIV non renseigné + + + fr.insee + l473w273-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473w273-CI-0-IP-1 + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-CI-0-IP-1 + 1 + InParameter + + + isnull(l473w273-CI-0-IP-1) + + + + + fr.insee + l473w273-CI-1 + 1 + + "Le nombre de sœurs vivantes ne peut pas être supérieur au nombre total de sœurs." + + + "Le nombre de sœurs vivantes ne peut pas être supérieur au nombre total de sœurs." + + + fr.insee + l473w273-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l473w273-CI-1-IP-1 + 1 + + NB_SOEURS + + + + fr.insee + l473w273-CI-1-IP-2 + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l473w273-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-CI-1-IP-2 + 1 + InParameter + + + (nvl(l473w273-CI-1-IP-2,0) > nvl(l473w273-CI-1-IP-1,0)) + + + + + fr.insee + l1f5th3i-CI-0 + 1 + + AG_DEP_PARENT non renseigné + + + AG_DEP_PARENT non renseigné + + + fr.insee + l1f5th3i-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f5th3i-CI-0-IP-1 + 1 + + AG_DEP_PARENT + + + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f5th3i-CI-0-IP-1) + + + + + fr.insee + l1f5th3i-CI-1 + 1 + + "Vous avez indiqué un âge de départ de chez vos parents supérieur à votre âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge de départ de chez vos parents supérieur à votre âge. Est-ce que vous confirmez ?" + + + fr.insee + l1f5th3i-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f5th3i-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + l1f5th3i-CI-1-IP-2 + 1 + + AG_DEP_PARENT + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-CI-1-IP-2 + 1 + InParameter + + + l1f5th3i-CI-1-IP-2 <> 99 and not(isnull(l1f5th3i-CI-1-IP-2)) and not(isnull(l1f5th3i-CI-1-IP-1)) and cast(l1f5th3i-CI-1-IP-2,integer) > cast(l1f5th3i-CI-1-IP-1,integer) + + + + + fr.insee + l1f61fa3-CI-0 + 1 + + VECU_JEUNESSE non renseigné + + + VECU_JEUNESSE non renseigné + + + fr.insee + l1f61fa3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f61fa3-CI-0-IP-1 + 1 + + VECU_JEUNESSE1 + + + + fr.insee + l1f61fa3-CI-0-IP-2 + 1 + + VECU_JEUNESSE2 + + + + fr.insee + l1f61fa3-CI-0-IP-3 + 1 + + VECU_JEUNESSE3 + + + + fr.insee + l1f61fa3-CI-0-IP-4 + 1 + + VECU_JEUNESSE4 + + + + fr.insee + l1f61fa3-CI-0-IP-5 + 1 + + VECU_JEUNESSE5 + + + + fr.insee + l1f61fa3-CI-0-IP-6 + 1 + + VECU_JEUNESSE6 + + + + fr.insee + l1f61fa3-CI-0-IP-7 + 1 + + VECU_JEUNESSE7 + + + + + fr.insee + l1f61fa3-QOP-lv6moj96 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6mdd03 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6mmx53 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6miqdb + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-4 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6m53q1 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-5 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6mjy61 + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-6 + 1 + InParameter + + + + + fr.insee + l1f61fa3-QOP-lv6mif9h + 1 + OutParameter + + + fr.insee + l1f61fa3-CI-0-IP-7 + 1 + InParameter + + + (nvl(l1f61fa3-CI-0-IP-1, false) = false and nvl(l1f61fa3-CI-0-IP-2, false) = false and nvl(l1f61fa3-CI-0-IP-3, false) = false and nvl(l1f61fa3-CI-0-IP-4, false) = false and nvl(l1f61fa3-CI-0-IP-5, false) = false and nvl(l1f61fa3-CI-0-IP-6, false) = false and nvl(l1f61fa3-CI-0-IP-7, false) = false ) + + + + + fr.insee + l43ttd47-CI-0 + 1 + + VECU_PLACE non renseigné + + + VECU_PLACE non renseigné + + + fr.insee + l43ttd47-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43ttd47-CI-0-IP-1 + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47-CI-0-IP-1 + 1 + InParameter + + + isnull(l43ttd47-CI-0-IP-1) or l43ttd47-CI-0-IP-1="" + + + + + fr.insee + l43u439h-CI-0 + 1 + + TYP_PLACE non renseigné + + + TYP_PLACE non renseigné + + + fr.insee + l43u439h-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l43u439h-CI-0-IP-1 + 1 + + TYP_PLACE1 + + + + fr.insee + l43u439h-CI-0-IP-2 + 1 + + TYP_PLACE2 + + + + fr.insee + l43u439h-CI-0-IP-3 + 1 + + TYP_PLACE3 + + + + fr.insee + l43u439h-CI-0-IP-4 + 1 + + TYP_PLACE4 + + + + + fr.insee + l43u439h-QOP-lzqsmpxp + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-lzqsedxr + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-lzqsb3hv + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-3 + 1 + InParameter + + + + + fr.insee + l43u439h-QOP-lzqs6uxr + 1 + OutParameter + + + fr.insee + l43u439h-CI-0-IP-4 + 1 + InParameter + + + (nvl(l43u439h-CI-0-IP-1, false) = false and nvl(l43u439h-CI-0-IP-2, false) = false and nvl(l43u439h-CI-0-IP-3, false) = false and nvl(l43u439h-CI-0-IP-4, false) = false) + + + + + fr.insee + l1f65zkh-CI-0 + 1 + + HEBERG non renseigné + + + HEBERG non renseigné + + + fr.insee + l1f65zkh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1f65zkh-CI-0-IP-1 + 1 + + HEBERG + + + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1f65zkh-CI-0-IP-1) or l1f65zkh-CI-0-IP-1="" + + + + + fr.insee + l1g3unwh-CI-0 + 1 + + FINETU non renseignée + + + FINETU non renseignée + + + fr.insee + l1g3unwh-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3unwh-CI-0-IP-1 + 1 + + FINETU + + + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g3unwh-CI-0-IP-1) or l1g3unwh-CI-0-IP-1="" + + + + + fr.insee + l1g3yk6q-CI-0 + 1 + + "Vous avez indiqué une année de fin d'études antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de fin d'études antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l1g3yk6q-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-0-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g3yk6q-CI-0-IP-2 + 1 + + ANNEE_FINETU + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(l1g3yk6q-CI-0-IP-2)) and not(isnull(l1g3yk6q-CI-0-IP-1)) and cast(l1g3yk6q-CI-0-IP-2,integer) < l1g3yk6q-CI-0-IP-1) + + + + + fr.insee + l1g3yk6q-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et votre année de fin d'études. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et votre année de fin d'études. Est-ce que vous confirmez ?" + + + fr.insee + l1g3yk6q-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g3yk6q-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g3yk6q-CI-1-IP-2 + 1 + + ANNEE_FINETU + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l1g3yk6q-CI-1-IP-1)) and not(isnull(l1g3yk6q-CI-1-IP-2)) and (l1g3yk6q-CI-1-IP-1 + 12 > cast(l1g3yk6q-CI-1-IP-2,integer))) + + + + + fr.insee + lv6kuuw3-CI-0 + 1 + + AGE_FINETU non renseignée + + + AGE_FINETU non renseignée + + + fr.insee + lv6kuuw3-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kuuw3-CI-0-IP-1 + 1 + + AGE_FINETU + + + + + fr.insee + lv6kuuw3-QOP-lv6kx1xj + 1 + OutParameter + + + fr.insee + lv6kuuw3-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6kuuw3-CI-0-IP-1) + + + + + fr.insee + lv6kuuw3-CI-1 + 1 + + "Vous avez indiqué un âge de fin d'études supérieur à votre âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge de fin d'études supérieur à votre âge. Est-ce que vous confirmez ?" + + + fr.insee + lv6kuuw3-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6kuuw3-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + lv6kuuw3-CI-1-IP-2 + 1 + + AGE_FINETU + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + lv6kuuw3-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6kuuw3-QOP-lv6kx1xj + 1 + OutParameter + + + fr.insee + lv6kuuw3-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6kuuw3-CI-1-IP-2)) and not(isnull(lv6kuuw3-CI-1-IP-1)) and cast(lv6kuuw3-CI-1-IP-2,integer) > cast(lv6kuuw3-CI-1-IP-1,integer)) + + + + + fr.insee + l445x7tq-CI-0 + 1 + + TRAVACT non renseignée + + + TRAVACT non renseignée + + + fr.insee + l445x7tq-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l445x7tq-CI-0-IP-1 + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq-CI-0-IP-1 + 1 + InParameter + + + isnull(l445x7tq-CI-0-IP-1) or l445x7tq-CI-0-IP-1="" + + + + + fr.insee + l1g7pgbn-CI-0 + 1 + + DEJATRAV1 non renseigné + + + DEJATRAV1 non renseigné + + + fr.insee + l1g7pgbn-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7pgbn-CI-0-IP-1 + 1 + + DEJATRAV1 + + + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn-CI-0-IP-1 + 1 + InParameter + + + isnull(l1g7pgbn-CI-0-IP-1) or l1g7pgbn-CI-0-IP-1="" + + + + + fr.insee + lumnhjfi-CI-0 + 1 + + DEJATRAV2 non renseignée + + + DEJATRAV2 non renseignée + + + fr.insee + lumnhjfi-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lumnhjfi-CI-0-IP-1 + 1 + + DEJATRAV2 + + + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + lumnhjfi-CI-0-IP-1 + 1 + InParameter + + + isnull(lumnhjfi-CI-0-IP-1) or lumnhjfi-CI-0-IP-1="" + + + + + fr.insee + l1g4pid1-CI-0 + 1 + + "Vous avez indiqué une année de premier emploi antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de premier emploi antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l1g4pid1-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-0-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g4pid1-CI-0-IP-2 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(l1g4pid1-CI-0-IP-2)) and not(isnull(l1g4pid1-CI-0-IP-1)) and cast(l1g4pid1-CI-0-IP-2,integer) < l1g4pid1-CI-0-IP-1) + + + + + fr.insee + l1g4pid1-CI-1 + 1 + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier emploi. Est-ce que vous confirmez ?" + + + "Il y a peu d'écart entre votre année de naissance et celle de votre premier emploi. Est-ce que vous confirmez ?" + + + fr.insee + l1g4pid1-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g4pid1-CI-1-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g4pid1-CI-1-IP-2 + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l1g4pid1-CI-1-IP-1)) and not(isnull(l1g4pid1-CI-1-IP-2)) and (l1g4pid1-CI-1-IP-1 + 14 > cast(l1g4pid1-CI-1-IP-2,integer))) + + + + + fr.insee + lv6l9f59-CI-0 + 1 + + AGE_EMPLOI1 non renseignée + + + AGE_EMPLOI1 non renseignée + + + fr.insee + lv6l9f59-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6l9f59-CI-0-IP-1 + 1 + + AGE_EMPLOI1 + + + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + OutParameter + + + fr.insee + lv6l9f59-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6l9f59-CI-0-IP-1) + + + + + fr.insee + lv6l9f59-CI-1 + 1 + + "Vous avez indiqué un âge de premier emploi supérieur à votre âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge de premier emploi supérieur à votre âge. Est-ce que vous confirmez ?" + + + fr.insee + lv6l9f59-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6l9f59-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + lv6l9f59-CI-1-IP-2 + 1 + + AGE_EMPLOI1 + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + lv6l9f59-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + OutParameter + + + fr.insee + lv6l9f59-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6l9f59-CI-1-IP-2)) and not(isnull(lv6l9f59-CI-1-IP-1)) and cast(lv6l9f59-CI-1-IP-2,integer) > cast(lv6l9f59-CI-1-IP-1,integer)) + + + + + fr.insee + l1g7iu0j-CI-0 + 1 + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de naissance. Est-ce que vous confirmez ?" + + + fr.insee + l1g7iu0j-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-0-IP-1 + 1 + + ANAIS + + + + fr.insee + l1g7iu0j-CI-0-IP-2 + 1 + + ANNEE_FINEMP + + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-0-IP-2 + 1 + InParameter + + + (not(isnull(l1g7iu0j-CI-0-IP-2)) and not(isnull(l1g7iu0j-CI-0-IP-1)) and cast(l1g7iu0j-CI-0-IP-2,integer) < cast(l1g7iu0j-CI-0-IP-1,integer)) + + + + + fr.insee + l1g7iu0j-CI-1 + 1 + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de premier emploi. Est-ce que vous confirmez ?" + + + "Vous avez indiqué une année de cessation d'activité antérieure à votre année de premier emploi. Est-ce que vous confirmez ?" + + + fr.insee + l1g7iu0j-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7iu0j-CI-1-IP-1 + 1 + + ANNEE_EMPLOI1 + + + + fr.insee + l1g7iu0j-CI-1-IP-2 + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(l1g7iu0j-CI-1-IP-2)) and not(isnull(l1g7iu0j-CI-1-IP-1)) and cast(l1g7iu0j-CI-1-IP-2,integer) < cast(l1g7iu0j-CI-1-IP-1,integer)) + + + + + fr.insee + lv6m34hz-CI-0 + 1 + + AGE_FINEMP non renseignée + + + AGE_FINEMP non renseignée + + + fr.insee + lv6m34hz-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6m34hz-CI-0-IP-1 + 1 + + AGE_FINEMP + + + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + OutParameter + + + fr.insee + lv6m34hz-CI-0-IP-1 + 1 + InParameter + + + isnull(lv6m34hz-CI-0-IP-1) + + + + + fr.insee + lv6m34hz-CI-1 + 1 + + "Vous avez indiqué un âge de cessation d'activité supérieur à votre âge. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge de cessation d'activité supérieur à votre âge. Est-ce que vous confirmez ?" + + + fr.insee + lv6m34hz-CI-1-II-1 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6m34hz-CI-1-IP-1 + 1 + + AGE + + + + fr.insee + lv6m34hz-CI-1-IP-2 + 1 + + AGE_FINEMP + + + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + lv6m34hz-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + OutParameter + + + fr.insee + lv6m34hz-CI-1-IP-2 + 1 + InParameter + + + (not(isnull(lv6m34hz-CI-1-IP-2)) and not(isnull(lv6m34hz-CI-1-IP-1)) and cast(lv6m34hz-CI-1-IP-2,integer) > cast(lv6m34hz-CI-1-IP-1,integer)) + + + + + fr.insee + lv6m34hz-CI-2 + 1 + + "Vous avez indiqué un âge de cessation d'activité inférieur à votre âge de premier emploi. Est-ce que vous confirmez ?" + + + "Vous avez indiqué un âge de cessation d'activité inférieur à votre âge de premier emploi. Est-ce que vous confirmez ?" + + + fr.insee + lv6m34hz-CI-2-II-2 + 1 + Instruction + + informational + + + vtl + + fr.insee + lv6m34hz-CI-2-IP-1 + 1 + + AGE_EMPLOI1 + + + + fr.insee + lv6m34hz-CI-2-IP-2 + 1 + + AGE_FINEMP + + + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + OutParameter + + + fr.insee + lv6m34hz-CI-2-IP-1 + 1 + InParameter + + + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + OutParameter + + + fr.insee + lv6m34hz-CI-2-IP-2 + 1 + InParameter + + + (not(isnull(lv6m34hz-CI-2-IP-2)) and not(isnull(lv6m34hz-CI-2-IP-1)) and cast(lv6m34hz-CI-2-IP-2,integer) < cast(lv6m34hz-CI-2-IP-1,integer)) + + + + + fr.insee + l1g7vwo6-CI-0 + 1 + + INTER_TRAV non renseignée + + + INTER_TRAV non renseignée + + + fr.insee + l1g7vwo6-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + l1g7vwo6-CI-0-IP-1 + 1 + + INTER_TRAV1 + + + + fr.insee + l1g7vwo6-CI-0-IP-2 + 1 + + INTER_TRAV2 + + + + fr.insee + l1g7vwo6-CI-0-IP-3 + 1 + + INTER_TRAV3 + + + + + fr.insee + l1g7vwo6-QOP-m1htommh + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-0-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7vwo6-QOP-m1hty7yg + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-0-IP-2 + 1 + InParameter + + + + + fr.insee + l1g7vwo6-QOP-m1hu4fcs + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-0-IP-3 + 1 + InParameter + + + (nvl(l1g7vwo6-CI-0-IP-1, false) = false and nvl(l1g7vwo6-CI-0-IP-2, false) = false and nvl(l1g7vwo6-CI-0-IP-3, false) = false ) + + + + + fr.insee + l1g7vwo6-CI-1 + 1 + + Réponse 1 exclusive + + + Réponse 1 exclusive + + + fr.insee + l1g7vwo6-CI-1-II-1 + 1 + Instruction + + stumblingblock + + + vtl + + fr.insee + l1g7vwo6-CI-1-IP-1 + 1 + + INTER_TRAV1 + + + + fr.insee + l1g7vwo6-CI-1-IP-2 + 1 + + INTER_TRAV2 + + + + fr.insee + l1g7vwo6-CI-1-IP-3 + 1 + + INTER_TRAV3 + + + + + fr.insee + l1g7vwo6-QOP-m1htommh + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-1-IP-1 + 1 + InParameter + + + + + fr.insee + l1g7vwo6-QOP-m1hty7yg + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-1-IP-2 + 1 + InParameter + + + + + fr.insee + l1g7vwo6-QOP-m1hu4fcs + 1 + OutParameter + + + fr.insee + l1g7vwo6-CI-1-IP-3 + 1 + InParameter + + + (nvl(l1g7vwo6-CI-1-IP-2,false)=true and nvl(l1g7vwo6-CI-1-IP-1,false)=true) or (nvl(l1g7vwo6-CI-1-IP-3,false)=true and nvl(l1g7vwo6-CI-1-IP-1,false)=true) + + + + + fr.insee + m0ksqayr-CI-0 + 1 + + Contrôle syntaxe + + + Contrôle syntaxe + + + fr.insee + m0ksqayr-CI-0-II-0 + 1 + Instruction + + informational + + + vtl + + fr.insee + m0ksqayr-CI-0-IP-1 + 1 + + POSTENQ_MAIL + + + + + fr.insee + m0ksqayr-QOP-m0kt9h7i + 1 + OutParameter + + + fr.insee + m0ksqayr-CI-0-IP-1 + 1 + InParameter + + + (match_characters(m0ksqayr-CI-0-IP-1, "^[A-Za-z0-9._+\-\']+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}$") = false) + + + + + + fr.insee + QuestionScheme-m4754kes + 1 + + A définir + + + fr.insee + l473latk + 1 + + VAL_PRENOM + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + + VAL_PRENOM + + + + + fr.insee + l473latk-RDOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + + + "Confirmez-vous l'orthographe de votre prénom : " || ¤RPPRENOM¤ || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l473latk-RDOP-ll2h5il3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lq0sf9ks + 1 + Instruction + + + + fr.insee + ly4bzjcl + 1 + + PRENOM_X + + + fr.insee + ly4bzjcl-QOP-ly4c9b6e + 1 + + PRENOM_X + + + + + fr.insee + ly4bzjcl-RDOP-ly4c9b6e + 1 + OutParameter + + + fr.insee + ly4bzjcl-QOP-ly4c9b6e + 1 + OutParameter + + + + + "Comment s'écrit votre prénom ?" + + + + + fr.insee + ly4bzjcl-RDOP-ly4c9b6e + 1 + + + + + + fr.insee + ly4blyt6 + 1 + + VAL_ANNAISS + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + + VAL_ANNAISS + + + + + fr.insee + ly4blyt6-RDOP-ly4c24uw + 1 + OutParameter + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + OutParameter + + + + + "Confirmez-vous votre date de naissance : " || cast(¤RPJNAISENQ¤,string) || "/" || cast(¤RPMNAISENQ¤,string) || "/" || cast(¤RPANAISENQ¤,string) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + ly4blyt6-RDOP-ly4c24uw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + ly4bp25d + 1 + Instruction + + + + fr.insee + kwq9wijq + 1 + + DATNAIS_X + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + + DATNAIS_X + + + + + fr.insee + kwq9wijq-RDOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + + + "Quelle est votre date de naissance ?" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2025-01-01 + + + fr.insee + kwq9wijq-RDOP-kwq9l0nj + 1 + + + + + fr.insee + ly4cuvn6 + 1 + + MINEUR + + + fr.insee + ly4cuvn6-QOP-ly4d6z4v + 1 + + MINEUR + + + + + fr.insee + ly4cuvn6-RDOP-ly4d6z4v + 1 + OutParameter + + + fr.insee + ly4cuvn6-QOP-ly4d6z4v + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", confirmez-vous être mineur" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " au 1er janvier 2025 ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + ly4cuvn6-RDOP-ly4d6z4v + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + kwq9y19w + 1 + + COUPLE + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + + COUPLE + + + + + fr.insee + kwq9y19w-RDOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", êtes-vous actuellement en couple [?](. "Pourquoi cette question ? +Pour identifier l'ensemble des situations de vie en couple, actuelles ou passées. En effet, le recensement ne permet de connaître que les couples vivant dans le même logement. +Cette question est essentielle pour comprendre la diversité des histoires et situations de couple.")" + + + + radio-button + + fr.insee + kwqfz7tj + 1 + CodeList + + + fr.insee + kwq9y19w-RDOP-kwq9xmzm + 1 + + + fr.insee + kwqfz7tj + 1 + CodeList + + + + + + + + fr.insee + l0qkj23a + 1 + + RAISON_VIE_CJT + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + + RAISON_VIE_CJT + + + + + fr.insee + l0qkj23a-RDOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + + + "Pour quelle raison principale ne vivez-vous pas ensemble [?](. "Pourquoi cette question ? +Pour mieux comprendre pourquoi certains couples ne vivent pas dans le même logement.")" + + + + radio-button + + fr.insee + kwqf7soc + 1 + CodeList + + + fr.insee + l0qkj23a-RDOP-l34fp0w3 + 1 + + + fr.insee + kwqf7soc + 1 + CodeList + + + + + + + + fr.insee + li353rhu + 1 + + PRECIS_VIE_CJT + + + fr.insee + li353rhu-QOP-li3584nx + 1 + + PRECIS_VIECJT + + + + + fr.insee + li353rhu-RDOP-li3584nx + 1 + OutParameter + + + fr.insee + li353rhu-QOP-li3584nx + 1 + OutParameter + + + + + "Pouvez-vous préciser cette raison ?" + + + + + fr.insee + li353rhu-RDOP-li3584nx + 1 + + + + + + fr.insee + lyye1a7t + 1 + + PROX_VIE_CJT + + + fr.insee + lyye1a7t-QOP-lyygl4i9 + 1 + + PROX_VIE_CJT + + + + + fr.insee + lyye1a7t-RDOP-lyygl4i9 + 1 + OutParameter + + + fr.insee + lyye1a7t-QOP-lyygl4i9 + 1 + OutParameter + + + + + "Vivez-vous à moins d'une heure de votre conjoint(e) ?" + + + + radio-button + + fr.insee + l4ongo32 + 1 + CodeList + + + fr.insee + lyye1a7t-RDOP-lyygl4i9 + 1 + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + + + fr.insee + l34grb6h + 1 + + PRENOM_C + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + + PRENOM_C + + + + + fr.insee + l34grb6h-RDOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " le prénom de votre " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤ ="2") then "conjoint(e) actuel(le)" else "dernier(ère) conjoint(e)") || " [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre conjoint(e) avec son prénom. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + + fr.insee + l34grb6h-RDOP-l34guyz9 + 1 + + + + + + fr.insee + kwqa0ism + 1 + + DATNAIS_C + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + + DATNAIS_C + + + + + fr.insee + kwqa0ism-RDOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + + + "Quelle " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " la date de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint(e) actuel(le) " else "votre dernier(ère) conjoint(e) ") else ¤l34grb6h-QOP-l34guyz9¤) || " [?](. "Pourquoi cette question ? +Pour mesurer l’écart d’âge entre conjoints. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + YYYY-MM-DD + date + + 1900-01-01 + 2011-01-01 + + + fr.insee + kwqa0ism-RDOP-kwqa5c2z + 1 + + + + fr.insee + lv2hty76 + 1 + Instruction + + + + fr.insee + kwqabjga + 1 + + SEXE_CH + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + + SEXE_CH + + + + + fr.insee + kwqabjga-RDOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Votre conjoint(e) est-il/elle ?" else "Votre dernier(ère) conjoint(e) était-il/elle ?") else (¤l34grb6h-QOP-l34guyz9¤ || " " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est-il/elle ?" else "était-il/elle ?"))) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + kwqabjga-RDOP-kwqai8pk + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + l4o59ei7 + 1 + + LIEUNAIS_CH + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + + LIEUNAIS_CH + + + + + fr.insee + l4o59ei7-RDOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + + + "" || (if nvl(¤l34grb6h-QOP-l34guyz9¤,"") <> "" then ¤l34grb6h-QOP-l34guyz9¤ else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "Votre conjoint" else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "Votre conjointe" else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "Votre dernier conjoint" else "Votre dernière conjointe")))) || "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " est" else " était") || "-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il né" else "elle née") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o59ei7-RDOP-l4o57gfv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pa18h0 + 1 + Instruction + + + + fr.insee + l0quikkt + 1 + + DNAI_CH + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + + DNAI_CH + + + + + fr.insee + l0quikkt-RDOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " le département de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l0quikkt-RDOP-llvz459i + 1 + + + + + fr.insee + l4o5rn9i + 1 + Instruction + + + + fr.insee + l4o57595 + 1 + + PNAI_CH + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + + PNAI_CH + + + + + fr.insee + l4o57595-RDOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " le pays de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l4o57595-RDOP-llvz9iqu + 1 + + + + + fr.insee + l4o5lb2p + 1 + Instruction + + + + fr.insee + l7ywou64 + 1 + + TRAV_CH_C + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + + TRAV_CH_C + + + + + fr.insee + l7ywou64-RDOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "Votre conjoint" else "Votre conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " travaille-t-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il " else "elle ") || "ou a-t-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il " else "elle ") || "déjà travaillé [?](. "Pourquoi cette question ? +Pour connaître la situation d’emploi et la catégorie sociale de votre conjoint(e) actuel(le). +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l7ywou64-RDOP-l7ywme7g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + m0gppl9e + 1 + + TRAV_CH_P + + + fr.insee + m0gppl9e-QOP-m0gq7pno + 1 + + TRAV_CH_P + + + + + fr.insee + m0gppl9e-RDOP-m0gq7pno + 1 + OutParameter + + + fr.insee + m0gppl9e-QOP-m0gq7pno + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "Votre dernier conjoint" else "Votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " avait-" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il " else "elle ") || "déjà travaillé [?](. "Pourquoi cette question ? +Pour connaître la situation d’emploi et la catégorie sociale de votre dernier(ère) conjoint(e). +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + m0gppl9e-RDOP-m0gq7pno + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l0qudtd2 + 1 + + PROF_CH1 + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + + PROF_CH1 + + + + + fr.insee + l0qudtd2-RDOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + + + "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Quelle est/était" else "Lorsque vous étiez en couple, quelle était") || " la profession principale de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint" else "votre dernier conjoint") else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l0qudtd2-RDOP-llvzbt5w + 1 + + + + + fr.insee + l4o5bu87 + 1 + Instruction + + + + fr.insee + lldp4562 + 1 + + PROF_CH2 + + + fr.insee + lldp4562-QOP-llvywmha + 1 + + PROF_CH2 + + + + + fr.insee + lldp4562-RDOP-llvywmha + 1 + OutParameter + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + + + "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Quelle est/était" else "Lorsque vous étiez en couple, quelle était") || " la profession principale de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjointe" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldp4562-RDOP-llvywmha + 1 + + + + + fr.insee + lldoqdme + 1 + Instruction + + + + fr.insee + l43zea6v + 1 + + PROF_C2H + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + + PROF_C2H + + + + + fr.insee + l43zea6v-RDOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l43zea6v-RDOP-l4o6x8gg + 1 + + + + + + fr.insee + l0quphwx + 1 + + STATUT_CH + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + + STATUT_CH + + + + + fr.insee + l0quphwx-RDOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est/était" else "était") || " le statut professionnel de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + radio-button + + fr.insee + l43yp3tr + 1 + CodeList + + + fr.insee + l0quphwx-RDOP-l43z7g5s + 1 + + + fr.insee + l43yp3tr + 1 + CodeList + + + + + + + + fr.insee + lpsj90yi + 1 + + SAL_IND_CH + + + fr.insee + lpsj90yi-QOP-lpsj028t + 1 + + SAL_IND_CH + + + + + fr.insee + lpsj90yi-RDOP-lpsj028t + 1 + OutParameter + + + fr.insee + lpsj90yi-QOP-lpsj028t + 1 + OutParameter + + + + + "En comptant " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint" else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe" else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint" else "votre dernière conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || ", combien de personnes " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "travaillent/travaillaient" else "travaillaient") || " dans son entreprise ?" + + + + radio-button + + fr.insee + lpsjdj1b + 1 + CodeList + + + fr.insee + lpsj90yi-RDOP-lpsj028t + 1 + + + fr.insee + lpsjdj1b + 1 + CodeList + + + + + + + fr.insee + lpsjaaiu + 1 + Instruction + + + + fr.insee + llgt315z + 1 + + SAL_FP_CH + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + + SAL_FP_CH + + + + + fr.insee + llgt315z-RDOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est/était ..." + + + + radio-button + + fr.insee + llmhtv0t + 1 + CodeList + + + fr.insee + llgt315z-RDOP-llgsts0b + 1 + + + fr.insee + llmhtv0t + 1 + CodeList + + + + + + + + fr.insee + llgt75zv + 1 + + SAL_ENT_CH + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + + SAL_ENT_CH + + + + + fr.insee + llgt75zv-RDOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤kwqabjga-QOP-kwqai8pk¤="1") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤kwqabjga-QOP-kwqai8pk¤ ="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est/était ..." + + + + radio-button + + fr.insee + llnh4uj2 + 1 + CodeList + + + fr.insee + llgt75zv-RDOP-llgt1faa + 1 + + + fr.insee + llnh4uj2 + 1 + CodeList + + + + + + + + fr.insee + llde3pgg + 1 + + SEXE_CF + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + + SEXE_CF + + + + + fr.insee + llde3pgg-RDOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Votre conjoint(e) est-il/elle ?" else "Votre dernier(ère) conjoint(e) était-il/elle ?") else (¤l34grb6h-QOP-l34guyz9¤ || " " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est-il/elle ?" else "était-il/elle ?"))) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + llde3pgg-RDOP-lldeidzi + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + lldpi629 + 1 + + LIEUNAIS_CF + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + + LIEUNAIS_CF + + + + + fr.insee + lldpi629-RDOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + + + "" || (if nvl(¤l34grb6h-QOP-l34guyz9¤,"") <> "" then ¤l34grb6h-QOP-l34guyz9¤ else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "Votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre dernier conjoint " else "Votre dernière conjointe ")))) || "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then " est" else " était") || "-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il né" else "elle née") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lldpi629-RDOP-lldpfefv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lldp0f22 + 1 + Instruction + + + + fr.insee + lldp8203 + 1 + + DNAI_CF + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + + DNAI_CF + + + + + fr.insee + lldp8203-RDOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " le département de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldp8203-RDOP-llvz9d48 + 1 + + + + + fr.insee + lldpcfe1 + 1 + Instruction + + + + fr.insee + lldpejfa + 1 + + PNAI_CF + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + + PNAI_CF + + + + + fr.insee + lldpejfa-RDOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est" else "était") || " le pays de naissance de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldpejfa-RDOP-llvzbi5b + 1 + + + + + fr.insee + lldp3of6 + 1 + Instruction + + + + fr.insee + m0gqs0nr + 1 + + TRAV_CF_C + + + fr.insee + m0gqs0nr-QOP-m0gr1c1q + 1 + + TRAV_CF_C + + + + + fr.insee + m0gqs0nr-RDOP-m0gr1c1q + 1 + OutParameter + + + fr.insee + m0gqs0nr-QOP-m0gr1c1q + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " travaille-t-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il " else "elle ") || "ou a-t-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il " else "elle ") || "déjà travaillé [?](. "Pourquoi cette question ? +Pour connaître la situation d’emploi et la catégorie sociale de votre conjoint(e) actuel(le). +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + m0gqs0nr-RDOP-m0gr1c1q + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + m0gr51no + 1 + + TRAV_CF_P + + + fr.insee + m0gr51no-QOP-m0gr5mbj + 1 + + TRAV_CF_P + + + + + fr.insee + m0gr51no-RDOP-m0gr5mbj + 1 + OutParameter + + + fr.insee + m0gr51no-QOP-m0gr5mbj + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre dernier conjoint" else "Votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " avait-" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il " else "elle ") || "déjà travaillé [?](. "Pourquoi cette question ? +Pour connaître la situation d’emploi et la catégorie sociale de votre dernier(ère) conjoint(e). +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + m0gr51no-RDOP-m0gr5mbj + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4quaxvt + 1 + + PROF_CF1 + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + + PROF_CF1 + + + + + fr.insee + l4quaxvt-RDOP-llvz89y7 + 1 + OutParameter + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + + + "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Quelle est/était" else "Lorsque vous étiez en couple, quelle était") || " la profession principale de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjoint" else "votre dernier conjoint") else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + l4quaxvt-RDOP-llvz89y7 + 1 + + + + + fr.insee + l4qu3r4l + 1 + Instruction + + + + fr.insee + lldpqtrp + 1 + + PROF_CF2 + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + + PROF_CF2 + + + + + fr.insee + lldpqtrp-RDOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + + + "" || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "Quelle est/était" else "Lorsque vous étiez en couple, quelle était") || " la profession principale de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "votre conjointe" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + + fr.insee + lldpqtrp-RDOP-llvz4gqz + 1 + + + + + fr.insee + lldp9mst + 1 + Instruction + + + + fr.insee + lldqd2sd + 1 + + PROF_C2F + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + + PROF_C2F + + + + + fr.insee + lldqd2sd-RDOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + lldqd2sd-RDOP-lldqfnvv + 1 + + + + + + fr.insee + llmhdvun + 1 + + STATUT_CF + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + + STATUT_CF + + + + + fr.insee + llmhdvun-RDOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + + + "Quel " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "est/était" else "était") || " le statut professionnel de " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ?" + + + + radio-button + + fr.insee + llmhgfca + 1 + CodeList + + + fr.insee + llmhdvun-RDOP-llmhi8tu + 1 + + + fr.insee + llmhgfca + 1 + CodeList + + + + + + + + fr.insee + lpsiiaoa + 1 + + SAL_IND_CF + + + fr.insee + lpsiiaoa-QOP-lpsicp04 + 1 + + SAL_IND_CF + + + + + fr.insee + lpsiiaoa-RDOP-lpsicp04 + 1 + OutParameter + + + fr.insee + lpsiiaoa-QOP-lpsicp04 + 1 + OutParameter + + + + + "En comptant " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint" else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe" else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint" else "votre dernière conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || ", combien de personnes " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then "travaillent/travaillaient" else "travaillaient") || " dans son entreprise ?" + + + + radio-button + + fr.insee + lpsis458 + 1 + CodeList + + + fr.insee + lpsiiaoa-RDOP-lpsicp04 + 1 + + + fr.insee + lpsis458 + 1 + CodeList + + + + + + + fr.insee + lpsj3626 + 1 + Instruction + + + + fr.insee + llmhi6fd + 1 + + SAL_FP_CF + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + + SAL_FP_CF + + + + + fr.insee + llmhi6fd-RDOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est/était ?" + + + + radio-button + + fr.insee + llgrti9z + 1 + CodeList + + + fr.insee + llmhi6fd-RDOP-llmhkcpp + 1 + + + fr.insee + llgrti9z + 1 + CodeList + + + + + + + + fr.insee + llnh2qpm + 1 + + SAL_ENT_CF + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + + SAL_ENT_CF + + + + + fr.insee + llnh2qpm-RDOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + + + "Dans son emploi, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ¤llde3pgg-QOP-lldeidzi¤="2") then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and (¤llde3pgg-QOP-lldeidzi¤ ="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " est/était ?" + + + + radio-button + + fr.insee + llnhh1go + 1 + CodeList + + + fr.insee + llnh2qpm-RDOP-llnh4jb1 + 1 + + + fr.insee + llnhh1go + 1 + CodeList + + + + + + + + fr.insee + l27dlmvl + 1 + + ANNEE_U + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + + ANNEE_U + + + + + fr.insee + l27dlmvl-RDOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", en quelle année vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous mis" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " en couple avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " [?](. "Pourquoi cette question ? +Pour mesurer la durée des unions et reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour connaître les situations familiales d’aujourd’hui.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l27dlmvl-RDOP-l27dtcgo + 1 + + + + + fr.insee + kwqa4zjf + 1 + + PACS + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + + PACS + + + + + fr.insee + kwqa4zjf-RDOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + + + "Vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " (même si vous vous êtes marié" || (if ((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) then "s)" else (if (¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "es)" else "s)")) || " [?](. "Pourquoi cette question ? +Pour savoir combien de couples sont pacsés et donnent un cadre juridique à leur union. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqa4zjf-RDOP-kwqanscn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l0qu7e2g + 1 + + ANNEE_PACS + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + + ANNEE_PACS + + + + + fr.insee + l0qu7e2g-RDOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + + + "En quelle année vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + YYYY + gYear + + 1999 + 2025 + + + fr.insee + l0qu7e2g-RDOP-l0qu1ddb + 1 + + + + + fr.insee + l0qujqzn + 1 + + MARI + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + + MARI + + + + + fr.insee + l0qujqzn-RDOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + + + "Vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " [?](. "Pourquoi cette question ? +Pour savoir combien de couples sont mariés et donnent un cadre juridique à leur union. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l0qujqzn-RDOP-l0queysd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l0qul94p + 1 + + ANNEE_MARI + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + + ANNEE_MARI + + + + + fr.insee + l0qul94p-RDOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + + + "En quelle année vous " || (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") then "étiez" else "êtes") || "-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3") and ((¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " ? " + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l0qul94p-RDOP-l0qum61j + 1 + + + + + fr.insee + l5kszr2f + 1 + + SEPARE + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + + SEPARE + + + + + fr.insee + l5kszr2f-RDOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + + + "Si vous n'êtes plus en couple, est-ce parce que [...](. "Pourquoi cette question ? +Pour savoir comment se terminent les unions, et par exemple savoir si les personnes seules le sont à la suite d’une séparation ou du décès de leur conjoint(e). +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + radio-button + + fr.insee + l5ksmbco + 1 + CodeList + + + fr.insee + l5kszr2f-RDOP-l5kt58n3 + 1 + + + fr.insee + l5ksmbco + 1 + CodeList + + + + + + + + fr.insee + l27dzhpw + 1 + + ANNEE_S + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + + ANNEE_S + + + + + fr.insee + l27dzhpw-RDOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") || " avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwqabjga-QOP-kwqai8pk¤="2" and isnull(¤llde3pgg-QOP-lldeidzi¤)) or (¤llde3pgg-QOP-lldeidzi¤="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤)) then "votre dernier conjoint " else "votre dernière conjointe ") else ¤l34grb6h-QOP-l34guyz9¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui. +En particulier, pour savoir depuis combien de temps les personnes à la tête d’une famille monoparentale sont sans conjoint(e).")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l27dzhpw-RDOP-l27e9xg5 + 1 + + + + + fr.insee + l155mqhc + 1 + + ANNEE_D + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + + ANNEE_D + + + + + fr.insee + l155mqhc-RDOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + + + "En quelle année " || (if(nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint " else "votre dernière conjointe ") else ¤l34grb6h-QOP-l34guyz9¤) || " est-" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " décédé" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "" else "e") || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l155mqhc-RDOP-l155u3w9 + 1 + + + + + fr.insee + l8lz0355 + 1 + + VECU_C + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + + VECU_C + + + + + fr.insee + l8lz0355-RDOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + + + "Avez-vous vécu avec " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (((if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint" else "votre dernière conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || ", dans le même logement, pendant au moins 6 mois sous le même toit, avec ou sans mariage [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l8lz0355-RDOP-l8lyoa9v + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l43u9qqf + 1 + + ENFAV_C + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + + ENFAV_C + + + + + fr.insee + l43u9qqf-RDOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avant d'être en couple avec vous, " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if (¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint " else (if ((¤kwq9y19w-QOP-kwq9xmzm¤ ="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") and ((¤llde3pgg-QOP-lldeidzi¤ ="2" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "1" and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre conjointe " else (if (¤kwq9y19w-QOP-kwq9xmzm¤="3" and ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤)))) then "votre dernier conjoint " else "votre dernière conjointe "))) else ¤l34grb6h-QOP-l34guyz9¤) || " avait-" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " déjà des enfants [?](. "Pourquoi cette question ? +Pour savoir comment se (re)construisent les familles. +Cette information est essentielle pour comprendre les situations familiales d'aujourd'hui.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43u9qqf-RDOP-l43udnys + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43u4x96 + 1 + + NBENFAV_C + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + + NBENFAV_C + + + + + fr.insee + l43u4x96-RDOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + + + "Avant d’être en couple avec vous, combien " || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (((if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre conjoint" else "votre conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || " avait-" || (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " d’enfants ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l43u4x96-RDOP-l43udkpq + 1 + + + + + fr.insee + l5jnmvs2 + 1 + + NBENFAV_VENU_C1 + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + + NBENFAV_VENU_C1 + + + + + fr.insee + l5jnmvs2-RDOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + + + "Cet enfant vit-il ou a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5jnmvs2-RDOP-l5jnikmw + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l43why6c + 1 + + NBENFAV_VENU_C + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + + NBENFAV_VENU_C + + + + + fr.insee + l43why6c-RDOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + + + "Parmi eux, combien vivent ou ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l43why6c-RDOP-l43wz325 + 1 + + + + fr.insee + liiz5sj3 + 1 + Instruction + + + + fr.insee + l15131wu + 1 + + AUT_UNION + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + + AUT_UNION + + + + + fr.insee + l15131wu-RDOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avez-vous eu d'autres périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage [?](. "Pourquoi cette question ? +Pour savoir comment se (re)construisent les familles. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l15131wu-RDOP-l43xhx4c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43x1amr + 1 + + NB_AUT_UNION + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + + NB_AUT_UNION + + + + + fr.insee + l43x1amr-RDOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + + + "Combien d'autres périodes de vie en couple, pendant au moins six mois sous le même toit, avec ou sans mariage, avez-vous eues ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l43x1amr-RDOP-l43xhfsb + 1 + + + + + fr.insee + kwqa53jx + 1 + + PRENOM_U1 + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + + PRENOM_U1 + + + + + fr.insee + kwqa53jx-RDOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quel est le prénom de votre premier(ère) conjoint(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre premier(ère) conjoint(e) avec son prénom. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + kwqa53jx-RDOP-kwqa5f6j + 1 + + + + + + fr.insee + l4p8skko + 1 + + SEXE_U1H + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + + SEXE_U1H + + + + + fr.insee + l4p8skko-RDOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + + + "" || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then ("Votre premier(ère) conjoint(e) est-il/elle ? ") else (¤kwqa53jx-QOP-kwqa5f6j¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l4p8skko-RDOP-l4p8w47s + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + lldenssh + 1 + + SEXE_U1F + + + fr.insee + lldenssh-QOP-lldeceld + 1 + + SEXE_U1F + + + + + fr.insee + lldenssh-RDOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + + + "" || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then ("Votre premier(ère) conjoint(e) est-il/elle ? ") else (¤kwqa53jx-QOP-kwqa5f6j¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + lldenssh-RDOP-lldeceld + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + l34fzu5m + 1 + + ANNEE_U1 + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + + ANNEE_U1 + + + + + fr.insee + l34fzu5m-RDOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + + + "En quelle année vous étiez-vous mis" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " en couple avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l34fzu5m-RDOP-l34fz29f + 1 + + + + + fr.insee + l27dlnmq + 1 + + PACS_U1 + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + + PACS_U1 + + + + + fr.insee + l27dlnmq-RDOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + + + "Vous étiez-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " (même si vous vous êtes marié" || (if ((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) then "s)" else (if (¤lldenssh-QOP-lldeceld¤ ="2" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) then "es)" else "s)")) || " [?](. "Pourquoi cette question ? +Pour savoir combien de premiers couples se sont pacsés et ont donné un cadre juridique à leur union. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l27dlnmq-RDOP-l27dler4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l27dns8a + 1 + + ANNEE_PACS_U1 + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + + ANNEE_PACS_U1 + + + + + fr.insee + l27dns8a-RDOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + + + "En quelle année vous étiez-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + YYYY + gYear + + 1999 + 2024 + + + fr.insee + l27dns8a-RDOP-l27dy9w1 + 1 + + + + + fr.insee + l27duust + 1 + + MARI_U1 + + + fr.insee + l27duust-QOP-l27dl55t + 1 + + MARI_U1 + + + + + fr.insee + l27duust-RDOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + + + "Vous étiez-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " [?](. "Pourquoi cette question ? +Pour savoir combien de premiers couples se sont mariés et ont donné un cadre juridique à leur union. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l27duust-RDOP-l27dl55t + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l27e50tv + 1 + + ANNEE_MARI_U1 + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + + ANNEE_MARI_U1 + + + + + fr.insee + l27e50tv-RDOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + + + "En quelle année vous étiez-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " ?" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l27e50tv-RDOP-l27dy96e + 1 + + + + + fr.insee + l5ktf1wn + 1 + + SEPARE_U1 + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + + SEPARE_U1 + + + + + fr.insee + l5ktf1wn-RDOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + + + "Cette période de vie en couple s'est achevée parce que [...](. "Pourquoi cette question ? +Pour savoir comment se terminent les premières unions. +Cette information est essentielle pour mesurer la diversité des couples.")" + + + + radio-button + + fr.insee + l5ktegqo + 1 + CodeList + + + fr.insee + l5ktf1wn-RDOP-l5kt1un9 + 1 + + + fr.insee + l5ktegqo + 1 + CodeList + + + + + + + + fr.insee + l27dzhzv + 1 + + ANNEE_S_U1 + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + + ANNEE_S_U1 + + + + + fr.insee + l27dzhzv-RDOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") || " avec " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if (¤l4p8skko-QOP-l4p8w47s¤="2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (¤lldenssh-QOP-lldeceld¤="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤)) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l27dzhzv-RDOP-l27e9d05 + 1 + + + + + fr.insee + l27e0qyq + 1 + + ANNEE_D_U1 + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + + ANNEE_D_U1 + + + + + fr.insee + l27e0qyq-RDOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint " else "votre première conjointe ") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " est-" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "il décédé" else "elle décédée") || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l27e0qyq-RDOP-l27e0zm5 + 1 + + + + + fr.insee + l4cjg2rp + 1 + + ENFAV_C_U1 + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + + ENFAV_C_U1 + + + + + fr.insee + l4cjg2rp-RDOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + + + "Avant d'être en couple avec vous, " || (if(nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint" else "votre première conjointe") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " avait-" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "il" else "elle") || " déjà des enfants [?](. "Pourquoi cette question ? +Pour savoir comment se (re)construisent les familles. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjg2rp-RDOP-l4cjcmvn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4cja8pm + 1 + + NBENFAV_C_U1 + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + + NBENFAV_C_U1 + + + + + fr.insee + l4cja8pm-RDOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + + + "Avant d'être en couple avec vous, combien " || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (((if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint" else "votre première conjointe"))) else ¤kwqa53jx-QOP-kwqa5f6j¤) || " avait-t-" || (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "il" else "elle") || " d'enfants ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l4cja8pm-RDOP-l4cjc9rj + 1 + + + + + fr.insee + l5ilbb89 + 1 + + NBENFAV_C1_VENU_U1 + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + + NBENFAV_C1_VENU_U1 + + + + + fr.insee + l5ilbb89-RDOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + + + "Cet enfant a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ilbb89-RDOP-l5ild1d2 + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l4o5x7yq + 1 + + NBENFAV_C_VENU_U1 + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + + NBENFAV_C_VENU_U1 + + + + + fr.insee + l4o5x7yq-RDOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + + + "Parmi eux, combien ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4o5x7yq-RDOP-l4o5y0na + 1 + + + + fr.insee + liiz9el9 + 1 + Instruction + + + + fr.insee + l9il0i0h + 1 + + AUT_U2 + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + + AUT_U2 + + + + + fr.insee + l9il0i0h-RDOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", souhaitez-vous décrire une autre période de vie en couple qui est ou a été importante pour vous ? " + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l9il0i0h-RDOP-l9ilguvv + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l9ilcol6 + 1 + + PRENOM_U2 + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + + PRENOM_U2 + + + + + fr.insee + l9ilcol6-RDOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + + + "Quel est le prénom de votre autre conjoint(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre autre conjoint(e) avec son prénom. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l9ilcol6-RDOP-l9il24xt + 1 + + + + + + fr.insee + l9ikne2h + 1 + + SEXE_U2H + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + + SEXE_U2H + + + + + fr.insee + l9ikne2h-RDOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + + + "" || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then ("Votre autre conjoint(e) est-il/elle ? ") else (¤l9ilcol6-QOP-l9il24xt¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l9ikne2h-RDOP-l9ikmsqc + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + lldetngg + 1 + + SEXE_U2F + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + + SEXE_U2F + + + + + fr.insee + lldetngg-RDOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + + + "" || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then ("Votre autre conjoint(e) est-il/elle ? ") else (¤l9ilcol6-QOP-l9il24xt¤ || " est-il/elle ?")) + + + + radio-button + + fr.insee + lldegmb1 + 1 + CodeList + + + fr.insee + lldetngg-RDOP-lldefr60 + 1 + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + + + fr.insee + l9ikn3ea + 1 + + ANNEE_U2 + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + + ANNEE_U2 + + + + + fr.insee + l9ikn3ea-RDOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + + + "En quelle année vous étiez-vous mis" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " en couple avec " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l9ikn3ea-RDOP-l9il1x2i + 1 + + + + + fr.insee + l9il24ft + 1 + + PACS_U2 + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + + PACS_U2 + + + + + fr.insee + l9il24ft-RDOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + + + "Vous étiez-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " (même si vous vous étiez marié" || (if ((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) then "s)" else (if (¤lldetngg-QOP-lldefr60¤ ="2" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) then "es)" else "s)")) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9il24ft-RDOP-l9iks5py + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l9ikxoxa + 1 + + ANNEE_PACS_U2 + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + + ANNEE_PACS_U2 + + + + + fr.insee + l9ikxoxa-RDOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + + + "En quelle année vous étiez-vous pacsé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + YYYY + gYear + + 1999 + 2024 + + + fr.insee + l9ikxoxa-RDOP-l9iktamx + 1 + + + + + fr.insee + l9ikvx4n + 1 + + MARI_U2 + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + + MARI_U2 + + + + + fr.insee + l9ikvx4n-RDOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + + + "Vous étiez-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9ikvx4n-RDOP-l9ikpuls + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l9iklcix + 1 + + ANNEE_MARI_U2 + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + + ANNEE_MARI_U2 + + + + + fr.insee + l9iklcix-RDOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + + + "En quelle année vous étiez-vous marié" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " avec " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l9iklcix-RDOP-l9ikgh6x + 1 + + + + + fr.insee + l9ikqlwv + 1 + + SEPARE_U2 + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + + SEPARE_U2 + + + + + fr.insee + l9ikqlwv-RDOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + + + "Cette période de vie en couple s'est achevée parce que... " + + + + radio-button + + fr.insee + las91jew + 1 + CodeList + + + fr.insee + l9ikqlwv-RDOP-l9ikoz30 + 1 + + + fr.insee + las91jew + 1 + CodeList + + + + + + + + fr.insee + l9ikze1y + 1 + + ANNEE_S_U2 + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + + ANNEE_S_U2 + + + + + fr.insee + l9ikze1y-RDOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + + + "En quelle année vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") || " avec " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if (¤l9ikne2h-QOP-l9ikmsqc¤="2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (¤lldetngg-QOP-lldefr60¤="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤)) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " ?" + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l9ikze1y-RDOP-l9ikq8j6 + 1 + + + + + fr.insee + l9ikmjqm + 1 + + ANNEE_D_U2 + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + + ANNEE_D_U2 + + + + + fr.insee + l9ikmjqm-RDOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + + + "En quelle année " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint " else "votre autre conjointe ") else ¤l9ilcol6-QOP-l9il24xt¤) || " est-" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "il décédé ?" else "elle décédée ?") + + + + YYYY + gYear + + 1920 + 2024 + + + fr.insee + l9ikmjqm-RDOP-l9ikmj5h + 1 + + + + + fr.insee + l9ikxndo + 1 + + ENFAV_C_U2 + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + + ENFAV_C_U2 + + + + + fr.insee + l9ikxndo-RDOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avant d'être en couple avec vous, " || (if(nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint" else "votre autre conjointe") else ¤l9ilcol6-QOP-l9il24xt¤) || " avait-" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "il" else "elle") || " déjà des enfants ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l9ikxndo-RDOP-l9ikxjkq + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l9ikuqoe + 1 + + NBENFAV_C_U2 + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + + NBENFAV_C_U2 + + + + + fr.insee + l9ikuqoe-RDOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + + + "Avant d’être en couple avec vous, combien " || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (((if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint" else "votre autre conjointe"))) else ¤l9ilcol6-QOP-l9il24xt¤) || " avait-t-" || (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "il" else "elle") || " d’enfants ?" + + + + + 1 + 20 + + Decimal + + fr.insee + l9ikuqoe-RDOP-l9ikmqgf + 1 + + + + + fr.insee + l9ikekzu + 1 + + NBENFAV_C1_VENU_U2 + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + + NBENFAV_C1_VENU_U2 + + + + + fr.insee + l9ikekzu-RDOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + + + "Cet enfant a-t-il vécu avec vous ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l9ikekzu-RDOP-l9ikbyxh + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l9iks078 + 1 + + NBENFAV_C_VENU_U2 + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + + NBENFAV_C_VENU_U2 + + + + + fr.insee + l9iks078-RDOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + + + "Parmi eux, combien ont vécu avec vous ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l9iks078-RDOP-l9ikl02v + 1 + + + + fr.insee + liizbc3w + 1 + Instruction + + + + fr.insee + kwqigxtx + 1 + + ENF + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + + ENF + + + + + fr.insee + kwqigxtx-RDOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avez-vous eu des enfants (y compris ceux adoptés ou décédés) [?](. "Pourquoi cette question ? +Pour identifier les personnes qui ont eu ou non des enfants au cours de leur vie. +Cette information est essentielle pour comprendre les familles, et n'est disponible dans aucune autre enquête ou source administrative.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqigxtx-RDOP-kwqianb6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lzsfgijs + 1 + Instruction + + + + fr.insee + kwqi5zsm + 1 + + NBENF + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + + NBENF + + + + + fr.insee + kwqi5zsm-RDOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + + + "Combien d'enfant(s) avez-vous eu(s) en tout (y compris ceux adoptés ou décédés) ?" + + + + + 1 + 20 + + Decimal + + fr.insee + kwqi5zsm-RDOP-kwqilzs8 + 1 + + + + + fr.insee + l1gkeq97 + 1 + + NBENF_ADOP_UN + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + + NBENF_ADOP_UN + + + + + fr.insee + l1gkeq97-RDOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + + + "Cet(te) enfant a-t-il/elle été adopté(e) (adoption simple ou plénière) [?](. "Pourquoi cette question ? +Pour compter et décrire les familles qui ont adopté des enfants. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + l7rlvd0y + 1 + CodeList + + + fr.insee + l1gkeq97-RDOP-l7rlttxu + 1 + + + fr.insee + l7rlvd0y + 1 + CodeList + + + + + + + + fr.insee + l7rlim3p + 1 + + NBENF_ADOP + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + + NBENF_ADOP + + + + + fr.insee + l7rlim3p-RDOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + + + "Parmi eux, combien d'enfant(s) ont-ils été adopté(s) (adoption simple ou plénière) [?](. "Pourquoi cette question ? +Pour compter et décrire les familles qui ont adopté des enfants. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + + 0 + 20 + + Decimal + + fr.insee + l7rlim3p-RDOP-l7rlfeda + 1 + + + + fr.insee + l7rlwtef + 1 + Instruction + + + + fr.insee + l1gi76wy + 1 + + LANGUE1_ENF + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + + LANGUE1_ENF + + + + + fr.insee + l1gi76wy-RDOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + + + "En quelle langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) parliez-vous avec " || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "vos enfants" else "votre enfant") || " lorsqu’il" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "s étaient jeunes ou leur" else " était jeune ou lui") || " parlez-vous maintenant s’il" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "s sont encore mineurs" else " est encore mineur") || " [?](. "Pourquoi cette question ? +Pour savoir comment se transmettent les langues au fil des générations.")" + + + + + fr.insee + l1gi76wy-RDOP-llvz7u99 + 1 + + + + + fr.insee + laiambix + 1 + Instruction + + + + fr.insee + lumogysw + 1 + + LANGUE1_ENFL + + + fr.insee + lumogysw-QOP-lumot76k + 1 + + LANGUE1_ENFL + + + + + fr.insee + lumogysw-RDOP-lumot76k + 1 + OutParameter + + + fr.insee + lumogysw-QOP-lumot76k + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumogysw-RDOP-lumot76k + 1 + + + + + + fr.insee + lw52ifu3 + 1 + + LANGUE2_ENFE + + + fr.insee + lw52ifu3-QOP-lw54ol76 + 1 + + LANGUE2_ENFE + + + + + fr.insee + lw52ifu3-RDOP-lw54ol76 + 1 + OutParameter + + + fr.insee + lw52ifu3-QOP-lw54ol76 + 1 + OutParameter + + + + + "Parliez/parlez-vous à " || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "vos enfants" else "votre enfant") || " dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + lw52ifu3-RDOP-lw54ol76 + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l445u9x8 + 1 + + LANGUE2_ENF + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + + LANGUE2_ENF + + + + + fr.insee + l445u9x8-RDOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + + + "Quelle est cette autre langue, dialecte ou patois ?" + + + + + fr.insee + l445u9x8-RDOP-llvyyveq + 1 + + + + + fr.insee + lvuztgu9 + 1 + Instruction + + + + fr.insee + lumstcob + 1 + + LANGUE2_ENFL + + + fr.insee + lumstcob-QOP-lumstrv3 + 1 + + LANGUE2_ENFL + + + + + fr.insee + lumstcob-RDOP-lumstrv3 + 1 + OutParameter + + + fr.insee + lumstcob-QOP-lumstrv3 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumstcob-RDOP-lumstrv3 + 1 + + + + + + fr.insee + lumnxb5k + 1 + + LANGUE3_ENFE + + + fr.insee + lumnxb5k-QOP-lw54m4hq + 1 + + LANGUE3_ENFE + + + + + fr.insee + lumnxb5k-RDOP-lw54m4hq + 1 + OutParameter + + + fr.insee + lumnxb5k-QOP-lw54m4hq + 1 + OutParameter + + + + + "Parliez/parlez-vous à " || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "vos enfants" else "votre enfant") || " dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + lumnxb5k-RDOP-lw54m4hq + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + lw543f35 + 1 + + LANGUE3_ENF + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + + LANGUE3_ENF + + + + + fr.insee + lw543f35-RDOP-lw543jzd + 1 + OutParameter + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + + + "Quelle est cette troisième langue, dialecte ou patois ?" + + + + + fr.insee + lw543f35-RDOP-lw543jzd + 1 + + + + + fr.insee + lw53s36h + 1 + Instruction + + + + fr.insee + lumsq0y7 + 1 + + LANGUE3_ENFL + + + fr.insee + lumsq0y7-QOP-lumssga8 + 1 + + LANGUE3_ENFL + + + + + fr.insee + lumsq0y7-RDOP-lumssga8 + 1 + OutParameter + + + fr.insee + lumsq0y7-QOP-lumssga8 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsq0y7-RDOP-lumssga8 + 1 + + + + + + fr.insee + lumnyjae + 1 + + LANGUE4_ENFE + + + fr.insee + lumnyjae-QOP-lw54f3wu + 1 + + LANGUE4_ENFE + + + + + fr.insee + lumnyjae-RDOP-lw54f3wu + 1 + OutParameter + + + fr.insee + lumnyjae-QOP-lw54f3wu + 1 + OutParameter + + + + + "Parliez/parlez-vous à " || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "vos enfants" else "votre enfant") || " dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lumnyjae-RDOP-lw54f3wu + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw547oxc + 1 + + LANGUE4_ENF + + + fr.insee + lw547oxc-QOP-lw53vioh + 1 + + LANGUE4_ENF + + + + + fr.insee + lw547oxc-RDOP-lw53vioh + 1 + OutParameter + + + fr.insee + lw547oxc-QOP-lw53vioh + 1 + OutParameter + + + + + "Quelle est cette quatrième langue, dialecte ou patois ?" + + + + + fr.insee + lw547oxc-RDOP-lw53vioh + 1 + + + + + fr.insee + lw549g86 + 1 + Instruction + + + + fr.insee + lumsq00h + 1 + + LANGUE4_ENFL + + + fr.insee + lumsq00h-QOP-lumszz44 + 1 + + LANGUE4_ENFL + + + + + fr.insee + lumsq00h-RDOP-lumszz44 + 1 + OutParameter + + + fr.insee + lumsq00h-QOP-lumszz44 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsq00h-RDOP-lumszz44 + 1 + + + + + + fr.insee + l4idom4o + 1 + + NBENFLOG_UN + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + + NBENFLOG_UN + + + + + fr.insee + l4idom4o-RDOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + + + "Cet(te) enfant vit-il/elle avec vous, même une petite partie du temps seulement [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4idom4o-RDOP-l4idkl19 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + ltd023vh + 1 + + NBENFLOG + + + fr.insee + ltd023vh-QOP-ltczw6tn + 1 + + NBENFLOG + + + + + fr.insee + ltd023vh-RDOP-ltczw6tn + 1 + OutParameter + + + fr.insee + ltd023vh-QOP-ltczw6tn + 1 + OutParameter + + + + + "Parmi vos enfants, certains vivent-ils avec vous, même une petite partie du temps seulement [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + ltd023vh-RDOP-ltczw6tn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lcr3vb + 1 + + CBENFLOG + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + + CBENFLOG + + + + + fr.insee + l4lcr3vb-RDOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + + + "Combien de vos enfants vivent avec vous, même une petite partie du temps seulement ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4lcr3vb-RDOP-l4lcyzfy + 1 + + + + + fr.insee + ltd0h1g7 + 1 + + NBENFAIL_UN + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + + NBENFAIL_UN + + + + + fr.insee + ltd0h1g7-RDOP-ltd0m6q3 + 1 + OutParameter + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + + + "Confirmez-vous que cet(te) enfant ne vit pas avec vous ou est décédé(e) [?](. "Pourquoi cette question ? +Pour connaître la situation de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles. +En particulier, elle permet de savoir où vivent les enfants devenus grands ou de parents séparés ou combien de personnes ont eu des enfants qui sont aujourd’hui décédés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + ltd0h1g7-RDOP-ltd0m6q3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lfzig7 + 1 + + CBENFAIL + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + + CBENFAIL + + + + + fr.insee + l4lfzig7-RDOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + + + "Combien de vos enfants ne vivent pas avec vous ou sont décédés ?" + + + + + 0 + 20 + + Decimal + + fr.insee + l4lfzig7-RDOP-l4lgbag5 + 1 + + + + + fr.insee + l446nede + 1 + + PRENOM_ENFLOG1 + + + fr.insee + l446nede-QOP-l446c5pz + 1 + + PRENOM_ENFLOG1 + + + + + fr.insee + l446nede-RDOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle " || (if (¤l4lcr3vb-QOP-l4lcyzfy¤=1 or (isnull(¤l4lcr3vb-QOP-l4lcyzfy¤) and ¤l4idom4o-QOP-l4idkl19¤="1")) then "votre enfant" else "votre premier enfant") || " qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l446nede-RDOP-l446c5pz + 1 + + + + + + fr.insee + kwqjk80w + 1 + + SEXE_ENFLOG1 + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + + SEXE_ENFLOG1 + + + + + fr.insee + kwqjk80w-RDOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then "cet(te) enfant" else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + kwqjk80w-RDOP-kwqjqaig + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + kwqjmq2o + 1 + + ANAI_ENFLOG1 + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + + ANAI_ENFLOG1 + + + + + fr.insee + kwqjmq2o-RDOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + kwqjmq2o-RDOP-kwqjvmys + 1 + + + + + fr.insee + l4qtls9o + 1 + + NEFRANCE_ENFLOG1 + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + + NEFRANCE_ENFLOG1 + + + + + fr.insee + l4qtls9o-RDOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "Cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " est-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il né" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtls9o-RDOP-l4qtebrx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qth2nf + 1 + Instruction + + + + fr.insee + lv3teph7 + 1 + + ADOPT_ENFLOG1 + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + + ADOPT_ENFLOG1 + + + + + fr.insee + lv3teph7-RDOP-lv3ti529 + 1 + OutParameter + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "Cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " a-t-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il été adopté" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv3teph7-RDOP-lv3ti529 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv3ts84i + 1 + + ANADOPT_ENFLOG1 + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + + ANADOPT_ENFLOG1 + + + + + fr.insee + lv3ts84i-RDOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " a-t-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il été adopté ?" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv3ts84i-RDOP-lv3v32lg + 1 + + + + + fr.insee + kwqjol7e + 1 + + PARENT_VIT_ENFLOG1 + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + + PARENT_VIT_ENFLOG1 + + + + + fr.insee + kwqjol7e-RDOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + kwqjol7e-RDOP-kwqj742g + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6lxfn + 1 + Instruction + + + + fr.insee + l4iaicn8 + 1 + + PARENT_FR_ENFLOG1 + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + + PARENT_FR_ENFLOG1 + + + + + fr.insee + l4iaicn8-RDOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4iaicn8-RDOP-l4ia62t2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paxo23 + 1 + Instruction + + + + fr.insee + l4parilg + 1 + + PARENT_COM_ENFLOG1 + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + + PARENT_COM_ENFLOG1 + + + + + fr.insee + l4parilg-RDOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4parilg-RDOP-llvz00eo + 1 + + + + + fr.insee + m37btc9s + 1 + Instruction + + + + fr.insee + l4pav1bd + 1 + + PARENT_DEP_ENFLOG1 + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + + PARENT_DEP_ENFLOG1 + + + + + fr.insee + l4pav1bd-RDOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4pav1bd-RDOP-llvz43dk + 1 + + + + + fr.insee + l4papcwn + 1 + Instruction + + + + fr.insee + l4pavrnh + 1 + + PARENT_PAY_ENFLOG1 + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + + PARENT_PAY_ENFLOG1 + + + + + fr.insee + l4pavrnh-RDOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " ?" + + + + + fr.insee + l4pavrnh-RDOP-llvz0tqh + 1 + + + + + fr.insee + l4pbeb5v + 1 + Instruction + + + + fr.insee + l1ez78st + 1 + + PARENT_FREQ_ENFLOG1 + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + + PARENT_FREQ_ENFLOG1 + + + + + fr.insee + l1ez78st-RDOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " est-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1ez78st-RDOP-l1ezqoac + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4iain70 + 1 + + PARENT_DORT_ENFLOG1 + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + + PARENT_DORT_ENFLOG1 + + + + + fr.insee + l4iain70-RDOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4iain70-RDOP-l4iapk3a + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqk3gx2 + 1 + + PARENT_VECU_ENFLOG1 + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + + PARENT_VECU_ENFLOG1 + + + + + fr.insee + kwqk3gx2-RDOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqk3gx2-RDOP-kwqjmrl7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6ydnyh + 1 + + SEP_AUT_PAR_ENFLOG1 + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + + SEP_AUT_PAR_ENFLOG1 + + + + + fr.insee + la6ydnyh-RDOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "cette enfant" else "cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6ydnyh-RDOP-la6ylcb8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqjmy9d + 1 + + RESID_ENFLOG1 + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + + RESID_ENFLOG1 + + + + + fr.insee + kwqjmy9d-RDOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + kwqjmy9d-RDOP-kwqjfzw0 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l1gia5uh + 1 + + SANTE_ENFLOG1 + + + fr.insee + l1gia5uh-QOP-lvgobnzd + 1 + + SANTE_ENFLOG1 + + + + + fr.insee + l1gia5uh-RDOP-lvgobnzd + 1 + OutParameter + + + fr.insee + l1gia5uh-QOP-lvgobnzd + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "Cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " vit-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1gia5uh-RDOP-lvgobnzd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgn6d99 + 1 + + ASE_ENFLOG1 + + + fr.insee + lvgn6d99-QOP-lvgo9bqf + 1 + + ASE_ENFLOG1 + + + + + fr.insee + lvgn6d99-RDOP-lvgo9bqf + 1 + OutParameter + + + fr.insee + lvgn6d99-QOP-lvgo9bqf + 1 + OutParameter + + + + + "" || (if (nvl(¤l446nede-QOP-l446c5pz¤,"")="") then (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "Cet enfant" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l446nede-QOP-l446c5pz¤) || " vit-" || (if ¤kwqjk80w-QOP-kwqjqaig¤="1" then "il" else if ¤kwqjk80w-QOP-kwqjqaig¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgn6d99-RDOP-lvgo9bqf + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4i9118b + 1 + + PRENOM_ENFLOG2 + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + + PRENOM_ENFLOG2 + + + + + fr.insee + l4i9118b-RDOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le deuxième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4i9118b-RDOP-l4i95yyt + 1 + + + + + + fr.insee + l4i8zu5m + 1 + + SEXE_ENFLOG2 + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + + SEXE_ENFLOG2 + + + + + fr.insee + l4i8zu5m-RDOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then "cet(te) enfant" else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4i8zu5m-RDOP-l4i9doqz + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4ia7rxn + 1 + + ANAI_ENFLOG2 + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + + ANAI_ENFLOG2 + + + + + fr.insee + l4ia7rxn-RDOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4ia7rxn-RDOP-l4iad1cc + 1 + + + + + fr.insee + l4qtpg9f + 1 + + NEFRANCE_ENFLOG2 + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + + NEFRANCE_ENFLOG2 + + + + + fr.insee + l4qtpg9f-RDOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "Cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " est-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il né" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtpg9f-RDOP-l4qtj10v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qtdwhq + 1 + Instruction + + + + fr.insee + lv3u5cvk + 1 + + ADOPT_ENFLOG2 + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + + ADOPT_ENFLOG2 + + + + + fr.insee + lv3u5cvk-RDOP-lv3ugypu + 1 + OutParameter + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "Cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " a-t-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il été adopté" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv3u5cvk-RDOP-lv3ugypu + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv3ule5a + 1 + + ANADOPT_ENFLOG2 + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + + ANADOPT_ENFLOG2 + + + + + fr.insee + lv3ule5a-RDOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " a-t-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il été adopté ?" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv3ule5a-RDOP-lv3um57g + 1 + + + + + fr.insee + l4iano52 + 1 + + PARENT_VIT_ENFLOG2 + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + + PARENT_VIT_ENFLOG2 + + + + + fr.insee + l4iano52-RDOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4iano52-RDOP-l4ia429z + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6ogjx + 1 + Instruction + + + + fr.insee + kwqjmujx + 1 + + PARENT_FR_ENFLOG2 + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + + PARENT_FR_ENFLOG2 + + + + + fr.insee + kwqjmujx-RDOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqjmujx-RDOP-kwqjglld + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pavsqb + 1 + Instruction + + + + fr.insee + l4pasuts + 1 + + PARENT_COM_ENFLOG2 + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + + PARENT_COM_ENFLOG2 + + + + + fr.insee + l4pasuts-RDOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pasuts-RDOP-llvz300g + 1 + + + + + fr.insee + m37bupmw + 1 + Instruction + + + + fr.insee + l4pannoa + 1 + + PARENT_DEP_ENFLOG2 + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + + PARENT_DEP_ENFLOG2 + + + + + fr.insee + l4pannoa-RDOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pannoa-RDOP-llvz35s7 + 1 + + + + + fr.insee + l4pakgkw + 1 + Instruction + + + + fr.insee + l4pbc5wa + 1 + + PARENT_PAY_ENFLOG2 + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + + PARENT_PAY_ENFLOG2 + + + + + fr.insee + l4pbc5wa-RDOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " ?" + + + + + fr.insee + l4pbc5wa-RDOP-llvz3uou + 1 + + + + + fr.insee + l4pbep5s + 1 + Instruction + + + + fr.insee + l4idgpbr + 1 + + PARENT_FREQ_ENFLOG2 + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + + PARENT_FREQ_ENFLOG2 + + + + + fr.insee + l4idgpbr-RDOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " est-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4idgpbr-RDOP-l4idauus + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4486unb + 1 + + PARENT_DORT_ENFLOG2 + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + + PARENT_DORT_ENFLOG2 + + + + + fr.insee + l4486unb-RDOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4486unb-RDOP-l4486uz3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ia5o28 + 1 + + PARENT_VECU_ENFLOG2 + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + + PARENT_VECU_ENFLOG2 + + + + + fr.insee + l4ia5o28-RDOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ia5o28-RDOP-l4ia9b25 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6yjh65 + 1 + + SEP_AUT_PAR_ENFLOG2 + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + + SEP_AUT_PAR_ENFLOG2 + + + + + fr.insee + la6yjh65-RDOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6yjh65-RDOP-la6yhprv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4idgqx9 + 1 + + RESID_ENFLOG2 + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + + RESID_ENFLOG2 + + + + + fr.insee + l4idgqx9-RDOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4idgqx9-RDOP-l4idnmx1 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4ia7y0p + 1 + + SANTE_ENFLOG2 + + + fr.insee + l4ia7y0p-QOP-lvgocsz8 + 1 + + SANTE_ENFLOG2 + + + + + fr.insee + l4ia7y0p-RDOP-lvgocsz8 + 1 + OutParameter + + + fr.insee + l4ia7y0p-QOP-lvgocsz8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "Cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ia7y0p-RDOP-lvgocsz8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgneyls + 1 + + ASE_ENFLOG2 + + + fr.insee + lvgneyls-QOP-lvgo7bos + 1 + + ASE_ENFLOG2 + + + + + fr.insee + lvgneyls-RDOP-lvgo7bos + 1 + OutParameter + + + fr.insee + lvgneyls-QOP-lvgo7bos + 1 + OutParameter + + + + + "" || (if (nvl(¤l4i9118b-QOP-l4i95yyt¤,"")="") then (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "Cet enfant" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4i9118b-QOP-l4i95yyt¤) || " vit-" || (if ¤l4i8zu5m-QOP-l4i9doqz¤="1" then "il" else if ¤l4i8zu5m-QOP-l4i9doqz¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgneyls-RDOP-lvgo7bos + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ld0ziw + 1 + + PRENOM_ENFLOG3 + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + + PRENOM_ENFLOG3 + + + + + fr.insee + l4ld0ziw-RDOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le troisième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4ld0ziw-RDOP-l4lco011 + 1 + + + + + + fr.insee + l4lcp4co + 1 + + SEXE_ENFLOG3 + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + + SEXE_ENFLOG3 + + + + + fr.insee + l4lcp4co-RDOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then "cet(te) enfant" else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lcp4co-RDOP-l4ld0wcd + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4ld3y0j + 1 + + ANAI_ENFLOG3 + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + + ANAI_ENFLOG3 + + + + + fr.insee + l4ld3y0j-RDOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4ld3y0j-RDOP-l4ld1d4p + 1 + + + + + fr.insee + l4qty53i + 1 + + NEFRANCE_ENFLOG3 + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + + NEFRANCE_ENFLOG3 + + + + + fr.insee + l4qty53i-RDOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "Cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " est-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il né" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qty53i-RDOP-l4qtewva + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qthko2 + 1 + Instruction + + + + fr.insee + lv3uun9e + 1 + + ADOPT_ENFLOG3 + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + + ADOPT_ENFLOG3 + + + + + fr.insee + lv3uun9e-RDOP-lv3uqxkh + 1 + OutParameter + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "Cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " a-t-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il été adopté" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv3uun9e-RDOP-lv3uqxkh + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv3v5m6c + 1 + + ANADOPT_ENFLOG3 + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + + ANADOPT_ENFLOG3 + + + + + fr.insee + lv3v5m6c-RDOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " a-t-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il été adopté ?" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv3v5m6c-RDOP-lv3v6ea5 + 1 + + + + + fr.insee + l4lct7cb + 1 + + PARENT_VIT_ENFLOG3 + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + + PARENT_VIT_ENFLOG3 + + + + + fr.insee + l4lct7cb-RDOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lct7cb-RDOP-l4lctczi + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b689zo + 1 + Instruction + + + + fr.insee + l4ld827i + 1 + + PARENT_FR_ENFLOG3 + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + + PARENT_FR_ENFLOG3 + + + + + fr.insee + l4ld827i-RDOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld827i-RDOP-l4ld6gqw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pawrpv + 1 + Instruction + + + + fr.insee + l4pavp6y + 1 + + PARENT_COM_ENFLOG3 + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + + PARENT_COM_ENFLOG3 + + + + + fr.insee + l4pavp6y-RDOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pavp6y-RDOP-llvyyz9y + 1 + + + + + fr.insee + m37bqfyk + 1 + Instruction + + + + fr.insee + l4pat7vx + 1 + + PARENT_DEP_ENFLOG3 + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + + PARENT_DEP_ENFLOG3 + + + + + fr.insee + l4pat7vx-RDOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pat7vx-RDOP-llvyw7q3 + 1 + + + + + fr.insee + l4pb2s4u + 1 + Instruction + + + + fr.insee + l4pb77tv + 1 + + PARENT_PAY_ENFLOG3 + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + + PARENT_PAY_ENFLOG3 + + + + + fr.insee + l4pb77tv-RDOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " ?" + + + + + fr.insee + l4pb77tv-RDOP-llvyspw0 + 1 + + + + + fr.insee + l4pbgztm + 1 + Instruction + + + + fr.insee + l4ld15su + 1 + + PARENT_FREQ_ENFLOG3 + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + + PARENT_FREQ_ENFLOG3 + + + + + fr.insee + l4ld15su-RDOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " est-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4ld15su-RDOP-l4ld55kd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4ld0zmv + 1 + + PARENT_DORT_ENFLOG3 + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + + PARENT_DORT_ENFLOG3 + + + + + fr.insee + l4ld0zmv-RDOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld0zmv-RDOP-l4lda7jw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ld0jea + 1 + + PARENT_VECU_ENFLOG3 + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + + PARENT_VECU_ENFLOG3 + + + + + fr.insee + l4ld0jea-RDOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ld0jea-RDOP-l4ld7yr1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y9flo + 1 + + SEP_AUT_PAR_ENFLOG3 + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + + SEP_AUT_PAR_ENFLOG3 + + + + + fr.insee + la6y9flo-RDOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y9flo-RDOP-la6y6kev + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lde13h + 1 + + RESID_ENFLOG3 + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + + RESID_ENFLOG3 + + + + + fr.insee + l4lde13h-RDOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lde13h-RDOP-l4lddsd8 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4lcuoke + 1 + + SANTE_ENFLOG3 + + + fr.insee + l4lcuoke-QOP-lvgoe8l2 + 1 + + SANTE_ENFLOG3 + + + + + fr.insee + l4lcuoke-RDOP-lvgoe8l2 + 1 + OutParameter + + + fr.insee + l4lcuoke-QOP-lvgoe8l2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "Cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lcuoke-RDOP-lvgoe8l2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgnpugy + 1 + + ASE_ENFLOG3 + + + fr.insee + lvgnpugy-QOP-lvgoc0ak + 1 + + ASE_ENFLOG3 + + + + + fr.insee + lvgnpugy-RDOP-lvgoc0ak + 1 + OutParameter + + + fr.insee + lvgnpugy-QOP-lvgoc0ak + 1 + OutParameter + + + + + "" || (if (nvl(¤l4ld0ziw-QOP-l4lco011¤,"")="") then (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "Cet enfant" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4ld0ziw-QOP-l4lco011¤) || " vit-" || (if ¤l4lcp4co-QOP-l4ld0wcd¤="1" then "il" else if ¤l4lcp4co-QOP-l4ld0wcd¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgnpugy-RDOP-lvgoc0ak + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lec0rk + 1 + + PRENOM_ENFLOG4 + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + + PRENOM_ENFLOG4 + + + + + fr.insee + l4lec0rk-RDOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + + + "" || (nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur")) || ", comment s'appelle le quatrième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4lec0rk-RDOP-l4lefzhk + 1 + + + + + + fr.insee + l4lefdoh + 1 + + SEXE_ENFLOG4 + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + + SEXE_ENFLOG4 + + + + + fr.insee + l4lefdoh-RDOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then "cet(te) enfant" else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lefdoh-RDOP-l4le4jn4 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4le9rs3 + 1 + + ANAI_ENFLOG4 + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + + ANAI_ENFLOG4 + + + + + fr.insee + l4le9rs3-RDOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4le9rs3-RDOP-l4le8tph + 1 + + + + + fr.insee + l4qtvt71 + 1 + + NEFRANCE_ENFLOG4 + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + + NEFRANCE_ENFLOG4 + + + + + fr.insee + l4qtvt71-RDOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "Cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " est-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il né" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtvt71-RDOP-l4qtzd2y + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qty3sm + 1 + Instruction + + + + fr.insee + lv3w60ed + 1 + + ADOPT_ENFLOG4 + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + + ADOPT_ENFLOG4 + + + + + fr.insee + lv3w60ed-RDOP-lv3w0zkt + 1 + OutParameter + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "Cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " a-t-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il été adopté" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv3w60ed-RDOP-lv3w0zkt + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv3w2pql + 1 + + ANADOPT_ENFLOG4 + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + + ANADOPT_ENFLOG4 + + + + + fr.insee + lv3w2pql-RDOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " a-t-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il été adopté ?" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv3w2pql-RDOP-lv3w6yp3 + 1 + + + + + fr.insee + l4ler7fu + 1 + + PARENT_VIT_ENFLOG4 + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + + PARENT_VIT_ENFLOG4 + + + + + fr.insee + l4ler7fu-RDOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4ler7fu-RDOP-l4lequew + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6ndrj + 1 + Instruction + + + + fr.insee + l4lemegm + 1 + + PARENT_FR_ENFLOG4 + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + + PARENT_FR_ENFLOG4 + + + + + fr.insee + l4lemegm-RDOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lemegm-RDOP-l4leh99i + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paro0f + 1 + Instruction + + + + fr.insee + l4paz6m4 + 1 + + PARENT_COM_ENFLOG4 + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + + PARENT_COM_ENFLOG4 + + + + + fr.insee + l4paz6m4-RDOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4paz6m4-RDOP-llvyy20q + 1 + + + + + fr.insee + m37bsr91 + 1 + Instruction + + + + fr.insee + l4payjff + 1 + + PARENT_DEP_ENFLOG4 + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + + PARENT_DEP_ENFLOG4 + + + + + fr.insee + l4payjff-RDOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4payjff-RDOP-llvyruw7 + 1 + + + + + fr.insee + l4paqxkg + 1 + Instruction + + + + fr.insee + l4pbax4x + 1 + + PARENT_PAY_ENFLOG4 + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + + PARENT_PAY_ENFLOG4 + + + + + fr.insee + l4pbax4x-RDOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " ?" + + + + + fr.insee + l4pbax4x-RDOP-llvz97hj + 1 + + + + + fr.insee + l4pbe5ur + 1 + Instruction + + + + fr.insee + l4letwtq + 1 + + PARENT_FREQ_ENFLOG4 + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + + PARENT_FREQ_ENFLOG4 + + + + + fr.insee + l4letwtq-RDOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " est-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4letwtq-RDOP-l4lesyhr + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4letk9j + 1 + + PARENT_DORT_ENFLOG4 + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + + PARENT_DORT_ENFLOG4 + + + + + fr.insee + l4letk9j-RDOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4letk9j-RDOP-l4lergt1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lekh2t + 1 + + PARENT_VECU_ENFLOG4 + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + + PARENT_VECU_ENFLOG4 + + + + + fr.insee + l4lekh2t-RDOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lekh2t-RDOP-l4leazvr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y7rno + 1 + + SEP_AUT_PAR_ENFLOG4 + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + + SEP_AUT_PAR_ENFLOG4 + + + + + fr.insee + la6y7rno-RDOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y7rno-RDOP-la6yfcb1 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lexatl + 1 + + RESID_ENFLOG4 + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + + RESID_ENFLOG4 + + + + + fr.insee + l4lexatl-RDOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lexatl-RDOP-l4leps7n + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4lec2qz + 1 + + SANTE_ENFLOG4 + + + fr.insee + l4lec2qz-QOP-lvgntssj + 1 + + SANTE_ENFLOG4 + + + + + fr.insee + l4lec2qz-RDOP-lvgntssj + 1 + OutParameter + + + fr.insee + l4lec2qz-QOP-lvgntssj + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "Cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lec2qz-RDOP-lvgntssj + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgnp3j5 + 1 + + ASE_ENFLOG4 + + + fr.insee + lvgnp3j5-QOP-lvgnuf33 + 1 + + ASE_ENFLOG4 + + + + + fr.insee + lvgnp3j5-RDOP-lvgnuf33 + 1 + OutParameter + + + fr.insee + lvgnp3j5-QOP-lvgnuf33 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lec0rk-QOP-l4lefzhk¤,"")="") then (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "Cet enfant" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lec0rk-QOP-l4lefzhk¤) || " vit-" || (if ¤l4lefdoh-QOP-l4le4jn4¤="1" then "il" else if ¤l4lefdoh-QOP-l4le4jn4¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgnp3j5-RDOP-lvgnuf33 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4leulqw + 1 + + PRENOM_ENFLOG5 + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + + PRENOM_ENFLOG5 + + + + + fr.insee + l4leulqw-RDOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le cinquième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4leulqw-RDOP-l4leruxk + 1 + + + + + + fr.insee + l4lem0yg + 1 + + SEXE_ENFLOG5 + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + + SEXE_ENFLOG5 + + + + + fr.insee + l4lem0yg-RDOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then "cet(te) enfant" else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lem0yg-RDOP-l4leqtd3 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lffj1f + 1 + + ANAI_ENFLOG5 + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + + ANAI_ENFLOG5 + + + + + fr.insee + l4lffj1f-RDOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4lffj1f-RDOP-l4lfqb24 + 1 + + + + + fr.insee + l4qtm8di + 1 + + NEFRANCE_ENFLOG5 + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + + NEFRANCE_ENFLOG5 + + + + + fr.insee + l4qtm8di-RDOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "Cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " est-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il né" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4qtm8di-RDOP-l4qtqnl5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4qu07sd + 1 + Instruction + + + + fr.insee + lv5dkuad + 1 + + ADOPT_ENFLOG5 + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + + ADOPT_ENFLOG5 + + + + + fr.insee + lv5dkuad-RDOP-lv5db7oh + 1 + OutParameter + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "Cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " a-t-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il été adopté" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv5dkuad-RDOP-lv5db7oh + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv5db081 + 1 + + ANADOPT_ENFLOG5 + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + + ANADOPT_ENFLOG5 + + + + + fr.insee + lv5db081-RDOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " a-t-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il été adopté ?" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv5db081-RDOP-lv5dujr9 + 1 + + + + + fr.insee + l4lfye1g + 1 + + PARENT_VIT_ENFLOG5 + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + + PARENT_VIT_ENFLOG5 + + + + + fr.insee + l4lfye1g-RDOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lfye1g-RDOP-l4lfqvi9 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6p61g + 1 + Instruction + + + + fr.insee + l4lfoek4 + 1 + + PARENT_FR_ENFLOG5 + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + + PARENT_FR_ENFLOG5 + + + + + fr.insee + l4lfoek4-RDOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfoek4-RDOP-l4lfrft6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4papqg4 + 1 + Instruction + + + + fr.insee + l4paw4ax + 1 + + PARENT_COM_ENFLOG5 + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + + PARENT_COM_ENFLOG5 + + + + + fr.insee + l4paw4ax-RDOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4paw4ax-RDOP-llvyqmlu + 1 + + + + + fr.insee + m37blclw + 1 + Instruction + + + + fr.insee + l4pauqgi + 1 + + PARENT_DEP_ENFLOG5 + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + + PARENT_DEP_ENFLOG5 + + + + + fr.insee + l4pauqgi-RDOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4pauqgi-RDOP-llvyw6mw + 1 + + + + + fr.insee + l4pb0t6z + 1 + Instruction + + + + fr.insee + l4pb234a + 1 + + PARENT_PAY_ENFLOG5 + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + + PARENT_PAY_ENFLOG5 + + + + + fr.insee + l4pb234a-RDOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " ?" + + + + + fr.insee + l4pb234a-RDOP-llvz0jpe + 1 + + + + + fr.insee + l4pb68fn + 1 + Instruction + + + + fr.insee + l8n262ck + 1 + + PARENT_FREQ_ENFLOG5 + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + + PARENT_FREQ_ENFLOG5 + + + + + fr.insee + l8n262ck-RDOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " est-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n262ck-RDOP-l8n27wnd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lfr4qa + 1 + + PARENT_DORT_ENFLOG5 + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + + PARENT_DORT_ENFLOG5 + + + + + fr.insee + l4lfr4qa-RDOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfr4qa-RDOP-l4lfvr6s + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lfvape + 1 + + PARENT_VECU_ENFLOG5 + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + + PARENT_VECU_ENFLOG5 + + + + + fr.insee + l4lfvape-RDOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfvape-RDOP-l4lfk081 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6yfjnf + 1 + + SEP_AUT_PAR_ENFLOG5 + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + + SEP_AUT_PAR_ENFLOG5 + + + + + fr.insee + la6yfjnf-RDOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6yfjnf-RDOP-la6y9op3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lg25av + 1 + + RESID_ENFLOG5 + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + + RESID_ENFLOG5 + + + + + fr.insee + l4lg25av-RDOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l4lg25av-RDOP-l4lfuclq + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l4lfclty + 1 + + SANTE_ENFLOG5 + + + fr.insee + l4lfclty-QOP-lvgo6ny4 + 1 + + SANTE_ENFLOG5 + + + + + fr.insee + l4lfclty-RDOP-lvgo6ny4 + 1 + OutParameter + + + fr.insee + l4lfclty-QOP-lvgo6ny4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "Cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " vit-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lfclty-RDOP-lvgo6ny4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgo5arn + 1 + + ASE_ENFLOG5 + + + fr.insee + lvgo5arn-QOP-lvgob02e + 1 + + ASE_ENFLOG5 + + + + + fr.insee + lvgo5arn-RDOP-lvgob02e + 1 + OutParameter + + + fr.insee + lvgo5arn-QOP-lvgob02e + 1 + OutParameter + + + + + "" || (if (nvl(¤l4leulqw-QOP-l4leruxk¤,"")="") then (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "Cet enfant" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4leulqw-QOP-l4leruxk¤) || " vit-" || (if ¤l4lem0yg-QOP-l4leqtd3¤="1" then "il" else if ¤l4lem0yg-QOP-l4leqtd3¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + lvgo5arn-RDOP-lvgob02e + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l8n2umnw + 1 + + PRENOM_ENFLOG6 + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + + PRENOM_ENFLOG6 + + + + + fr.insee + l8n2umnw-RDOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le sixième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8n2umnw-RDOP-l8n2q8ti + 1 + + + + + + fr.insee + l8n2e1mr + 1 + + SEXE_ENFLOG6 + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + + SEXE_ENFLOG6 + + + + + fr.insee + l8n2e1mr-RDOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then "cet(te) enfant" else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n2e1mr-RDOP-l8n2ef3o + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n2lctv + 1 + + ANAI_ENFLOG6 + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + + ANAI_ENFLOG6 + + + + + fr.insee + l8n2lctv-RDOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8n2lctv-RDOP-l8n2f2zr + 1 + + + + + fr.insee + l8n2gmuq + 1 + + NEFRANCE_ENFLOG6 + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + + NEFRANCE_ENFLOG6 + + + + + fr.insee + l8n2gmuq-RDOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "Cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " est-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il né" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n2gmuq-RDOP-l8n2bcdy + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n2r8je + 1 + Instruction + + + + fr.insee + lv6b9lq6 + 1 + + ADOPT_ENFLOG6 + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + + ADOPT_ENFLOG6 + + + + + fr.insee + lv6b9lq6-RDOP-lv6bjv1b + 1 + OutParameter + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "Cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " a-t-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il été adopté" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6b9lq6-RDOP-lv6bjv1b + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6bv1fo + 1 + + ANADOPT_ENFLOG6 + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + + ANADOPT_ENFLOG6 + + + + + fr.insee + lv6bv1fo-RDOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " a-t-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il été adopté ?" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6bv1fo-RDOP-lv6bh86z + 1 + + + + + fr.insee + l8n2ilpb + 1 + + PARENT_VIT_ENFLOG6 + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + + PARENT_VIT_ENFLOG6 + + + + + fr.insee + l8n2ilpb-RDOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n2ilpb-RDOP-l8n290y2 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6ao2k + 1 + Instruction + + + + fr.insee + l8n1zy7o + 1 + + PARENT_FR_ENFLOG6 + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + + PARENT_FR_ENFLOG6 + + + + + fr.insee + l8n1zy7o-RDOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n1zy7o-RDOP-l8n23nvd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n2g2zx + 1 + Instruction + + + + fr.insee + l8n1u6yt + 1 + + PARENT_COM_ENFLOG6 + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + + PARENT_COM_ENFLOG6 + + + + + fr.insee + l8n1u6yt-RDOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n1u6yt-RDOP-llvz20va + 1 + + + + + fr.insee + m37brd8c + 1 + Instruction + + + + fr.insee + l8n2awb0 + 1 + + PARENT_DEP_ENFLOG6 + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + + PARENT_DEP_ENFLOG6 + + + + + fr.insee + l8n2awb0-RDOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n2awb0-RDOP-llvz079i + 1 + + + + + fr.insee + l8n24jzh + 1 + Instruction + + + + fr.insee + l8n20r8i + 1 + + PARENT_PAY_ENFLOG6 + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + + PARENT_PAY_ENFLOG6 + + + + + fr.insee + l8n20r8i-RDOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " ?" + + + + + fr.insee + l8n20r8i-RDOP-llvz6xrr + 1 + + + + + fr.insee + l8n2b8s7 + 1 + Instruction + + + + fr.insee + l4lfnqiq + 1 + + PARENT_FREQ_ENFLOG6 + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + + PARENT_FREQ_ENFLOG6 + + + + + fr.insee + l4lfnqiq-RDOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " est-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lfnqiq-RDOP-l4lg2h6j + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8n29jww + 1 + + PARENT_DORT_ENFLOG6 + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + + PARENT_DORT_ENFLOG6 + + + + + fr.insee + l8n29jww-RDOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n29jww-RDOP-l8n23c9r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n1p0yj + 1 + + PARENT_VECU_ENFLOG6 + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + + PARENT_VECU_ENFLOG6 + + + + + fr.insee + l8n1p0yj-RDOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n1p0yj-RDOP-l8n23ghn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y7ni0 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + + SEP_AUT_PAR_ENFLOG6 + + + + + fr.insee + la6y7ni0-RDOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y7ni0-RDOP-la6y43a4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n1u2kg + 1 + + RESID_ENFLOG6 + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + + RESID_ENFLOG6 + + + + + fr.insee + l8n1u2kg-RDOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n1u2kg-RDOP-l8n1lsvh + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n2hdgw + 1 + + SANTE_ENFLOG6 + + + fr.insee + l8n2hdgw-QOP-lvgnv3bn + 1 + + SANTE_ENFLOG6 + + + + + fr.insee + l8n2hdgw-RDOP-lvgnv3bn + 1 + OutParameter + + + fr.insee + l8n2hdgw-QOP-lvgnv3bn + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "Cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n2hdgw-RDOP-lvgnv3bn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgnrib2 + 1 + + ASE_ENFLOG6 + + + fr.insee + lvgnrib2-QOP-lvgo6nvx + 1 + + ASE_ENFLOG6 + + + + + fr.insee + lvgnrib2-RDOP-lvgo6nvx + 1 + OutParameter + + + fr.insee + lvgnrib2-QOP-lvgo6nvx + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n2umnw-QOP-l8n2q8ti¤,"")="") then (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "Cet enfant" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n2umnw-QOP-l8n2q8ti¤) || " vit-" || (if ¤l8n2e1mr-QOP-l8n2ef3o¤="1" then "il" else if ¤l8n2e1mr-QOP-l8n2ef3o¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgnrib2-RDOP-lvgo6nvx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3pb4f + 1 + + PRENOM_ENFLOG7 + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + + PRENOM_ENFLOG7 + + + + + fr.insee + l8n3pb4f-RDOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le septième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8n3pb4f-RDOP-l8n3v5q6 + 1 + + + + + + fr.insee + l8n3mik2 + 1 + + SEXE_ENFLOG7 + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + + SEXE_ENFLOG7 + + + + + fr.insee + l8n3mik2-RDOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then "cet(te) enfant" else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n3mik2-RDOP-l8n3szau + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n3jmk8 + 1 + + ANAI_ENFLOG7 + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + + ANAI_ENFLOG7 + + + + + fr.insee + l8n3jmk8-RDOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8n3jmk8-RDOP-l8n3qluw + 1 + + + + + fr.insee + l8n36fv3 + 1 + + NEFRANCE_ENFLOG7 + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + + NEFRANCE_ENFLOG7 + + + + + fr.insee + l8n36fv3-RDOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "Cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " est-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il né" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n36fv3-RDOP-l8n384e4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n38zes + 1 + Instruction + + + + fr.insee + lv6ecg0i + 1 + + ADOPT_ENFLOG7 + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + + ADOPT_ENFLOG7 + + + + + fr.insee + lv6ecg0i-RDOP-lv6efjal + 1 + OutParameter + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "Cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " a-t-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il été adopté" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6ecg0i-RDOP-lv6efjal + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6eqkwn + 1 + + ANADOPT_ENFLOG7 + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + + ANADOPT_ENFLOG7 + + + + + fr.insee + lv6eqkwn-RDOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " a-t-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il été adopté ?" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6eqkwn-RDOP-lv6egwpj + 1 + + + + + fr.insee + l8n3ff6s + 1 + + PARENT_VIT_ENFLOG7 + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + + PARENT_VIT_ENFLOG7 + + + + + fr.insee + l8n3ff6s-RDOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n3ff6s-RDOP-l8n3ns0y + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6mw7k + 1 + Instruction + + + + fr.insee + l8n3b7uo + 1 + + PARENT_FR_ENFLOG7 + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + + PARENT_FR_ENFLOG7 + + + + + fr.insee + l8n3b7uo-RDOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3b7uo-RDOP-l8n3h6xz + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n32k1l + 1 + Instruction + + + + fr.insee + l8n3485v + 1 + + PARENT_COM_ENFLOG7 + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + + PARENT_COM_ENFLOG7 + + + + + fr.insee + l8n3485v-RDOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3485v-RDOP-llvyxcs0 + 1 + + + + + fr.insee + m37bexmr + 1 + Instruction + + + + fr.insee + l8n3fzap + 1 + + PARENT_DEP_ENFLOG7 + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + + PARENT_DEP_ENFLOG7 + + + + + fr.insee + l8n3fzap-RDOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3fzap-RDOP-llvz2fkv + 1 + + + + + fr.insee + l8n3j9rq + 1 + Instruction + + + + fr.insee + l8n3burz + 1 + + PARENT_PAY_ENFLOG7 + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + + PARENT_PAY_ENFLOG7 + + + + + fr.insee + l8n3burz-RDOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " ?" + + + + + fr.insee + l8n3burz-RDOP-llvz5jsq + 1 + + + + + fr.insee + l8n2z0lq + 1 + Instruction + + + + fr.insee + l8n32xk9 + 1 + + PARENT_FREQ_ENFLOG7 + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + + PARENT_FREQ_ENFLOG7 + + + + + fr.insee + l8n32xk9-RDOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " est-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n32xk9-RDOP-l8n37thq + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8n2x7q4 + 1 + + PARENT_DORT_ENFLOG7 + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + + PARENT_DORT_ENFLOG7 + + + + + fr.insee + l8n2x7q4-RDOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n2x7q4-RDOP-l8n348ci + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3ary8 + 1 + + PARENT_VECU_ENFLOG7 + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + + PARENT_VECU_ENFLOG7 + + + + + fr.insee + l8n3ary8-RDOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3ary8-RDOP-l8n3c8ra + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6y542q + 1 + + SEP_AUT_PAR_ENFLOG7 + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + + + fr.insee + la6y542q-RDOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6y542q-RDOP-la6y48t7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n2t39d + 1 + + RESID_ENFLOG7 + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + + RESID_ENFLOG7 + + + + + fr.insee + l8n2t39d-RDOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n2t39d-RDOP-l8n38vu9 + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n3bp4o + 1 + + SANTE_ENFLOG7 + + + fr.insee + l8n3bp4o-QOP-lvgqcrys + 1 + + SANTE_ENFLOG7 + + + + + fr.insee + l8n3bp4o-RDOP-lvgqcrys + 1 + OutParameter + + + fr.insee + l8n3bp4o-QOP-lvgqcrys + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "Cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3bp4o-RDOP-lvgqcrys + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgp60q8 + 1 + + ASE_ENFLOG7 + + + fr.insee + lvgp60q8-QOP-lvgos8ft + 1 + + ASE_ENFLOG7 + + + + + fr.insee + lvgp60q8-RDOP-lvgos8ft + 1 + OutParameter + + + fr.insee + lvgp60q8-QOP-lvgos8ft + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n3pb4f-QOP-l8n3v5q6¤,"")="") then (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "Cet enfant" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n3pb4f-QOP-l8n3v5q6¤) || " vit-" || (if ¤l8n3mik2-QOP-l8n3szau¤="1" then "il" else if ¤l8n3mik2-QOP-l8n3szau¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgp60q8-RDOP-lvgos8ft + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n4cayp + 1 + + PRENOM_ENFLOG8 + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + + PRENOM_ENFLOG8 + + + + + fr.insee + l8n4cayp-RDOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle le huitième enfant qui vit avec vous [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8n4cayp-RDOP-l8n40opx + 1 + + + + + + fr.insee + l8n406m9 + 1 + + SEXE_ENFLOG8 + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + + SEXE_ENFLOG8 + + + + + fr.insee + l8n406m9-RDOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then "cet(te) enfant" else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8n406m9-RDOP-l8n4es1f + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8n3tya0 + 1 + + ANAI_ENFLOG8 + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + + ANAI_ENFLOG8 + + + + + fr.insee + l8n3tya0-RDOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8n3tya0-RDOP-l8n414mk + 1 + + + + + fr.insee + l8n3vr8b + 1 + + NEFRANCE_ENFLOG8 + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + + NEFRANCE_ENFLOG8 + + + + + fr.insee + l8n3vr8b-RDOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "Cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " est-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il né" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3vr8b-RDOP-l8n49n0l + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n3xl10 + 1 + Instruction + + + + fr.insee + lv6evuvu + 1 + + ADOPT_ENFLOG8 + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + + ADOPT_ENFLOG8 + + + + + fr.insee + lv6evuvu-RDOP-lv6f0zo8 + 1 + OutParameter + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "Cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " a-t-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il été adopté" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6evuvu-RDOP-lv6f0zo8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6ev10t + 1 + + ANADOPT_ENFLOG8 + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + + ANADOPT_ENFLOG8 + + + + + fr.insee + lv6ev10t-RDOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " a-t-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il été adopté ?" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6ev10t-RDOP-lv6emis4 + 1 + + + + + fr.insee + l8n427a2 + 1 + + PARENT_VIT_ENFLOG8 + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + + PARENT_VIT_ENFLOG8 + + + + + fr.insee + l8n427a2-RDOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8n427a2-RDOP-l8n40s7s + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6ir1k + 1 + Instruction + + + + fr.insee + l8n41hvu + 1 + + PARENT_FR_ENFLOG8 + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + + PARENT_FR_ENFLOG8 + + + + + fr.insee + l8n41hvu-RDOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-il/elle en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n41hvu-RDOP-l8n3z6kp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8n3m622 + 1 + Instruction + + + + fr.insee + l8n3tbmd + 1 + + PARENT_COM_ENFLOG8 + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + + PARENT_COM_ENFLOG8 + + + + + fr.insee + l8n3tbmd-RDOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + + + "Dans quelle commune vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n3tbmd-RDOP-llvyt2m9 + 1 + + + + + fr.insee + m37bhseb + 1 + Instruction + + + + fr.insee + l8n41c78 + 1 + + PARENT_DEP_ENFLOG8 + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + + PARENT_DEP_ENFLOG8 + + + + + fr.insee + l8n41c78-RDOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + + + "Dans quel département vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n41c78-RDOP-llvz93ha + 1 + + + + + fr.insee + l8n3q2xj + 1 + Instruction + + + + fr.insee + l8n40r7t + 1 + + PARENT_PAY_ENFLOG8 + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + + PARENT_PAY_ENFLOG8 + + + + + fr.insee + l8n40r7t-RDOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + + + "Dans quel pays vit l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " ?" + + + + + fr.insee + l8n40r7t-RDOP-llvyxwit + 1 + + + + + fr.insee + l8n3kcnq + 1 + Instruction + + + + fr.insee + l8n3fpp7 + 1 + + PARENT_FREQ_ENFLOG8 + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + + PARENT_FREQ_ENFLOG8 + + + + + fr.insee + l8n3fpp7-RDOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + + + "A quelle fréquence " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " est-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle" else "il/elle") || " en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8n3fpp7-RDOP-l8n40f43 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8n3xb0z + 1 + + PARENT_DORT_ENFLOG8 + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + + PARENT_DORT_ENFLOG8 + + + + + fr.insee + l8n3xb0z-RDOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " de dormir chez son autre parent [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3xb0z-RDOP-l8n3tomk + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3tjlw + 1 + + PARENT_VECU_ENFLOG8 + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + + PARENT_VECU_ENFLOG8 + + + + + fr.insee + l8n3tjlw-RDOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3tjlw-RDOP-l8n3nqy3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + la6v947r + 1 + + SEP_AUT_PAR_ENFLOG8 + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + + SEP_AUT_PAR_ENFLOG8 + + + + + fr.insee + la6v947r-RDOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + la6v947r-RDOP-la6v9lhg + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8n3ocd5 + 1 + + RESID_ENFLOG8 + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + + RESID_ENFLOG8 + + + + + fr.insee + l8n3ocd5-RDOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqjqlpa + 1 + CodeList + + + fr.insee + l8n3ocd5-RDOP-l8n3iyus + 1 + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + + + fr.insee + l8n3uqr2 + 1 + + SANTE_ENFLOG8 + + + fr.insee + l8n3uqr2-QOP-lvgqdlet + 1 + + SANTE_ENFLOG8 + + + + + fr.insee + l8n3uqr2-RDOP-lvgqdlet + 1 + OutParameter + + + fr.insee + l8n3uqr2-QOP-lvgqdlet + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "Cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle" else "il/elle") || " aussi ailleurs pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8n3uqr2-RDOP-lvgqdlet + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgp89uy + 1 + + ASE_ENFLOG8 + + + fr.insee + lvgp89uy-QOP-lvgpfso0 + 1 + + ASE_ENFLOG8 + + + + + fr.insee + lvgp89uy-RDOP-lvgpfso0 + 1 + OutParameter + + + fr.insee + lvgp89uy-QOP-lvgpfso0 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8n4cayp-QOP-l8n40opx¤,"")="") then (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "Cet enfant" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8n4cayp-QOP-l8n40opx¤) || " vit-" || (if ¤l8n406m9-QOP-l8n4es1f¤="1" then "il" else if ¤l8n406m9-QOP-l8n4es1f¤="2" then "elle" else "il/elle") || " aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgp89uy-RDOP-lvgpfso0 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4idug6p + 1 + + PRENOM_ENFAIL1 + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + + PRENOM_ENFAIL1 + + + + + fr.insee + l4idug6p-RDOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle " || (if (¤l4lfzig7-QOP-l4lgbag5¤ = 1 or isnull(¤l4lfzig7-QOP-l4lgbag5¤) or ¤ltd0h1g7-QOP-ltd0m6q3¤="1") then "votre enfant" else "votre premier enfant") || " qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4idug6p-RDOP-l4idueaa + 1 + + + + + + fr.insee + kwqix1j5 + 1 + + SEXE_ENFAIL1 + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + + SEXE_ENFAIL1 + + + + + fr.insee + kwqix1j5-RDOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then "cet(te) enfant" else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + kwqix1j5-RDOP-kwqixdic + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + kwqj561a + 1 + + ANAI_ENFAIL1 + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + + ANAI_ENFAIL1 + + + + + fr.insee + kwqj561a-RDOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + kwqj561a-RDOP-kwqj8zg8 + 1 + + + + + fr.insee + l4cjlk0i + 1 + + NEFRANCE_ENFAIL1 + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + + NEFRANCE_ENFAIL1 + + + + + fr.insee + l4cjlk0i-RDOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il né" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjlk0i-RDOP-l4cjenl6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4p9roph + 1 + Instruction + + + + fr.insee + lv6fvjdh + 1 + + ADOPT_ENFAIL1 + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + + ADOPT_ENFAIL1 + + + + + fr.insee + lv6fvjdh-RDOP-lv6g0yf3 + 1 + OutParameter + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " a-t-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il été adopté" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6fvjdh-RDOP-lv6g0yf3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6fuaur + 1 + + ANADOPT_ENFAIL1 + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + + ANADOPT_ENFAIL1 + + + + + fr.insee + lv6fuaur-RDOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " a-t-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il été adopté ?" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6fuaur-RDOP-lv6fxqku + 1 + + + + + fr.insee + l4cjivdg + 1 + + PARENT_VIT_ENFAIL1 + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + + PARENT_VIT_ENFAIL1 + + + + + fr.insee + l4cjivdg-RDOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4cjivdg-RDOP-l4cjvm0q + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6qqes + 1 + Instruction + + + + fr.insee + l8lzt19v + 1 + + PARENT_VECU_ENFAIL1 + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + + PARENT_VECU_ENFAIL1 + + + + + fr.insee + l8lzt19v-RDOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8lzt19v-RDOP-l8lzmjqf + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4485tkr + 1 + + DC_ENFAIL1 + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + + DC_ENFAIL1 + + + + + fr.insee + l4485tkr-RDOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4485tkr-RDOP-l4484mb2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqkh05l + 1 + + AG_DC_ENFAIL1 + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + + AG_DC_ENFAIL1 + + + + + fr.insee + kwqkh05l-RDOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " est-" || if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il décédé ?" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + kwqkh05l-RDOP-kwqk5oby + 1 + + + + fr.insee + l2eizvoe + 1 + Instruction + + + + fr.insee + kwqk3ki3 + 1 + + AG_DEPART_ENFAIL1 + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + + AG_DEPART_ENFAIL1 + + + + + fr.insee + kwqk3ki3-RDOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " a-t-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + kwqk3ki3-RDOP-kwqkjt71 + 1 + + + + + fr.insee + kwqkmusz + 1 + + PARENT_FREQ_ENFAIL1 + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + + PARENT_FREQ_ENFAIL1 + + + + + fr.insee + kwqkmusz-RDOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + kwqkmusz-RDOP-l34h1xd0 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + kwqjp9yr + 1 + + FR_ENFAIL1 + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + + FR_ENFAIL1 + + + + + fr.insee + kwqjp9yr-RDOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + kwqjp9yr-RDOP-l48dyt79 + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + fr.insee + lai6xcya + 1 + Instruction + + + + fr.insee + l4onsq99 + 1 + + COM_ENFAIL1 + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + + COM_ENFAIL1 + + + + + fr.insee + l4onsq99-RDOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onsq99-RDOP-llvyydq0 + 1 + + + + + fr.insee + m37bjupt + 1 + Instruction + + + + fr.insee + l4onskib + 1 + + DEP_ENFAIL1 + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + + DEP_ENFAIL1 + + + + + fr.insee + l4onskib-RDOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onskib-RDOP-llvz9m81 + 1 + + + + + fr.insee + l4paafoh + 1 + Instruction + + + + fr.insee + l4onsf7y + 1 + + PAY_ENFAIL1 + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + + PAY_ENFAIL1 + + + + + fr.insee + l4onsf7y-RDOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " ?" + + + + + fr.insee + l4onsf7y-RDOP-llvyw05u + 1 + + + + + fr.insee + l4panc40 + 1 + Instruction + + + + fr.insee + kwqk3a58 + 1 + + LOG_ENFAIL1 + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + + LOG_ENFAIL1 + + + + + fr.insee + kwqk3a58-RDOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqk3a58-RDOP-kwqkfnsx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l44849iu + 1 + + AUT_PAR_ENFAIL1 + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + + AUT_PAR_ENFAIL1 + + + + + fr.insee + l44849iu-RDOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-"|| (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l44849iu-RDOP-l4483bnv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqj7xh6 + 1 + + DORT_ENFAIL1 + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + + DORT_ENFAIL1 + + + + + fr.insee + kwqj7xh6-RDOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqj7xh6-RDOP-l1gkylst + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o74e6d + 1 + + SEP_AUT_PAR_ENFAIL1 + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + + SEP_AUT_PAR_ENFAIL1 + + + + + fr.insee + l4o74e6d-RDOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o74e6d-RDOP-l4o73ai5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1gknpsx + 1 + + RESID_ENFAIL1 + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + + RESID_ENFAIL1 + + + + + fr.insee + l1gknpsx-RDOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l1gknpsx-RDOP-l1gkaoki + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l1gi8vrf + 1 + + SANTE_ENFAIL1 + + + fr.insee + l1gi8vrf-QOP-lvgqmd1b + 1 + + SANTE_ENFAIL1 + + + + + fr.insee + l1gi8vrf-RDOP-lvgqmd1b + 1 + OutParameter + + + fr.insee + l1gi8vrf-QOP-lvgqmd1b + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1gi8vrf-RDOP-lvgqmd1b + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgpkb6t + 1 + + ASE_ENFAIL1 + + + fr.insee + lvgpkb6t-QOP-lvgqcmjp + 1 + + ASE_ENFAIL1 + + + + + fr.insee + lvgpkb6t-RDOP-lvgqcmjp + 1 + OutParameter + + + fr.insee + lvgpkb6t-QOP-lvgqcmjp + 1 + OutParameter + + + + + "" || (if (nvl(¤l4idug6p-QOP-l4idueaa¤,"")="") then (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "Cet enfant" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4idug6p-QOP-l4idueaa¤) || " vit-" || (if ¤kwqix1j5-QOP-kwqixdic¤="1" then "il" else if ¤kwqix1j5-QOP-kwqixdic¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgpkb6t-RDOP-lvgqcmjp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lg1tus + 1 + + PRENOM_ENFAIL2 + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + + PRENOM_ENFAIL2 + + + + + fr.insee + l4lg1tus-RDOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre deuxième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4lg1tus-RDOP-l4lg294k + 1 + + + + + + fr.insee + l4lgd8bs + 1 + + SEXE_ENFAIL2 + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + + SEXE_ENFAIL2 + + + + + fr.insee + l4lgd8bs-RDOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then "cet(te) enfant" else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lgd8bs-RDOP-l4lg3zcd + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgjbi8 + 1 + + ANAI_ENFAIL2 + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + + ANAI_ENFAIL2 + + + + + fr.insee + l4lgjbi8-RDOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4lgjbi8-RDOP-l4lg7r84 + 1 + + + + + fr.insee + l4lgtwy7 + 1 + + NEFRANCE_ENFAIL2 + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + + NEFRANCE_ENFAIL2 + + + + + fr.insee + l4lgtwy7-RDOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il né" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgtwy7-RDOP-l4lgmy6a + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4p9xwnx + 1 + Instruction + + + + fr.insee + lv6g9dow + 1 + + ADOPT_ENFAIL2 + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + + ADOPT_ENFAIL2 + + + + + fr.insee + lv6g9dow-RDOP-lv6ga8kn + 1 + OutParameter + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " a-t-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il été adopté" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6g9dow-RDOP-lv6ga8kn + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6gdru6 + 1 + + ANADOPT_ENFAIL2 + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + + ANADOPT_ENFAIL2 + + + + + fr.insee + lv6gdru6-RDOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " a-t-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il été adopté ?" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6gdru6-RDOP-lv6g124y + 1 + + + + + fr.insee + l4lgqbdk + 1 + + PARENT_VIT_ENFAIL2 + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + + PARENT_VIT_ENFAIL2 + + + + + fr.insee + l4lgqbdk-RDOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgqbdk-RDOP-l4lgpvm2 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6qizr + 1 + Instruction + + + + fr.insee + l8lzthqx + 1 + + PARENT_VECU_ENFAIL2 + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + + PARENT_VECU_ENFAIL2 + + + + + fr.insee + l8lzthqx-RDOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8lzthqx-RDOP-l8m05h5g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh1bvw + 1 + + DC_ENFAIL2 + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + + DC_ENFAIL2 + + + + + fr.insee + l4lh1bvw-RDOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh1bvw-RDOP-l4lgv2yw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhc03p + 1 + + AG_DC_ENFAIL2 + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + + AG_DC_ENFAIL2 + + + + + fr.insee + l4lhc03p-RDOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " est-" || if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il décédé ?" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhc03p-RDOP-l4lhgfos + 1 + + + + fr.insee + l4lh6w99 + 1 + Instruction + + + + fr.insee + l4lhkbmw + 1 + + AG_DEPART_ENFAIL2 + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + + AG_DEPART_ENFAIL2 + + + + + fr.insee + l4lhkbmw-RDOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " a-t-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhkbmw-RDOP-l4lhq38m + 1 + + + + + fr.insee + l4liqyis + 1 + + PARENT_FREQ_ENFAIL2 + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + + PARENT_FREQ_ENFAIL2 + + + + + fr.insee + l4liqyis-RDOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4liqyis-RDOP-l4lj9ipw + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lj22ar + 1 + + FR_ENFAIL2 + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + + FR_ENFAIL2 + + + + + fr.insee + l4lj22ar-RDOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l4ongo32 + 1 + CodeList + + + fr.insee + l4lj22ar-RDOP-l4likfdn + 1 + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + + fr.insee + lai6wbee + 1 + Instruction + + + + fr.insee + l4oo2unu + 1 + + COM_ENFAIL2 + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + + COM_ENFAIL2 + + + + + fr.insee + l4oo2unu-RDOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4oo2unu-RDOP-llvyt4to + 1 + + + + + fr.insee + m37bxvdy + 1 + Instruction + + + + fr.insee + l4oo8gk0 + 1 + + DEP_ENFAIL2 + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + + DEP_ENFAIL2 + + + + + fr.insee + l4oo8gk0-RDOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4oo8gk0-RDOP-llvz89k3 + 1 + + + + + fr.insee + l4paergi + 1 + Instruction + + + + fr.insee + l4ooebmj + 1 + + PAY_ENFAIL2 + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + + PAY_ENFAIL2 + + + + + fr.insee + l4ooebmj-RDOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " ?" + + + + + fr.insee + l4ooebmj-RDOP-llvz2rjo + 1 + + + + + fr.insee + l4padk5u + 1 + Instruction + + + + fr.insee + l4liztyl + 1 + + LOG_ENFAIL2 + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + + LOG_ENFAIL2 + + + + + fr.insee + l4liztyl-RDOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4liztyl-RDOP-l4liyopf + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lk1w8p + 1 + + AUT_PAR_ENFAIL2 + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + + AUT_PAR_ENFAIL2 + + + + + fr.insee + l4lk1w8p-RDOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lk1w8p-RDOP-l4lk92w2 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljkmaj + 1 + + DORT_ENFAIL2 + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + + DORT_ENFAIL2 + + + + + fr.insee + l4ljkmaj-RDOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljkmaj-RDOP-l4lk4f59 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o73m0u + 1 + + SEP_AUT_PAR_ENFAIL2 + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + + SEP_AUT_PAR_ENFAIL2 + + + + + fr.insee + l4o73m0u-RDOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o73m0u-RDOP-l4o79ydp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmxke4 + 1 + + RESID_ENFAIL2 + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + + RESID_ENFAIL2 + + + + + fr.insee + l4lmxke4-RDOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmxke4-RDOP-l4lmow3d + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4ljj44i + 1 + + SANTE_ENFAIL2 + + + fr.insee + l4ljj44i-QOP-lvgqml4j + 1 + + SANTE_ENFAIL2 + + + + + fr.insee + l4ljj44i-RDOP-lvgqml4j + 1 + OutParameter + + + fr.insee + l4ljj44i-QOP-lvgqml4j + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljj44i-RDOP-lvgqml4j + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgpi52w + 1 + + ASE_ENFAIL2 + + + fr.insee + lvgpi52w-QOP-lvgpy0fo + 1 + + ASE_ENFAIL2 + + + + + fr.insee + lvgpi52w-RDOP-lvgpy0fo + 1 + OutParameter + + + fr.insee + lvgpi52w-QOP-lvgpy0fo + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg1tus-QOP-l4lg294k¤,"")="") then (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "Cet enfant" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg1tus-QOP-l4lg294k¤) || " vit-" || (if ¤l4lgd8bs-QOP-l4lg3zcd¤="1" then "il" else if ¤l4lgd8bs-QOP-l4lg3zcd¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgpi52w-RDOP-lvgpy0fo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lg3j5g + 1 + + PRENOM_ENFAIL3 + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + + PRENOM_ENFAIL3 + + + + + fr.insee + l4lg3j5g-RDOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre troisième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4lg3j5g-RDOP-l4lg9z9j + 1 + + + + + + fr.insee + l4lg6nx5 + 1 + + SEXE_ENFAIL3 + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + + SEXE_ENFAIL3 + + + + + fr.insee + l4lg6nx5-RDOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then "cet(te) enfant" else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lg6nx5-RDOP-l4lg6j08 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgenh5 + 1 + + ANAI_ENFAIL3 + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + + ANAI_ENFAIL3 + + + + + fr.insee + l4lgenh5-RDOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4lgenh5-RDOP-l4lgj042 + 1 + + + + + fr.insee + l4lh0q7i + 1 + + NEFRANCE_ENFAIL3 + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + + NEFRANCE_ENFAIL3 + + + + + fr.insee + l4lh0q7i-RDOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il né" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh0q7i-RDOP-l4lgw48z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pa7lpq + 1 + Instruction + + + + fr.insee + lv6g0wv2 + 1 + + ADOPT_ENFAIL3 + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + + ADOPT_ENFAIL3 + + + + + fr.insee + lv6g0wv2-RDOP-lv6gf0ty + 1 + OutParameter + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " a-t-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il été adopté" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6g0wv2-RDOP-lv6gf0ty + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6gixgd + 1 + + ANADOPT_ENFAIL3 + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + + ANADOPT_ENFAIL3 + + + + + fr.insee + lv6gixgd-RDOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " a-t-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il été adopté ?" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6gixgd-RDOP-lv6gi1fc + 1 + + + + + fr.insee + l4lgysxq + 1 + + PARENT_VIT_ENFAIL3 + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + + PARENT_VIT_ENFAIL3 + + + + + fr.insee + l4lgysxq-RDOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgysxq-RDOP-l4lgtxyg + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6idi8 + 1 + Instruction + + + + fr.insee + l8m0bu1o + 1 + + PARENT_VECU_ENFAIL3 + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + + PARENT_VECU_ENFAIL3 + + + + + fr.insee + l8m0bu1o-RDOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m0bu1o-RDOP-l8m0gq78 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh0ofl + 1 + + DC_ENFAIL3 + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + + DC_ENFAIL3 + + + + + fr.insee + l4lh0ofl-RDOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh0ofl-RDOP-l4lhcnt0 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhbuxg + 1 + + AG_DC_ENFAIL3 + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + + AG_DC_ENFAIL3 + + + + + fr.insee + l4lhbuxg-RDOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " est-" || if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il décédé ?" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhbuxg-RDOP-l4lhhhhy + 1 + + + + fr.insee + l4lh8af1 + 1 + Instruction + + + + fr.insee + l4lhdubm + 1 + + AG_DEPART_ENFAIL3 + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + + AG_DEPART_ENFAIL3 + + + + + fr.insee + l4lhdubm-RDOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " a-t-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhdubm-RDOP-l4lhr1jr + 1 + + + + + fr.insee + l4lirpfm + 1 + + PARENT_FREQ_ENFAIL3 + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + + PARENT_FREQ_ENFAIL3 + + + + + fr.insee + l4lirpfm-RDOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lirpfm-RDOP-l4lj5xeo + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lj2cqg + 1 + + FR_ENFAIL3 + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + + FR_ENFAIL3 + + + + + fr.insee + l4lj2cqg-RDOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lj2cqg-RDOP-l4liuj0u + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai71v9g + 1 + Instruction + + + + fr.insee + l4oo41j6 + 1 + + COM_ENFAIL3 + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + + COM_ENFAIL3 + + + + + fr.insee + l4oo41j6-RDOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4oo41j6-RDOP-llvyrgzl + 1 + + + + + fr.insee + m37bf2u0 + 1 + Instruction + + + + fr.insee + l4oo03nq + 1 + + DEP_ENFAIL3 + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + + DEP_ENFAIL3 + + + + + fr.insee + l4oo03nq-RDOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4oo03nq-RDOP-llvyxdr9 + 1 + + + + + fr.insee + l4paa00m + 1 + Instruction + + + + fr.insee + l4ooe2gj + 1 + + PAY_ENFAIL3 + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + + PAY_ENFAIL3 + + + + + fr.insee + l4ooe2gj-RDOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " ?" + + + + + fr.insee + l4ooe2gj-RDOP-llvz89lf + 1 + + + + + fr.insee + l4pac47a + 1 + Instruction + + + + fr.insee + l4ljddzv + 1 + + LOG_ENFAIL3 + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + + LOG_ENFAIL3 + + + + + fr.insee + l4ljddzv-RDOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljddzv-RDOP-l4lj4c9v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmjzwd + 1 + + AUT_PAR_ENFAIL3 + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + + AUT_PAR_ENFAIL3 + + + + + fr.insee + l4lmjzwd-RDOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lmjzwd-RDOP-l4lmk2uc + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljm6cp + 1 + + DORT_ENFAIL3 + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + + DORT_ENFAIL3 + + + + + fr.insee + l4ljm6cp-RDOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljm6cp-RDOP-l4ljuv43 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7gt0n + 1 + + SEP_AUT_PAR_ENFAIL3 + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + + SEP_AUT_PAR_ENFAIL3 + + + + + fr.insee + l4o7gt0n-RDOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7gt0n-RDOP-l4o7fj27 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmszob + 1 + + RESID_ENFAIL3 + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + + RESID_ENFAIL3 + + + + + fr.insee + l4lmszob-RDOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmszob-RDOP-l4lmv8du + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4ljg7fn + 1 + + SANTE_ENFAIL3 + + + fr.insee + l4ljg7fn-QOP-lvgqc2yo + 1 + + SANTE_ENFAIL3 + + + + + fr.insee + l4ljg7fn-RDOP-lvgqc2yo + 1 + OutParameter + + + fr.insee + l4ljg7fn-QOP-lvgqc2yo + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljg7fn-RDOP-lvgqc2yo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgq4efl + 1 + + ASE_ENFAIL3 + + + fr.insee + lvgq4efl-QOP-lvgpof4r + 1 + + ASE_ENFAIL3 + + + + + fr.insee + lvgq4efl-RDOP-lvgpof4r + 1 + OutParameter + + + fr.insee + lvgq4efl-QOP-lvgpof4r + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg3j5g-QOP-l4lg9z9j¤,"")="") then (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "Cet enfant" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg3j5g-QOP-l4lg9z9j¤) || " vit-" || (if ¤l4lg6nx5-QOP-l4lg6j08¤="1" then "il" else if ¤l4lg6nx5-QOP-l4lg6j08¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgq4efl-RDOP-lvgpof4r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lg5t9v + 1 + + PRENOM_ENFAIL4 + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + + PRENOM_ENFAIL4 + + + + + fr.insee + l4lg5t9v-RDOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre quatrième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4lg5t9v-RDOP-l4lg3csm + 1 + + + + + + fr.insee + l4lg3wub + 1 + + SEXE_ENFAIL4 + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + + SEXE_ENFAIL4 + + + + + fr.insee + l4lg3wub-RDOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then "cet(te) enfant" else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lg3wub-RDOP-l4lg3510 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgfphb + 1 + + ANAI_ENFAIL4 + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + + ANAI_ENFAIL4 + + + + + fr.insee + l4lgfphb-RDOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4lgfphb-RDOP-l4lgh2oy + 1 + + + + + fr.insee + l4lgr9ny + 1 + + NEFRANCE_ENFAIL4 + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + + NEFRANCE_ENFAIL4 + + + + + fr.insee + l4lgr9ny-RDOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il né" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgr9ny-RDOP-l4lgx588 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4paawvf + 1 + Instruction + + + + fr.insee + lv6h7uqn + 1 + + ADOPT_ENFAIL4 + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + + ADOPT_ENFAIL4 + + + + + fr.insee + lv6h7uqn-RDOP-lv6h5p0j + 1 + OutParameter + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " a-t-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il été adopté" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6h7uqn-RDOP-lv6h5p0j + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6gsj3o + 1 + + ANADOPT_ENFAIL4 + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + + ANADOPT_ENFAIL4 + + + + + fr.insee + lv6gsj3o-RDOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " a-t-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il été adopté ?" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6gsj3o-RDOP-lv6gxb8u + 1 + + + + + fr.insee + l4lgo4yb + 1 + + PARENT_VIT_ENFAIL4 + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + + PARENT_VIT_ENFAIL4 + + + + + fr.insee + l4lgo4yb-RDOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lgo4yb-RDOP-l4lgsplb + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6nlan + 1 + Instruction + + + + fr.insee + l8m03w7m + 1 + + PARENT_VECU_ENFAIL4 + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + + PARENT_VECU_ENFAIL4 + + + + + fr.insee + l8m03w7m-RDOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m03w7m-RDOP-l8m0ghal + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh1a42 + 1 + + DC_ENFAIL4 + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + + DC_ENFAIL4 + + + + + fr.insee + l4lh1a42-RDOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lh1a42-RDOP-l4lh8xt8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhbfxh + 1 + + AG_DC_ENFAIL4 + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + + AG_DC_ENFAIL4 + + + + + fr.insee + l4lhbfxh-RDOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " est-" || if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il décédé ?" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhbfxh-RDOP-l4lh4m12 + 1 + + + + fr.insee + l4lh0mk3 + 1 + Instruction + + + + fr.insee + l4lho0e2 + 1 + + AG_DEPART_ENFAIL4 + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + + AG_DEPART_ENFAIL4 + + + + + fr.insee + l4lho0e2-RDOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " a-t-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lho0e2-RDOP-l4lhe3eu + 1 + + + + + fr.insee + l4lj5kv6 + 1 + + PARENT_FREQ_ENFAIL4 + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + + PARENT_FREQ_ENFAIL4 + + + + + fr.insee + l4lj5kv6-RDOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lj5kv6-RDOP-l4lj2kyh + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lj0iea + 1 + + FR_ENFAIL4 + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + + FR_ENFAIL4 + + + + + fr.insee + l4lj0iea-RDOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l4lj0iea-RDOP-l4liwqkb + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + fr.insee + lai71ft1 + 1 + Instruction + + + + fr.insee + l4onwhrf + 1 + + COM_ENFAIL4 + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + + COM_ENFAIL4 + + + + + fr.insee + l4onwhrf-RDOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4onwhrf-RDOP-llvz7vfx + 1 + + + + + fr.insee + m37btifk + 1 + Instruction + + + + fr.insee + l4oo4x1t + 1 + + DEP_ENFAIL4 + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + + DEP_ENFAIL4 + + + + + fr.insee + l4oo4x1t-RDOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4oo4x1t-RDOP-llvyr8d7 + 1 + + + + + fr.insee + l4pa6ogq + 1 + Instruction + + + + fr.insee + l4oo1817 + 1 + + PAY_ENFAIL4 + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + + PAY_ENFAIL4 + + + + + fr.insee + l4oo1817-RDOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " ?" + + + + + fr.insee + l4oo1817-RDOP-llvyukzs + 1 + + + + + fr.insee + l4paauej + 1 + Instruction + + + + fr.insee + l4lixcs2 + 1 + + LOG_ENFAIL4 + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + + LOG_ENFAIL4 + + + + + fr.insee + l4lixcs2-RDOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lixcs2-RDOP-l4lj1r3g + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lms9a0 + 1 + + AUT_PAR_ENFAIL4 + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + + AUT_PAR_ENFAIL4 + + + + + fr.insee + l4lms9a0-RDOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lms9a0-RDOP-l4lmo51c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljmpiu + 1 + + DORT_ENFAIL4 + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + + DORT_ENFAIL4 + + + + + fr.insee + l4ljmpiu-RDOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljmpiu-RDOP-l4ljxs6c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7jdze + 1 + + SEP_AUT_PAR_ENFAIL4 + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + + + fr.insee + l4o7jdze-RDOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7jdze-RDOP-l4o7nzi9 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmvah7 + 1 + + RESID_ENFAIL4 + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + + RESID_ENFAIL4 + + + + + fr.insee + l4lmvah7-RDOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lmvah7-RDOP-l4lmu5ae + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4ljjvig + 1 + + SANTE_ENFAIL4 + + + fr.insee + l4ljjvig-QOP-lvgqq2fo + 1 + + SANTE_ENFAIL4 + + + + + fr.insee + l4ljjvig-RDOP-lvgqq2fo + 1 + OutParameter + + + fr.insee + l4ljjvig-QOP-lvgqq2fo + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljjvig-RDOP-lvgqq2fo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgpyw4o + 1 + + ASE_ENFAIL4 + + + fr.insee + lvgpyw4o-QOP-lvgpsdqj + 1 + + ASE_ENFAIL4 + + + + + fr.insee + lvgpyw4o-RDOP-lvgpsdqj + 1 + OutParameter + + + fr.insee + lvgpyw4o-QOP-lvgpsdqj + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lg5t9v-QOP-l4lg3csm¤,"")="") then (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "Cet enfant" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lg5t9v-QOP-l4lg3csm¤) || " vit-" || (if ¤l4lg3wub-QOP-l4lg3510¤="1" then "il" else if ¤l4lg3wub-QOP-l4lg3510¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgpyw4o-RDOP-lvgpsdqj + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lgayon + 1 + + PRENOM_ENFAIL5 + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + + PRENOM_ENFAIL5 + + + + + fr.insee + l4lgayon-RDOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre cinquième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l4lgayon-RDOP-l4lg49i3 + 1 + + + + + + fr.insee + l4lgep4c + 1 + + SEXE_ENFAIL5 + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + + SEXE_ENFAIL5 + + + + + fr.insee + l4lgep4c-RDOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then "cet(te) enfant" else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l4lgep4c-RDOP-l4lg9rqy + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l4lgp1ft + 1 + + ANAI_ENFAIL5 + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + + ANAI_ENFAIL5 + + + + + fr.insee + l4lgp1ft-RDOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l4lgp1ft-RDOP-l4lgleu5 + 1 + + + + + fr.insee + l4lgnphx + 1 + + NEFRANCE_ENFAIL5 + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + + NEFRANCE_ENFAIL5 + + + + + fr.insee + l4lgnphx-RDOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il né" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lgnphx-RDOP-l4lgsfsx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l4pabnh2 + 1 + Instruction + + + + fr.insee + lv6h7z1u + 1 + + ADOPT_ENFAIL5 + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + + ADOPT_ENFAIL5 + + + + + fr.insee + lv6h7z1u-RDOP-lv6h9n3d + 1 + OutParameter + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " a-t-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il été adopté" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6h7z1u-RDOP-lv6h9n3d + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6hzzia + 1 + + ANADOPT_ENFAIL5 + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + + ANADOPT_ENFAIL5 + + + + + fr.insee + lv6hzzia-RDOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " a-t-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il été adopté ?" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6hzzia-RDOP-lv6i8dw9 + 1 + + + + + fr.insee + l4lh672z + 1 + + PARENT_VIT_ENFAIL5 + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + + PARENT_VIT_ENFAIL5 + + + + + fr.insee + l4lh672z-RDOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l4lh672z-RDOP-l4lh0pbe + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6st8x + 1 + Instruction + + + + fr.insee + l8m0ld6c + 1 + + PARENT_VECU_ENFAIL5 + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + + PARENT_VECU_ENFAIL5 + + + + + fr.insee + l8m0ld6c-RDOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8m0ld6c-RDOP-l8m08umx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lhcdf6 + 1 + + DC_ENFAIL5 + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + + DC_ENFAIL5 + + + + + fr.insee + l4lhcdf6-RDOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lhcdf6-RDOP-l4lgwio5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lh8c72 + 1 + + AG_DC_ENFAIL5 + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + + AG_DC_ENFAIL5 + + + + + fr.insee + l4lh8c72-RDOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " est-" || if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il décédé ?" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lh8c72-RDOP-l4lh96gc + 1 + + + + fr.insee + l4lh2kwz + 1 + Instruction + + + + fr.insee + l4lhn614 + 1 + + AG_DEPART_ENFAIL5 + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + + AG_DEPART_ENFAIL5 + + + + + fr.insee + l4lhn614-RDOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " a-t-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l4lhn614-RDOP-l4lhi8ks + 1 + + + + + fr.insee + l4lj98cz + 1 + + PARENT_FREQ_ENFAIL5 + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + + PARENT_FREQ_ENFAIL5 + + + + + fr.insee + l4lj98cz-RDOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l4lj98cz-RDOP-l4lj2b7z + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lijtvo + 1 + + FR_ENFAIL5 + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + + FR_ENFAIL5 + + + + + fr.insee + l4lijtvo-RDOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lijtvo-RDOP-l4liqibl + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai73fre + 1 + Instruction + + + + fr.insee + l4oo41q4 + 1 + + COM_ENFAIL5 + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + + COM_ENFAIL5 + + + + + fr.insee + l4oo41q4-RDOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo41q4-RDOP-llvz0237 + 1 + + + + + fr.insee + m37bjdsq + 1 + Instruction + + + + fr.insee + l4oo7lwi + 1 + + DEP_ENFAIL5 + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + + DEP_ENFAIL5 + + + + + fr.insee + l4oo7lwi-RDOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo7lwi-RDOP-llvz93jz + 1 + + + + + fr.insee + l4paeclu + 1 + Instruction + + + + fr.insee + l4oo5bj9 + 1 + + PAY_ENFAIL5 + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + + PAY_ENFAIL5 + + + + + fr.insee + l4oo5bj9-RDOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " ?" + + + + + fr.insee + l4oo5bj9-RDOP-llvz2kjk + 1 + + + + + fr.insee + l4paiwz0 + 1 + Instruction + + + + fr.insee + l4lizygc + 1 + + LOG_ENFAIL5 + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + + LOG_ENFAIL5 + + + + + fr.insee + l4lizygc-RDOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lizygc-RDOP-l4lj1p4y + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lmc52p + 1 + + AUT_PAR_ENFAIL5 + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + + AUT_PAR_ENFAIL5 + + + + + fr.insee + l4lmc52p-RDOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lmc52p-RDOP-l4lmdw7z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4ljxer7 + 1 + + DORT_ENFAIL5 + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + + DORT_ENFAIL5 + + + + + fr.insee + l4ljxer7-RDOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljxer7-RDOP-l4ljxwvx + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4o7vzru + 1 + + SEP_AUT_PAR_ENFAIL5 + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + + SEP_AUT_PAR_ENFAIL5 + + + + + fr.insee + l4o7vzru-RDOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "cette enfant" else "cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4o7vzru-RDOP-l4o80pka + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4lms6u4 + 1 + + RESID_ENFAIL5 + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + + RESID_ENFAIL5 + + + + + fr.insee + l4lms6u4-RDOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l4lms6u4-RDOP-l4ln2eva + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l4ljcdar + 1 + + SANTE_ENFAIL5 + + + fr.insee + l4ljcdar-QOP-lvgqicza + 1 + + SANTE_ENFAIL5 + + + + + fr.insee + l4ljcdar-RDOP-lvgqicza + 1 + OutParameter + + + fr.insee + l4ljcdar-QOP-lvgqicza + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4ljcdar-RDOP-lvgqicza + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgq0pjg + 1 + + ASE_ENFAIL5 + + + fr.insee + lvgq0pjg-QOP-lvgpu4qm + 1 + + ASE_ENFAIL5 + + + + + fr.insee + lvgq0pjg-RDOP-lvgpu4qm + 1 + OutParameter + + + fr.insee + lvgq0pjg-QOP-lvgpu4qm + 1 + OutParameter + + + + + "" || (if (nvl(¤l4lgayon-QOP-l4lg49i3¤,"")="") then (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "Cet enfant" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l4lgayon-QOP-l4lg49i3¤) || " vit-" || (if ¤l4lgep4c-QOP-l4lg9rqy¤="1" then "il" else if ¤l4lgep4c-QOP-l4lg9rqy¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgq0pjg-RDOP-lvgpu4qm + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oign0h + 1 + + PRENOM_ENFAIL6 + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + + PRENOM_ENFAIL6 + + + + + fr.insee + l8oign0h-RDOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre sixième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8oign0h-RDOP-l8oifcrp + 1 + + + + + + fr.insee + l8oi92w4 + 1 + + SEXE_ENFAIL6 + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + + SEXE_ENFAIL6 + + + + + fr.insee + l8oi92w4-RDOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then "cet(te) enfant" else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8oi92w4-RDOP-l8oihhrs + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8oi7q9f + 1 + + ANAI_ENFAIL6 + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + + ANAI_ENFAIL6 + + + + + fr.insee + l8oi7q9f-RDOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8oi7q9f-RDOP-l8oijkad + 1 + + + + + fr.insee + l8oientz + 1 + + NEFRANCE_ENFAIL6 + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + + NEFRANCE_ENFAIL6 + + + + + fr.insee + l8oientz-RDOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il né" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oientz-RDOP-l8oib8l6 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8oifpiy + 1 + Instruction + + + + fr.insee + lv6i7gwi + 1 + + ADOPT_ENFAIL6 + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + + ADOPT_ENFAIL6 + + + + + fr.insee + lv6i7gwi-RDOP-lv6ierbo + 1 + OutParameter + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " a-t-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il été adopté" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6i7gwi-RDOP-lv6ierbo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6imul3 + 1 + + ANADOPT_ENFAIL6 + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + + ANADOPT_ENFAIL6 + + + + + fr.insee + lv6imul3-RDOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " a-t-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il été adopté ?" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6imul3-RDOP-lv6in2pk + 1 + + + + + fr.insee + l8oidc2m + 1 + + PARENT_VIT_ENFAIL6 + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + + PARENT_VIT_ENFAIL6 + + + + + fr.insee + l8oidc2m-RDOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8oidc2m-RDOP-l8ohy4u9 + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6ylje + 1 + Instruction + + + + fr.insee + l8oib75g + 1 + + PARENT_VECU_ENFAIL6 + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + + PARENT_VECU_ENFAIL6 + + + + + fr.insee + l8oib75g-RDOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oib75g-RDOP-l8oi8s9r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ohus0v + 1 + + DC_ENFAIL6 + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + + DC_ENFAIL6 + + + + + fr.insee + l8ohus0v-RDOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") ||" encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ohus0v-RDOP-l8oi6wxh + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ohrpn7 + 1 + + AG_DC_ENFAIL6 + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + + AG_DC_ENFAIL6 + + + + + fr.insee + l8ohrpn7-RDOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " est-" || if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il décédé ?" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ohrpn7-RDOP-l8ohwfm9 + 1 + + + + fr.insee + l8ohgdgh + 1 + Instruction + + + + fr.insee + l8ohwpt9 + 1 + + AG_DEPART_ENFAIL6 + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + + AG_DEPART_ENFAIL6 + + + + + fr.insee + l8ohwpt9-RDOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " a-t-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ohwpt9-RDOP-l8ohnljo + 1 + + + + + fr.insee + l8oh46rn + 1 + + PARENT_FREQ_ENFAIL6 + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + + PARENT_FREQ_ENFAIL6 + + + + + fr.insee + l8oh46rn-RDOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8oh46rn-RDOP-l8oh8ggp + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8ogysyp + 1 + + FR_ENFAIL6 + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + + FR_ENFAIL6 + + + + + fr.insee + l8ogysyp-RDOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ogysyp-RDOP-l8ogwc5d + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai78xq9 + 1 + Instruction + + + + fr.insee + l8ogqig3 + 1 + + COM_ENFAIL6 + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + + COM_ENFAIL6 + + + + + fr.insee + l8ogqig3-RDOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogqig3-RDOP-llvzas4q + 1 + + + + + fr.insee + m37bq99r + 1 + Instruction + + + + fr.insee + l8ogp9jo + 1 + + DEP_ENFAIL6 + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + + DEP_ENFAIL6 + + + + + fr.insee + l8ogp9jo-RDOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogp9jo-RDOP-llvz1v15 + 1 + + + + + fr.insee + l8ogoo1k + 1 + Instruction + + + + fr.insee + l8ogpnbn + 1 + + PAY_ENFAIL6 + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + + PAY_ENFAIL6 + + + + + fr.insee + l8ogpnbn-RDOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " ?" + + + + + fr.insee + l8ogpnbn-RDOP-llvz3tao + 1 + + + + + fr.insee + l8ogttr2 + 1 + Instruction + + + + fr.insee + l8ogukpt + 1 + + LOG_ENFAIL6 + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + + LOG_ENFAIL6 + + + + + fr.insee + l8ogukpt-RDOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ogukpt-RDOP-l8ogy42h + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ob0dk4 + 1 + + AUT_PAR_ENFAIL6 + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + + AUT_PAR_ENFAIL6 + + + + + fr.insee + l8ob0dk4-RDOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ob0dk4-RDOP-l8oakgr4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oarkxm + 1 + + DORT_ENFAIL6 + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + + DORT_ENFAIL6 + + + + + fr.insee + l8oarkxm-RDOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oarkxm-RDOP-l8oaqk9w + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oaqbj5 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + + SEP_AUT_PAR_ENFAIL6 + + + + + fr.insee + l8oaqbj5-RDOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oaqbj5-RDOP-l8ob57h3 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oanpzw + 1 + + RESID_ENFAIL6 + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + + RESID_ENFAIL6 + + + + + fr.insee + l8oanpzw-RDOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8oanpzw-RDOP-l8oayvjg + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8oasgat + 1 + + SANTE_ENFAIL6 + + + fr.insee + l8oasgat-QOP-lvgq6z78 + 1 + + SANTE_ENFAIL6 + + + + + fr.insee + l8oasgat-RDOP-lvgq6z78 + 1 + OutParameter + + + fr.insee + l8oasgat-QOP-lvgq6z78 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oasgat-RDOP-lvgq6z78 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgqbpim + 1 + + ASE_ENFAIL6 + + + fr.insee + lvgqbpim-QOP-lvgqaha5 + 1 + + ASE_ENFAIL6 + + + + + fr.insee + lvgqbpim-RDOP-lvgqaha5 + 1 + OutParameter + + + fr.insee + lvgqbpim-QOP-lvgqaha5 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8oign0h-QOP-l8oifcrp¤,"")="") then (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "Cet enfant" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8oign0h-QOP-l8oifcrp¤) || " vit-" || (if ¤l8oi92w4-QOP-l8oihhrs¤="1" then "il" else if ¤l8oi92w4-QOP-l8oihhrs¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgqbpim-RDOP-lvgqaha5 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ok9kmj + 1 + + PRENOM_ENFAIL7 + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + + PRENOM_ENFAIL7 + + + + + fr.insee + l8ok9kmj-RDOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre septième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8ok9kmj-RDOP-l8okjmzy + 1 + + + + + + fr.insee + l8okbmv3 + 1 + + SEXE_ENFAIL7 + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + + SEXE_ENFAIL7 + + + + + fr.insee + l8okbmv3-RDOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then "cet(te) enfant" else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8okbmv3-RDOP-l8ok3iy5 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8okh65e + 1 + + ANAI_ENFAIL7 + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + + ANAI_ENFAIL7 + + + + + fr.insee + l8okh65e-RDOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8okh65e-RDOP-l8okdvkx + 1 + + + + + fr.insee + l8okc5z9 + 1 + + NEFRANCE_ENFAIL7 + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + + NEFRANCE_ENFAIL7 + + + + + fr.insee + l8okc5z9-RDOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il né" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okc5z9-RDOP-l8ok6z0e + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8ok97f5 + 1 + Instruction + + + + fr.insee + lv6hwis8 + 1 + + ADOPT_ENFAIL7 + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + + ADOPT_ENFAIL7 + + + + + fr.insee + lv6hwis8-RDOP-lv6i7g5p + 1 + OutParameter + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " a-t-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il été adopté" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6hwis8-RDOP-lv6i7g5p + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6kasxf + 1 + + ANADOPT_ENFAIL7 + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + + ANADOPT_ENFAIL7 + + + + + fr.insee + lv6kasxf-RDOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " a-t-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il été adopté ?" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6kasxf-RDOP-lv6k1g9w + 1 + + + + + fr.insee + l8okdoof + 1 + + PARENT_VIT_ENFAIL7 + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + + PARENT_VIT_ENFAIL7 + + + + + fr.insee + l8okdoof-RDOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8okdoof-RDOP-l8ojuyat + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6vlgi + 1 + Instruction + + + + fr.insee + l8ok0d4y + 1 + + PARENT_VECU_ENFAIL7 + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + + PARENT_VECU_ENFAIL7 + + + + + fr.insee + l8ok0d4y-RDOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ok0d4y-RDOP-l8ojxc00 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ok0acp + 1 + + DC_ENFAIL7 + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + + DC_ENFAIL7 + + + + + fr.insee + l8ok0acp-RDOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ok0acp-RDOP-l8ok9idc + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ojs3vl + 1 + + AG_DC_ENFAIL7 + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + + AG_DC_ENFAIL7 + + + + + fr.insee + l8ojs3vl-RDOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " est-" || if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il décédé ?" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ojs3vl-RDOP-l8ojtruw + 1 + + + + fr.insee + l8ojoix6 + 1 + Instruction + + + + fr.insee + l8ojuhud + 1 + + AG_DEPART_ENFAIL7 + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + + AG_DEPART_ENFAIL7 + + + + + fr.insee + l8ojuhud-RDOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " a-t-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ojuhud-RDOP-l8ojvwk7 + 1 + + + + + fr.insee + l8ojmjws + 1 + + PARENT_FREQ_ENFAIL7 + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + + PARENT_FREQ_ENFAIL7 + + + + + fr.insee + l8ojmjws-RDOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8ojmjws-RDOP-l8ojhru1 + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8oj98gw + 1 + + FR_ENFAIL7 + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + + FR_ENFAIL7 + + + + + fr.insee + l8oj98gw-RDOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oj98gw-RDOP-l8ojo8na + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai6ugn5 + 1 + Instruction + + + + fr.insee + l8ojczfv + 1 + + COM_ENFAIL7 + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + + COM_ENFAIL7 + + + + + fr.insee + l8ojczfv-RDOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojczfv-RDOP-llvz57ns + 1 + + + + + fr.insee + m37bxb48 + 1 + Instruction + + + + fr.insee + l8ojb4ub + 1 + + DEP_ENFAIL7 + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + + DEP_ENFAIL7 + + + + + fr.insee + l8ojb4ub-RDOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojb4ub-RDOP-llvzaolo + 1 + + + + + fr.insee + l8ojdq5t + 1 + Instruction + + + + fr.insee + l8ojif3m + 1 + + PAY_ENFAIL7 + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + + PAY_ENFAIL7 + + + + + fr.insee + l8ojif3m-RDOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " ?" + + + + + fr.insee + l8ojif3m-RDOP-llvyqwz8 + 1 + + + + + fr.insee + l8oj5v82 + 1 + Instruction + + + + fr.insee + l8oja1pz + 1 + + LOG_ENFAIL7 + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + + LOG_ENFAIL7 + + + + + fr.insee + l8oja1pz-RDOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oja1pz-RDOP-l8oj6h19 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oiinpy + 1 + + AUT_PAR_ENFAIL7 + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + + AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiinpy-RDOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oiinpy-RDOP-l8oia0f4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oj67fo + 1 + + DORT_ENFAIL7 + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + + DORT_ENFAIL7 + + + + + fr.insee + l8oj67fo-RDOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oj67fo-RDOP-l8oiz02v + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oiu9ax + 1 + + SEP_AUT_PAR_ENFAIL7 + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + + SEP_AUT_PAR_ENFAIL7 + + + + + fr.insee + l8oiu9ax-RDOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oiu9ax-RDOP-l8oimcso + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8oicj6e + 1 + + RESID_ENFAIL7 + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + + RESID_ENFAIL7 + + + + + fr.insee + l8oicj6e-RDOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8oicj6e-RDOP-l8oirvyk + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8oizp0r + 1 + + SANTE_ENFAIL7 + + + fr.insee + l8oizp0r-QOP-lvgql017 + 1 + + SANTE_ENFAIL7 + + + + + fr.insee + l8oizp0r-RDOP-lvgql017 + 1 + OutParameter + + + fr.insee + l8oizp0r-QOP-lvgql017 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oizp0r-RDOP-lvgql017 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgq4gkg + 1 + + ASE_ENFAIL7 + + + fr.insee + lvgq4gkg-QOP-lvgqgz9z + 1 + + ASE_ENFAIL7 + + + + + fr.insee + lvgq4gkg-RDOP-lvgqgz9z + 1 + OutParameter + + + fr.insee + lvgq4gkg-QOP-lvgqgz9z + 1 + OutParameter + + + + + "" || (if (nvl(¤l8ok9kmj-QOP-l8okjmzy¤,"")="") then (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "Cet enfant" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8ok9kmj-QOP-l8okjmzy¤) || " vit-" || (if ¤l8okbmv3-QOP-l8ok3iy5¤="1" then "il" else if ¤l8okbmv3-QOP-l8ok3iy5¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgq4gkg-RDOP-lvgqgz9z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8olci32 + 1 + + PRENOM_ENFAIL8 + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + + PRENOM_ENFAIL8 + + + + + fr.insee + l8olci32-RDOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", comment s'appelle votre huitième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l8olci32-RDOP-l8oln1gt + 1 + + + + + + fr.insee + l8olbhxj + 1 + + SEXE_ENFAIL8 + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + + SEXE_ENFAIL8 + + + + + fr.insee + l8olbhxj-RDOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then "cet(te) enfant" else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + radio-button + + fr.insee + llgbzo78 + 1 + CodeList + + + fr.insee + l8olbhxj-RDOP-l8ol8o60 + 1 + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + + + fr.insee + l8ol9xy3 + 1 + + ANAI_ENFAIL8 + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + + ANAI_ENFAIL8 + + + + + fr.insee + l8ol9xy3-RDOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " [?](. "Pourquoi cette question ? +Pour reconstruire les grandes étapes de la vie familiale. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l8ol9xy3-RDOP-l8ol6h1q + 1 + + + + + fr.insee + l8ola1mr + 1 + + NEFRANCE_ENFAIL8 + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + + NEFRANCE_ENFAIL8 + + + + + fr.insee + l8ola1mr-RDOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il né" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle née" else "il/elle né(e)") || " en France [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ola1mr-RDOP-l8olb2am + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + l8okzirz + 1 + Instruction + + + + fr.insee + lv6igxed + 1 + + ADOPT_ENFAIL8 + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + + ADOPT_ENFAIL8 + + + + + fr.insee + lv6igxed-RDOP-lv6i2nr4 + 1 + OutParameter + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " a-t-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il été adopté" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle été adoptée" else "il/elle été adopté(e)") || " [?](. "Pourquoi cette question ? +Pour décrire les enfants qui ont été adoptés. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lv6igxed-RDOP-lv6i2nr4 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lv6khz5j + 1 + + ANADOPT_ENFAIL8 + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + + ANADOPT_ENFAIL8 + + + + + fr.insee + lv6khz5j-RDOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + + + "En quelle année " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " a-t-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il été adopté ?" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle été adoptée ?" else "il/elle été adopté(e) ?") + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + lv6khz5j-RDOP-lv6kds0v + 1 + + + + + fr.insee + l8okz45l + 1 + + PARENT_VIT_ENFAIL8 + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + + PARENT_VIT_ENFAIL8 + + + + + fr.insee + l8okz45l-RDOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + + + "L'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-il/elle avec vous [?](. "Pourquoi cette question ? +Cette information est essentielle pour mesurer la diversité des familles. +Elle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + l44726g4 + 1 + CodeList + + + fr.insee + l8okz45l-RDOP-l8olfzvu + 1 + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + + fr.insee + m0b6z62i + 1 + Instruction + + + + fr.insee + l8ol369l + 1 + + PARENT_VECU_ENFAIL8 + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + + PARENT_VECU_ENFAIL8 + + + + + fr.insee + l8ol369l-RDOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + + + "Avez-vous déjà vécu avec l'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ol369l-RDOP-l8okxkvv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8ole120 + 1 + + DC_ENFAIL8 + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + + DC_ENFAIL8 + + + + + fr.insee + l8ole120-RDOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " encore en vie [?](. "Pourquoi cette question ? +Pour mieux connaître l’histoire de chaque enfant. +Cette information est essentielle pour mesurer la diversité des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8ole120-RDOP-l8ol3o2i + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8olcd8n + 1 + + AG_DC_ENFAIL8 + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + + AG_DC_ENFAIL8 + + + + + fr.insee + l8olcd8n-RDOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + + + "A quel âge " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " est-" || if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il décédé ?" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle décédée ?" else "il/elle décédé(e) ?" + + + + + 0 + 95 + + Decimal + + fr.insee + l8olcd8n-RDOP-l8oku4vn + 1 + + + + fr.insee + l8oktakr + 1 + Instruction + + + + fr.insee + l8ol84b7 + 1 + + AG_DEPART_ENFAIL8 + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + + AG_DEPART_ENFAIL8 + + + + + fr.insee + l8ol84b7-RDOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + + + "A quel âge environ " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " a-t-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " cessé de vivre avec vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + + 0 + 95 + + Decimal + + fr.insee + l8ol84b7-RDOP-l8ol1ust + 1 + + + + + fr.insee + l8okx7cd + 1 + + PARENT_FREQ_ENFAIL8 + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + + PARENT_FREQ_ENFAIL8 + + + + + fr.insee + l8okx7cd-RDOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + + + "A quelle fréquence êtes-vous en contact avec " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l8okx7cd-RDOP-l8ol3s4a + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l8okpxv8 + 1 + + FR_ENFAIL8 + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + + FR_ENFAIL8 + + + + + fr.insee + l8okpxv8-RDOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " en France actuellement [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okpxv8-RDOP-l8okk1db + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai7cpw5 + 1 + Instruction + + + + fr.insee + l8okjfla + 1 + + COM_ENFAIL8 + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + + COM_ENFAIL8 + + + + + fr.insee + l8okjfla-RDOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okjfla-RDOP-llvz0mdc + 1 + + + + + fr.insee + m37bww1o + 1 + Instruction + + + + fr.insee + l8okue2t + 1 + + DEP_ENFAIL8 + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + + DEP_ENFAIL8 + + + + + fr.insee + l8okue2t-RDOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okue2t-RDOP-llvz6npr + 1 + + + + + fr.insee + l8okk3ew + 1 + Instruction + + + + fr.insee + l8okxgwv + 1 + + PAY_ENFAIL8 + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + + PAY_ENFAIL8 + + + + + fr.insee + l8okxgwv-RDOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " ?" + + + + + fr.insee + l8okxgwv-RDOP-llvz12vx + 1 + + + + + fr.insee + l8okt75e + 1 + Instruction + + + + fr.insee + l8oksuft + 1 + + LOG_ENFAIL8 + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + + LOG_ENFAIL8 + + + + + fr.insee + l8oksuft-RDOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " dans son propre logement ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oksuft-RDOP-l8okh5d0 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okked6 + 1 + + AUT_PAR_ENFAIL8 + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + + AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okked6-RDOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " chez son autre parent [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okked6-RDOP-l8okd51b + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okkkef + 1 + + DORT_ENFAIL8 + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + + DORT_ENFAIL8 + + + + + fr.insee + l8okkkef-RDOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + + + "Arrive-t-il à " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " de dormir chez vous [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des familles.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okkkef-RDOP-l8oktkgp + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okfvhy + 1 + + SEP_AUT_PAR_ENFAIL8 + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + + SEP_AUT_PAR_ENFAIL8 + + + + + fr.insee + l8okfvhy-RDOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + + + "Vous êtes-vous séparé" || (if (¤TYPE_QUEST¤ = "2") then "e" else "") || " de l'autre parent de " || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "cette enfant" else "cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8okfvhy-RDOP-l8oke48c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l8okioqc + 1 + + RESID_ENFAIL8 + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + + RESID_ENFAIL8 + + + + + fr.insee + l8okioqc-RDOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + + + "Quel a été le mode de résidence fixé par décision de justice [?](. "Pourquoi cette question ? +Pour mieux connaître le mode de vie des enfants de parents séparés.")" + + + + radio-button + + fr.insee + l448z131 + 1 + CodeList + + + fr.insee + l8okioqc-RDOP-l8oksr34 + 1 + + + fr.insee + l448z131 + 1 + CodeList + + + + + + + + fr.insee + l8oklb21 + 1 + + SANTE_ENFAIL8 + + + fr.insee + l8oklb21-QOP-lvgqkscs + 1 + + SANTE_ENFAIL8 + + + + + fr.insee + l8oklb21-RDOP-lvgqkscs + 1 + OutParameter + + + fr.insee + l8oklb21-QOP-lvgqkscs + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " ailleurs que chez vous pour des raisons de santé [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l8oklb21-RDOP-lvgqkscs + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lvgq7nb7 + 1 + + ASE_ENFAIL8 + + + fr.insee + lvgq7nb7-QOP-lvgq4rkd + 1 + + ASE_ENFAIL8 + + + + + fr.insee + lvgq7nb7-RDOP-lvgq4rkd + 1 + OutParameter + + + fr.insee + lvgq7nb7-QOP-lvgq4rkd + 1 + OutParameter + + + + + "" || (if (nvl(¤l8olci32-QOP-l8oln1gt¤,"")="") then (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "Cet enfant" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "Cette enfant" else "Cet(te) enfant") else ¤l8olci32-QOP-l8oln1gt¤) || " vit-" || (if ¤l8olbhxj-QOP-l8ol8o60¤="1" then "il" else if ¤l8olbhxj-QOP-l8ol8o60¤="2" then "elle" else "il/elle") || " ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants. +En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lvgq7nb7-RDOP-lvgq4rkd + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1f6a3qv + 1 + + PETIT_ENF + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + + PETIT_ENF + + + + + fr.insee + l1f6a3qv-RDOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avez-vous des petits-enfants (enfants de vos enfants) [?](. "Pourquoi cette question ? +Pour connaître le nombre de grands-parents. +L’enquête Familles est la seule source qui permet d’avoir cette information.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1f6a3qv-RDOP-l1f67xik + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1f6dz1j + 1 + + NB_PETIT_ENF + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + + NB_PETIT_ENF + + + + + fr.insee + l1f6dz1j-RDOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + + + "Combien de petits-enfants avez-vous en tout ?" + + + + + 1 + 40 + + Decimal + + fr.insee + l1f6dz1j-RDOP-l1f6aqky + 1 + + + + + fr.insee + l1f69ivh + 1 + + AG_PETIT_ENF + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + + AG_PETIT_ENF + + + + + fr.insee + l1f69ivh-RDOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + + + "" || (if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "Quel âge a l'aîné(e)" else "Quel âge a-t-il/elle") || " [?](. "Pourquoi cette question ? +Pour savoir à quel âge on devient grand-parent. +L'enquête Familles est la seule source qui permet d'avoir cette information.")" + + + + + 0 + 80 + + Decimal + + fr.insee + l1f69ivh-RDOP-l1f6h1an + 1 + + + + fr.insee + l1f62ww0 + 1 + Instruction + + + + fr.insee + lwhm7k7c + 1 + + QUI_AID_APP_1AD + + + fr.insee + lwhm7k7c-QOP-lwje5tlt + 1 + + QUI_AID_APP_1AD + + + + + fr.insee + lwhm7k7c-RDOP-lwje5tlt + 1 + OutParameter + + + fr.insee + lwhm7k7c-QOP-lwje5tlt + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwhm7k7c-RDOP-lwje5tlt + 1 + + + + + fr.insee + lwjdktjr + 1 + Instruction + + + + fr.insee + lwjdc6vy + 1 + + QUI_AID_APP_1BD + + + fr.insee + lwjdc6vy-QOP-lwjdf9xr + 1 + + QUI_AID_APP_1BD + + + + + fr.insee + lwjdc6vy-RDOP-lwjdf9xr + 1 + OutParameter + + + fr.insee + lwjdc6vy-QOP-lwjdf9xr + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwjdc6vy-RDOP-lwjdf9xr + 1 + + + + + fr.insee + lwjdh5hg + 1 + Instruction + + + + fr.insee + lwjdesu0 + 1 + + QUI_AID_APP_1CD + + + fr.insee + lwjdesu0-QOP-lwjdqzn0 + 1 + + QUI_AID_APP_1CD + + + + + fr.insee + lwjdesu0-RDOP-lwjdqzn0 + 1 + OutParameter + + + fr.insee + lwjdesu0-QOP-lwjdqzn0 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwjdesu0-RDOP-lwjdqzn0 + 1 + + + + + fr.insee + lwjdliqx + 1 + Instruction + + + + fr.insee + lwjdhxux + 1 + + QUI_AID_APP_1DD + + + fr.insee + lwjdhxux-QOP-lwjdmc8r + 1 + + QUI_AID_APP_1DD + + + + + fr.insee + lwjdhxux-RDOP-lwjdmc8r + 1 + OutParameter + + + fr.insee + lwjdhxux-QOP-lwjdmc8r + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwjdhxux-RDOP-lwjdmc8r + 1 + + + + + fr.insee + lwjdck88 + 1 + Instruction + + + + fr.insee + lwjdpyys + 1 + + QUI_AID_APP_2AD + + + fr.insee + lwjdpyys-QOP-lwjdjwkb + 1 + + QUI_AID_APP_2AD + + + + + fr.insee + lwjdpyys-RDOP-lwjdjwkb + 1 + OutParameter + + + fr.insee + lwjdpyys-QOP-lwjdjwkb + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwjdpyys-RDOP-lwjdjwkb + 1 + + + + + fr.insee + lwjdzn52 + 1 + Instruction + + + + fr.insee + lwje55m7 + 1 + + QUI_AID_APP_2BD + + + fr.insee + lwje55m7-QOP-lwjdskgn + 1 + + QUI_AID_APP_2BD + + + + + fr.insee + lwje55m7-RDOP-lwjdskgn + 1 + OutParameter + + + fr.insee + lwje55m7-QOP-lwjdskgn + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwje55m7-RDOP-lwjdskgn + 1 + + + + + fr.insee + lwje7875 + 1 + Instruction + + + fr.insee + lwjdyva5 + 1 + Instruction + + + fr.insee + lwje51m9 + 1 + Instruction + + + + fr.insee + lwje0h9j + 1 + + QUI_AID_APP_2CD + + + fr.insee + lwje0h9j-QOP-lwjdvun8 + 1 + + QUI_AID_APP_2CD + + + + + fr.insee + lwje0h9j-RDOP-lwjdvun8 + 1 + OutParameter + + + fr.insee + lwje0h9j-QOP-lwjdvun8 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwje0h9j-RDOP-lwjdvun8 + 1 + + + + + fr.insee + lwje21i9 + 1 + Instruction + + + + fr.insee + lwkqt10g + 1 + + QUI_AID_APP_2DD + + + fr.insee + lwkqt10g-QOP-lwkqsn54 + 1 + + QUI_AID_APP_2DD + + + + + fr.insee + lwkqt10g-RDOP-lwkqsn54 + 1 + OutParameter + + + fr.insee + lwkqt10g-QOP-lwkqsn54 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkqt10g-RDOP-lwkqsn54 + 1 + + + + + fr.insee + lwkqu2zn + 1 + Instruction + + + + fr.insee + lwkqxzag + 1 + + QUI_AID_APP_3AD + + + fr.insee + lwkqxzag-QOP-lwkr61pl + 1 + + QUI_AID_APP_3AD + + + + + fr.insee + lwkqxzag-RDOP-lwkr61pl + 1 + OutParameter + + + fr.insee + lwkqxzag-QOP-lwkr61pl + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkqxzag-RDOP-lwkr61pl + 1 + + + + + fr.insee + lwkqvnxv + 1 + Instruction + + + + fr.insee + lwkqz11c + 1 + + QUI_AID_APP_3BD + + + fr.insee + lwkqz11c-QOP-lwkr6qfb + 1 + + QUI_AID_APP_3BD + + + + + fr.insee + lwkqz11c-RDOP-lwkr6qfb + 1 + OutParameter + + + fr.insee + lwkqz11c-QOP-lwkr6qfb + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkqz11c-RDOP-lwkr6qfb + 1 + + + + + fr.insee + lwkr2tjx + 1 + Instruction + + + + fr.insee + lwkqzn6j + 1 + + QUI_AID_APP_3CD + + + fr.insee + lwkqzn6j-QOP-lwkqrhgp + 1 + + QUI_AID_APP_3CD + + + + + fr.insee + lwkqzn6j-RDOP-lwkqrhgp + 1 + OutParameter + + + fr.insee + lwkqzn6j-QOP-lwkqrhgp + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkqzn6j-RDOP-lwkqrhgp + 1 + + + + + fr.insee + lwkqvrmr + 1 + Instruction + + + + fr.insee + lwkr8xaw + 1 + + QUI_AID_APP_3DD + + + fr.insee + lwkr8xaw-QOP-lwkr2axx + 1 + + QUI_AID_APP_3DD + + + + + fr.insee + lwkr8xaw-RDOP-lwkr2axx + 1 + OutParameter + + + fr.insee + lwkr8xaw-QOP-lwkr2axx + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkr8xaw-RDOP-lwkr2axx + 1 + + + + + fr.insee + lwkqx8lw + 1 + Instruction + + + + fr.insee + lwkrbrwr + 1 + + QUI_AID_APP_4AD + + + fr.insee + lwkrbrwr-QOP-lwkqyy9k + 1 + + QUI_AID_APP_4AD + + + + + fr.insee + lwkrbrwr-RDOP-lwkqyy9k + 1 + OutParameter + + + fr.insee + lwkrbrwr-QOP-lwkqyy9k + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwkrbrwr-RDOP-lwkqyy9k + 1 + + + + + fr.insee + lwkr69jj + 1 + Instruction + + + + fr.insee + lwom09ex + 1 + + QUI_AID_APP_4BD + + + fr.insee + lwom09ex-QOP-lwolvzx1 + 1 + + QUI_AID_APP_4BD + + + + + fr.insee + lwom09ex-RDOP-lwolvzx1 + 1 + OutParameter + + + fr.insee + lwom09ex-QOP-lwolvzx1 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwom09ex-RDOP-lwolvzx1 + 1 + + + + + fr.insee + lwolw517 + 1 + Instruction + + + + fr.insee + lwom95wp + 1 + + QUI_AID_APP_4CD + + + fr.insee + lwom95wp-QOP-lwomflcs + 1 + + QUI_AID_APP_4CD + + + + + fr.insee + lwom95wp-RDOP-lwomflcs + 1 + OutParameter + + + fr.insee + lwom95wp-QOP-lwomflcs + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwom95wp-RDOP-lwomflcs + 1 + + + + + fr.insee + lwom2yel + 1 + Instruction + + + + fr.insee + lwolwwhx + 1 + + QUI_AID_APP_4DD + + + fr.insee + lwolwwhx-QOP-lwomftfa + 1 + + QUI_AID_APP_4DD + + + + + fr.insee + lwolwwhx-RDOP-lwomftfa + 1 + OutParameter + + + fr.insee + lwolwwhx-QOP-lwomftfa + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwolwwhx-RDOP-lwomftfa + 1 + + + + + fr.insee + lwom8msv + 1 + Instruction + + + + fr.insee + lwom8z6i + 1 + + QUI_AID_REC_1AD + + + fr.insee + lwom8z6i-QOP-lwom5tko + 1 + + QUI_AID_REC_1AD + + + + + fr.insee + lwom8z6i-RDOP-lwom5tko + 1 + OutParameter + + + fr.insee + lwom8z6i-QOP-lwom5tko + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwom8z6i-RDOP-lwom5tko + 1 + + + + + fr.insee + lwolyqrn + 1 + Instruction + + + + fr.insee + lwom6128 + 1 + + QUI_AID_REC_1BD + + + fr.insee + lwom6128-QOP-lwome1kb + 1 + + QUI_AID_REC_1BD + + + + + fr.insee + lwom6128-RDOP-lwome1kb + 1 + OutParameter + + + fr.insee + lwom6128-QOP-lwome1kb + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwom6128-RDOP-lwome1kb + 1 + + + + + fr.insee + lwomheib + 1 + Instruction + + + + fr.insee + lwomj4m6 + 1 + + QUI_AID_REC_1CD + + + fr.insee + lwomj4m6-QOP-lwomfo6p + 1 + + QUI_AID_REC_1CD + + + + + fr.insee + lwomj4m6-RDOP-lwomfo6p + 1 + OutParameter + + + fr.insee + lwomj4m6-QOP-lwomfo6p + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwomj4m6-RDOP-lwomfo6p + 1 + + + + + fr.insee + lwomfh9p + 1 + Instruction + + + + fr.insee + lwom7lun + 1 + + QUI_AID_REC_1DD + + + fr.insee + lwom7lun-QOP-lwomaw97 + 1 + + QUI_AID_REC_1DD + + + + + fr.insee + lwom7lun-RDOP-lwomaw97 + 1 + OutParameter + + + fr.insee + lwom7lun-QOP-lwomaw97 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwom7lun-RDOP-lwomaw97 + 1 + + + + + fr.insee + lwom7phy + 1 + Instruction + + + + fr.insee + lwombc8x + 1 + + QUI_AID_REC_2AD + + + fr.insee + lwombc8x-QOP-lwomeayh + 1 + + QUI_AID_REC_2AD + + + + + fr.insee + lwombc8x-RDOP-lwomeayh + 1 + OutParameter + + + fr.insee + lwombc8x-QOP-lwomeayh + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwombc8x-RDOP-lwomeayh + 1 + + + + + fr.insee + lwomh51o + 1 + Instruction + + + + fr.insee + lwomhbiy + 1 + + QUI_AID_REC_2BD + + + fr.insee + lwomhbiy-QOP-lwom4xkr + 1 + + QUI_AID_REC_2BD + + + + + fr.insee + lwomhbiy-RDOP-lwom4xkr + 1 + OutParameter + + + fr.insee + lwomhbiy-QOP-lwom4xkr + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwomhbiy-RDOP-lwom4xkr + 1 + + + + + fr.insee + lwomc7zr + 1 + Instruction + + + + fr.insee + lwomijww + 1 + + QUI_AID_REC_2CD + + + fr.insee + lwomijww-QOP-lwompss6 + 1 + + QUI_AID_REC_2CD + + + + + fr.insee + lwomijww-RDOP-lwompss6 + 1 + OutParameter + + + fr.insee + lwomijww-QOP-lwompss6 + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwomijww-RDOP-lwompss6 + 1 + + + + + fr.insee + lwomfoi3 + 1 + Instruction + + + + fr.insee + lwomx6w5 + 1 + + QUI_AID_REC_2DD + + + fr.insee + lwomx6w5-QOP-lwomgt4w + 1 + + QUI_AID_REC_2DD + + + + + fr.insee + lwomx6w5-RDOP-lwomgt4w + 1 + OutParameter + + + fr.insee + lwomx6w5-QOP-lwomgt4w + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwomx6w5-RDOP-lwomgt4w + 1 + + + + + fr.insee + lwomf48x + 1 + Instruction + + + + fr.insee + lwonhqcb + 1 + + QUI_AID_REC_3AD + + + fr.insee + lwonhqcb-QOP-lwonv0ay + 1 + + QUI_AID_REC_3AD + + + + + fr.insee + lwonhqcb-RDOP-lwonv0ay + 1 + OutParameter + + + fr.insee + lwonhqcb-QOP-lwonv0ay + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwonhqcb-RDOP-lwonv0ay + 1 + + + + + fr.insee + lwonnp1n + 1 + Instruction + + + + fr.insee + lwonk1pl + 1 + + QUI_AID_REC_3BD + + + fr.insee + lwonk1pl-QOP-lwonq38s + 1 + + QUI_AID_REC_3BD + + + + + fr.insee + lwonk1pl-RDOP-lwonq38s + 1 + OutParameter + + + fr.insee + lwonk1pl-QOP-lwonq38s + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwonk1pl-RDOP-lwonq38s + 1 + + + + + fr.insee + lwontn65 + 1 + Instruction + + + + fr.insee + lwonuial + 1 + + QUI_AID_REC_3CD + + + fr.insee + lwonuial-QOP-lwonsphd + 1 + + QUI_AID_REC_3CD + + + + + fr.insee + lwonuial-RDOP-lwonsphd + 1 + OutParameter + + + fr.insee + lwonuial-QOP-lwonsphd + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwonuial-RDOP-lwonsphd + 1 + + + + + fr.insee + lwonw0e2 + 1 + Instruction + + + + fr.insee + lwonmnuh + 1 + + QUI_AID_REC_3DD + + + fr.insee + lwonmnuh-QOP-lwoo47cn + 1 + + QUI_AID_REC_3DD + + + + + fr.insee + lwonmnuh-RDOP-lwoo47cn + 1 + OutParameter + + + fr.insee + lwonmnuh-QOP-lwoo47cn + 1 + OutParameter + + + + + "Qui est/sont cette ou ces autre(s) personne(s) pour vous ?" + + + + + fr.insee + lwonmnuh-RDOP-lwoo47cn + 1 + + + + + fr.insee + lwonyr58 + 1 + Instruction + + + + fr.insee + l1g8apw2 + 1 + + LANGUE1_ENTOUE + + + fr.insee + l1g8apw2-QOP-lw7p997k + 1 + + LANGUE1_ENTOUE + + + + + fr.insee + l1g8apw2-RDOP-lw7p997k + 1 + OutParameter + + + fr.insee + l1g8apw2-QOP-lw7p997k + 1 + OutParameter + + + + + "En dehors du français, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) [?](. "Pourquoi cette question ? +Pour savoir si les langues parlées dans l’enfance sont utilisées dans la vie quotidienne.") " + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g8apw2-RDOP-lw7p997k + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw7oumzg + 1 + + LANGUE1_ENTOU + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + + LANGUE1_ENTOU + + + + + fr.insee + lw7oumzg-RDOP-lw7ocksm + 1 + OutParameter + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + OutParameter + + + + + "Quelle est cette langue, dialecte ou patois ?" + + + + + fr.insee + lw7oumzg-RDOP-lw7ocksm + 1 + + + + + fr.insee + lw7ok0js + 1 + Instruction + + + + fr.insee + lumpggg9 + 1 + + LANGUE1_ENTOUL + + + fr.insee + lumpggg9-QOP-lumpls3q + 1 + + LANGUE1_ENTOUL + + + + + fr.insee + lumpggg9-RDOP-lumpls3q + 1 + OutParameter + + + fr.insee + lumpggg9-QOP-lumpls3q + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumpggg9-RDOP-lumpls3q + 1 + + + + + + fr.insee + l43tgurz + 1 + + LANGUE2_ENTOUE + + + fr.insee + l43tgurz-QOP-lw54fsoq + 1 + + LANGUE2_ENTOUE + + + + + fr.insee + l43tgurz-RDOP-lw54fsoq + 1 + OutParameter + + + fr.insee + l43tgurz-QOP-lw54fsoq + 1 + OutParameter + + + + + "En dehors du français et de la langue déjà citée, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43tgurz-RDOP-lw54fsoq + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw54iesv + 1 + + LANGUE2_ENTOU + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + + LANGUE2_ENTOU + + + + + fr.insee + lw54iesv-RDOP-lw54g204 + 1 + OutParameter + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + + + "Quelle est cette autre langue, dialecte ou patois ?" + + + + + fr.insee + lw54iesv-RDOP-lw54g204 + 1 + + + + + fr.insee + lw54qysp + 1 + Instruction + + + + fr.insee + lumsh65o + 1 + + LANGUE2_ENTOUL + + + fr.insee + lumsh65o-QOP-lumsrnf6 + 1 + + LANGUE2_ENTOUL + + + + + fr.insee + lumsh65o-RDOP-lumsrnf6 + 1 + OutParameter + + + fr.insee + lumsh65o-QOP-lumsrnf6 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsh65o-RDOP-lumsrnf6 + 1 + + + + + + fr.insee + lump9kgk + 1 + + LANGUE3_ENTOUE + + + fr.insee + lump9kgk-QOP-lw54k7kt + 1 + + LANGUE3_ENTOUE + + + + + fr.insee + lump9kgk-RDOP-lw54k7kt + 1 + OutParameter + + + fr.insee + lump9kgk-QOP-lw54k7kt + 1 + OutParameter + + + + + "En dehors du français et des deux langues déjà citées, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lump9kgk-RDOP-lw54k7kt + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw54raav + 1 + + LANGUE3_ENTOU + + + fr.insee + lw54raav-QOP-lw54ecer + 1 + + LANGUE3_ENTOU + + + + + fr.insee + lw54raav-RDOP-lw54ecer + 1 + OutParameter + + + fr.insee + lw54raav-QOP-lw54ecer + 1 + OutParameter + + + + + "Quelle est cette autre langue, dialecte ou patois ?" + + + + + fr.insee + lw54raav-RDOP-lw54ecer + 1 + + + + + fr.insee + lw54rnpa + 1 + Instruction + + + + fr.insee + lumsobo2 + 1 + + LANGUE3_ENTOUL + + + fr.insee + lumsobo2-QOP-lumsf79d + 1 + + LANGUE3_ENTOUL + + + + + fr.insee + lumsobo2-RDOP-lumsf79d + 1 + OutParameter + + + fr.insee + lumsobo2-QOP-lumsf79d + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsobo2-RDOP-lumsf79d + 1 + + + + + + fr.insee + l2kjnm8k + 1 + + PRENOM_PAR1 + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + + PRENOM_PAR1 + + + + + fr.insee + l2kjnm8k-RDOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quel est le prénom du premier parent que vous allez décrire [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre premier parent. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l2kjnm8k-RDOP-l2kjn4vg + 1 + + + + + + fr.insee + l2kjy49o + 1 + + ANAI_PAR1 + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + + ANAI_PAR1 + + + + + fr.insee + l2kjy49o-RDOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " [?](. "Pourquoi cette question ? +Pour savoir à quel âge les parents ont leurs enfants.")" + + + + YYYY + gYear + + 1860 + 1992 + + + fr.insee + l2kjy49o-RDOP-l2kjupyp + 1 + + + + fr.insee + l6c4w3ax + 1 + Instruction + + + + fr.insee + l2kkvar7 + 1 + + SEXE_PAR1 + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + + SEXE_PAR1 + + + + + fr.insee + l2kkvar7-RDOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l2kkvar7-RDOP-l2kkywzf + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + l7ywp1vk + 1 + + LIEUNAIS_PAR1 + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + + LIEUNAIS_PAR1 + + + + + fr.insee + l7ywp1vk-RDOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + + + "Quel est le lieu de naissance de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + lyoc6v5h + 1 + CodeList + + + fr.insee + l7ywp1vk-RDOP-l7yx6ylx + 1 + + + fr.insee + lyoc6v5h + 1 + CodeList + + + + + + + + fr.insee + lyod84wr + 1 + + PNAI_PAR1 + + + fr.insee + lyod84wr-QOP-lyodfigc + 1 + + PNAI_PAR1 + + + + + fr.insee + lyod84wr-RDOP-lyodfigc + 1 + OutParameter + + + fr.insee + lyod84wr-QOP-lyodfigc + 1 + OutParameter + + + + + "Quel est le pays de naissance de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + lyod84wr-RDOP-lyodfigc + 1 + + + + + fr.insee + lyodc4o8 + 1 + Instruction + + + + fr.insee + l2kk539f + 1 + + NATIO_PAR1 + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + + NATIO_PAR1 + + + + + fr.insee + l2kk539f-RDOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " était-" || ¤ltd1mjsw-GOP¤ || " français" || ¤ltd23enq-GOP¤ || " à la naissance [?](. "Pourquoi cette question ? +Pour mieux connaître la diversité des familles.")" + + + + radio-button + + fr.insee + m21lkkyw + 1 + CodeList + + + fr.insee + l2kk539f-RDOP-l2kk2tl9 + 1 + + + fr.insee + m21lkkyw + 1 + CodeList + + + + + + + + fr.insee + lyocgyi4 + 1 + + TRAV_PAR1 + + + fr.insee + lyocgyi4-QOP-lyoc3xpu + 1 + + TRAV_PAR1 + + + + + fr.insee + lyocgyi4-RDOP-lyoc3xpu + 1 + OutParameter + + + fr.insee + lyocgyi4-QOP-lyoc3xpu + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " travaille-t-" || ¤ltd1mjsw-GOP¤ || " ou a-t-" || ¤ltd1mjsw-GOP¤ || " travaillé au cours de sa vie [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lyocgyi4-RDOP-lyoc3xpu + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l2kjueig + 1 + + PROF_PAR1H + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + + PROF_PAR1H + + + + + fr.insee + l2kjueig-RDOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + + + "Quelle est/était la (dernière) profession principale de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + fr.insee + l2kjueig-RDOP-llvyzrpx + 1 + + + + + fr.insee + l4o5gqap + 1 + Instruction + + + + fr.insee + l4qzvm5v + 1 + + PROF_PAR1F + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + + PROF_PAR1F + + + + + fr.insee + l4qzvm5v-RDOP-llvz490j + 1 + OutParameter + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + + + "Quelle est/était la (dernière) profession principale de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + fr.insee + l4qzvm5v-RDOP-llvz490j + 1 + + + + + fr.insee + l4qzje64 + 1 + Instruction + + + + fr.insee + l45cjoj7 + 1 + + PROF_PAR1_2 + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + + PROF_PAR1_2 + + + + + fr.insee + l45cjoj7-RDOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l45cjoj7-RDOP-l4o6wqdy + 1 + + + + + + fr.insee + l2kjshy4 + 1 + + STATUT_PAR1 + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + + STATUT_PAR1 + + + + + fr.insee + l2kjshy4-RDOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + + + "Quel est/était le (dernier) statut professionnel de " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + radio-button + + fr.insee + l1f23fi8 + 1 + CodeList + + + fr.insee + l2kjshy4-RDOP-l2kk0l5l + 1 + + + fr.insee + l1f23fi8 + 1 + CodeList + + + + + + + + fr.insee + lpsjlk6w + 1 + + SAL_IND_PAR1 + + + fr.insee + lpsjlk6w-QOP-lpsjoxrt + 1 + + SAL_IND_PAR1 + + + + + fr.insee + lpsjlk6w-RDOP-lpsjoxrt + 1 + OutParameter + + + fr.insee + lpsjlk6w-QOP-lpsjoxrt + 1 + OutParameter + + + + + "En comptant " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || ", combien de personnes travaillent/travaillaient dans son entreprise ?" + + + + radio-button + + fr.insee + lpsk26ic + 1 + CodeList + + + fr.insee + lpsjlk6w-RDOP-lpsjoxrt + 1 + + + fr.insee + lpsk26ic + 1 + CodeList + + + + + + + fr.insee + lpsjtgha + 1 + Instruction + + + + fr.insee + llgo5n7b + 1 + + SAL_FP_PAR1 + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + + SAL_FP_PAR1 + + + + + fr.insee + llgo5n7b-RDOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est/était ..." + + + + radio-button + + fr.insee + llgq8911 + 1 + CodeList + + + fr.insee + llgo5n7b-RDOP-llgozn3p + 1 + + + fr.insee + llgq8911 + 1 + CodeList + + + + + + + + fr.insee + llgqspnh + 1 + + SAL_ENT_PAR1 + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + + SAL_ENT_PAR1 + + + + + fr.insee + llgqspnh-RDOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est/était ..." + + + + radio-button + + fr.insee + llgoa6cg + 1 + CodeList + + + fr.insee + llgqspnh-RDOP-llgqj9en + 1 + + + fr.insee + llgoa6cg + 1 + CodeList + + + + + + + + fr.insee + l2kk4seh + 1 + + LANGUE1_PAR1 + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + + LANGUE1_PAR1 + + + + + fr.insee + l2kk4seh-RDOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + + + "En quelle langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vous parlait-" || ¤ltd1mjsw-GOP¤ || ", quand vous étiez enfant [?](. "Pourquoi cette question ? +Pour savoir comment se transmettent les langues au fil des générations.")" + + + + + fr.insee + l2kk4seh-RDOP-llvyt5ul + 1 + + + + + fr.insee + laiaq49f + 1 + Instruction + + + + fr.insee + lumppr7y + 1 + + LANGUE1_PAR1L + + + fr.insee + lumppr7y-QOP-lumpxcez + 1 + + LANGUE1_PAR1L + + + + + fr.insee + lumppr7y-RDOP-lumpxcez + 1 + OutParameter + + + fr.insee + lumppr7y-QOP-lumpxcez + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumppr7y-RDOP-lumpxcez + 1 + + + + + + fr.insee + l447j7cx + 1 + + LANGUE2_PAR1E + + + fr.insee + l447j7cx-QOP-lw6jphbt + 1 + + LANGUE2_PAR1E + + + + + fr.insee + l447j7cx-RDOP-lw6jphbt + 1 + OutParameter + + + fr.insee + l447j7cx-QOP-lw6jphbt + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vous parlait-" || ¤ltd1mjsw-GOP¤ || " dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l447j7cx-RDOP-lw6jphbt + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw6don31 + 1 + + LANGUE2_PAR1 + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + + LANGUE2_PAR1 + + + + + fr.insee + lw6don31-RDOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + + + "Quelle est cette autre langue, dialecte ou patois ?" + + + + + fr.insee + lw6don31-RDOP-lw6dp79v + 1 + + + + + fr.insee + lw6dxulv + 1 + Instruction + + + + fr.insee + lumsnsej + 1 + + LANGUE2_PAR1L + + + fr.insee + lumsnsej-QOP-lumsjuh5 + 1 + + LANGUE2_PAR1L + + + + + fr.insee + lumsnsej-RDOP-lumsjuh5 + 1 + OutParameter + + + fr.insee + lumsnsej-QOP-lumsjuh5 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsnsej-RDOP-lumsjuh5 + 1 + + + + + + fr.insee + lumptzfb + 1 + + LANGUE3_PAR1E + + + fr.insee + lumptzfb-QOP-lw6jto2f + 1 + + LANGUE3_PAR1E + + + + + fr.insee + lumptzfb-RDOP-lw6jto2f + 1 + OutParameter + + + fr.insee + lumptzfb-QOP-lw6jto2f + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vous parlait-" || ¤ltd1mjsw-GOP¤ || " dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lumptzfb-RDOP-lw6jto2f + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw6dyxml + 1 + + LANGUE3_PAR1 + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + + LANGUE3_PAR1 + + + + + fr.insee + lw6dyxml-RDOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + + + "Quelle est cette troisième langue, dialecte ou patois ?" + + + + + fr.insee + lw6dyxml-RDOP-lw6dtv3p + 1 + + + + + fr.insee + lw6dp4zm + 1 + Instruction + + + + fr.insee + lumsdl5a + 1 + + LANGUE3_PAR1L + + + fr.insee + lumsdl5a-QOP-lumshoov + 1 + + LANGUE3_PAR1L + + + + + fr.insee + lumsdl5a-RDOP-lumshoov + 1 + OutParameter + + + fr.insee + lumsdl5a-QOP-lumshoov + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsdl5a-RDOP-lumshoov + 1 + + + + + + fr.insee + lumptuhp + 1 + + LANGUE4_PAR1E + + + fr.insee + lumptuhp-QOP-lw6jzlgt + 1 + + LANGUE4_PAR1E + + + + + fr.insee + lumptuhp-RDOP-lw6jzlgt + 1 + OutParameter + + + fr.insee + lumptuhp-QOP-lw6jzlgt + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vous parlait-" || ¤ltd1mjsw-GOP¤ || " dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lumptuhp-RDOP-lw6jzlgt + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw6ecsey + 1 + + LANGUE4_PAR1 + + + fr.insee + lw6ecsey-QOP-lw6ehg5h + 1 + + LANGUE4_PAR1 + + + + + fr.insee + lw6ecsey-RDOP-lw6ehg5h + 1 + OutParameter + + + fr.insee + lw6ecsey-QOP-lw6ehg5h + 1 + OutParameter + + + + + "Quelle est cette quatrième langue, dialecte ou patois ?" + + + + + fr.insee + lw6ecsey-RDOP-lw6ehg5h + 1 + + + + + fr.insee + lw6eje0w + 1 + Instruction + + + + fr.insee + lumswm4d + 1 + + LANGUE4_PAR1L + + + fr.insee + lumswm4d-QOP-lumscasf + 1 + + LANGUE4_PAR1L + + + + + fr.insee + lumswm4d-RDOP-lumscasf + 1 + OutParameter + + + fr.insee + lumswm4d-QOP-lumscasf + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumswm4d-RDOP-lumscasf + 1 + + + + + + fr.insee + l2kjzugb + 1 + + VIV_PAR1 + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + + VIV_PAR1 + + + + + fr.insee + l2kjzugb-RDOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est-" || ¤ltd1mjsw-GOP¤ || " encore en vie [?](. "Pourquoi cette question ? +Pour savoir combien d’adultes ont encore leurs parents en vie.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l2kjzugb-RDOP-l2kjv6tv + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l2kkd59n + 1 + + ANNEE_DC_PAR1 + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + + ANNEE_DC_PAR1 + + + + + fr.insee + l2kkd59n-RDOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + + + "En quelle année environ " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " est-" || ¤ltd1mjsw-GOP¤ || " décédé" || ¤ltd23enq-GOP¤ || " [?](. "Pourquoi cette question ? +Pour savoir à quel âge on devient orphelin et notamment identifier les personnes qui ont perdu leurs parents pendant leur enfance.")" + + + + YYYY + gYear + + 1880 + 2025 + + + fr.insee + l2kkd59n-RDOP-l2kk3398 + 1 + + + + fr.insee + lyfjla01 + 1 + Instruction + + + + fr.insee + l2kk4snz + 1 + + LOG_PAR1 + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + + LOG_PAR1 + + + + + fr.insee + l2kk4snz-RDOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + l4qualpe + 1 + CodeList + + + fr.insee + l2kk4snz-RDOP-l34gopr4 + 1 + + + fr.insee + l4qualpe + 1 + CodeList + + + + + + + + fr.insee + l2kkb4xa + 1 + + FR_PAR1 + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + + FR_PAR1 + + + + + fr.insee + l2kkb4xa-RDOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vit-" || ¤ltd1mjsw-GOP¤ || " en France [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents, et notamment identifier les personnes dont les parents vivent loin.")" + + + + radio-button + + fr.insee + l4o7x17y + 1 + CodeList + + + fr.insee + l2kkb4xa-RDOP-l2kk5rd6 + 1 + + + fr.insee + l4o7x17y + 1 + CodeList + + + + + + + fr.insee + lai78qvl + 1 + Instruction + + + + fr.insee + l4onhpvd + 1 + + COM_PAR1 + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + + COM_PAR1 + + + + + fr.insee + l4onhpvd-RDOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4onhpvd-RDOP-llvz5uy3 + 1 + + + + + fr.insee + m37bjnw8 + 1 + Instruction + + + + fr.insee + l4o7ufzl + 1 + + DEP_PAR1 + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + + DEP_PAR1 + + + + + fr.insee + l4o7ufzl-RDOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4o7ufzl-RDOP-llvzb0k0 + 1 + + + + + fr.insee + l4o88r3u + 1 + Instruction + + + + fr.insee + l4o8eale + 1 + + PAY_PAR1 + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + + PAY_PAR1 + + + + + fr.insee + l4o8eale-RDOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " ?" + + + + + fr.insee + l4o8eale-RDOP-llvzajdd + 1 + + + + + fr.insee + l4o8fj6f + 1 + Instruction + + + + fr.insee + l1ezkqes + 1 + + ETAB_PAR1 + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + + ETAB_PAR1 + + + + + fr.insee + l1ezkqes-RDOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " vit-" || ¤ltd1mjsw-GOP¤ || " dans un établissement pour personnes âgées (EHPAD, maison de retraite,...) [?](. "Pourquoi cette question ? +Pour savoir où vivent les parents d'un certain âge.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1ezkqes-RDOP-l1ezmkcq + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l2kkeqsz + 1 + + FREQ_VU_PAR1 + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + + FREQ_VU_PAR1 + + + + + fr.insee + l2kkeqsz-RDOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + + + "A quelle fréquence voyez-vous " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " (en face à face) [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l2kkeqsz-RDOP-l2kjzdaf + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l2kk296y + 1 + + FREQ_CONT_PAR1 + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + + FREQ_CONT_PAR1 + + + + + fr.insee + l2kk296y-RDOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + + + "A quelle fréquence communiquez-vous avec " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " (téléphone, mail, SMS, appel vidéo, ...) [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l2kk296y-RDOP-l2kkit9z + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l4lojzxg + 1 + + PROX_EGO_PAR1 + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + + PROX_EGO_PAR1 + + + + + fr.insee + l4lojzxg-RDOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + + + "Vivez-vous à moins d'une heure de chez " || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4lojzxg-RDOP-l4lop1g7 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l43yap7r + 1 + + PROX_FRAT_PAR1 + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + + PROX_FRAT_PAR1 + + + + + fr.insee + l43yap7r-RDOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + + + "" || (if (nvl(¤l2kjnm8k-QOP-l2kjn4vg¤,"")="") then "Votre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) || " a-t-" || ¤ltd1mjsw-GOP¤ || " d'autres enfants que vous qui vivent à moins d'une heure de chez" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then " lui ?" else " elle ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43yap7r-RDOP-l43xwxm8 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l5axrwsa + 1 + + EXIST_PAR2 + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + + EXIST_PAR2 + + + + + fr.insee + l5axrwsa-RDOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + + + nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", avez-vous un autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel) ?" + + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l5axrwsa-RDOP-l5ay3o3r + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l27ijusa + 1 + + PRENOM_PAR2 + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + + PRENOM_PAR2 + + + + + fr.insee + l27ijusa-RDOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", quel est le prénom de votre autre parent [?](. "Pourquoi cette question ? +Pour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre autre parent. +Si vous ne souhaitez pas répondre, cliquez sur ''Continuer''.")" + + + + + fr.insee + l27ijusa-RDOP-l27i3154 + 1 + + + + + + fr.insee + kwqfufye + 1 + + ANAI_PAR2 + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + + ANAI_PAR2 + + + + + fr.insee + kwqfufye-RDOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + + + "Quelle est l'année de naissance de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour savoir à quel âge les parents ont leurs enfants.")" + + + + YYYY + gYear + + 1860 + 1992 + + + fr.insee + kwqfufye-RDOP-l0wf22g3 + 1 + + + + fr.insee + l6c4ofs8 + 1 + Instruction + + + + fr.insee + l27ig4yy + 1 + + SEXE_PAR2 + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + + SEXE_PAR2 + + + + + fr.insee + l27ig4yy-RDOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + + + "Quel est le sexe de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + kwqir1cc + 1 + CodeList + + + fr.insee + l27ig4yy-RDOP-l27ii3c9 + 1 + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + + + fr.insee + lyoc66rt + 1 + + LIEUNAIS_PAR2 + + + fr.insee + lyoc66rt-QOP-lyocagtc + 1 + + LIEUNAIS_PAR2 + + + + + fr.insee + lyoc66rt-RDOP-lyocagtc + 1 + OutParameter + + + fr.insee + lyoc66rt-QOP-lyocagtc + 1 + OutParameter + + + + + "Quel est le lieu de naissance de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + lyoc6v5h + 1 + CodeList + + + fr.insee + lyoc66rt-RDOP-lyocagtc + 1 + + + fr.insee + lyoc6v5h + 1 + CodeList + + + + + + + + fr.insee + lyod9pq3 + 1 + + PNAI_PAR2 + + + fr.insee + lyod9pq3-QOP-lyodex4x + 1 + + PNAI_PAR2 + + + + + fr.insee + lyod9pq3-RDOP-lyodex4x + 1 + OutParameter + + + fr.insee + lyod9pq3-QOP-lyodex4x + 1 + OutParameter + + + + + "Quel est le pays de naissance de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + lyod9pq3-RDOP-lyodex4x + 1 + + + + + fr.insee + lyodrjfm + 1 + Instruction + + + + fr.insee + kwqfhhge + 1 + + NATIO_PAR2 + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + + NATIO_PAR2 + + + + + fr.insee + kwqfhhge-RDOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " était-" || ¤ltd23txo-GOP¤ || " français" || ¤ltd1mklp-GOP¤ || " à la naissance [?](. "Pourquoi cette question ? +Pour mieux connaître la diversité des familles.")" + + + + radio-button + + fr.insee + m21lkkyw + 1 + CodeList + + + fr.insee + kwqfhhge-RDOP-kwqft4ub + 1 + + + fr.insee + m21lkkyw + 1 + CodeList + + + + + + + + fr.insee + l7ywxphs + 1 + + TRAV_PAR2 + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + + TRAV_PAR2 + + + + + fr.insee + l7ywxphs-RDOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " travaille-t-" || ¤ltd23txo-GOP¤ || " ou a-t-" || ¤ltd23txo-GOP¤ || " travaillé au cours de sa vie [?](. "Pourquoi cette question ? +Pour éclairer les conditions de vie des enfants.")" + + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l7ywxphs-RDOP-l7yx8jjw + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1ezowxi + 1 + + PROF_PAR2H + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + + PROF_PAR2H + + + + + fr.insee + l1ezowxi-RDOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + + + "Quelle est/était la (dernière) profession principale de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + fr.insee + l1ezowxi-RDOP-llvz8km0 + 1 + + + + + fr.insee + l4o51lf6 + 1 + Instruction + + + + fr.insee + l4qzjbsx + 1 + + PROF_PAR2F + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + + PROF_PAR2F + + + + + fr.insee + l4qzjbsx-RDOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + + + "Quelle est/était la (dernière) profession principale de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + fr.insee + l4qzjbsx-RDOP-llvzb8qa + 1 + + + + + fr.insee + l4qzsxov + 1 + Instruction + + + + fr.insee + l444t31z + 1 + + PROF_PAR2_2 + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + + PROF_PAR2_2 + + + + + fr.insee + l444t31z-RDOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + + + "Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible." + + + + + fr.insee + l444t31z-RDOP-l4o6zyol + 1 + + + + + + fr.insee + kwqfto3c + 1 + + STATUT_PAR2 + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + + STATUT_PAR2 + + + + + fr.insee + kwqfto3c-RDOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + + + "Quel est/était le (dernier) statut professionnel de " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + radio-button + + fr.insee + l4n5c408 + 1 + CodeList + + + fr.insee + kwqfto3c-RDOP-kwqg4dq2 + 1 + + + fr.insee + l4n5c408 + 1 + CodeList + + + + + + + + fr.insee + lptlrxcc + 1 + + SAL_IND_PAR2 + + + fr.insee + lptlrxcc-QOP-lptld3en + 1 + + SAL_IND_PAR2 + + + + + fr.insee + lptlrxcc-RDOP-lptld3en + 1 + OutParameter + + + fr.insee + lptlrxcc-QOP-lptld3en + 1 + OutParameter + + + + + "En comptant " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || ", combien de personnes travaillent/travaillaient dans son entreprise ?" + + + + radio-button + + fr.insee + lptlw9sx + 1 + CodeList + + + fr.insee + lptlrxcc-RDOP-lptld3en + 1 + + + fr.insee + lptlw9sx + 1 + CodeList + + + + + + + fr.insee + lptlri1y + 1 + Instruction + + + + fr.insee + llgosp3i + 1 + + SAL_FP_PAR2 + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + + SAL_FP_PAR2 + + + + + fr.insee + llgosp3i-RDOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est/était ..." + + + + radio-button + + fr.insee + llmi5xl5 + 1 + CodeList + + + fr.insee + llgosp3i-RDOP-llgom4r9 + 1 + + + fr.insee + llmi5xl5 + 1 + CodeList + + + + + + + + fr.insee + llgrqyqg + 1 + + SAL_ENT_PAR2 + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + + SAL_ENT_PAR2 + + + + + fr.insee + llgrqyqg-RDOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + + + "Dans cet emploi, " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est/était ..." + + + + radio-button + + fr.insee + llgry90d + 1 + CodeList + + + fr.insee + llgrqyqg-RDOP-llgs2ez2 + 1 + + + fr.insee + llgry90d + 1 + CodeList + + + + + + + + fr.insee + l1ezgxe3 + 1 + + LANGUE1_PAR2 + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + + LANGUE1_PAR2 + + + + + fr.insee + l1ezgxe3-RDOP-llvz4083 + 1 + OutParameter + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + + + "En quelle langue, dialecte, ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vous parlait-" || ¤ltd23txo-GOP¤ || ", quand vous étiez enfant [?](. "Pourquoi cette question ? +Pour savoir comment se transmettent les langues au fil des générations.")" + + + + + fr.insee + l1ezgxe3-RDOP-llvz4083 + 1 + + + + + fr.insee + laiap5v8 + 1 + Instruction + + + + fr.insee + lums0dcm + 1 + + LANGUE1_PAR2L + + + fr.insee + lums0dcm-QOP-lums9oq4 + 1 + + LANGUE1_PAR2L + + + + + fr.insee + lums0dcm-RDOP-lums9oq4 + 1 + OutParameter + + + fr.insee + lums0dcm-QOP-lums9oq4 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lums0dcm-RDOP-lums9oq4 + 1 + + + + + + fr.insee + l444xjux + 1 + + LANGUE2_PAR2E + + + fr.insee + l444xjux-QOP-lw6k0w8i + 1 + + LANGUE2_PAR2E + + + + + fr.insee + l444xjux-RDOP-lw6k0w8i + 1 + OutParameter + + + fr.insee + l444xjux-QOP-lw6k0w8i + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vous parlait-" || ¤ltd23txo-GOP¤ || " dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l444xjux-RDOP-lw6k0w8i + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + lw6eh4up + 1 + + LANGUE2_PAR2 + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + + LANGUE2_PAR2 + + + + + fr.insee + lw6eh4up-RDOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + + + "Quelle est cette autre langue, dialecte ou patois ?" + + + + + fr.insee + lw6eh4up-RDOP-lw6eemjk + 1 + + + + + fr.insee + lw6evsck + 1 + Instruction + + + + fr.insee + lumsfeeu + 1 + + LANGUE2_PAR2L + + + fr.insee + lumsfeeu-QOP-lumsjma7 + 1 + + LANGUE2_PAR2L + + + + + fr.insee + lumsfeeu-RDOP-lumsjma7 + 1 + OutParameter + + + fr.insee + lumsfeeu-QOP-lumsjma7 + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsfeeu-RDOP-lumsjma7 + 1 + + + + + + fr.insee + lums26pp + 1 + + LANGUE3_PAR2E + + + fr.insee + lums26pp-QOP-lw6k49xr + 1 + + LANGUE3_PAR2E + + + + + fr.insee + lums26pp-RDOP-lw6k49xr + 1 + OutParameter + + + fr.insee + lums26pp-QOP-lw6k49xr + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vous parlait-" || ¤ltd23txo-GOP¤ || " dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lums26pp-RDOP-lw6k49xr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw6euv9i + 1 + + LANGUE3_PAR2 + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + + LANGUE3_PAR2 + + + + + fr.insee + lw6euv9i-RDOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + + + "Quelle est cette troisième langue, dialecte ou patois ?" + + + + + fr.insee + lw6euv9i-RDOP-lw6exuh8 + 1 + + + + + fr.insee + lw6f4k4x + 1 + Instruction + + + + fr.insee + lumsp0o4 + 1 + + LANGUE3_PAR2L + + + fr.insee + lumsp0o4-QOP-lumslfat + 1 + + LANGUE3_PAR2L + + + + + fr.insee + lumsp0o4-RDOP-lumslfat + 1 + OutParameter + + + fr.insee + lumsp0o4-QOP-lumslfat + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumsp0o4-RDOP-lumslfat + 1 + + + + + + fr.insee + lumrz70d + 1 + + LANGUE4_PAR2E + + + fr.insee + lumrz70d-QOP-lw6jlhek + 1 + + LANGUE4_PAR2E + + + + + fr.insee + lumrz70d-RDOP-lw6jlhek + 1 + OutParameter + + + fr.insee + lumrz70d-QOP-lw6jlhek + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vous parlait-" || ¤ltd23txo-GOP¤ || " dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lumrz70d-RDOP-lw6jlhek + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lw6er2dw + 1 + + LANGUE4_PAR2 + + + fr.insee + lw6er2dw-QOP-lw6epzej + 1 + + LANGUE4_PAR2 + + + + + fr.insee + lw6er2dw-RDOP-lw6epzej + 1 + OutParameter + + + fr.insee + lw6er2dw-QOP-lw6epzej + 1 + OutParameter + + + + + "Quelle est cette quatrième langue, dialecte ou patois ?" + + + + + fr.insee + lw6er2dw-RDOP-lw6epzej + 1 + + + + + fr.insee + lw6enpw6 + 1 + Instruction + + + + fr.insee + lumso5hv + 1 + + LANGUE4_PAR2L + + + fr.insee + lumso5hv-QOP-lumsrv1d + 1 + + LANGUE4_PAR2L + + + + + fr.insee + lumso5hv-RDOP-lumsrv1d + 1 + OutParameter + + + fr.insee + lumso5hv-QOP-lumsrv1d + 1 + OutParameter + + + + + "Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible." + + + + + fr.insee + lumso5hv-RDOP-lumsrv1d + 1 + + + + + + fr.insee + kwqhjfzk + 1 + + VIV_PAR2 + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + + VIV_PAR2 + + + + + fr.insee + kwqhjfzk-RDOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est-" || ¤ltd23txo-GOP¤ || " encore en vie [?](. "Pourquoi cette question ? +Pour savoir combien d’adultes ont encore leurs parents en vie.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqhjfzk-RDOP-kwqhv63j + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + kwqg35i9 + 1 + + ANNEE_DC_PAR2 + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + + ANNEE_DC_PAR2 + + + + + fr.insee + kwqg35i9-RDOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + + + "En quelle année environ " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " est-" || ¤ltd23txo-GOP¤ || " décédé" || ¤ltd1mklp-GOP¤ || " [?](. "Pourquoi cette question ? +Pour savoir à quel âge on devient orphelin et notamment identifier les personnes qui ont perdu leurs parents pendant leur enfance.")" + + + + YYYY + gYear + + 1880 + 2025 + + + fr.insee + kwqg35i9-RDOP-kwqg1sjf + 1 + + + + fr.insee + lyfjyqfg + 1 + Instruction + + + + fr.insee + lab6xfk9 + 1 + + LOG_PAR2B + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + + LOG_PAR2B + + + + + fr.insee + lab6xfk9-RDOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + kwqjgcfw + 1 + CodeList + + + fr.insee + lab6xfk9-RDOP-lab73lgn + 1 + + + fr.insee + kwqjgcfw + 1 + CodeList + + + + + + + + fr.insee + kwqgawqp + 1 + + FR_PAR2 + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + + FR_PAR2 + + + + + fr.insee + kwqgawqp-RDOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vit-" || ¤ltd23txo-GOP¤ || " en France [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents, et notamment identifier les personnes dont les parents vivent loin.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + kwqgawqp-RDOP-kwqgeipr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lai7elua + 1 + Instruction + + + + fr.insee + l4onk34z + 1 + + COM_PAR2 + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + + COM_PAR2 + + + + + fr.insee + l4onk34z-RDOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + + + "Dans quelle commune vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4onk34z-RDOP-llvz0ewe + 1 + + + + + fr.insee + m37bku4y + 1 + Instruction + + + + fr.insee + l4o8co0c + 1 + + DEP_PAR2 + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + + DEP_PAR2 + + + + + fr.insee + l4o8co0c-RDOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + + + "Dans quel département vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4o8co0c-RDOP-llvyr5wh + 1 + + + + + fr.insee + l4o87prg + 1 + Instruction + + + + fr.insee + l4o8dk7q + 1 + + PAY_PAR2 + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + + PAY_PAR2 + + + + + fr.insee + l4o8dk7q-RDOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + + + "Dans quel pays vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " ?" + + + + + fr.insee + l4o8dk7q-RDOP-llvyu3jn + 1 + + + + + fr.insee + l4o8fiwd + 1 + Instruction + + + + fr.insee + l2kkc8s9 + 1 + + ETAB_PAR2 + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + + ETAB_PAR2 + + + + + fr.insee + l2kkc8s9-RDOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " vit-" || ¤ltd23txo-GOP¤ || " dans un établissement pour personnes âgées (EHPAD, maison de retraite,...) [?](. "Pourquoi cette question ? +Pour savoir où vivent les parents d'un certain âge.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l2kkc8s9-RDOP-l2kkfxvm + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1gl4054 + 1 + + FREQ_VU_PAR2 + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + + FREQ_VU_PAR2 + + + + + fr.insee + l1gl4054-RDOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + + + "A quelle fréquence voyez-vous " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " (en face à face) [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1gl4054-RDOP-l1gl5e3e + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l1ezkbsf + 1 + + FREQ_CONT_PAR2 + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + + FREQ_CONT_PAR2 + + + + + fr.insee + l1ezkbsf-RDOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + + + "A quelle fréquence communiquez-vous avec " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " (téléphone, mail, SMS, appel vidéo, ...) [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + l1f65uvw + 1 + CodeList + + + fr.insee + l1ezkbsf-RDOP-l1ezevjd + 1 + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l445itcb + 1 + + PROX_EGO_PAR2 + + + fr.insee + l445itcb-QOP-l445hldo + 1 + + PROX_EGO_PAR2 + + + + + fr.insee + l445itcb-RDOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + + + "Vivez-vous à moins d'une heure de chez " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l445itcb-RDOP-l445hldo + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l4cjeqc0 + 1 + + PROX_FRAT_PAR2 + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + + PROX_FRAT_PAR2 + + + + + fr.insee + l4cjeqc0-RDOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + + + "" || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "Votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " a-t-" || ¤ltd23txo-GOP¤ || " d'autres enfants que vous qui vivent à moins d'une heure de chez" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then " lui ?" else " elle ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l4cjeqc0-RDOP-l4ciywxr + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l473kp51 + 1 + + NB_FRERES + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + + NB_FRERES + + + + + fr.insee + l473kp51-RDOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", combien de frère(s) (ou demi-frère(s)) avez-vous eu(s), qu'il(s) soi(en)t encore en vie ou non [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + 0 + 20 + + Decimal + + fr.insee + l473kp51-RDOP-l473rzw1 + 1 + + + + fr.insee + l8m20psg + 1 + Instruction + + + + fr.insee + l5ikk5zq + 1 + + NB_FRERES_VIV1 + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + + NB_FRERES_VIV1 + + + + + fr.insee + l5ikk5zq-RDOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + + + "Votre frère (ou demi-frère) est-il encore en vie [?](. "Pourquoi cette question ? +Pour connaître le réseau familial des personnes aujourd'hui.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ikk5zq-RDOP-l5iken9h + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l4740wd1 + 1 + + NB_FRERES_VIV + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + + NB_FRERES_VIV + + + + + fr.insee + l4740wd1-RDOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + + + "Combien sont encore en vie [?](. "Pourquoi cette question ? +Pour connaître le réseau familial des personnes aujourd’hui.")" + + + + + 0 + 20 + + Decimal + + fr.insee + l4740wd1-RDOP-l473vroh + 1 + + + + + fr.insee + l4742c2v + 1 + + NB_SOEURS + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + + NB_SOEURS + + + + + fr.insee + l4742c2v-RDOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + + + "Combien de soeur(s) (ou demi-soeur(s)) avez-vous eue(s), qu'elle(s) soi(en)t encore en vie ou non [?](. "Pourquoi cette question ? +Pour connaître l'environnement familial dans lequel les personnes ont grandi.")" + + + + + 0 + 20 + + Decimal + + fr.insee + l4742c2v-RDOP-l473q5ei + 1 + + + + fr.insee + l8m2azyh + 1 + Instruction + + + + fr.insee + l5ikyrbc + 1 + + NB_SOEURS_VIV1 + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + + NB_SOEURS_VIV1 + + + + + fr.insee + l5ikyrbc-RDOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + + + "Votre soeur (ou demi-soeur) est-elle encore en vie [?](. "Pourquoi cette question ? +Pour connaître le réseau familial des personnes aujourd'hui.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + l5ikyrbc-RDOP-l5ikxm9l + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + + fr.insee + l473w273 + 1 + + NB_SOEURS_VIV + + + fr.insee + l473w273-QOP-l4741u6l + 1 + + NB_SOEURS_VIV + + + + + fr.insee + l473w273-RDOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + + + "Combien sont encore en vie [?](. "Pourquoi cette question ? +Pour connaître le réseau familial des personnes aujourd’hui.")" + + + + + 0 + 20 + + Decimal + + fr.insee + l473w273-RDOP-l4741u6l + 1 + + + + + fr.insee + l1f5th3i + 1 + + AG_DEP_PARENT + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + + AG_DEP_PARENT + + + + + fr.insee + l1f5th3i-RDOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", à quel âge êtes-vous parti" || (if (¤TYPE_QUEST¤="2") then "e" else "") || " de chez " || (if (¤l5axrwsa-QOP-l5ay3o3r¤= "2") then "votre parent" else "vos parents") || " pour la première fois [?](. "Pourquoi cette question ? +Pour retracer les grandes étapes du passage à l’âge adulte.")" + + + + + 0 + 99 + + Decimal + + fr.insee + l1f5th3i-RDOP-l1f5ynl3 + 1 + + + + fr.insee + l1f5lf8v + 1 + Instruction + + + + fr.insee + l43ttd47 + 1 + + VECU_PLACE + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + + VECU_PLACE + + + + + fr.insee + l43ttd47-RDOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + + + "Avez-vous vécu sans vos parents à la suite d'une décision du juge, de l'ASE ou de la DDASS (placement en foyer, en famille d'accueil, chez une personne de la famille ou autre) [?](. "Pourquoi cette question ? +Pour mieux connaître le parcours de vie des personnes ayant vécu sans leurs parents pendant leur enfance.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l43ttd47-RDOP-l43tsfar + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1f65zkh + 1 + + HEBERG + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + + HEBERG + + + + + fr.insee + l1f65zkh-RDOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + + + "Au cours de votre vie, avez-vous été hébergé" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " dans un centre d'hébergement, un hôtel social, un centre d'accueil pour demandeurs d'asile ou réfugiés, ou avez-vous vécu à la rue [?](. "Pourquoi cette question ? +Pour mieux connaître le parcours de vie des personnes qui à un moment de leur vie n’ont pas eu de domicile.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1f65zkh-RDOP-l1f6bv9c + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g3unwh + 1 + + FINETU + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + + FINETU + + + + + fr.insee + l1g3unwh-RDOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + + + "" || (nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur")) || ", avez-vous terminé vos études [?](. "Pourquoi cette question ? +Pour retracer les grandes étapes du passage à l’âge adulte.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g3unwh-RDOP-l1g3npll + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + fr.insee + lletj5dq + 1 + Instruction + + + + fr.insee + l1g3yk6q + 1 + + ANNEE_FINETU + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + + ANNEE_FINETU + + + + + fr.insee + l1g3yk6q-RDOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + + + "En quelle année avez-vous terminé vos études ?" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l1g3yk6q-RDOP-l1g42814 + 1 + + + + fr.insee + lv6l5ubb + 1 + Instruction + + + + fr.insee + lv6kuuw3 + 1 + + AGE_FINETU + + + fr.insee + lv6kuuw3-QOP-lv6kx1xj + 1 + + AGE_FINETU + + + + + fr.insee + lv6kuuw3-RDOP-lv6kx1xj + 1 + OutParameter + + + fr.insee + lv6kuuw3-QOP-lv6kx1xj + 1 + OutParameter + + + + + "A quel âge avez-vous terminé vos études ?" + + + + + 10 + 100 + + Decimal + + fr.insee + lv6kuuw3-RDOP-lv6kx1xj + 1 + + + + fr.insee + m21m8r1b + 1 + Instruction + + + + fr.insee + l445x7tq + 1 + + TRAVACT + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + + TRAVACT + + + + + fr.insee + l445x7tq-RDOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + + + "Travaillez-vous actuellement [?](. "Pourquoi cette question ? +Pour étudier le lien entre vie professionnelle et vie familiale.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l445x7tq-RDOP-l445yz7o + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g7pgbn + 1 + + DEJATRAV1 + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + + DEJATRAV1 + + + + + fr.insee + l1g7pgbn-RDOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + + + "En tenant compte de votre emploi actuel, avez-vous déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage [?](. "Pourquoi cette question ? +Pour étudier le lien entre vie professionnelle et vie familiale.")" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + l1g7pgbn-RDOP-l1g7tm7z + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + lumnhjfi + 1 + + DEJATRAV2 + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + + DEJATRAV2 + + + + + fr.insee + lumnhjfi-RDOP-lumna927 + 1 + OutParameter + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + + + "Avez-vous cependant déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage ?" + + + + radio-button + + fr.insee + kwqa6qr6 + 1 + CodeList + + + fr.insee + lumnhjfi-RDOP-lumna927 + 1 + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + + + fr.insee + l1g4pid1 + 1 + + ANNEE_EMPLOI1 + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + + ANNEE_EMPLOI1 + + + + + fr.insee + l1g4pid1-RDOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + + + "En quelle année avez-vous commencé à travailler pendant au moins trois mois de suite, y compris en apprentissage [?](. "Pourquoi cette question ? +Pour retracer les grandes étapes du passage à l’âge adulte.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l1g4pid1-RDOP-l1g4r0qn + 1 + + + + fr.insee + lyfjaey7 + 1 + Instruction + + + + fr.insee + lv6l9f59 + 1 + + AGE_EMPLOI1 + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + + AGE_EMPLOI1 + + + + + fr.insee + lv6l9f59-RDOP-lv6kxbrh + 1 + OutParameter + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + OutParameter + + + + + "A quel âge avez-vous commencé à travailler pendant au moins trois mois de suite, y compris en apprentissage [?](. "Pourquoi cette question ? +Pour retracer les grandes étapes du passage à l’âge adulte.")" + + + + + 10 + 100 + + Decimal + + fr.insee + lv6l9f59-RDOP-lv6kxbrh + 1 + + + + + fr.insee + l1g7iu0j + 1 + + ANNEE_FINEMP + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + + ANNEE_FINEMP + + + + + fr.insee + l1g7iu0j-RDOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + + + "En quelle année avez-vous travaillé pour la dernière fois [?](. "Pourquoi cette question ? +Pour étudier le lien entre vie professionnelle et vie familiale.")" + + + + YYYY + gYear + + 1920 + 2025 + + + fr.insee + l1g7iu0j-RDOP-l1g7p8dq + 1 + + + + fr.insee + lv6mopqc + 1 + Instruction + + + + fr.insee + lv6m34hz + 1 + + AGE_FINEMP + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + + AGE_FINEMP + + + + + fr.insee + lv6m34hz-RDOP-lv6meoaj + 1 + OutParameter + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + OutParameter + + + + + "A quel âge avez-vous travaillé pour la dernière fois [?](. "Pourquoi cette question ? +Pour étudier le lien entre vie professionnelle et vie familiale.")" + + + + + 10 + 100 + + Decimal + + fr.insee + lv6m34hz-RDOP-lv6meoaj + 1 + + + + + fr.insee + ljwxkrnl + 1 + + PRENOM_FIN + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + + PRENOM_FIN + + + + + fr.insee + ljwxkrnl-RDOP-ljwxfacv + 1 + OutParameter + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + + + "Pouvez-vous indiquer qui a répondu au questionnaire [?](. "Pourquoi cette question ? +Pour permettre une meilleure analyse des réponses.")" + + + + radio-button + + fr.insee + ljwxdg2x + 1 + CodeList + + + fr.insee + ljwxkrnl-RDOP-ljwxfacv + 1 + + + fr.insee + ljwxdg2x + 1 + CodeList + + + + + + + + fr.insee + lamjnyx4 + 1 + + PRENOM_PROX + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + + PRENOM_PROX + + + + + fr.insee + lamjnyx4-RDOP-lamjnllg + 1 + OutParameter + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + OutParameter + + + + + "Quel est le prénom de la personne qui a répondu à ce questionnaire ?" + + + + + fr.insee + lamjnyx4-RDOP-lamjnllg + 1 + + + + + + fr.insee + ly4bmrhf + 1 + + POSTENQ + + + fr.insee + ly4bmrhf-QOP-ly4c2yfu + 1 + + POSTENQ + + + + + fr.insee + ly4bmrhf-RDOP-ly4c2yfu + 1 + OutParameter + + + fr.insee + ly4bmrhf-QOP-ly4c2yfu + 1 + OutParameter + + + + + "Nous vous remercions vivement pour votre réponse à l'enquête. +Il est prévu de permettre à des chercheurs (sociologues ou démographes) de contacter certains répondants pour approfondir certains sujets abordés dans l’enquête. Ces entretiens auront lieu dans quelques mois. +Accepteriez-vous d’être éventuellement contacté" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " pour un entretien complémentaire [?](. "Pourquoi cette question ? +Pour obtenir votre accord pour pouvoir transmettre vos coordonnées à un chercheur qui souhaiterait approfondir certains thèmes de l’enquête. +Les chercheurs concernés seront sélectionnés et s’engageront à respecter le secret statistique.")" + + + + radio-button + + fr.insee + l4onk0te + 1 + CodeList + + + fr.insee + ly4bmrhf-RDOP-ly4c2yfu + 1 + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + + fr.insee + m0ksxw7d + 1 + Instruction + + + + fr.insee + m0ksqayr + 1 + + POSTENQ_MAIL + + + fr.insee + m0ksqayr-QOP-m0kt9h7i + 1 + + POSTENQ_MAIL + + + + + fr.insee + m0ksqayr-RDOP-m0kt9h7i + 1 + OutParameter + + + fr.insee + m0ksqayr-QOP-m0kt9h7i + 1 + OutParameter + + + + + "Sur quelle adresse mail souhaitez-vous que le chercheur vous écrive ?" + + + + + fr.insee + m0ksqayr-RDOP-m0kt9h7i + 1 + + + + + fr.insee + m0ksxrza + 1 + Instruction + + + + fr.insee + m0kss4a5 + 1 + + POSTENQ_TEL + + + fr.insee + m0kss4a5-QOP-m0kt7yo5 + 1 + + POSTENQ_TEL + + + + + fr.insee + m0kss4a5-RDOP-m0kt7yo5 + 1 + OutParameter + + + fr.insee + m0kss4a5-QOP-m0kt7yo5 + 1 + OutParameter + + + + + "A quel(s) numéro(s) de téléphone souhaitez-vous que le chercheur vous appelle ?" + + + + + fr.insee + m0kss4a5-RDOP-m0kt7yo5 + 1 + + + + + fr.insee + m0kta94l + 1 + Instruction + + + + fr.insee + l43xg8do + 1 + + ENF21_AUTPAR_C + + + fr.insee + l43xg8do-QOP-lv2h4pt2 + 1 + + ENF21_AUTPAR_C1 + + + + fr.insee + l43xg8do-QOP-lv2hb16f + 1 + + ENF21_AUTPAR_C2 + + + + fr.insee + l43xg8do-QOP-lv2h4sxw + 1 + + ENF21_AUTPAR_C3 + + + + fr.insee + l43xg8do-QOP-lv2h9xib + 1 + + ENF21_AUTPAR_C4 + + + + + fr.insee + l43xg8do-RDOP-lv2h4pt2 + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lv2h4pt2 + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lv2hb16f + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lv2hb16f + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lv2h4sxw + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lv2h4sxw + 1 + OutParameter + + + + + fr.insee + l43xg8do-RDOP-lv2h9xib + 1 + OutParameter + + + fr.insee + l43xg8do-QOP-lv2h9xib + 1 + OutParameter + + + + + "" || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (((if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "Votre conjoint" else "Votre conjointe"))) else ¤l34grb6h-QOP-l34guyz9¤) || " a-t-" || (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "il" else "elle") || " des enfants de moins de 21 ans qui vivent avec leur autre parent [?](. "Pourquoi cette question ? +Pour savoir comment se (re)construisent les familles. +Cette information est essentielle pour comprendre les situations familiales d’aujourd’hui.")" + + + + + + fr.insee + l43x5eph + 1 + CodeList + + + + + + + + fr.insee + l43xg8do-RDOP-lv2h4pt2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lv2hb16f + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lv2h4sxw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43xg8do-RDOP-lv2h9xib + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l484uyl9 + 1 + Instruction + + + + fr.insee + l1g3hka7 + 1 + + FREQ_VU_PETIT_ENF + + + fr.insee + l1g3hka7-QOP-lyset8xu + 1 + + FREQ_VU_PETIT_ENF1 + + + + fr.insee + l1g3hka7-QOP-lysf9ivz + 1 + + FREQ_VU_PETIT_ENF2 + + + + fr.insee + l1g3hka7-QOP-lysexinp + 1 + + FREQ_VU_PETIT_ENF3 + + + + fr.insee + l1g3hka7-QOP-lysfb2lu + 1 + + FREQ_VU_PETIT_ENF4 + + + + + fr.insee + l1g3hka7-RDOP-lyset8xu + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-lyset8xu + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-lysf9ivz + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-lysf9ivz + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-lysexinp + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-lysexinp + 1 + OutParameter + + + + + fr.insee + l1g3hka7-RDOP-lysfb2lu + 1 + OutParameter + + + fr.insee + l1g3hka7-QOP-lysfb2lu + 1 + OutParameter + + + + + "En moyenne, à quelle fréquence voyez-vous " || (if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "vos petits-enfants" else "votre petit-enfant") || " (en face à face) [?](. "Pourquoi cette question ? +Pour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s).")" + + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l1g3hka7-RDOP-lyset8xu + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-lysf9ivz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-lysexinp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g3hka7-RDOP-lysfb2lu + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g3k3v5 + 1 + Instruction + + + + fr.insee + l1f4yrno + 1 + + FREQ_CONT_PETIT_ENF + + + fr.insee + l1f4yrno-QOP-lysew1yw + 1 + + FREQ_CONT_PETIT_ENF1 + + + + fr.insee + l1f4yrno-QOP-lysf8y6x + 1 + + FREQ_CONT_PETIT_ENF2 + + + + fr.insee + l1f4yrno-QOP-lysf9t6e + 1 + + FREQ_CONT_PETIT_ENF3 + + + + fr.insee + l1f4yrno-QOP-lysf9j6m + 1 + + FREQ_CONT_PETIT_ENF4 + + + + + fr.insee + l1f4yrno-RDOP-lysew1yw + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-lysew1yw + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-lysf8y6x + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-lysf8y6x + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-lysf9t6e + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-lysf9t6e + 1 + OutParameter + + + + + fr.insee + l1f4yrno-RDOP-lysf9j6m + 1 + OutParameter + + + fr.insee + l1f4yrno-QOP-lysf9j6m + 1 + OutParameter + + + + + "En moyenne, à quelle fréquence communiquez-vous à distance avec " || (if (cast(¤l1f6dz1j-QOP-l1f6aqky¤,integer)>1 or isnull(¤l1f6dz1j-QOP-l1f6aqky¤)) then "vos petits-enfants" else "votre petit-enfant") || " (téléphone, mail, SMS, appel vidéo...) [?](. "Pourquoi cette question ? +Pour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s).")" + + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + + + fr.insee + l1f4yrno-RDOP-lysew1yw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-lysf8y6x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-lysf9t6e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f4yrno-RDOP-lysf9j6m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g3h5xf + 1 + Instruction + + + + fr.insee + l1g87t8t + 1 + + AIDE_APPORT + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + + AIDE_APPORT1 + + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + + AIDE_APPORT2 + + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + + AIDE_APPORT3 + + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + + AIDE_APPORT4 + + + + fr.insee + l1g87t8t-QOP-m0ksa9qw + 1 + + AIDE_APPORT5 + + + + + fr.insee + l1g87t8t-RDOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-m0krzzyv + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-m0kscf0p + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + + + fr.insee + l1g87t8t-RDOP-m0ksa9qw + 1 + OutParameter + + + fr.insee + l1g87t8t-QOP-m0ksa9qw + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", en raison de leur état de santé, d'un handicap ou d'une difficulté liée à un âge avancé, apportez-vous régulièrement une aide à une ou plusieurs personnes de votre famille (parent(s)" || (if (isnull(¤kwq9y19w-QOP-kwq9xmzm¤) or ¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then ", conjoint(e)" else "") || "," || (if (isnull(¤kwqigxtx-QOP-kwqianb6¤) or ¤kwqigxtx-QOP-kwqianb6¤="1") then " enfant(s)...)" else " ...)") || " [?](. "Pourquoi cette question ? +Pour connaître les aides au sein de la famille.")" + + + + + + fr.insee + l1g8605s + 1 + CodeList + + + + + + + + fr.insee + l1g87t8t-RDOP-m0ks2t7e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-m0krzzyv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-m0kscf0p + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-m0ks1bw3 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g87t8t-RDOP-m0ksa9qw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g850jr + 1 + Instruction + + + + fr.insee + l1ggssgl + 1 + + QUI_AID_APP_1A + + + fr.insee + l1ggssgl-QOP-m23czf6s + 1 + + QUI_AID_APP_1A1 + + + + fr.insee + l1ggssgl-QOP-m23cq2u1 + 1 + + QUI_AID_APP_1A2 + + + + fr.insee + l1ggssgl-QOP-m23cod6m + 1 + + QUI_AID_APP_1A3 + + + + fr.insee + l1ggssgl-QOP-m23ch75l + 1 + + QUI_AID_APP_1A4 + + + + + fr.insee + l1ggssgl-RDOP-m23czf6s + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-m23czf6s + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-m23cq2u1 + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-m23cq2u1 + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-m23cod6m + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-m23cod6m + 1 + OutParameter + + + + + fr.insee + l1ggssgl-RDOP-m23ch75l + 1 + OutParameter + + + fr.insee + l1ggssgl-QOP-m23ch75l + 1 + OutParameter + + + + + "A qui apportez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggssgl-RDOP-m23czf6s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-m23cq2u1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-m23cod6m + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggssgl-RDOP-m23ch75l + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggjolj + 1 + Instruction + + + + fr.insee + lw7u5rox + 1 + + QUI_AID_APP_1B + + + fr.insee + lw7u5rox-QOP-m23cqwzh + 1 + + QUI_AID_APP_1B1 + + + + fr.insee + lw7u5rox-QOP-m23cy792 + 1 + + QUI_AID_APP_1B2 + + + + fr.insee + lw7u5rox-QOP-m23cpqpj + 1 + + QUI_AID_APP_1B3 + + + + + fr.insee + lw7u5rox-RDOP-m23cqwzh + 1 + OutParameter + + + fr.insee + lw7u5rox-QOP-m23cqwzh + 1 + OutParameter + + + + + fr.insee + lw7u5rox-RDOP-m23cy792 + 1 + OutParameter + + + fr.insee + lw7u5rox-QOP-m23cy792 + 1 + OutParameter + + + + + fr.insee + lw7u5rox-RDOP-m23cpqpj + 1 + OutParameter + + + fr.insee + lw7u5rox-QOP-m23cpqpj + 1 + OutParameter + + + + + "A qui apportez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7u5rox-RDOP-m23cqwzh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7u5rox-RDOP-m23cy792 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7u5rox-RDOP-m23cpqpj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7u9156 + 1 + Instruction + + + + fr.insee + lw7tzp47 + 1 + + QUI_AID_APP_1C + + + fr.insee + lw7tzp47-QOP-m23ctpym + 1 + + QUI_AID_APP_1C1 + + + + fr.insee + lw7tzp47-QOP-m23chyj6 + 1 + + QUI_AID_APP_1C2 + + + + fr.insee + lw7tzp47-QOP-m23cjnkj + 1 + + QUI_AID_APP_1C3 + + + + + fr.insee + lw7tzp47-RDOP-m23ctpym + 1 + OutParameter + + + fr.insee + lw7tzp47-QOP-m23ctpym + 1 + OutParameter + + + + + fr.insee + lw7tzp47-RDOP-m23chyj6 + 1 + OutParameter + + + fr.insee + lw7tzp47-QOP-m23chyj6 + 1 + OutParameter + + + + + fr.insee + lw7tzp47-RDOP-m23cjnkj + 1 + OutParameter + + + fr.insee + lw7tzp47-QOP-m23cjnkj + 1 + OutParameter + + + + + "A qui apportez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7tzp47-RDOP-m23ctpym + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7tzp47-RDOP-m23chyj6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7tzp47-RDOP-m23cjnkj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7tyeij + 1 + Instruction + + + + fr.insee + lw7u3zby + 1 + + QUI_AID_APP_1D + + + fr.insee + lw7u3zby-QOP-m23couft + 1 + + QUI_AID_APP_1D1 + + + + fr.insee + lw7u3zby-QOP-m23coud5 + 1 + + QUI_AID_APP_1D2 + + + + + fr.insee + lw7u3zby-RDOP-m23couft + 1 + OutParameter + + + fr.insee + lw7u3zby-QOP-m23couft + 1 + OutParameter + + + + + fr.insee + lw7u3zby-RDOP-m23coud5 + 1 + OutParameter + + + fr.insee + lw7u3zby-QOP-m23coud5 + 1 + OutParameter + + + + + "A qui apportez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7u3zby-RDOP-m23couft + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7u3zby-RDOP-m23coud5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7uhfpt + 1 + Instruction + + + + fr.insee + l1ggm06b + 1 + + QUI_AID_APP_2A + + + fr.insee + l1ggm06b-QOP-m23cy63o + 1 + + QUI_AID_APP_2A1 + + + + fr.insee + l1ggm06b-QOP-m23clw9y + 1 + + QUI_AID_APP_2A2 + + + + fr.insee + l1ggm06b-QOP-m23cpj0g + 1 + + QUI_AID_APP_2A3 + + + + fr.insee + l1ggm06b-QOP-m23cs9lm + 1 + + QUI_AID_APP_2A4 + + + + + fr.insee + l1ggm06b-RDOP-m23cy63o + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-m23cy63o + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-m23clw9y + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-m23clw9y + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-m23cpj0g + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-m23cpj0g + 1 + OutParameter + + + + + fr.insee + l1ggm06b-RDOP-m23cs9lm + 1 + OutParameter + + + fr.insee + l1ggm06b-QOP-m23cs9lm + 1 + OutParameter + + + + + "A qui apportez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggm06b-RDOP-m23cy63o + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-m23clw9y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-m23cpj0g + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggm06b-RDOP-m23cs9lm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggq5nj + 1 + Instruction + + + + fr.insee + lw7vzo64 + 1 + + QUI_AID_APP_2B + + + fr.insee + lw7vzo64-QOP-m23cpjyf + 1 + + QUI_AID_APP_2B1 + + + + fr.insee + lw7vzo64-QOP-m23cflls + 1 + + QUI_AID_APP_2B2 + + + + fr.insee + lw7vzo64-QOP-m23cm1g1 + 1 + + QUI_AID_APP_2B3 + + + + + fr.insee + lw7vzo64-RDOP-m23cpjyf + 1 + OutParameter + + + fr.insee + lw7vzo64-QOP-m23cpjyf + 1 + OutParameter + + + + + fr.insee + lw7vzo64-RDOP-m23cflls + 1 + OutParameter + + + fr.insee + lw7vzo64-QOP-m23cflls + 1 + OutParameter + + + + + fr.insee + lw7vzo64-RDOP-m23cm1g1 + 1 + OutParameter + + + fr.insee + lw7vzo64-QOP-m23cm1g1 + 1 + OutParameter + + + + + "A qui apportez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7vzo64-RDOP-m23cpjyf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7vzo64-RDOP-m23cflls + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7vzo64-RDOP-m23cm1g1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7vvhgi + 1 + Instruction + + + + fr.insee + lw7w4b79 + 1 + + QUI_AID_APP_2C + + + fr.insee + lw7w4b79-QOP-m23cwdhi + 1 + + QUI_AID_APP_2C1 + + + + fr.insee + lw7w4b79-QOP-m23cqhne + 1 + + QUI_AID_APP_2C2 + + + + fr.insee + lw7w4b79-QOP-m23cq935 + 1 + + QUI_AID_APP_2C3 + + + + + fr.insee + lw7w4b79-RDOP-m23cwdhi + 1 + OutParameter + + + fr.insee + lw7w4b79-QOP-m23cwdhi + 1 + OutParameter + + + + + fr.insee + lw7w4b79-RDOP-m23cqhne + 1 + OutParameter + + + fr.insee + lw7w4b79-QOP-m23cqhne + 1 + OutParameter + + + + + fr.insee + lw7w4b79-RDOP-m23cq935 + 1 + OutParameter + + + fr.insee + lw7w4b79-QOP-m23cq935 + 1 + OutParameter + + + + + "A qui apportez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7w4b79-RDOP-m23cwdhi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w4b79-RDOP-m23cqhne + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w4b79-RDOP-m23cq935 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wa2u6 + 1 + Instruction + + + + fr.insee + lw7w7lh9 + 1 + + QUI_AID_APP_2D + + + fr.insee + lw7w7lh9-QOP-m23cmpju + 1 + + QUI_AID_APP_2D1 + + + + fr.insee + lw7w7lh9-QOP-m23ctsr1 + 1 + + QUI_AID_APP_2D2 + + + + + fr.insee + lw7w7lh9-RDOP-m23cmpju + 1 + OutParameter + + + fr.insee + lw7w7lh9-QOP-m23cmpju + 1 + OutParameter + + + + + fr.insee + lw7w7lh9-RDOP-m23ctsr1 + 1 + OutParameter + + + fr.insee + lw7w7lh9-QOP-m23ctsr1 + 1 + OutParameter + + + + + "A qui apportez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7w7lh9-RDOP-m23cmpju + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w7lh9-RDOP-m23ctsr1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7vyoea + 1 + Instruction + + + + fr.insee + l1ggtznr + 1 + + QUI_AID_APP_3A + + + fr.insee + l1ggtznr-QOP-m23cnl9o + 1 + + QUI_AID_APP_3A1 + + + + fr.insee + l1ggtznr-QOP-m23cnawi + 1 + + QUI_AID_APP_3A2 + + + + fr.insee + l1ggtznr-QOP-m23cyjky + 1 + + QUI_AID_APP_3A3 + + + + fr.insee + l1ggtznr-QOP-m23cxrro + 1 + + QUI_AID_APP_3A4 + + + + + fr.insee + l1ggtznr-RDOP-m23cnl9o + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-m23cnl9o + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-m23cnawi + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-m23cnawi + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-m23cyjky + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-m23cyjky + 1 + OutParameter + + + + + fr.insee + l1ggtznr-RDOP-m23cxrro + 1 + OutParameter + + + fr.insee + l1ggtznr-QOP-m23cxrro + 1 + OutParameter + + + + + "A qui apportez-vous ce soutien moral ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggtznr-RDOP-m23cnl9o + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-m23cnawi + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-m23cyjky + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggtznr-RDOP-m23cxrro + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggjqp6 + 1 + Instruction + + + + fr.insee + lw7w2d1u + 1 + + QUI_AID_APP_3B + + + fr.insee + lw7w2d1u-QOP-m23cvmpn + 1 + + QUI_AID_APP_3B1 + + + + fr.insee + lw7w2d1u-QOP-m23cr5wt + 1 + + QUI_AID_APP_3B2 + + + + fr.insee + lw7w2d1u-QOP-m23cunxx + 1 + + QUI_AID_APP_3B3 + + + + + fr.insee + lw7w2d1u-RDOP-m23cvmpn + 1 + OutParameter + + + fr.insee + lw7w2d1u-QOP-m23cvmpn + 1 + OutParameter + + + + + fr.insee + lw7w2d1u-RDOP-m23cr5wt + 1 + OutParameter + + + fr.insee + lw7w2d1u-QOP-m23cr5wt + 1 + OutParameter + + + + + fr.insee + lw7w2d1u-RDOP-m23cunxx + 1 + OutParameter + + + fr.insee + lw7w2d1u-QOP-m23cunxx + 1 + OutParameter + + + + + "A qui apportez-vous ce soutien moral ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7w2d1u-RDOP-m23cvmpn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w2d1u-RDOP-m23cr5wt + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w2d1u-RDOP-m23cunxx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7w6t91 + 1 + Instruction + + + + fr.insee + lw7w9t0f + 1 + + QUI_AID_APP_3C + + + fr.insee + lw7w9t0f-QOP-m23cnzvc + 1 + + QUI_AID_APP_3C1 + + + + fr.insee + lw7w9t0f-QOP-m23czjsl + 1 + + QUI_AID_APP_3C2 + + + + fr.insee + lw7w9t0f-QOP-m23csrk4 + 1 + + QUI_AID_APP_3C3 + + + + + fr.insee + lw7w9t0f-RDOP-m23cnzvc + 1 + OutParameter + + + fr.insee + lw7w9t0f-QOP-m23cnzvc + 1 + OutParameter + + + + + fr.insee + lw7w9t0f-RDOP-m23czjsl + 1 + OutParameter + + + fr.insee + lw7w9t0f-QOP-m23czjsl + 1 + OutParameter + + + + + fr.insee + lw7w9t0f-RDOP-m23csrk4 + 1 + OutParameter + + + fr.insee + lw7w9t0f-QOP-m23csrk4 + 1 + OutParameter + + + + + "A qui apportez-vous ce soutien moral ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7w9t0f-RDOP-m23cnzvc + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w9t0f-RDOP-m23czjsl + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w9t0f-RDOP-m23csrk4 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wcsbh + 1 + Instruction + + + + fr.insee + lw7w2fuz + 1 + + QUI_AID_APP_3D + + + fr.insee + lw7w2fuz-QOP-m23cjrgd + 1 + + QUI_AID_APP_3D1 + + + + fr.insee + lw7w2fuz-QOP-m23cjbmj + 1 + + QUI_AID_APP_3D2 + + + + + fr.insee + lw7w2fuz-RDOP-m23cjrgd + 1 + OutParameter + + + fr.insee + lw7w2fuz-QOP-m23cjrgd + 1 + OutParameter + + + + + fr.insee + lw7w2fuz-RDOP-m23cjbmj + 1 + OutParameter + + + fr.insee + lw7w2fuz-QOP-m23cjbmj + 1 + OutParameter + + + + + "A qui apportez-vous ce soutien moral ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7w2fuz-RDOP-m23cjrgd + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7w2fuz-RDOP-m23cjbmj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wjiyq + 1 + Instruction + + + + fr.insee + l4lf0y9m + 1 + + QUI_AID_APP_4A + + + fr.insee + l4lf0y9m-QOP-m23cxxl5 + 1 + + QUI_AID_APP_4A1 + + + + fr.insee + l4lf0y9m-QOP-m23ci6zz + 1 + + QUI_AID_APP_4A2 + + + + fr.insee + l4lf0y9m-QOP-m23cxirx + 1 + + QUI_AID_APP_4A3 + + + + fr.insee + l4lf0y9m-QOP-m23cza8y + 1 + + QUI_AID_APP_4A4 + + + + + fr.insee + l4lf0y9m-RDOP-m23cxxl5 + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-m23cxxl5 + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-m23ci6zz + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-m23ci6zz + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-m23cxirx + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-m23cxirx + 1 + OutParameter + + + + + fr.insee + l4lf0y9m-RDOP-m23cza8y + 1 + OutParameter + + + fr.insee + l4lf0y9m-QOP-m23cza8y + 1 + OutParameter + + + + + "De qui êtes-vous " || if (¤TYPE_QUEST¤="1") then " tuteur ou curateur ?" else " tutrice ou curatrice ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l4lf0y9m-RDOP-m23cxxl5 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-m23ci6zz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-m23cxirx + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l4lf0y9m-RDOP-m23cza8y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l4lfdg0x + 1 + Instruction + + + + fr.insee + lw7wj733 + 1 + + QUI_AID_APP_4B + + + fr.insee + lw7wj733-QOP-m23cwime + 1 + + QUI_AID_APP_4B1 + + + + fr.insee + lw7wj733-QOP-m23cu578 + 1 + + QUI_AID_APP_4B2 + + + + fr.insee + lw7wj733-QOP-m23cllwq + 1 + + QUI_AID_APP_4B3 + + + + + fr.insee + lw7wj733-RDOP-m23cwime + 1 + OutParameter + + + fr.insee + lw7wj733-QOP-m23cwime + 1 + OutParameter + + + + + fr.insee + lw7wj733-RDOP-m23cu578 + 1 + OutParameter + + + fr.insee + lw7wj733-QOP-m23cu578 + 1 + OutParameter + + + + + fr.insee + lw7wj733-RDOP-m23cllwq + 1 + OutParameter + + + fr.insee + lw7wj733-QOP-m23cllwq + 1 + OutParameter + + + + + "De qui êtes-vous " || if (¤TYPE_QUEST¤="1") then " tuteur ou curateur ?" else " tutrice ou curatrice ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7wj733-RDOP-m23cwime + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7wj733-RDOP-m23cu578 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7wj733-RDOP-m23cllwq + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wrt9b + 1 + Instruction + + + + fr.insee + lw7wk34s + 1 + + QUI_AID_APP_4C + + + fr.insee + lw7wk34s-QOP-m23ckv5p + 1 + + QUI_AID_APP_4C1 + + + + fr.insee + lw7wk34s-QOP-m23cp9bk + 1 + + QUI_AID_APP_4C2 + + + + fr.insee + lw7wk34s-QOP-m23cf0ox + 1 + + QUI_AID_APP_4C3 + + + + + fr.insee + lw7wk34s-RDOP-m23ckv5p + 1 + OutParameter + + + fr.insee + lw7wk34s-QOP-m23ckv5p + 1 + OutParameter + + + + + fr.insee + lw7wk34s-RDOP-m23cp9bk + 1 + OutParameter + + + fr.insee + lw7wk34s-QOP-m23cp9bk + 1 + OutParameter + + + + + fr.insee + lw7wk34s-RDOP-m23cf0ox + 1 + OutParameter + + + fr.insee + lw7wk34s-QOP-m23cf0ox + 1 + OutParameter + + + + + "De qui êtes-vous " || if (¤TYPE_QUEST¤="1") then " tuteur ou curateur ?" else " tutrice ou curatrice ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7wk34s-RDOP-m23ckv5p + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7wk34s-RDOP-m23cp9bk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7wk34s-RDOP-m23cf0ox + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wuhf2 + 1 + Instruction + + + + fr.insee + lw7wj3l9 + 1 + + QUI_AID_APP_4D + + + fr.insee + lw7wj3l9-QOP-m23cpbu6 + 1 + + QUI_AID_APP_4D1 + + + + fr.insee + lw7wj3l9-QOP-m23ct687 + 1 + + QUI_AID_APP_4D2 + + + + + fr.insee + lw7wj3l9-RDOP-m23cpbu6 + 1 + OutParameter + + + fr.insee + lw7wj3l9-QOP-m23cpbu6 + 1 + OutParameter + + + + + fr.insee + lw7wj3l9-RDOP-m23ct687 + 1 + OutParameter + + + fr.insee + lw7wj3l9-QOP-m23ct687 + 1 + OutParameter + + + + + "De qui êtes-vous " || if (¤TYPE_QUEST¤="1") then " tuteur ou curateur ?" else " tutrice ou curatrice ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7wj3l9-RDOP-m23cpbu6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7wj3l9-RDOP-m23ct687 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7wrgir + 1 + Instruction + + + + fr.insee + l1g8o84g + 1 + + AIDE_RECUE + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + + AIDE_RECUE1 + + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + + AIDE_RECUE2 + + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + + AIDE_RECUE3 + + + + fr.insee + l1g8o84g-QOP-lpsf9f4v + 1 + + AIDE_RECUE4 + + + + + fr.insee + l1g8o84g-RDOP-lpsffede + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + + + fr.insee + l1g8o84g-RDOP-lpsf9f4v + 1 + OutParameter + + + fr.insee + l1g8o84g-QOP-lpsf9f4v + 1 + OutParameter + + + + + "" || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") || ", en raison de votre état de santé, d'un handicap" || (if cast(¤ltd24u2k-GOP¤,integer) >=55 then " ou d'une difficulté liée à un âge avancé" else "") || ", recevez-vous régulièrement de l'aide d'une ou plusieurs personnes de votre famille (parent(s)" || (if (isnull(¤kwq9y19w-QOP-kwq9xmzm¤) or ¤kwq9y19w-QOP-kwq9xmzm¤="1" or ¤kwq9y19w-QOP-kwq9xmzm¤="2") then ", conjoint(e)" else "") || "," || (if (isnull(¤kwqigxtx-QOP-kwqianb6¤) or ¤kwqigxtx-QOP-kwqianb6¤="1") then " enfant(s)...)" else " ...)") || " [?](. "Pourquoi cette question ? +Pour connaître les aides au sein de la famille.")" + + + + + + fr.insee + l6c3qpag + 1 + CodeList + + + + + + + + fr.insee + l1g8o84g-RDOP-lpsffede + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lpsfeu8x + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lpsf8tbp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g8o84g-RDOP-lpsf9f4v + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1g8hmv7 + 1 + Instruction + + + + fr.insee + l1ggpjd7 + 1 + + QUI_AID_REC_1A + + + fr.insee + l1ggpjd7-QOP-m23cls04 + 1 + + QUI_AID_REC_1A1 + + + + fr.insee + l1ggpjd7-QOP-m23cv59e + 1 + + QUI_AID_REC_1A2 + + + + fr.insee + l1ggpjd7-QOP-m23ci2xl + 1 + + QUI_AID_REC_1A3 + + + + fr.insee + l1ggpjd7-QOP-m23cn8ns + 1 + + QUI_AID_REC_1A4 + + + + + fr.insee + l1ggpjd7-RDOP-m23cls04 + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-m23cls04 + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-m23cv59e + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-m23cv59e + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-m23ci2xl + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-m23ci2xl + 1 + OutParameter + + + + + fr.insee + l1ggpjd7-RDOP-m23cn8ns + 1 + OutParameter + + + fr.insee + l1ggpjd7-QOP-m23cn8ns + 1 + OutParameter + + + + + "De qui recevez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggpjd7-RDOP-m23cls04 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-m23cv59e + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-m23ci2xl + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggpjd7-RDOP-m23cn8ns + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggnslo + 1 + Instruction + + + + fr.insee + lw7yo1jt + 1 + + QUI_AID_REC_1B + + + fr.insee + lw7yo1jt-QOP-m23cezw9 + 1 + + QUI_AID_REC_1B1 + + + + fr.insee + lw7yo1jt-QOP-m23cycg0 + 1 + + QUI_AID_REC_1B2 + + + + fr.insee + lw7yo1jt-QOP-m23cwiht + 1 + + QUI_AID_REC_1B3 + + + + + fr.insee + lw7yo1jt-RDOP-m23cezw9 + 1 + OutParameter + + + fr.insee + lw7yo1jt-QOP-m23cezw9 + 1 + OutParameter + + + + + fr.insee + lw7yo1jt-RDOP-m23cycg0 + 1 + OutParameter + + + fr.insee + lw7yo1jt-QOP-m23cycg0 + 1 + OutParameter + + + + + fr.insee + lw7yo1jt-RDOP-m23cwiht + 1 + OutParameter + + + fr.insee + lw7yo1jt-QOP-m23cwiht + 1 + OutParameter + + + + + "De qui recevez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7yo1jt-RDOP-m23cezw9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yo1jt-RDOP-m23cycg0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yo1jt-RDOP-m23cwiht + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7yee2v + 1 + Instruction + + + + fr.insee + lw7y7vqk + 1 + + QUI_AID_REC_1C + + + fr.insee + lw7y7vqk-QOP-m23cof6s + 1 + + QUI_AID_REC_1C1 + + + + fr.insee + lw7y7vqk-QOP-m23cryfz + 1 + + QUI_AID_REC_1C2 + + + + fr.insee + lw7y7vqk-QOP-m23chx84 + 1 + + QUI_AID_REC_1C3 + + + + + fr.insee + lw7y7vqk-RDOP-m23cof6s + 1 + OutParameter + + + fr.insee + lw7y7vqk-QOP-m23cof6s + 1 + OutParameter + + + + + fr.insee + lw7y7vqk-RDOP-m23cryfz + 1 + OutParameter + + + fr.insee + lw7y7vqk-QOP-m23cryfz + 1 + OutParameter + + + + + fr.insee + lw7y7vqk-RDOP-m23chx84 + 1 + OutParameter + + + fr.insee + lw7y7vqk-QOP-m23chx84 + 1 + OutParameter + + + + + "De qui recevez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7y7vqk-RDOP-m23cof6s + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7y7vqk-RDOP-m23cryfz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7y7vqk-RDOP-m23chx84 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7yl9zk + 1 + Instruction + + + + fr.insee + lw7yq0ti + 1 + + QUI_AID_REC_1D + + + fr.insee + lw7yq0ti-QOP-m23cxmnn + 1 + + QUI_AID_REC_1D1 + + + + fr.insee + lw7yq0ti-QOP-m23ctm1u + 1 + + QUI_AID_REC_1D2 + + + + + fr.insee + lw7yq0ti-RDOP-m23cxmnn + 1 + OutParameter + + + fr.insee + lw7yq0ti-QOP-m23cxmnn + 1 + OutParameter + + + + + fr.insee + lw7yq0ti-RDOP-m23ctm1u + 1 + OutParameter + + + fr.insee + lw7yq0ti-QOP-m23ctm1u + 1 + OutParameter + + + + + "De qui recevez-vous cette aide pour les tâches quotidiennes ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7yq0ti-RDOP-m23cxmnn + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yq0ti-RDOP-m23ctm1u + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7y7t67 + 1 + Instruction + + + + fr.insee + l1ggp8js + 1 + + QUI_AID_REC_2A + + + fr.insee + l1ggp8js-QOP-m23cn5of + 1 + + QUI_AID_REC_2A1 + + + + fr.insee + l1ggp8js-QOP-m23cey3c + 1 + + QUI_AID_REC_2A2 + + + + fr.insee + l1ggp8js-QOP-m23cjnpj + 1 + + QUI_AID_REC_2A3 + + + + fr.insee + l1ggp8js-QOP-m23ciwsc + 1 + + QUI_AID_REC_2A4 + + + + + fr.insee + l1ggp8js-RDOP-m23cn5of + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-m23cn5of + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-m23cey3c + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-m23cey3c + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-m23cjnpj + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-m23cjnpj + 1 + OutParameter + + + + + fr.insee + l1ggp8js-RDOP-m23ciwsc + 1 + OutParameter + + + fr.insee + l1ggp8js-QOP-m23ciwsc + 1 + OutParameter + + + + + "De qui recevez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1ggp8js-RDOP-m23cn5of + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-m23cey3c + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-m23cjnpj + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1ggp8js-RDOP-m23ciwsc + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1gglc9h + 1 + Instruction + + + + fr.insee + lw7yq329 + 1 + + QUI_AID_REC_2B + + + fr.insee + lw7yq329-QOP-m23cvvst + 1 + + QUI_AID_REC_2B1 + + + + fr.insee + lw7yq329-QOP-m23clx8q + 1 + + QUI_AID_REC_2B2 + + + + fr.insee + lw7yq329-QOP-m23cpziv + 1 + + QUI_AID_REC_2B3 + + + + + fr.insee + lw7yq329-RDOP-m23cvvst + 1 + OutParameter + + + fr.insee + lw7yq329-QOP-m23cvvst + 1 + OutParameter + + + + + fr.insee + lw7yq329-RDOP-m23clx8q + 1 + OutParameter + + + fr.insee + lw7yq329-QOP-m23clx8q + 1 + OutParameter + + + + + fr.insee + lw7yq329-RDOP-m23cpziv + 1 + OutParameter + + + fr.insee + lw7yq329-QOP-m23cpziv + 1 + OutParameter + + + + + "De qui recevez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7yq329-RDOP-m23cvvst + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yq329-RDOP-m23clx8q + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yq329-RDOP-m23cpziv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7ysi78 + 1 + Instruction + + + + fr.insee + lw7yo7oh + 1 + + QUI_AID_REC_2C + + + fr.insee + lw7yo7oh-QOP-m23cmlu2 + 1 + + QUI_AID_REC_2C1 + + + + fr.insee + lw7yo7oh-QOP-m23chv5u + 1 + + QUI_AID_REC_2C2 + + + + fr.insee + lw7yo7oh-QOP-m23cqna7 + 1 + + QUI_AID_REC_2C3 + + + + + fr.insee + lw7yo7oh-RDOP-m23cmlu2 + 1 + OutParameter + + + fr.insee + lw7yo7oh-QOP-m23cmlu2 + 1 + OutParameter + + + + + fr.insee + lw7yo7oh-RDOP-m23chv5u + 1 + OutParameter + + + fr.insee + lw7yo7oh-QOP-m23chv5u + 1 + OutParameter + + + + + fr.insee + lw7yo7oh-RDOP-m23cqna7 + 1 + OutParameter + + + fr.insee + lw7yo7oh-QOP-m23cqna7 + 1 + OutParameter + + + + + "De qui recevez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7yo7oh-RDOP-m23cmlu2 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yo7oh-RDOP-m23chv5u + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yo7oh-RDOP-m23cqna7 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7yyleh + 1 + Instruction + + + + fr.insee + lw7ypwx5 + 1 + + QUI_AID_REC_2D + + + fr.insee + lw7ypwx5-QOP-m23ctdx6 + 1 + + QUI_AID_REC_2D1 + + + + fr.insee + lw7ypwx5-QOP-m23ctlkf + 1 + + QUI_AID_REC_2D2 + + + + + fr.insee + lw7ypwx5-RDOP-m23ctdx6 + 1 + OutParameter + + + fr.insee + lw7ypwx5-QOP-m23ctdx6 + 1 + OutParameter + + + + + fr.insee + lw7ypwx5-RDOP-m23ctlkf + 1 + OutParameter + + + fr.insee + lw7ypwx5-QOP-m23ctlkf + 1 + OutParameter + + + + + "De qui recevez-vous cette aide financière ou matérielle ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7ypwx5-RDOP-m23ctdx6 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7ypwx5-RDOP-m23ctlkf + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7yn7me + 1 + Instruction + + + + fr.insee + l1gh36ky + 1 + + QUI_AID_REC_3A + + + fr.insee + l1gh36ky-QOP-m23cib87 + 1 + + QUI_AID_REC_3A1 + + + + fr.insee + l1gh36ky-QOP-m23cxsfo + 1 + + QUI_AID_REC_3A2 + + + + fr.insee + l1gh36ky-QOP-m23clsl9 + 1 + + QUI_AID_REC_3A3 + + + + fr.insee + l1gh36ky-QOP-m23czis0 + 1 + + QUI_AID_REC_3A4 + + + + + fr.insee + l1gh36ky-RDOP-m23cib87 + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-m23cib87 + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-m23cxsfo + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-m23cxsfo + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-m23clsl9 + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-m23clsl9 + 1 + OutParameter + + + + + fr.insee + l1gh36ky-RDOP-m23czis0 + 1 + OutParameter + + + fr.insee + l1gh36ky-QOP-m23czis0 + 1 + OutParameter + + + + + "De qui recevez-vous ce soutien moral ?" + + + + + + fr.insee + l1ggouwf + 1 + CodeList + + + + + + + + fr.insee + l1gh36ky-RDOP-m23cib87 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-m23cxsfo + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-m23clsl9 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1gh36ky-RDOP-m23czis0 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1ggm7zg + 1 + Instruction + + + + fr.insee + lw7yqyln + 1 + + QUI_AID_REC_3B + + + fr.insee + lw7yqyln-QOP-m23cgm1y + 1 + + QUI_AID_REC_3B1 + + + + fr.insee + lw7yqyln-QOP-m23cwosm + 1 + + QUI_AID_REC_3B2 + + + + fr.insee + lw7yqyln-QOP-m23cspkk + 1 + + QUI_AID_REC_3B3 + + + + + fr.insee + lw7yqyln-RDOP-m23cgm1y + 1 + OutParameter + + + fr.insee + lw7yqyln-QOP-m23cgm1y + 1 + OutParameter + + + + + fr.insee + lw7yqyln-RDOP-m23cwosm + 1 + OutParameter + + + fr.insee + lw7yqyln-QOP-m23cwosm + 1 + OutParameter + + + + + fr.insee + lw7yqyln-RDOP-m23cspkk + 1 + OutParameter + + + fr.insee + lw7yqyln-QOP-m23cspkk + 1 + OutParameter + + + + + "De qui recevez-vous ce soutien moral ?" + + + + + + fr.insee + lw7ugzzl + 1 + CodeList + + + + + + + + fr.insee + lw7yqyln-RDOP-m23cgm1y + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yqyln-RDOP-m23cwosm + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7yqyln-RDOP-m23cspkk + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7z069s + 1 + Instruction + + + + fr.insee + lw7z0jkp + 1 + + QUI_AID_REC_3C + + + fr.insee + lw7z0jkp-QOP-m23cxwql + 1 + + QUI_AID_REC_3C1 + + + + fr.insee + lw7z0jkp-QOP-m23crs3i + 1 + + QUI_AID_REC_3C2 + + + + fr.insee + lw7z0jkp-QOP-m23cvbj1 + 1 + + QUI_AID_REC_3C3 + + + + + fr.insee + lw7z0jkp-RDOP-m23cxwql + 1 + OutParameter + + + fr.insee + lw7z0jkp-QOP-m23cxwql + 1 + OutParameter + + + + + fr.insee + lw7z0jkp-RDOP-m23crs3i + 1 + OutParameter + + + fr.insee + lw7z0jkp-QOP-m23crs3i + 1 + OutParameter + + + + + fr.insee + lw7z0jkp-RDOP-m23cvbj1 + 1 + OutParameter + + + fr.insee + lw7z0jkp-QOP-m23cvbj1 + 1 + OutParameter + + + + + "De qui recevez-vous ce soutien moral ?" + + + + + + fr.insee + lw7u13rn + 1 + CodeList + + + + + + + + fr.insee + lw7z0jkp-RDOP-m23cxwql + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7z0jkp-RDOP-m23crs3i + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7z0jkp-RDOP-m23cvbj1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7z8p6k + 1 + Instruction + + + + fr.insee + lw7z13d4 + 1 + + QUI_AID_REC_3D + + + fr.insee + lw7z13d4-QOP-m23cozck + 1 + + QUI_AID_REC_3D1 + + + + fr.insee + lw7z13d4-QOP-m23co3ul + 1 + + QUI_AID_REC_3D2 + + + + + fr.insee + lw7z13d4-RDOP-m23cozck + 1 + OutParameter + + + fr.insee + lw7z13d4-QOP-m23cozck + 1 + OutParameter + + + + + fr.insee + lw7z13d4-RDOP-m23co3ul + 1 + OutParameter + + + fr.insee + lw7z13d4-QOP-m23co3ul + 1 + OutParameter + + + + + "De qui recevez-vous ce soutien moral ?" + + + + + + fr.insee + lw7udk0s + 1 + CodeList + + + + + + + + fr.insee + lw7z13d4-RDOP-m23cozck + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + lw7z13d4-RDOP-m23co3ul + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lw7yy5nw + 1 + Instruction + + + + fr.insee + kwqgffvw + 1 + + LOG_PAR2A + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + + LOG_PAR2A1 + + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + + LOG_PAR2A2 + + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + + LOG_PAR2A3 + + + + + fr.insee + kwqgffvw-RDOP-m0peo2kw + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + OutParameter + + + + + fr.insee + kwqgffvw-RDOP-m0pe8z8l + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + OutParameter + + + + + fr.insee + kwqgffvw-RDOP-m0pefwls + 1 + OutParameter + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + OutParameter + + + + + "Où vit " || (if (nvl(¤l27ijusa-QOP-l27i3154¤,"")="") then "votre autre parent" else ¤l27ijusa-QOP-l27i3154¤) || " [?](. "Pourquoi cette question ? +Pour connaître les relations entretenues avec ses parents.")" + + + + + + fr.insee + lagv1pzu + 1 + CodeList + + + + + + + + fr.insee + kwqgffvw-RDOP-m0peo2kw + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kwqgffvw-RDOP-m0pe8z8l + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + kwqgffvw-RDOP-m0pefwls + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + lley7g7u + 1 + Instruction + + + + fr.insee + l1f61fa3 + 1 + + VECU_JEUNESSE + + + fr.insee + l1f61fa3-QOP-lv6moj96 + 1 + + VECU_JEUNESSE1 + + + + fr.insee + l1f61fa3-QOP-lv6mdd03 + 1 + + VECU_JEUNESSE2 + + + + fr.insee + l1f61fa3-QOP-lv6mmx53 + 1 + + VECU_JEUNESSE3 + + + + fr.insee + l1f61fa3-QOP-lv6miqdb + 1 + + VECU_JEUNESSE4 + + + + fr.insee + l1f61fa3-QOP-lv6m53q1 + 1 + + VECU_JEUNESSE5 + + + + fr.insee + l1f61fa3-QOP-lv6mjy61 + 1 + + VECU_JEUNESSE6 + + + + fr.insee + l1f61fa3-QOP-lv6mif9h + 1 + + VECU_JEUNESSE7 + + + + + fr.insee + l1f61fa3-RDOP-lv6moj96 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6moj96 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6mdd03 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6mdd03 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6mmx53 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6mmx53 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6miqdb + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6miqdb + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6m53q1 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6m53q1 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6mjy61 + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6mjy61 + 1 + OutParameter + + + + + fr.insee + l1f61fa3-RDOP-lv6mif9h + 1 + OutParameter + + + fr.insee + l1f61fa3-QOP-lv6mif9h + 1 + OutParameter + + + + + "Durant votre jeunesse, jusqu'à vos 18 ans, avec qui avez-vous vécu [?](. "Pourquoi cette question ? +Pour connaître l’environnement familial dans lequel les personnes ont grandi.")" + + + + + + fr.insee + l1f5t6b0 + 1 + CodeList + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6moj96 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6mdd03 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6mmx53 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6miqdb + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6m53q1 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6mjy61 + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1f61fa3-RDOP-lv6mif9h + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l1f693hk + 1 + Instruction + + + + fr.insee + l43u439h + 1 + + TYP_PLACE + + + fr.insee + l43u439h-QOP-lzqsmpxp + 1 + + TYP_PLACE1 + + + + fr.insee + l43u439h-QOP-lzqsedxr + 1 + + TYP_PLACE2 + + + + fr.insee + l43u439h-QOP-lzqsb3hv + 1 + + TYP_PLACE3 + + + + fr.insee + l43u439h-QOP-lzqs6uxr + 1 + + TYP_PLACE4 + + + + + fr.insee + l43u439h-RDOP-lzqsmpxp + 1 + OutParameter + + + fr.insee + l43u439h-QOP-lzqsmpxp + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-lzqsedxr + 1 + OutParameter + + + fr.insee + l43u439h-QOP-lzqsedxr + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-lzqsb3hv + 1 + OutParameter + + + fr.insee + l43u439h-QOP-lzqsb3hv + 1 + OutParameter + + + + + fr.insee + l43u439h-RDOP-lzqs6uxr + 1 + OutParameter + + + fr.insee + l43u439h-QOP-lzqs6uxr + 1 + OutParameter + + + + + "Quel était le type de placement ?" + + + + + + fr.insee + l43tnvfy + 1 + CodeList + + + + + + + + fr.insee + l43u439h-RDOP-lzqsmpxp + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-lzqsedxr + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-lzqsb3hv + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l43u439h-RDOP-lzqs6uxr + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + l43u116f + 1 + Instruction + + + + fr.insee + l1g7vwo6 + 1 + + INTER_TRAV + + + fr.insee + l1g7vwo6-QOP-m1htommh + 1 + + INTER_TRAV1 + + + + fr.insee + l1g7vwo6-QOP-m1hty7yg + 1 + + INTER_TRAV2 + + + + fr.insee + l1g7vwo6-QOP-m1hu4fcs + 1 + + INTER_TRAV3 + + + + + fr.insee + l1g7vwo6-RDOP-m1htommh + 1 + OutParameter + + + fr.insee + l1g7vwo6-QOP-m1htommh + 1 + OutParameter + + + + + fr.insee + l1g7vwo6-RDOP-m1hty7yg + 1 + OutParameter + + + fr.insee + l1g7vwo6-QOP-m1hty7yg + 1 + OutParameter + + + + + fr.insee + l1g7vwo6-RDOP-m1hu4fcs + 1 + OutParameter + + + fr.insee + l1g7vwo6-QOP-m1hu4fcs + 1 + OutParameter + + + + + "Depuis votre premier emploi, vous avez [...](. "Pourquoi cette question ? +Pour étudier le lien entre vie professionnelle et vie familiale.")" + + + + + + fr.insee + m167stvq + 1 + CodeList + + + + + + + + fr.insee + l1g7vwo6-RDOP-m1htommh + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g7vwo6-RDOP-m1hty7yg + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + l1g7vwo6-RDOP-m1hu4fcs + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + m167ldst + 1 + Instruction + + + + fr.insee + m0ksi30t + 1 + + POSTENQ_CONT + + + fr.insee + m0ksi30t-QOP-m0ktcljz + 1 + + POSTENQ_CONT1 + + + + fr.insee + m0ksi30t-QOP-m0kt2hbe + 1 + + POSTENQ_CONT2 + + + + + fr.insee + m0ksi30t-RDOP-m0ktcljz + 1 + OutParameter + + + fr.insee + m0ksi30t-QOP-m0ktcljz + 1 + OutParameter + + + + + fr.insee + m0ksi30t-RDOP-m0kt2hbe + 1 + OutParameter + + + fr.insee + m0ksi30t-QOP-m0kt2hbe + 1 + OutParameter + + + + + "Comment préférez-vous être contacté" || (if (isnull(¤TYPE_QUEST¤)) then "" else (if (¤TYPE_QUEST¤ = "2") then "e" else "")) || " par le chercheur ?" + + + + + + fr.insee + m0ksu7an + 1 + CodeList + + + + + + + + fr.insee + m0ksi30t-RDOP-m0ktcljz + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + + fr.insee + m0ksi30t-RDOP-m0kt2hbe + 1 + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + + + + + + + + + + fr.insee + m0ksxt5t + 1 + Instruction + + + + + fr.insee + CategoryScheme-kwqa6qr6 + 1 + + OUI_NON + + + fr.insee + CA-kwqa6qr6-1 + 1 + + Oui + + + + fr.insee + CA-kwqa6qr6-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l4onk0te + 1 + + OUI_NON + + + fr.insee + CA-l4onk0te-1 + 1 + + Oui + + + + fr.insee + CA-l4onk0te-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kwqfz7tj + 1 + + COUP + + + fr.insee + CA-kwqfz7tj-1 + 1 + + "Oui, avec quelqu'un qui vit avec vous dans ce logement" + + + + fr.insee + CA-kwqfz7tj-2 + 1 + + "Oui, avec quelqu'un qui vit dans un autre logement" + + + + fr.insee + CA-kwqfz7tj-3 + 1 + + "Non, mais vous avez déjà été en couple par le passé" + + + + fr.insee + CA-kwqfz7tj-4 + 1 + + "Non, vous n'avez jamais été en couple" + + + + + fr.insee + CategoryScheme-kwqf7soc + 1 + + VIECJ + + + fr.insee + CA-kwqf7soc-1 + 1 + + "Pour des raisons professionnelles" + + + + fr.insee + CA-kwqf7soc-2 + 1 + + "Pour des raisons de santé (votre conjoint(e) vit en EHPAD, etc.)" + + + + fr.insee + CA-kwqf7soc-3 + 1 + + "Pour une autre raison" + + + + + fr.insee + CategoryScheme-l4ongo32 + 1 + + OUI_NON_2 + + + fr.insee + CA-l4ongo32-1 + 1 + + Oui + + + + fr.insee + CA-l4ongo32-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-kwqir1cc + 1 + + SEX_F_H + + + fr.insee + CA-kwqir1cc-1 + 1 + + Une femme + + + + fr.insee + CA-kwqir1cc-2 + 1 + + Un homme + + + + + fr.insee + CategoryScheme-l43yp3tr + 1 + + STATUT_CT + + + fr.insee + CA-l43yp3tr-1 + 1 + + "A son compte (y compris gérant" || ¤ltd22w3g-GOP¤ || " de société salarié" || ¤ltd22w3g-GOP¤ || ")" + + + + fr.insee + CA-l43yp3tr-2 + 1 + + "Salarié" || ¤ltd22w3g-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l43yp3tr-3 + 1 + + "Salarié" || ¤ltd22w3g-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l43yp3tr-4 + 1 + + "Salarié" || ¤ltd22w3g-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l43yp3tr-5 + 1 + + "Aide familial" || ¤ltd22w3g-GOP¤ || " non rémunéré" || ¤ltd22w3g-GOP¤ + + + + + fr.insee + CategoryScheme-lpsjdj1b + 1 + + SAL_PAR2_2M_2_IND + + + fr.insee + CA-lpsjdj1b-1 + 1 + + "Une seule personne : " || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "il" else "elle") || " travaille ou travaillait seul" || ¤ltd22w3g-GOP¤ + + + + fr.insee + CA-lpsjdj1b-2 + 1 + + "Entre 2 à 10 personnes" + + + + fr.insee + CA-lpsjdj1b-3 + 1 + + "Entre 11 à 49 personnes" + + + + fr.insee + CA-lpsjdj1b-4 + 1 + + "50 personnes ou plus" + + + + + fr.insee + CategoryScheme-llmhtv0t + 1 + + SAL_PAR2_2M_2 + + + fr.insee + CA-llmhtv0t-1 + 1 + + "Manœuvre, ouvri" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère") || " spécialisé" || ¤ltd22w3g-GOP¤ + + + + fr.insee + CA-llmhtv0t-2 + 1 + + "Ouvri" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère") || " qualifié" || ¤ltd22w3g-GOP¤ + + + + fr.insee + CA-llmhtv0t-3 + 1 + + "Technici" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne" + + + + fr.insee + CA-llmhtv0t-4 + 1 + + "Agent" || ¤ltd22w3g-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llmhtv0t-5 + 1 + + "Agent" || ¤ltd22w3g-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llmhtv0t-6 + 1 + + "Agent" || ¤ltd22w3g-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llmhtv0t-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llnh4uj2 + 1 + + SAL_2_H + + + fr.insee + CA-llnh4uj2-1 + 1 + + "Manœuvre, ouvri" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère") || " spécialisé" || ¤ltd22w3g-GOP¤ + + + + fr.insee + CA-llnh4uj2-2 + 1 + + "Ouvri" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "er" else "ère") || " qualifié" || ¤ltd22w3g-GOP¤ || ", technici" || (if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne") || " d'atelier" + + + + fr.insee + CA-llnh4uj2-3 + 1 + + "Employé" || ¤ltd22w3g-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llnh4uj2-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llnh4uj2-5 + 1 + + "Technici" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) then "en" else "enne" + + + + fr.insee + CA-llnh4uj2-6 + 1 + + "Ingénieur" || ¤ltd22w3g-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llnh4uj2-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-lldegmb1 + 1 + + SEX_H_F + + + fr.insee + CA-lldegmb1-1 + 1 + + Un homme + + + + fr.insee + CA-lldegmb1-2 + 1 + + Une femme + + + + + fr.insee + CategoryScheme-llmhgfca + 1 + + STATUT_CT_2 + + + fr.insee + CA-llmhgfca-1 + 1 + + "A son compte (y compris gérant" || ¤ltd1vp73-GOP¤ || " de société salarié" || ¤ltd1vp73-GOP¤ || ")" + + + + fr.insee + CA-llmhgfca-2 + 1 + + "Salarié" || ¤ltd1vp73-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-llmhgfca-3 + 1 + + "Salarié" || ¤ltd1vp73-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-llmhgfca-4 + 1 + + "Salarié" || ¤ltd1vp73-GOP¤ || " d'un particulier" + + + + fr.insee + CA-llmhgfca-5 + 1 + + "Aide familial" || ¤ltd1vp73-GOP¤ || " non rémunéré" || ¤ltd1vp73-GOP¤ + + + + + fr.insee + CategoryScheme-lpsis458 + 1 + + SAL_PAR2_2F_2_IND + + + fr.insee + CA-lpsis458-1 + 1 + + "Une seule personne : " || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "il" else "elle") || " travaille ou travaillait seul" || ¤ltd1vp73-GOP¤ + + + + fr.insee + CA-lpsis458-2 + 1 + + "Entre 2 et 10 personnes" + + + + fr.insee + CA-lpsis458-3 + 1 + + "Entre 11 et 49 personnes" + + + + fr.insee + CA-lpsis458-4 + 1 + + "50 personnes ou plus" + + + + + fr.insee + CategoryScheme-llgrti9z + 1 + + SAL_PAR2_2F_2 + + + fr.insee + CA-llgrti9z-1 + 1 + + "Manœuvre, ouvri" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère") || " spécialisé" || ¤ltd1vp73-GOP¤ + + + + fr.insee + CA-llgrti9z-2 + 1 + + "Ouvri" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère") || " qualifié" || ¤ltd1vp73-GOP¤ + + + + fr.insee + CA-llgrti9z-3 + 1 + + "Technici" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne" + + + + fr.insee + CA-llgrti9z-4 + 1 + + "Agent" || ¤ltd1vp73-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llgrti9z-5 + 1 + + "Agent" || ¤ltd1vp73-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llgrti9z-6 + 1 + + "Agent" || ¤ltd1vp73-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llgrti9z-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llnhh1go + 1 + + SAL_2_F + + + fr.insee + CA-llnhh1go-1 + 1 + + "Manœuvre, ouvri" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère") || " spécialisé" || ¤ltd1vp73-GOP¤ + + + + fr.insee + CA-llnhh1go-2 + 1 + + "Ouvri" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "er" else "ère") || " qualifié" || ¤ltd1vp73-GOP¤ || ", technici" || (if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne") || " d'atelier" + + + + fr.insee + CA-llnhh1go-3 + 1 + + "Employé" || ¤ltd1vp73-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llnhh1go-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llnhh1go-5 + 1 + + "Technici" || if (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "en" else "enne" + + + + fr.insee + CA-llnhh1go-6 + 1 + + "Ingénieur" || ¤ltd1vp73-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llnhh1go-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-l5ksmbco + 1 + + SEP + + + fr.insee + CA-l5ksmbco-1 + 1 + + "...vous vous êtes séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") + + + + fr.insee + CA-l5ksmbco-2 + 1 + + "..." || (if (nvl(¤l34grb6h-QOP-l34guyz9¤,"")="") then (if ((¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) or (isnull(¤kwqabjga-QOP-kwqai8pk¤) and isnull(¤llde3pgg-QOP-lldeidzi¤))) then "votre dernier conjoint" else "votre dernière conjointe") else ¤l34grb6h-QOP-l34guyz9¤) || " est décédé" || (if (((nvl(¤llde3pgg-QOP-lldeidzi¤,"")="") and (nvl(¤kwqabjga-QOP-kwqai8pk¤,"")="")) or (¤llde3pgg-QOP-lldeidzi¤ ="1" and isnull(¤kwqabjga-QOP-kwqai8pk¤)) or (¤kwqabjga-QOP-kwqai8pk¤ = "2" and isnull(¤llde3pgg-QOP-lldeidzi¤))) then " " else "e ") + + + + + fr.insee + CategoryScheme-l43x5eph + 1 + + ENFCONJ + + + fr.insee + CA-l43x5eph-1 + 1 + + "Non" + + + + fr.insee + CA-l43x5eph-2 + 1 + + "Oui, tout le temps" + + + + fr.insee + CA-l43x5eph-3 + 1 + + "Oui, au moins la moitié du temps" + + + + fr.insee + CA-l43x5eph-4 + 1 + + "Oui, moins de la moitié du temps" + + + + + fr.insee + CategoryScheme-l5ktegqo + 1 + + SEP1 + + + fr.insee + CA-l5ktegqo-1 + 1 + + "...vous vous êtes séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") + + + + fr.insee + CA-l5ktegqo-2 + 1 + + "..." || (if (nvl(¤kwqa53jx-QOP-kwqa5f6j¤,"")="") then (if ((¤l4p8skko-QOP-l4p8w47s¤="2" or isnull(¤l4p8skko-QOP-l4p8w47s¤)) and (¤lldenssh-QOP-lldeceld¤="1" or isnull(¤lldenssh-QOP-lldeceld¤)) or (isnull(¤l4p8skko-QOP-l4p8w47s¤) and isnull(¤lldenssh-QOP-lldeceld¤))) then "votre premier conjoint" else "votre première conjointe") else ¤kwqa53jx-QOP-kwqa5f6j¤) || " est décédé" || (if (((nvl(¤lldenssh-QOP-lldeceld¤,"")="") and (nvl(¤l4p8skko-QOP-l4p8w47s¤,"")="")) or (¤lldenssh-QOP-lldeceld¤ ="1" and isnull(¤l4p8skko-QOP-l4p8w47s¤)) or (¤l4p8skko-QOP-l4p8w47s¤ = "2" and isnull(¤lldenssh-QOP-lldeceld¤))) then " " else "e ") + + + + + fr.insee + CategoryScheme-las91jew + 1 + + SEP1_2 + + + fr.insee + CA-las91jew-1 + 1 + + "...vous vous êtes séparé" || (if (¤TYPE_QUEST¤ = "2") then "(e)s" else "s") + + + + fr.insee + CA-las91jew-2 + 1 + + "..." || (if (nvl(¤l9ilcol6-QOP-l9il24xt¤,"")="") then (if ((¤l9ikne2h-QOP-l9ikmsqc¤="2" or isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) and (¤lldetngg-QOP-lldefr60¤="1" or isnull(¤lldetngg-QOP-lldefr60¤)) or (isnull(¤l9ikne2h-QOP-l9ikmsqc¤) and isnull(¤lldetngg-QOP-lldefr60¤))) then "votre autre conjoint" else "votre autre conjointe") else ¤l9ilcol6-QOP-l9il24xt¤) || " est décédé" || (if (((nvl(¤lldetngg-QOP-lldefr60¤,"")="") and (nvl(¤l9ikne2h-QOP-l9ikmsqc¤,"")="")) or (¤lldetngg-QOP-lldefr60¤ ="1" and isnull(¤l9ikne2h-QOP-l9ikmsqc¤)) or (¤l9ikne2h-QOP-l9ikmsqc¤ = "2" and isnull(¤lldetngg-QOP-lldefr60¤))) then " " else "e ") + + + + + fr.insee + CategoryScheme-l7rlvd0y + 1 + + OUI_NON_2_2 + + + fr.insee + CA-l7rlvd0y-1 + 1 + + Oui + + + + fr.insee + CA-l7rlvd0y-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-llgbzo78 + 1 + + SEXE + + + fr.insee + CA-llgbzo78-1 + 1 + + "Masculin" + + + + fr.insee + CA-llgbzo78-2 + 1 + + "Féminin" + + + + + fr.insee + CategoryScheme-l44726g4 + 1 + + OUI_NON_AUTPAR + + + fr.insee + CA-l44726g4-1 + 1 + + "Oui, il/elle vit avec vous" + + + + fr.insee + CA-l44726g4-2 + 1 + + "Non, il/elle vit ailleurs" + + + + fr.insee + CA-l44726g4-3 + 1 + + "Non, il/elle est décédé(e)" + + + + fr.insee + CA-l44726g4-4 + 1 + + "Je ne sais pas" + + + + fr.insee + CA-l44726g4-5 + 1 + + "Il n'y a pas d'autre parent" + + + + + fr.insee + CategoryScheme-l1f65uvw + 1 + + FREQCONT_2 + + + fr.insee + CA-l1f65uvw-1 + 1 + + Une ou plusieurs fois par semaine + + + + fr.insee + CA-l1f65uvw-2 + 1 + + Une ou plusieurs fois par mois + + + + fr.insee + CA-l1f65uvw-3 + 1 + + Une ou plusieurs fois par an + + + + fr.insee + CA-l1f65uvw-4 + 1 + + Plus rarement ou jamais + + + + + fr.insee + CategoryScheme-kwqjqlpa + 1 + + SEP + + + fr.insee + CA-kwqjqlpa-1 + 1 + + "Pas de décision de justice" + + + + fr.insee + CA-kwqjqlpa-2 + 1 + + "La moitié du temps chez chaque parent" + + + + fr.insee + CA-kwqjqlpa-3 + 1 + + "Principalement chez vous" + + + + fr.insee + CA-kwqjqlpa-4 + 1 + + "Principalement chez son autre parent" + + + + + fr.insee + CategoryScheme-l448z131 + 1 + + DECISENF21_2 + + + fr.insee + CA-l448z131-1 + 1 + + "Pas de décision de justice" + + + + fr.insee + CA-l448z131-2 + 1 + + "La moitié du temps chez chaque parent" + + + + fr.insee + CA-l448z131-3 + 1 + + "Principalement chez vous" + + + + fr.insee + CA-l448z131-4 + 1 + + "Principalement chez son autre parent" + + + + + fr.insee + CategoryScheme-l1g8605s + 1 + + AIDE + + + fr.insee + CA-l1g8605s-1 + 1 + + "Oui, une aide pour les tâches quotidiennes" + + + + fr.insee + CA-l1g8605s-2 + 1 + + "Oui, une aide financière ou matérielle" + + + + fr.insee + CA-l1g8605s-3 + 1 + + "Oui, un soutien moral" + + + + fr.insee + CA-l1g8605s-4 + 1 + + "Oui, vous êtes" || (if (¤TYPE_QUEST¤ ="1") then " tuteur ou curateur " else " tutrice ou curatrice") + + + + fr.insee + CA-l1g8605s-5 + 1 + + "Non, aucune aide de ce type" + + + + + fr.insee + CategoryScheme-l1ggouwf + 1 + + AIDEQUI + + + fr.insee + CA-l1ggouwf-1 + 1 + + Votre(Vos) parent(s) + + + + fr.insee + CA-l1ggouwf-2 + 1 + + "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + + fr.insee + CA-l1ggouwf-3 + 1 + + "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + + fr.insee + CA-l1ggouwf-4 + 1 + + Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + + + fr.insee + CategoryScheme-lw7ugzzl + 1 + + AIDEQUI_2 + + + fr.insee + CA-lw7ugzzl-1 + 1 + + Votre(Vos) parent(s) + + + + fr.insee + CA-lw7ugzzl-2 + 1 + + "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + + fr.insee + CA-lw7ugzzl-3 + 1 + + Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + + + fr.insee + CategoryScheme-lw7u13rn + 1 + + AIDEQUI_3 + + + fr.insee + CA-lw7u13rn-1 + 1 + + Votre(Vos) parent(s) + + + + fr.insee + CA-lw7u13rn-2 + 1 + + "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + + fr.insee + CA-lw7u13rn-3 + 1 + + Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + + + fr.insee + CategoryScheme-lw7udk0s + 1 + + AIDEQUI_4 + + + fr.insee + CA-lw7udk0s-1 + 1 + + Votre(Vos) parent(s) + + + + fr.insee + CA-lw7udk0s-2 + 1 + + Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + + + fr.insee + CategoryScheme-l6c3qpag + 1 + + AIDE_2 + + + fr.insee + CA-l6c3qpag-1 + 1 + + "Oui, une aide pour les tâches quotidiennes" + + + + fr.insee + CA-l6c3qpag-2 + 1 + + "Oui, une aide financière ou matérielle" + + + + fr.insee + CA-l6c3qpag-3 + 1 + + "Oui, un soutien moral" + + + + fr.insee + CA-l6c3qpag-4 + 1 + + "Non, aucune aide de ce type" + + + + + fr.insee + CategoryScheme-lyoc6v5h + 1 + + LIEU_NAIS + + + fr.insee + CA-lyoc6v5h-1 + 1 + + "En France" + + + + fr.insee + CA-lyoc6v5h-2 + 1 + + "A l'étranger" + + + + fr.insee + CA-lyoc6v5h-3 + 1 + + "Je ne sais pas" + + + + fr.insee + CA-lyoc6v5h-4 + 1 + + "Je ne souhaite pas répondre" + + + + + fr.insee + CategoryScheme-m21lkkyw + 1 + + OUI_NON_NSP + + + fr.insee + CA-m21lkkyw-1 + 1 + + "Oui" + + + + fr.insee + CA-m21lkkyw-2 + 1 + + "Non" + + + + fr.insee + CA-m21lkkyw-3 + 1 + + "Je ne sais pas" + + + + fr.insee + CA-m21lkkyw-4 + 1 + + "Je ne souhaite pas répondre" + + + + + fr.insee + CategoryScheme-l1f23fi8 + 1 + + STATM + + + fr.insee + CA-l1f23fi8-1 + 1 + + "A son compte (y compris gérant" || ¤ltd23enq-GOP¤ || " de société salarié" || ¤ltd23enq-GOP¤ || ")" + + + + fr.insee + CA-l1f23fi8-2 + 1 + + "Salarié" || ¤ltd23enq-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l1f23fi8-3 + 1 + + "Salarié" || ¤ltd23enq-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l1f23fi8-4 + 1 + + "Salarié" || ¤ltd23enq-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l1f23fi8-5 + 1 + + "Aide familial" || ¤ltd23enq-GOP¤ || " non rémunéré" || ¤ltd23enq-GOP¤ + + + + fr.insee + CA-l1f23fi8-6 + 1 + + "Je ne sais pas" + + + + + fr.insee + CategoryScheme-lpsk26ic + 1 + + SAL_PAR1_IND + + + fr.insee + CA-lpsk26ic-1 + 1 + + "Une seule personne : " || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "il" else "elle") || " travaille ou travaillait seul" || ¤ltd23enq-GOP¤ + + + + fr.insee + CA-lpsk26ic-2 + 1 + + "Entre 2 et 10 personnes" + + + + fr.insee + CA-lpsk26ic-3 + 1 + + "Entre 11 et 49 personnes" + + + + fr.insee + CA-lpsk26ic-4 + 1 + + "50 personnes ou plus" + + + + + fr.insee + CategoryScheme-llgq8911 + 1 + + SAL_PAR1 + + + fr.insee + CA-llgq8911-1 + 1 + + "Manœuvre, ouvri" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère") || " spécialisé" || ¤ltd23enq-GOP¤ + + + + fr.insee + CA-llgq8911-2 + 1 + + "Ouvri" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère") || " qualifié" || ¤ltd23enq-GOP¤ + + + + fr.insee + CA-llgq8911-3 + 1 + + "Technici" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne") + + + + fr.insee + CA-llgq8911-4 + 1 + + "Agent" || ¤ltd23enq-GOP¤ || " de catégorie D de la fonction publique" + + + + fr.insee + CA-llgq8911-5 + 1 + + "Agent" || ¤ltd23enq-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llgq8911-6 + 1 + + "Agent" || ¤ltd23enq-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llgq8911-7 + 1 + + "Agent" || ¤ltd23enq-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llgq8911-8 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llgoa6cg + 1 + + SAL_2_PAR1 + + + fr.insee + CA-llgoa6cg-1 + 1 + + "Manœuvre, ouvri" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère") || " spécialisé" || ¤ltd23enq-GOP¤ + + + + fr.insee + CA-llgoa6cg-2 + 1 + + "Ouvri" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "er" else "ère") || " qualifié" || ¤ltd23enq-GOP¤ || ", technici" || (if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne") || " d'atelier" + + + + fr.insee + CA-llgoa6cg-3 + 1 + + "Employé" || ¤ltd23enq-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llgoa6cg-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llgoa6cg-5 + 1 + + "Technici" || if (¤l2kkvar7-QOP-l2kkywzf¤="2" or isnull(¤l2kkvar7-QOP-l2kkywzf¤)) then "en" else "enne" + + + + fr.insee + CA-llgoa6cg-6 + 1 + + "Ingénieur" || ¤ltd23enq-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llgoa6cg-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-l4qualpe + 1 + + VITAUT_2 + + + fr.insee + CA-l4qualpe-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-l4qualpe-2 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-l4o7x17y + 1 + + OUI_NON_2 + + + fr.insee + CA-l4o7x17y-1 + 1 + + Oui + + + + fr.insee + CA-l4o7x17y-2 + 1 + + Non + + + + + fr.insee + CategoryScheme-l4n5c408 + 1 + + STATM_2 + + + fr.insee + CA-l4n5c408-1 + 1 + + "A son compte (y compris gérant" || ¤ltd1mklp-GOP¤ || " de société salarié" || ¤ltd1mklp-GOP¤ || ")" + + + + fr.insee + CA-l4n5c408-2 + 1 + + "Salarié" || ¤ltd1mklp-GOP¤ || " de la fonction publique (Etat, territoriale, hospitalière)" + + + + fr.insee + CA-l4n5c408-3 + 1 + + "Salarié" || ¤ltd1mklp-GOP¤ || " d'une entreprise (y compris d'une association ou de la sécurité sociale)" + + + + fr.insee + CA-l4n5c408-4 + 1 + + "Salarié" || ¤ltd1mklp-GOP¤ || " d'un particulier" + + + + fr.insee + CA-l4n5c408-5 + 1 + + "Aide familial" || ¤ltd1mklp-GOP¤ || " non rémunéré" || ¤ltd1mklp-GOP¤ + + + + fr.insee + CA-l4n5c408-6 + 1 + + "Je ne sais pas" + + + + + fr.insee + CategoryScheme-lptlw9sx + 1 + + SAL_PAR2_2_IND + + + fr.insee + CA-lptlw9sx-1 + 1 + + "Une seule personne : " || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "il" else "elle") || " travaille ou travaillait seul" || ¤ltd1mklp-GOP¤ + + + + fr.insee + CA-lptlw9sx-2 + 1 + + "Entre 2 et 10 personnes" + + + + fr.insee + CA-lptlw9sx-3 + 1 + + "Entre 11 et 49 personnes" + + + + fr.insee + CA-lptlw9sx-4 + 1 + + "50 personnes ou plus" + + + + + fr.insee + CategoryScheme-llmi5xl5 + 1 + + SAL_PAR2_2 + + + fr.insee + CA-llmi5xl5-1 + 1 + + "Manœuvre, ouvri" || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère") || " spécialisé" || ¤ltd1mklp-GOP¤ + + + + fr.insee + CA-llmi5xl5-2 + 1 + + "Ouvri" || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère") || " qualifié" || ¤ltd1mklp-GOP¤ + + + + fr.insee + CA-llmi5xl5-3 + 1 + + "Technici" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne" + + + + fr.insee + CA-llmi5xl5-4 + 1 + + "Agent" || ¤ltd1mklp-GOP¤ || " de catégorie D de la fonction publique" + + + + fr.insee + CA-llmi5xl5-5 + 1 + + "Agent" || ¤ltd1mklp-GOP¤ || " de catégorie C de la fonction publique" + + + + fr.insee + CA-llmi5xl5-6 + 1 + + "Agent" || ¤ltd1mklp-GOP¤ || " de catégorie B de la fonction publique" + + + + fr.insee + CA-llmi5xl5-7 + 1 + + "Agent" || ¤ltd1mklp-GOP¤ || " de catégorie A de la fonction publique" + + + + fr.insee + CA-llmi5xl5-8 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-llgry90d + 1 + + SAL_2_PAR2 + + + fr.insee + CA-llgry90d-1 + 1 + + "Manœuvre, ouvri" || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère") || " spécialisé" || ¤ltd1mklp-GOP¤ + + + + fr.insee + CA-llgry90d-2 + 1 + + "Ouvri" || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "er" else "ère") || " qualifié" || ¤ltd1mklp-GOP¤ || ", technici" || (if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne") || " d'atelier" + + + + fr.insee + CA-llgry90d-3 + 1 + + "Employé" || ¤ltd1mklp-GOP¤ || " de bureau, de commerce, de services" + + + + fr.insee + CA-llgry90d-4 + 1 + + "Agent de maîtrise (y compris administrative ou commerciale)" + + + + fr.insee + CA-llgry90d-5 + 1 + + "Technici" || if (¤l27ig4yy-QOP-l27ii3c9¤="2" or isnull(¤l27ig4yy-QOP-l27ii3c9¤)) then "en" else "enne" + + + + fr.insee + CA-llgry90d-6 + 1 + + "Ingénieur" || ¤ltd1mklp-GOP¤ || ", cadre d'entreprise" + + + + fr.insee + CA-llgry90d-7 + 1 + + "Dans une autre situation, je ne sais pas" + + + + + fr.insee + CategoryScheme-lagv1pzu + 1 + + VITAUT_2 + + + fr.insee + CA-lagv1pzu-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-lagv1pzu-2 + 1 + + "Avec " || (if (isnull(¤l2kjnm8k-QOP-l2kjn4vg¤)) then "votre autre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) + + + + fr.insee + CA-lagv1pzu-3 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-kwqjgcfw + 1 + + VITAUT + + + fr.insee + CA-kwqjgcfw-1 + 1 + + "Avec vous, dans ce logement" + + + + fr.insee + CA-kwqjgcfw-2 + 1 + + "Ailleurs" + + + + + fr.insee + CategoryScheme-l1f5t6b0 + 1 + + JEUN + + + fr.insee + CA-l1f5t6b0-1 + 1 + + "Vos deux parents en couple" + + + + fr.insee + CA-l1f5t6b0-2 + 1 + + "Votre mère et son/sa conjoint(e)" + + + + fr.insee + CA-l1f5t6b0-3 + 1 + + "Votre père et son/sa conjoint(e)" + + + + fr.insee + CA-l1f5t6b0-4 + 1 + + "Votre mère seule" + + + + fr.insee + CA-l1f5t6b0-5 + 1 + + "Votre père seul" + + + + fr.insee + CA-l1f5t6b0-6 + 1 + + "Une autre personne de votre famille" + + + + fr.insee + CA-l1f5t6b0-7 + 1 + + "En dehors de votre famille" + + + + + fr.insee + CategoryScheme-l43tnvfy + 1 + + PLACEMENT + + + fr.insee + CA-l43tnvfy-1 + 1 + + "Placement en foyer" + + + + fr.insee + CA-l43tnvfy-2 + 1 + + "Placement en famille d'accueil" + + + + fr.insee + CA-l43tnvfy-3 + 1 + + "Placement chez une personne de la famille" + + + + fr.insee + CA-l43tnvfy-4 + 1 + + "Autre type de placement" + + + + + fr.insee + CategoryScheme-m167stvq + 1 + + TRAV + + + fr.insee + CA-m167stvq-1 + 1 + + "...toujours travaillé sans interruption" + + + + fr.insee + CA-m167stvq-2 + 1 + + "...eu une ou plusieurs périodes de chômage d'au moins six mois" + + + + fr.insee + CA-m167stvq-3 + 1 + + "...eu d'autres interruptions d'au moins six mois" + + + + + fr.insee + CategoryScheme-ljwxdg2x + 1 + + REP + + + fr.insee + CA-ljwxdg2x-1 + 1 + + "Vous, " || nvl(¤ltd23kmk-GOP¤,"Madame/Monsieur") + + + + fr.insee + CA-ljwxdg2x-2 + 1 + + "Une autre personne" + + + + + fr.insee + CategoryScheme-m0ksu7an + 1 + + CONTACT + + + fr.insee + CA-m0ksu7an-1 + 1 + + "Par mail" + + + + fr.insee + CA-m0ksu7an-2 + 1 + + "Par téléphone" + + + + + fr.insee + CategoryScheme-lmrsgeny + 1 + + SITE + + + fr.insee + CA-lmrsgeny-1 + 1 + + "Oui, ce site m'a donné toutes les informations nécessaires" + + + + fr.insee + CA-lmrsgeny-2 + 1 + + "Oui, mais ce site n'était pas assez complet, il manquait des informations" + + + + fr.insee + CA-lmrsgeny-3 + 1 + + "Non, je n'ai pas consulté ce site" + + + + + fr.insee + CategoryScheme-m4754kes + 1 + + A définir + + + fr.insee + INSEE-COMMUN-CA-Booleen-1 + 1 + + + + + + + fr.insee + ENQFAMI25-CLS + 1 + + ENQFAMI25 + + + fr.insee + kwqa6qr6 + 1 + + OUI_NON + + Regular + + Ordinal + + + fr.insee + kwqa6qr6-1 + 1 + + fr.insee + CA-kwqa6qr6-1 + 1 + Category + + 1 + + + fr.insee + kwqa6qr6-2 + 1 + + fr.insee + CA-kwqa6qr6-2 + 1 + Category + + 2 + + + + fr.insee + l4onk0te + 1 + + OUI_NON + + Regular + + Ordinal + + + fr.insee + l4onk0te-1 + 1 + + fr.insee + CA-l4onk0te-1 + 1 + Category + + 1 + + + fr.insee + l4onk0te-2 + 1 + + fr.insee + CA-l4onk0te-2 + 1 + Category + + 2 + + + + fr.insee + kwqfz7tj + 1 + + COUP + + Regular + + Ordinal + + + fr.insee + kwqfz7tj-1 + 1 + + fr.insee + CA-kwqfz7tj-1 + 1 + Category + + 1 + + + fr.insee + kwqfz7tj-2 + 1 + + fr.insee + CA-kwqfz7tj-2 + 1 + Category + + 2 + + + fr.insee + kwqfz7tj-3 + 1 + + fr.insee + CA-kwqfz7tj-3 + 1 + Category + + 3 + + + fr.insee + kwqfz7tj-4 + 1 + + fr.insee + CA-kwqfz7tj-4 + 1 + Category + + 4 + + + + fr.insee + kwqf7soc + 1 + + VIECJ + + Regular + + Ordinal + + + fr.insee + kwqf7soc-1 + 1 + + fr.insee + CA-kwqf7soc-1 + 1 + Category + + 1 + + + fr.insee + kwqf7soc-2 + 1 + + fr.insee + CA-kwqf7soc-2 + 1 + Category + + 2 + + + fr.insee + kwqf7soc-3 + 1 + + fr.insee + CA-kwqf7soc-3 + 1 + Category + + 3 + + + + fr.insee + l4ongo32 + 1 + + OUI_NON_2 + + Regular + + Ordinal + + + fr.insee + l4ongo32-1 + 1 + + fr.insee + CA-l4ongo32-1 + 1 + Category + + 1 + + + fr.insee + l4ongo32-2 + 1 + + fr.insee + CA-l4ongo32-2 + 1 + Category + + 2 + + + + fr.insee + kwqir1cc + 1 + + SEX_F_H + + Regular + + Ordinal + + + fr.insee + kwqir1cc-1 + 1 + + fr.insee + CA-kwqir1cc-1 + 1 + Category + + 1 + + + fr.insee + kwqir1cc-2 + 1 + + fr.insee + CA-kwqir1cc-2 + 1 + Category + + 2 + + + + fr.insee + l43yp3tr + 1 + + STATUT_CT + + Regular + + Ordinal + + + fr.insee + l43yp3tr-1 + 1 + + fr.insee + CA-l43yp3tr-1 + 1 + Category + + 1 + + + fr.insee + l43yp3tr-2 + 1 + + fr.insee + CA-l43yp3tr-2 + 1 + Category + + 2 + + + fr.insee + l43yp3tr-3 + 1 + + fr.insee + CA-l43yp3tr-3 + 1 + Category + + 3 + + + fr.insee + l43yp3tr-4 + 1 + + fr.insee + CA-l43yp3tr-4 + 1 + Category + + 4 + + + fr.insee + l43yp3tr-5 + 1 + + fr.insee + CA-l43yp3tr-5 + 1 + Category + + 5 + + + + fr.insee + lpsjdj1b + 1 + + SAL_PAR2_2M_2_IND + + Regular + + Ordinal + + + fr.insee + lpsjdj1b-1 + 1 + + fr.insee + CA-lpsjdj1b-1 + 1 + Category + + 1 + + + fr.insee + lpsjdj1b-2 + 1 + + fr.insee + CA-lpsjdj1b-2 + 1 + Category + + 2 + + + fr.insee + lpsjdj1b-3 + 1 + + fr.insee + CA-lpsjdj1b-3 + 1 + Category + + 3 + + + fr.insee + lpsjdj1b-4 + 1 + + fr.insee + CA-lpsjdj1b-4 + 1 + Category + + 4 + + + + fr.insee + llmhtv0t + 1 + + SAL_PAR2_2M_2 + + Regular + + Ordinal + + + fr.insee + llmhtv0t-1 + 1 + + fr.insee + CA-llmhtv0t-1 + 1 + Category + + 1 + + + fr.insee + llmhtv0t-2 + 1 + + fr.insee + CA-llmhtv0t-2 + 1 + Category + + 2 + + + fr.insee + llmhtv0t-3 + 1 + + fr.insee + CA-llmhtv0t-3 + 1 + Category + + 3 + + + fr.insee + llmhtv0t-4 + 1 + + fr.insee + CA-llmhtv0t-4 + 1 + Category + + 4 + + + fr.insee + llmhtv0t-5 + 1 + + fr.insee + CA-llmhtv0t-5 + 1 + Category + + 5 + + + fr.insee + llmhtv0t-6 + 1 + + fr.insee + CA-llmhtv0t-6 + 1 + Category + + 6 + + + fr.insee + llmhtv0t-7 + 1 + + fr.insee + CA-llmhtv0t-7 + 1 + Category + + 7 + + + + fr.insee + llnh4uj2 + 1 + + SAL_2_H + + Regular + + Ordinal + + + fr.insee + llnh4uj2-1 + 1 + + fr.insee + CA-llnh4uj2-1 + 1 + Category + + 1 + + + fr.insee + llnh4uj2-2 + 1 + + fr.insee + CA-llnh4uj2-2 + 1 + Category + + 2 + + + fr.insee + llnh4uj2-3 + 1 + + fr.insee + CA-llnh4uj2-3 + 1 + Category + + 3 + + + fr.insee + llnh4uj2-4 + 1 + + fr.insee + CA-llnh4uj2-4 + 1 + Category + + 4 + + + fr.insee + llnh4uj2-5 + 1 + + fr.insee + CA-llnh4uj2-5 + 1 + Category + + 5 + + + fr.insee + llnh4uj2-6 + 1 + + fr.insee + CA-llnh4uj2-6 + 1 + Category + + 6 + + + fr.insee + llnh4uj2-7 + 1 + + fr.insee + CA-llnh4uj2-7 + 1 + Category + + 7 + + + + fr.insee + lldegmb1 + 1 + + SEX_H_F + + Regular + + Ordinal + + + fr.insee + lldegmb1-1 + 1 + + fr.insee + CA-lldegmb1-1 + 1 + Category + + 1 + + + fr.insee + lldegmb1-2 + 1 + + fr.insee + CA-lldegmb1-2 + 1 + Category + + 2 + + + + fr.insee + llmhgfca + 1 + + STATUT_CT_2 + + Regular + + Ordinal + + + fr.insee + llmhgfca-1 + 1 + + fr.insee + CA-llmhgfca-1 + 1 + Category + + 1 + + + fr.insee + llmhgfca-2 + 1 + + fr.insee + CA-llmhgfca-2 + 1 + Category + + 2 + + + fr.insee + llmhgfca-3 + 1 + + fr.insee + CA-llmhgfca-3 + 1 + Category + + 3 + + + fr.insee + llmhgfca-4 + 1 + + fr.insee + CA-llmhgfca-4 + 1 + Category + + 4 + + + fr.insee + llmhgfca-5 + 1 + + fr.insee + CA-llmhgfca-5 + 1 + Category + + 5 + + + + fr.insee + lpsis458 + 1 + + SAL_PAR2_2F_2_IND + + Regular + + Ordinal + + + fr.insee + lpsis458-1 + 1 + + fr.insee + CA-lpsis458-1 + 1 + Category + + 1 + + + fr.insee + lpsis458-2 + 1 + + fr.insee + CA-lpsis458-2 + 1 + Category + + 2 + + + fr.insee + lpsis458-3 + 1 + + fr.insee + CA-lpsis458-3 + 1 + Category + + 3 + + + fr.insee + lpsis458-4 + 1 + + fr.insee + CA-lpsis458-4 + 1 + Category + + 4 + + + + fr.insee + llgrti9z + 1 + + SAL_PAR2_2F_2 + + Regular + + Ordinal + + + fr.insee + llgrti9z-1 + 1 + + fr.insee + CA-llgrti9z-1 + 1 + Category + + 1 + + + fr.insee + llgrti9z-2 + 1 + + fr.insee + CA-llgrti9z-2 + 1 + Category + + 2 + + + fr.insee + llgrti9z-3 + 1 + + fr.insee + CA-llgrti9z-3 + 1 + Category + + 3 + + + fr.insee + llgrti9z-4 + 1 + + fr.insee + CA-llgrti9z-4 + 1 + Category + + 4 + + + fr.insee + llgrti9z-5 + 1 + + fr.insee + CA-llgrti9z-5 + 1 + Category + + 5 + + + fr.insee + llgrti9z-6 + 1 + + fr.insee + CA-llgrti9z-6 + 1 + Category + + 6 + + + fr.insee + llgrti9z-7 + 1 + + fr.insee + CA-llgrti9z-7 + 1 + Category + + 7 + + + + fr.insee + llnhh1go + 1 + + SAL_2_F + + Regular + + Ordinal + + + fr.insee + llnhh1go-1 + 1 + + fr.insee + CA-llnhh1go-1 + 1 + Category + + 1 + + + fr.insee + llnhh1go-2 + 1 + + fr.insee + CA-llnhh1go-2 + 1 + Category + + 2 + + + fr.insee + llnhh1go-3 + 1 + + fr.insee + CA-llnhh1go-3 + 1 + Category + + 3 + + + fr.insee + llnhh1go-4 + 1 + + fr.insee + CA-llnhh1go-4 + 1 + Category + + 4 + + + fr.insee + llnhh1go-5 + 1 + + fr.insee + CA-llnhh1go-5 + 1 + Category + + 5 + + + fr.insee + llnhh1go-6 + 1 + + fr.insee + CA-llnhh1go-6 + 1 + Category + + 6 + + + fr.insee + llnhh1go-7 + 1 + + fr.insee + CA-llnhh1go-7 + 1 + Category + + 7 + + + + fr.insee + l5ksmbco + 1 + + SEP + + Regular + + Ordinal + + + fr.insee + l5ksmbco-1 + 1 + + fr.insee + CA-l5ksmbco-1 + 1 + Category + + 1 + + + fr.insee + l5ksmbco-2 + 1 + + fr.insee + CA-l5ksmbco-2 + 1 + Category + + 2 + + + + fr.insee + l43x5eph + 1 + + ENFCONJ + + Regular + + Ordinal + + + fr.insee + l43x5eph-1 + 1 + + fr.insee + CA-l43x5eph-1 + 1 + Category + + 1 + + + fr.insee + l43x5eph-2 + 1 + + fr.insee + CA-l43x5eph-2 + 1 + Category + + 2 + + + fr.insee + l43x5eph-3 + 1 + + fr.insee + CA-l43x5eph-3 + 1 + Category + + 3 + + + fr.insee + l43x5eph-4 + 1 + + fr.insee + CA-l43x5eph-4 + 1 + Category + + 4 + + + + fr.insee + l5ktegqo + 1 + + SEP1 + + Regular + + Ordinal + + + fr.insee + l5ktegqo-1 + 1 + + fr.insee + CA-l5ktegqo-1 + 1 + Category + + 1 + + + fr.insee + l5ktegqo-2 + 1 + + fr.insee + CA-l5ktegqo-2 + 1 + Category + + 2 + + + + fr.insee + las91jew + 1 + + SEP1_2 + + Regular + + Ordinal + + + fr.insee + las91jew-1 + 1 + + fr.insee + CA-las91jew-1 + 1 + Category + + 1 + + + fr.insee + las91jew-2 + 1 + + fr.insee + CA-las91jew-2 + 1 + Category + + 2 + + + + fr.insee + l7rlvd0y + 1 + + OUI_NON_2_2 + + Regular + + Ordinal + + + fr.insee + l7rlvd0y-1 + 1 + + fr.insee + CA-l7rlvd0y-1 + 1 + Category + + 1 + + + fr.insee + l7rlvd0y-2 + 1 + + fr.insee + CA-l7rlvd0y-2 + 1 + Category + + 2 + + + + fr.insee + llgbzo78 + 1 + + SEXE + + Regular + + Ordinal + + + fr.insee + llgbzo78-1 + 1 + + fr.insee + CA-llgbzo78-1 + 1 + Category + + 1 + + + fr.insee + llgbzo78-2 + 1 + + fr.insee + CA-llgbzo78-2 + 1 + Category + + 2 + + + + fr.insee + l44726g4 + 1 + + OUI_NON_AUTPAR + + Regular + + Ordinal + + + fr.insee + l44726g4-1 + 1 + + fr.insee + CA-l44726g4-1 + 1 + Category + + 1 + + + fr.insee + l44726g4-2 + 1 + + fr.insee + CA-l44726g4-2 + 1 + Category + + 2 + + + fr.insee + l44726g4-3 + 1 + + fr.insee + CA-l44726g4-3 + 1 + Category + + 3 + + + fr.insee + l44726g4-4 + 1 + + fr.insee + CA-l44726g4-4 + 1 + Category + + 4 + + + fr.insee + l44726g4-5 + 1 + + fr.insee + CA-l44726g4-5 + 1 + Category + + 5 + + + + fr.insee + l1f65uvw + 1 + + FREQCONT_2 + + Regular + + Ordinal + + + fr.insee + l1f65uvw-1 + 1 + + fr.insee + CA-l1f65uvw-1 + 1 + Category + + 1 + + + fr.insee + l1f65uvw-2 + 1 + + fr.insee + CA-l1f65uvw-2 + 1 + Category + + 2 + + + fr.insee + l1f65uvw-3 + 1 + + fr.insee + CA-l1f65uvw-3 + 1 + Category + + 3 + + + fr.insee + l1f65uvw-4 + 1 + + fr.insee + CA-l1f65uvw-4 + 1 + Category + + 4 + + + + fr.insee + kwqjqlpa + 1 + + SEP + + Regular + + Ordinal + + + fr.insee + kwqjqlpa-1 + 1 + + fr.insee + CA-kwqjqlpa-1 + 1 + Category + + 2 + + + fr.insee + kwqjqlpa-2 + 1 + + fr.insee + CA-kwqjqlpa-2 + 1 + Category + + 3 + + + fr.insee + kwqjqlpa-3 + 1 + + fr.insee + CA-kwqjqlpa-3 + 1 + Category + + 4 + + + fr.insee + kwqjqlpa-4 + 1 + + fr.insee + CA-kwqjqlpa-4 + 1 + Category + + 5 + + + + fr.insee + l448z131 + 1 + + DECISENF21_2 + + Regular + + Ordinal + + + fr.insee + l448z131-1 + 1 + + fr.insee + CA-l448z131-1 + 1 + Category + + 1 + + + fr.insee + l448z131-2 + 1 + + fr.insee + CA-l448z131-2 + 1 + Category + + 2 + + + fr.insee + l448z131-3 + 1 + + fr.insee + CA-l448z131-3 + 1 + Category + + 3 + + + fr.insee + l448z131-4 + 1 + + fr.insee + CA-l448z131-4 + 1 + Category + + 4 + + + + fr.insee + l1g8605s + 1 + + AIDE + + Regular + + Ordinal + + + fr.insee + l1g8605s-1 + 1 + + fr.insee + CA-l1g8605s-1 + 1 + Category + + 1 + + + fr.insee + l1g8605s-2 + 1 + + fr.insee + CA-l1g8605s-2 + 1 + Category + + 2 + + + fr.insee + l1g8605s-3 + 1 + + fr.insee + CA-l1g8605s-3 + 1 + Category + + 3 + + + fr.insee + l1g8605s-4 + 1 + + fr.insee + CA-l1g8605s-4 + 1 + Category + + 4 + + + fr.insee + l1g8605s-5 + 1 + + fr.insee + CA-l1g8605s-5 + 1 + Category + + 5 + + + + fr.insee + l1ggouwf + 1 + + AIDEQUI + + Regular + + Ordinal + + + fr.insee + l1ggouwf-1 + 1 + + fr.insee + CA-l1ggouwf-1 + 1 + Category + + 1 + + + fr.insee + l1ggouwf-2 + 1 + + fr.insee + CA-l1ggouwf-2 + 1 + Category + + 2 + + + fr.insee + l1ggouwf-3 + 1 + + fr.insee + CA-l1ggouwf-3 + 1 + Category + + 3 + + + fr.insee + l1ggouwf-4 + 1 + + fr.insee + CA-l1ggouwf-4 + 1 + Category + + 4 + + + + fr.insee + lw7ugzzl + 1 + + AIDEQUI_2 + + Regular + + Ordinal + + + fr.insee + lw7ugzzl-1 + 1 + + fr.insee + CA-lw7ugzzl-1 + 1 + Category + + 1 + + + fr.insee + lw7ugzzl-2 + 1 + + fr.insee + CA-lw7ugzzl-2 + 1 + Category + + 2 + + + fr.insee + lw7ugzzl-3 + 1 + + fr.insee + CA-lw7ugzzl-3 + 1 + Category + + 4 + + + + fr.insee + lw7u13rn + 1 + + AIDEQUI_3 + + Regular + + Ordinal + + + fr.insee + lw7u13rn-1 + 1 + + fr.insee + CA-lw7u13rn-1 + 1 + Category + + 1 + + + fr.insee + lw7u13rn-2 + 1 + + fr.insee + CA-lw7u13rn-2 + 1 + Category + + 3 + + + fr.insee + lw7u13rn-3 + 1 + + fr.insee + CA-lw7u13rn-3 + 1 + Category + + 4 + + + + fr.insee + lw7udk0s + 1 + + AIDEQUI_4 + + Regular + + Ordinal + + + fr.insee + lw7udk0s-1 + 1 + + fr.insee + CA-lw7udk0s-1 + 1 + Category + + 1 + + + fr.insee + lw7udk0s-2 + 1 + + fr.insee + CA-lw7udk0s-2 + 1 + Category + + 4 + + + + fr.insee + l6c3qpag + 1 + + AIDE_2 + + Regular + + Ordinal + + + fr.insee + l6c3qpag-1 + 1 + + fr.insee + CA-l6c3qpag-1 + 1 + Category + + 1 + + + fr.insee + l6c3qpag-2 + 1 + + fr.insee + CA-l6c3qpag-2 + 1 + Category + + 2 + + + fr.insee + l6c3qpag-3 + 1 + + fr.insee + CA-l6c3qpag-3 + 1 + Category + + 3 + + + fr.insee + l6c3qpag-4 + 1 + + fr.insee + CA-l6c3qpag-4 + 1 + Category + + 5 + + + + fr.insee + lyoc6v5h + 1 + + LIEU_NAIS + + Regular + + Ordinal + + + fr.insee + lyoc6v5h-1 + 1 + + fr.insee + CA-lyoc6v5h-1 + 1 + Category + + 1 + + + fr.insee + lyoc6v5h-2 + 1 + + fr.insee + CA-lyoc6v5h-2 + 1 + Category + + 2 + + + fr.insee + lyoc6v5h-3 + 1 + + fr.insee + CA-lyoc6v5h-3 + 1 + Category + + 3 + + + fr.insee + lyoc6v5h-4 + 1 + + fr.insee + CA-lyoc6v5h-4 + 1 + Category + + 4 + + + + fr.insee + m21lkkyw + 1 + + OUI_NON_NSP + + Regular + + Ordinal + + + fr.insee + m21lkkyw-1 + 1 + + fr.insee + CA-m21lkkyw-1 + 1 + Category + + 1 + + + fr.insee + m21lkkyw-2 + 1 + + fr.insee + CA-m21lkkyw-2 + 1 + Category + + 2 + + + fr.insee + m21lkkyw-3 + 1 + + fr.insee + CA-m21lkkyw-3 + 1 + Category + + 3 + + + fr.insee + m21lkkyw-4 + 1 + + fr.insee + CA-m21lkkyw-4 + 1 + Category + + 4 + + + + fr.insee + l1f23fi8 + 1 + + STATM + + Regular + + Ordinal + + + fr.insee + l1f23fi8-1 + 1 + + fr.insee + CA-l1f23fi8-1 + 1 + Category + + 1 + + + fr.insee + l1f23fi8-2 + 1 + + fr.insee + CA-l1f23fi8-2 + 1 + Category + + 2 + + + fr.insee + l1f23fi8-3 + 1 + + fr.insee + CA-l1f23fi8-3 + 1 + Category + + 3 + + + fr.insee + l1f23fi8-4 + 1 + + fr.insee + CA-l1f23fi8-4 + 1 + Category + + 4 + + + fr.insee + l1f23fi8-5 + 1 + + fr.insee + CA-l1f23fi8-5 + 1 + Category + + 5 + + + fr.insee + l1f23fi8-6 + 1 + + fr.insee + CA-l1f23fi8-6 + 1 + Category + + 6 + + + + fr.insee + lpsk26ic + 1 + + SAL_PAR1_IND + + Regular + + Ordinal + + + fr.insee + lpsk26ic-1 + 1 + + fr.insee + CA-lpsk26ic-1 + 1 + Category + + 1 + + + fr.insee + lpsk26ic-2 + 1 + + fr.insee + CA-lpsk26ic-2 + 1 + Category + + 2 + + + fr.insee + lpsk26ic-3 + 1 + + fr.insee + CA-lpsk26ic-3 + 1 + Category + + 3 + + + fr.insee + lpsk26ic-4 + 1 + + fr.insee + CA-lpsk26ic-4 + 1 + Category + + 4 + + + + fr.insee + llgq8911 + 1 + + SAL_PAR1 + + Regular + + Ordinal + + + fr.insee + llgq8911-1 + 1 + + fr.insee + CA-llgq8911-1 + 1 + Category + + 1 + + + fr.insee + llgq8911-2 + 1 + + fr.insee + CA-llgq8911-2 + 1 + Category + + 2 + + + fr.insee + llgq8911-3 + 1 + + fr.insee + CA-llgq8911-3 + 1 + Category + + 3 + + + fr.insee + llgq8911-4 + 1 + + fr.insee + CA-llgq8911-4 + 1 + Category + + 4 + + + fr.insee + llgq8911-5 + 1 + + fr.insee + CA-llgq8911-5 + 1 + Category + + 5 + + + fr.insee + llgq8911-6 + 1 + + fr.insee + CA-llgq8911-6 + 1 + Category + + 6 + + + fr.insee + llgq8911-7 + 1 + + fr.insee + CA-llgq8911-7 + 1 + Category + + 7 + + + fr.insee + llgq8911-8 + 1 + + fr.insee + CA-llgq8911-8 + 1 + Category + + 8 + + + + fr.insee + llgoa6cg + 1 + + SAL_2_PAR1 + + Regular + + Ordinal + + + fr.insee + llgoa6cg-1 + 1 + + fr.insee + CA-llgoa6cg-1 + 1 + Category + + 1 + + + fr.insee + llgoa6cg-2 + 1 + + fr.insee + CA-llgoa6cg-2 + 1 + Category + + 2 + + + fr.insee + llgoa6cg-3 + 1 + + fr.insee + CA-llgoa6cg-3 + 1 + Category + + 3 + + + fr.insee + llgoa6cg-4 + 1 + + fr.insee + CA-llgoa6cg-4 + 1 + Category + + 4 + + + fr.insee + llgoa6cg-5 + 1 + + fr.insee + CA-llgoa6cg-5 + 1 + Category + + 5 + + + fr.insee + llgoa6cg-6 + 1 + + fr.insee + CA-llgoa6cg-6 + 1 + Category + + 6 + + + fr.insee + llgoa6cg-7 + 1 + + fr.insee + CA-llgoa6cg-7 + 1 + Category + + 7 + + + + fr.insee + l4qualpe + 1 + + VITAUT_2 + + Regular + + Ordinal + + + fr.insee + l4qualpe-1 + 1 + + fr.insee + CA-l4qualpe-1 + 1 + Category + + 1 + + + fr.insee + l4qualpe-2 + 1 + + fr.insee + CA-l4qualpe-2 + 1 + Category + + 2 + + + + fr.insee + l4o7x17y + 1 + + OUI_NON_2 + + Regular + + Ordinal + + + fr.insee + l4o7x17y-1 + 1 + + fr.insee + CA-l4o7x17y-1 + 1 + Category + + 1 + + + fr.insee + l4o7x17y-2 + 1 + + fr.insee + CA-l4o7x17y-2 + 1 + Category + + 2 + + + + fr.insee + l4n5c408 + 1 + + STATM_2 + + Regular + + Ordinal + + + fr.insee + l4n5c408-1 + 1 + + fr.insee + CA-l4n5c408-1 + 1 + Category + + 1 + + + fr.insee + l4n5c408-2 + 1 + + fr.insee + CA-l4n5c408-2 + 1 + Category + + 2 + + + fr.insee + l4n5c408-3 + 1 + + fr.insee + CA-l4n5c408-3 + 1 + Category + + 3 + + + fr.insee + l4n5c408-4 + 1 + + fr.insee + CA-l4n5c408-4 + 1 + Category + + 4 + + + fr.insee + l4n5c408-5 + 1 + + fr.insee + CA-l4n5c408-5 + 1 + Category + + 5 + + + fr.insee + l4n5c408-6 + 1 + + fr.insee + CA-l4n5c408-6 + 1 + Category + + 6 + + + + fr.insee + lptlw9sx + 1 + + SAL_PAR2_2_IND + + Regular + + Ordinal + + + fr.insee + lptlw9sx-1 + 1 + + fr.insee + CA-lptlw9sx-1 + 1 + Category + + 1 + + + fr.insee + lptlw9sx-2 + 1 + + fr.insee + CA-lptlw9sx-2 + 1 + Category + + 2 + + + fr.insee + lptlw9sx-3 + 1 + + fr.insee + CA-lptlw9sx-3 + 1 + Category + + 3 + + + fr.insee + lptlw9sx-4 + 1 + + fr.insee + CA-lptlw9sx-4 + 1 + Category + + 4 + + + + fr.insee + llmi5xl5 + 1 + + SAL_PAR2_2 + + Regular + + Ordinal + + + fr.insee + llmi5xl5-1 + 1 + + fr.insee + CA-llmi5xl5-1 + 1 + Category + + 1 + + + fr.insee + llmi5xl5-2 + 1 + + fr.insee + CA-llmi5xl5-2 + 1 + Category + + 2 + + + fr.insee + llmi5xl5-3 + 1 + + fr.insee + CA-llmi5xl5-3 + 1 + Category + + 3 + + + fr.insee + llmi5xl5-4 + 1 + + fr.insee + CA-llmi5xl5-4 + 1 + Category + + 4 + + + fr.insee + llmi5xl5-5 + 1 + + fr.insee + CA-llmi5xl5-5 + 1 + Category + + 5 + + + fr.insee + llmi5xl5-6 + 1 + + fr.insee + CA-llmi5xl5-6 + 1 + Category + + 6 + + + fr.insee + llmi5xl5-7 + 1 + + fr.insee + CA-llmi5xl5-7 + 1 + Category + + 7 + + + fr.insee + llmi5xl5-8 + 1 + + fr.insee + CA-llmi5xl5-8 + 1 + Category + + 8 + + + + fr.insee + llgry90d + 1 + + SAL_2_PAR2 + + Regular + + Ordinal + + + fr.insee + llgry90d-1 + 1 + + fr.insee + CA-llgry90d-1 + 1 + Category + + 1 + + + fr.insee + llgry90d-2 + 1 + + fr.insee + CA-llgry90d-2 + 1 + Category + + 2 + + + fr.insee + llgry90d-3 + 1 + + fr.insee + CA-llgry90d-3 + 1 + Category + + 3 + + + fr.insee + llgry90d-4 + 1 + + fr.insee + CA-llgry90d-4 + 1 + Category + + 4 + + + fr.insee + llgry90d-5 + 1 + + fr.insee + CA-llgry90d-5 + 1 + Category + + 5 + + + fr.insee + llgry90d-6 + 1 + + fr.insee + CA-llgry90d-6 + 1 + Category + + 6 + + + fr.insee + llgry90d-7 + 1 + + fr.insee + CA-llgry90d-7 + 1 + Category + + 7 + + + + fr.insee + lagv1pzu + 1 + + VITAUT_2 + + Regular + + Ordinal + + + fr.insee + lagv1pzu-1 + 1 + + fr.insee + CA-lagv1pzu-1 + 1 + Category + + 1 + + + fr.insee + lagv1pzu-2 + 1 + + fr.insee + CA-lagv1pzu-2 + 1 + Category + + 2 + + + fr.insee + lagv1pzu-3 + 1 + + fr.insee + CA-lagv1pzu-3 + 1 + Category + + 3 + + + + fr.insee + kwqjgcfw + 1 + + VITAUT + + Regular + + Ordinal + + + fr.insee + kwqjgcfw-1 + 1 + + fr.insee + CA-kwqjgcfw-1 + 1 + Category + + 1 + + + fr.insee + kwqjgcfw-2 + 1 + + fr.insee + CA-kwqjgcfw-2 + 1 + Category + + 2 + + + + fr.insee + l1f5t6b0 + 1 + + JEUN + + Regular + + Ordinal + + + fr.insee + l1f5t6b0-1 + 1 + + fr.insee + CA-l1f5t6b0-1 + 1 + Category + + 1 + + + fr.insee + l1f5t6b0-2 + 1 + + fr.insee + CA-l1f5t6b0-2 + 1 + Category + + 2 + + + fr.insee + l1f5t6b0-3 + 1 + + fr.insee + CA-l1f5t6b0-3 + 1 + Category + + 3 + + + fr.insee + l1f5t6b0-4 + 1 + + fr.insee + CA-l1f5t6b0-4 + 1 + Category + + 4 + + + fr.insee + l1f5t6b0-5 + 1 + + fr.insee + CA-l1f5t6b0-5 + 1 + Category + + 5 + + + fr.insee + l1f5t6b0-6 + 1 + + fr.insee + CA-l1f5t6b0-6 + 1 + Category + + 6 + + + fr.insee + l1f5t6b0-7 + 1 + + fr.insee + CA-l1f5t6b0-7 + 1 + Category + + 7 + + + + fr.insee + l43tnvfy + 1 + + PLACEMENT + + Regular + + Ordinal + + + fr.insee + l43tnvfy-1 + 1 + + fr.insee + CA-l43tnvfy-1 + 1 + Category + + 1 + + + fr.insee + l43tnvfy-2 + 1 + + fr.insee + CA-l43tnvfy-2 + 1 + Category + + 2 + + + fr.insee + l43tnvfy-3 + 1 + + fr.insee + CA-l43tnvfy-3 + 1 + Category + + 3 + + + fr.insee + l43tnvfy-4 + 1 + + fr.insee + CA-l43tnvfy-4 + 1 + Category + + 4 + + + + fr.insee + m167stvq + 1 + + TRAV + + Regular + + Ordinal + + + fr.insee + m167stvq-1 + 1 + + fr.insee + CA-m167stvq-1 + 1 + Category + + 1 + + + fr.insee + m167stvq-2 + 1 + + fr.insee + CA-m167stvq-2 + 1 + Category + + 2 + + + fr.insee + m167stvq-3 + 1 + + fr.insee + CA-m167stvq-3 + 1 + Category + + 3 + + + + fr.insee + ljwxdg2x + 1 + + REP + + Regular + + Ordinal + + + fr.insee + ljwxdg2x-1 + 1 + + fr.insee + CA-ljwxdg2x-1 + 1 + Category + + 1 + + + fr.insee + ljwxdg2x-2 + 1 + + fr.insee + CA-ljwxdg2x-2 + 1 + Category + + 2 + + + + fr.insee + m0ksu7an + 1 + + CONTACT + + Regular + + Ordinal + + + fr.insee + m0ksu7an-1 + 1 + + fr.insee + CA-m0ksu7an-1 + 1 + Category + + 1 + + + fr.insee + m0ksu7an-2 + 1 + + fr.insee + CA-m0ksu7an-2 + 1 + Category + + 2 + + + + fr.insee + lmrsgeny + 1 + + SITE + + Regular + + Ordinal + + + fr.insee + lmrsgeny-1 + 1 + + fr.insee + CA-lmrsgeny-1 + 1 + Category + + 1 + + + fr.insee + lmrsgeny-2 + 1 + + fr.insee + CA-lmrsgeny-2 + 1 + Category + + 2 + + + fr.insee + lmrsgeny-3 + 1 + + fr.insee + CA-lmrsgeny-3 + 1 + Category + + 3 + + + + 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-m4754kes + 1 + + Variable Scheme for the survey + + + fr.insee + ltd23enq + 1 + + LIBSEXPAR1 + + + LIBSEXPAR1 + + + fr.insee + ltd23enq-VROP + 1 + + + + fr.insee + ltd23enq-GI + 1 + GenerationInstruction + + + fr.insee + ltd23enq-GOP + 1 + OutParameter + + + fr.insee + ltd23enq-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1mklp + 1 + + LIBSEXPAR2 + + + LIBSEXPAR2 + + + fr.insee + ltd1mklp-VROP + 1 + + + + fr.insee + ltd1mklp-GI + 1 + GenerationInstruction + + + fr.insee + ltd1mklp-GOP + 1 + OutParameter + + + fr.insee + ltd1mklp-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1mjsw + 1 + + LIBSUJETPAR1 + + + LIBSUJETPAR1 + + + fr.insee + ltd1mjsw-VROP + 1 + + + + fr.insee + ltd1mjsw-GI + 1 + GenerationInstruction + + + fr.insee + ltd1mjsw-GOP + 1 + OutParameter + + + fr.insee + ltd1mjsw-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd23txo + 1 + + LIBSUJETPAR2 + + + LIBSUJETPAR2 + + + fr.insee + ltd23txo-VROP + 1 + + + + fr.insee + ltd23txo-GI + 1 + GenerationInstruction + + + fr.insee + ltd23txo-GOP + 1 + OutParameter + + + fr.insee + ltd23txo-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1kmxm + 1 + + LIBSEX + + + LIBSEX + + + fr.insee + ltd1kmxm-VROP + 1 + + + + fr.insee + ltd1kmxm-GI + 1 + GenerationInstruction + + + fr.insee + ltd1kmxm-GOP + 1 + OutParameter + + + fr.insee + ltd1kmxm-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd24u2k + 1 + + AGE + + + AGE + + + fr.insee + ltd24u2k-VROP + 1 + + + + fr.insee + ltd24u2k-GI + 1 + GenerationInstruction + + + fr.insee + ltd24u2k-GOP + 1 + OutParameter + + + fr.insee + ltd24u2k-VROP + 1 + OutParameter + + + + + ans + + 18 + 110 + + Decimal + + + + + fr.insee + ltd22w3g + 1 + + LIBSEXCJH + + + LIBSEXCJH + + + fr.insee + ltd22w3g-VROP + 1 + + + + fr.insee + ltd22w3g-GI + 1 + GenerationInstruction + + + fr.insee + ltd22w3g-GOP + 1 + OutParameter + + + fr.insee + ltd22w3g-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1t7in + 1 + + ANNAISCJ + + + ANNAISCJ + + + fr.insee + ltd1t7in-VROP + 1 + + + + fr.insee + ltd1t7in-GI + 1 + GenerationInstruction + + + fr.insee + ltd1t7in-GOP + 1 + OutParameter + + + fr.insee + ltd1t7in-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1nckz + 1 + + ANAISS + + + ANAISS + + + fr.insee + ltd1nckz-VROP + 1 + + + + fr.insee + ltd1nckz-GI + 1 + GenerationInstruction + + + fr.insee + ltd1nckz-GOP + 1 + OutParameter + + + fr.insee + ltd1nckz-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1s54l + 1 + + ANAIS + + + ANAIS + + + fr.insee + ltd1s54l-VROP + 1 + + + + fr.insee + ltd1s54l-GI + 1 + GenerationInstruction + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + ltd1s54l-VROP + 1 + OutParameter + + + + + + 1880 + 2007 + + Decimal + + + + + fr.insee + ltd20wke + 1 + + AG_ENFAIL1 + + + AG_ENFAIL1 + + + fr.insee + ltd20wke-VROP + 1 + + + + fr.insee + ltd20wke-GI + 1 + GenerationInstruction + + + fr.insee + ltd20wke-GOP + 1 + OutParameter + + + fr.insee + ltd20wke-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1nmcl + 1 + + AG_ENFAIL2 + + + AG_ENFAIL2 + + + fr.insee + ltd1nmcl-VROP + 1 + + + + fr.insee + ltd1nmcl-GI + 1 + GenerationInstruction + + + fr.insee + ltd1nmcl-GOP + 1 + OutParameter + + + fr.insee + ltd1nmcl-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1z2u9 + 1 + + AG_ENFAIL3 + + + AG_ENFAIL3 + + + fr.insee + ltd1z2u9-VROP + 1 + + + + fr.insee + ltd1z2u9-GI + 1 + GenerationInstruction + + + fr.insee + ltd1z2u9-GOP + 1 + OutParameter + + + fr.insee + ltd1z2u9-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd22uk7 + 1 + + AG_ENFAIL4 + + + AG_ENFAIL4 + + + fr.insee + ltd22uk7-VROP + 1 + + + + fr.insee + ltd22uk7-GI + 1 + GenerationInstruction + + + fr.insee + ltd22uk7-GOP + 1 + OutParameter + + + fr.insee + ltd22uk7-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd24w90 + 1 + + AG_ENFAIL5 + + + AG_ENFAIL5 + + + fr.insee + ltd24w90-VROP + 1 + + + + fr.insee + ltd24w90-GI + 1 + GenerationInstruction + + + fr.insee + ltd24w90-GOP + 1 + OutParameter + + + fr.insee + ltd24w90-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1mo93 + 1 + + AG_ENFAIL6 + + + AG_ENFAIL6 + + + fr.insee + ltd1mo93-VROP + 1 + + + + fr.insee + ltd1mo93-GI + 1 + GenerationInstruction + + + fr.insee + ltd1mo93-GOP + 1 + OutParameter + + + fr.insee + ltd1mo93-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1tr9u + 1 + + AG_ENFAIL7 + + + AG_ENFAIL7 + + + fr.insee + ltd1tr9u-VROP + 1 + + + + fr.insee + ltd1tr9u-GI + 1 + GenerationInstruction + + + fr.insee + ltd1tr9u-GOP + 1 + OutParameter + + + fr.insee + ltd1tr9u-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1xvpk + 1 + + AG_ENFAIL8 + + + AG_ENFAIL8 + + + fr.insee + ltd1xvpk-VROP + 1 + + + + fr.insee + ltd1xvpk-GI + 1 + GenerationInstruction + + + fr.insee + ltd1xvpk-GOP + 1 + OutParameter + + + fr.insee + ltd1xvpk-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd23kmk + 1 + + PRENOMREP + + + PRENOMREP + + + fr.insee + ltd23kmk-VROP + 1 + + + + fr.insee + ltd23kmk-GI + 1 + GenerationInstruction + + + fr.insee + ltd23kmk-GOP + 1 + OutParameter + + + fr.insee + ltd23kmk-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1w7di + 1 + + SEXE_C + + + SEXE_C + + + fr.insee + ltd1w7di-VROP + 1 + + + + fr.insee + ltd1w7di-GI + 1 + GenerationInstruction + + + fr.insee + ltd1w7di-GOP + 1 + OutParameter + + + fr.insee + ltd1w7di-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1p2io + 1 + + SEXE_U1 + + + SEXE_U1 + + + fr.insee + ltd1p2io-VROP + 1 + + + + fr.insee + ltd1p2io-GI + 1 + GenerationInstruction + + + fr.insee + ltd1p2io-GOP + 1 + OutParameter + + + fr.insee + ltd1p2io-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1rvdq + 1 + + SEXE_U2 + + + SEXE_U2 + + + fr.insee + ltd1rvdq-VROP + 1 + + + + fr.insee + ltd1rvdq-GI + 1 + GenerationInstruction + + + fr.insee + ltd1rvdq-GOP + 1 + OutParameter + + + fr.insee + ltd1rvdq-VROP + 1 + OutParameter + + + + + + + + fr.insee + ltd1vp73 + 1 + + LIBSEXCJF + + + LIBSEXCJF + + + fr.insee + ltd1vp73-VROP + 1 + + + + fr.insee + ltd1vp73-GI + 1 + GenerationInstruction + + + fr.insee + ltd1vp73-GOP + 1 + OutParameter + + + fr.insee + ltd1vp73-VROP + 1 + OutParameter + + + + + + + + fr.insee + lvwd7z56 + 1 + + AG_ENFLOG1 + + + AG_ENFLOG1 + + + fr.insee + lvwd7z56-VROP + 1 + + + + fr.insee + lvwd7z56-GI + 1 + GenerationInstruction + + + fr.insee + lvwd7z56-GOP + 1 + OutParameter + + + fr.insee + lvwd7z56-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwcvvn8 + 1 + + AG_ENFLOG2 + + + AG_ENFLOG2 + + + fr.insee + lvwcvvn8-VROP + 1 + + + + fr.insee + lvwcvvn8-GI + 1 + GenerationInstruction + + + fr.insee + lvwcvvn8-GOP + 1 + OutParameter + + + fr.insee + lvwcvvn8-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwcxiaz + 1 + + AG_ENFLOG3 + + + AG_ENFLOG3 + + + fr.insee + lvwcxiaz-VROP + 1 + + + + fr.insee + lvwcxiaz-GI + 1 + GenerationInstruction + + + fr.insee + lvwcxiaz-GOP + 1 + OutParameter + + + fr.insee + lvwcxiaz-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwdaze4 + 1 + + AG_ENFLOG4 + + + AG_ENFLOG4 + + + fr.insee + lvwdaze4-VROP + 1 + + + + fr.insee + lvwdaze4-GI + 1 + GenerationInstruction + + + fr.insee + lvwdaze4-GOP + 1 + OutParameter + + + fr.insee + lvwdaze4-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwd63xh + 1 + + AG_ENFLOG5 + + + AG_ENFLOG5 + + + fr.insee + lvwd63xh-VROP + 1 + + + + fr.insee + lvwd63xh-GI + 1 + GenerationInstruction + + + fr.insee + lvwd63xh-GOP + 1 + OutParameter + + + fr.insee + lvwd63xh-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwdayz6 + 1 + + AG_ENFLOG6 + + + AG_ENFLOG6 + + + fr.insee + lvwdayz6-VROP + 1 + + + + fr.insee + lvwdayz6-GI + 1 + GenerationInstruction + + + fr.insee + lvwdayz6-GOP + 1 + OutParameter + + + fr.insee + lvwdayz6-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwcxkrp + 1 + + AG_ENFLOG7 + + + AG_ENFLOG7 + + + fr.insee + lvwcxkrp-VROP + 1 + + + + fr.insee + lvwcxkrp-GI + 1 + GenerationInstruction + + + fr.insee + lvwcxkrp-GOP + 1 + OutParameter + + + fr.insee + lvwcxkrp-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + lvwd4c2m + 1 + + AG_ENFLOG8 + + + AG_ENFLOG8 + + + fr.insee + lvwd4c2m-VROP + 1 + + + + fr.insee + lvwd4c2m-GI + 1 + GenerationInstruction + + + fr.insee + lvwd4c2m-GOP + 1 + OutParameter + + + fr.insee + lvwd4c2m-VROP + 1 + OutParameter + + + + + ans + + 0 + 110 + + Decimal + + + + + fr.insee + ltd1ad0o + 1 + + RPTYPEQUEST + + + RPTYPEQUEST + + + + + + + fr.insee + ltd1mblq + 1 + + RPLISTEPRENOMS + + + RPLISTEPRENOMS + + + + + + + fr.insee + ltd1b4rx + 1 + + RPPRENOMPAR1 + + + RPPRENOMPAR1 + + + + + + + fr.insee + ltd1pqmf + 1 + + RPPRENOMPAR2 + + + RPPRENOMPAR2 + + + + + + + fr.insee + ltd18lx3 + 1 + + RPANAISPAR1 + + + RPANAISPAR1 + + + + + + + fr.insee + ltd1n50d + 1 + + RPANAISPAR2 + + + RPANAISPAR2 + + + + + + + fr.insee + ltd1knjj + 1 + + RPSEXPAR1 + + + RPSEXPAR1 + + + + + + + fr.insee + ltd16g0n + 1 + + RPSEXPAR2 + + + RPSEXPAR2 + + + + + + + fr.insee + ltd1ceqy + 1 + + RPPRENOMCONJ + + + RPPRENOMCONJ + + + + + + + fr.insee + ltd1hs8a + 1 + + RPNAIPAR1 + + + RPNAIPAR1 + + + + + + + fr.insee + ltd1pqf0 + 1 + + RPANAISCONJ + + + RPANAISCONJ + + + + + + + fr.insee + lywyltkf + 1 + + RPPRENOM + + + RPPRENOM + + + + + + + fr.insee + lywyejl8 + 1 + + RPNBQUEST + + + RPNBQUEST + + + + + + + fr.insee + lywyp55m + 1 + + RPMNAISENQ + + + RPMNAISENQ + + + + + + + fr.insee + lywysir4 + 1 + + RPJNAISENQ + + + RPJNAISENQ + + + + + + + fr.insee + lywyodr9 + 1 + + RPANAISENQ + + + RPANAISENQ + + + + + + + fr.insee + lyygfcb8 + 1 + + RPNAIPAR2 + + + RPNAIPAR2 + + + + + + + fr.insee + lyygms3p + 1 + + RPPNAIPAR1 + + + RPPNAIPAR1 + + + + + + + fr.insee + lyygojza + 1 + + RPPNAIPAR2 + + + RPPNAIPAR2 + + + + + + + fr.insee + m0b4t95v + 1 + + RPSEXCONJ + + + RPSEXCONJ + + + + + + + fr.insee + m0kr9lfk + 1 + + TYPE_QUEST + + + TYPE_QUEST + + + + + + + fr.insee + ly4c5mxw + 1 + + VAL_PRENOM + + + VAL_PRENOM label + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + l473latk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly4bui4s + 1 + + PRENOM_X + + + PRENOM_X label + + + fr.insee + ly4bzjcl-QOP-ly4c9b6e + 1 + OutParameter + + + fr.insee + ly4bzjcl + 1 + QuestionItem + + + + + + + fr.insee + ly4bsvyu + 1 + + VAL_ANNAISS + + + VAL_ANNAISS label + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + OutParameter + + + fr.insee + ly4blyt6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + m20g7o2q + 1 + + DATNAIS_X + + + DATNAIS_X label + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2025-01-01 + + + + + + fr.insee + ly4cxzye + 1 + + MINEUR + + + MINEUR label + + + fr.insee + ly4cuvn6-QOP-ly4d6z4v + 1 + OutParameter + + + fr.insee + ly4cuvn6 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + ltg0flhk + 1 + + COUPLE + + + COUPLE label + + + fr.insee + kwq9y19w-QOP-kwq9xmzm + 1 + OutParameter + + + fr.insee + kwq9y19w + 1 + QuestionItem + + + + + fr.insee + kwqfz7tj + 1 + CodeList + + + + + + fr.insee + lzths0nv + 1 + + RAISON_VIE_CJT + + + RAISON_VIE_CJT label + + + fr.insee + l0qkj23a-QOP-l34fp0w3 + 1 + OutParameter + + + fr.insee + l0qkj23a + 1 + QuestionItem + + + + + fr.insee + kwqf7soc + 1 + CodeList + + + + + + fr.insee + li359gpp + 1 + + PRECIS_VIECJT + + + PRECIS_VIECJT label + + + fr.insee + li353rhu-QOP-li3584nx + 1 + OutParameter + + + fr.insee + li353rhu + 1 + QuestionItem + + + + + + + fr.insee + lyye0duu + 1 + + PROX_VIE_CJT + + + PROX_VIE_CJT label + + + fr.insee + lyye1a7t-QOP-lyygl4i9 + 1 + OutParameter + + + fr.insee + lyye1a7t + 1 + QuestionItem + + + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + fr.insee + ly34jqso + 1 + + PRENOM_C + + + PRENOM_C label + + + fr.insee + l34grb6h-QOP-l34guyz9 + 1 + OutParameter + + + fr.insee + l34grb6h + 1 + QuestionItem + + + + + + + fr.insee + lna1wj6r + 1 + + DATNAIS_C + + + DATNAIS_C label + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + kwqa0ism + 1 + QuestionItem + + + + YYYY-MM-DD + date + + 1900-01-01 + 2011-01-01 + + + + + + fr.insee + lldrx968 + 1 + + SEXE_CH + + + SEXE_CH label + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + kwqabjga + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + lldrjxp8 + 1 + + LIEUNAIS_CH + + + LIEUNAIS_CH label + + + fr.insee + l4o59ei7-QOP-l4o57gfv + 1 + OutParameter + + + fr.insee + l4o59ei7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxlfv8 + 1 + + DNAI_CH + + + DNAI_CH label + + + fr.insee + l0quikkt-QOP-llvz459i + 1 + OutParameter + + + fr.insee + l0quikkt + 1 + QuestionItem + + + + + + + fr.insee + llvxhzxi + 1 + + PNAI_CH + + + PNAI_CH label + + + fr.insee + l4o57595-QOP-llvz9iqu + 1 + OutParameter + + + fr.insee + l4o57595 + 1 + QuestionItem + + + + + + + fr.insee + m0gqszl1 + 1 + + TRAV_CH_C + + + TRAV_CH_C label + + + fr.insee + l7ywou64-QOP-l7ywme7g + 1 + OutParameter + + + fr.insee + l7ywou64 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + m0gq7tvc + 1 + + TRAV_CH_P + + + TRAV_CH_P label + + + fr.insee + m0gppl9e-QOP-m0gq7pno + 1 + OutParameter + + + fr.insee + m0gppl9e + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvx9163 + 1 + + PROF_CH1 + + + PROF_CH1 label + + + fr.insee + l0qudtd2-QOP-llvzbt5w + 1 + OutParameter + + + fr.insee + l0qudtd2 + 1 + QuestionItem + + + + + + + fr.insee + llvxubc4 + 1 + + PROF_CH2 + + + PROF_CH2 label + + + fr.insee + lldp4562-QOP-llvywmha + 1 + OutParameter + + + fr.insee + lldp4562 + 1 + QuestionItem + + + + + + + fr.insee + llds9t21 + 1 + + PROF_C2H + + + PROF_C2H label + + + fr.insee + l43zea6v-QOP-l4o6x8gg + 1 + OutParameter + + + fr.insee + l43zea6v + 1 + QuestionItem + + + + + + + fr.insee + llmh74gq + 1 + + STATUT_CH + + + STATUT_CH label + + + fr.insee + l0quphwx-QOP-l43z7g5s + 1 + OutParameter + + + fr.insee + l0quphwx + 1 + QuestionItem + + + + + fr.insee + l43yp3tr + 1 + CodeList + + + + + + fr.insee + lwp4zy9s + 1 + + SAL_IND_CH + + + SAL_IND_CH label + + + fr.insee + lpsj90yi-QOP-lpsj028t + 1 + OutParameter + + + fr.insee + lpsj90yi + 1 + QuestionItem + + + + + fr.insee + lpsjdj1b + 1 + CodeList + + + + + + fr.insee + loref546 + 1 + + SAL_FP_CH + + + SAL_FP_CH label + + + fr.insee + llgt315z-QOP-llgsts0b + 1 + OutParameter + + + fr.insee + llgt315z + 1 + QuestionItem + + + + + fr.insee + llmhtv0t + 1 + CodeList + + + + + + fr.insee + lorbjz57 + 1 + + SAL_ENT_CH + + + SAL_ENT_CH label + + + fr.insee + llgt75zv-QOP-llgt1faa + 1 + OutParameter + + + fr.insee + llgt75zv + 1 + QuestionItem + + + + + fr.insee + llnh4uj2 + 1 + CodeList + + + + + + fr.insee + lldrj7dd + 1 + + SEXE_CF + + + SEXE_CF label + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + llde3pgg + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + lldrxbyn + 1 + + LIEUNAIS_CF + + + LIEUNAIS_CF label + + + fr.insee + lldpi629-QOP-lldpfefv + 1 + OutParameter + + + fr.insee + lldpi629 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxrs8n + 1 + + DNAI_CF + + + DNAI_CF label + + + fr.insee + lldp8203-QOP-llvz9d48 + 1 + OutParameter + + + fr.insee + lldp8203 + 1 + QuestionItem + + + + + + + fr.insee + llvxem9q + 1 + + PNAI_CF + + + PNAI_CF label + + + fr.insee + lldpejfa-QOP-llvzbi5b + 1 + OutParameter + + + fr.insee + lldpejfa + 1 + QuestionItem + + + + + + + fr.insee + m0gqzvxt + 1 + + TRAV_CF_C + + + TRAV_CF_C label + + + fr.insee + m0gqs0nr-QOP-m0gr1c1q + 1 + OutParameter + + + fr.insee + m0gqs0nr + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + m0gr00lh + 1 + + TRAV_CF_P + + + TRAV_CF_P label + + + fr.insee + m0gr51no-QOP-m0gr5mbj + 1 + OutParameter + + + fr.insee + m0gr51no + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxpjun + 1 + + PROF_CF1 + + + PROF_CF1 label + + + fr.insee + l4quaxvt-QOP-llvz89y7 + 1 + OutParameter + + + fr.insee + l4quaxvt + 1 + QuestionItem + + + + + + + fr.insee + llvxbql6 + 1 + + PROF_CF2 + + + PROF_CF2 label + + + fr.insee + lldpqtrp-QOP-llvz4gqz + 1 + OutParameter + + + fr.insee + lldpqtrp + 1 + QuestionItem + + + + + + + fr.insee + lldse6ue + 1 + + PROF_C2F + + + PROF_C2F label + + + fr.insee + lldqd2sd-QOP-lldqfnvv + 1 + OutParameter + + + fr.insee + lldqd2sd + 1 + QuestionItem + + + + + + + fr.insee + llmhxy6z + 1 + + STATUT_CF + + + STATUT_CF label + + + fr.insee + llmhdvun-QOP-llmhi8tu + 1 + OutParameter + + + fr.insee + llmhdvun + 1 + QuestionItem + + + + + fr.insee + llmhgfca + 1 + CodeList + + + + + + fr.insee + lwuo4x4c + 1 + + SAL_IND_CF + + + SAL_IND_CF label + + + fr.insee + lpsiiaoa-QOP-lpsicp04 + 1 + OutParameter + + + fr.insee + lpsiiaoa + 1 + QuestionItem + + + + + fr.insee + lpsis458 + 1 + CodeList + + + + + + fr.insee + lorc20ro + 1 + + SAL_FP_CF + + + SAL_FP_CF label + + + fr.insee + llmhi6fd-QOP-llmhkcpp + 1 + OutParameter + + + fr.insee + llmhi6fd + 1 + QuestionItem + + + + + fr.insee + llgrti9z + 1 + CodeList + + + + + + fr.insee + lorbtmqe + 1 + + SAL_ENT_CF + + + SAL_ENT_CF label + + + fr.insee + llnh2qpm-QOP-llnh4jb1 + 1 + OutParameter + + + fr.insee + llnh2qpm + 1 + QuestionItem + + + + + fr.insee + llnhh1go + 1 + CodeList + + + + + + fr.insee + lxsrrd0n + 1 + + ANNEE_U + + + ANNEE_U label + + + fr.insee + l27dlmvl-QOP-l27dtcgo + 1 + OutParameter + + + fr.insee + l27dlmvl + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + llm3di1p + 1 + + PACS + + + PACS label + + + fr.insee + kwqa4zjf-QOP-kwqanscn + 1 + OutParameter + + + fr.insee + kwqa4zjf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxssi4gn + 1 + + ANNEE_PACS + + + ANNEE_PACS label + + + fr.insee + l0qu7e2g-QOP-l0qu1ddb + 1 + OutParameter + + + fr.insee + l0qu7e2g + 1 + QuestionItem + + + + YYYY + gYear + + 1999 + 2025 + + + + + + fr.insee + li36k75s + 1 + + MARI + + + MARI label + + + fr.insee + l0qujqzn-QOP-l0queysd + 1 + OutParameter + + + fr.insee + l0qujqzn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxstcckb + 1 + + ANNEE_MARI + + + ANNEE_MARI label + + + fr.insee + l0qul94p-QOP-l0qum61j + 1 + OutParameter + + + fr.insee + l0qul94p + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m1552y2o + 1 + + SEPARE + + + SEPARE label + + + fr.insee + l5kszr2f-QOP-l5kt58n3 + 1 + OutParameter + + + fr.insee + l5kszr2f + 1 + QuestionItem + + + + + fr.insee + l5ksmbco + 1 + CodeList + + + + + + fr.insee + lxstcgd1 + 1 + + ANNEE_S + + + ANNEE_S label + + + fr.insee + l27dzhpw-QOP-l27e9xg5 + 1 + OutParameter + + + fr.insee + l27dzhpw + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + lxstcz30 + 1 + + ANNEE_D + + + ANNEE_D label + + + fr.insee + l155mqhc-QOP-l155u3w9 + 1 + OutParameter + + + fr.insee + l155mqhc + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + li36eujn + 1 + + VECU_C + + + VECU_C label + + + fr.insee + l8lz0355-QOP-l8lyoa9v + 1 + OutParameter + + + fr.insee + l8lz0355 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + li36l5p1 + 1 + + ENFAV_C + + + ENFAV_C label + + + fr.insee + l43u9qqf-QOP-l43udnys + 1 + OutParameter + + + fr.insee + l43u9qqf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9iilq19 + 1 + + NBENFAV_C + + + NBENFAV_C label + + + fr.insee + l43u4x96-QOP-l43udkpq + 1 + OutParameter + + + fr.insee + l43u4x96 + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + li36im4p + 1 + + NBENFAV_VENU_C1 + + + NBENFAV_VENU_C1 label + + + fr.insee + l5jnmvs2-QOP-l5jnikmw + 1 + OutParameter + + + fr.insee + l5jnmvs2 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lwuo0yno + 1 + + NBENFAV_VENU_C + + + NBENFAV_VENU_C label + + + fr.insee + l43why6c-QOP-l43wz325 + 1 + OutParameter + + + fr.insee + l43why6c + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + lv2h8bki + 1 + + ENF21_AUTPAR_C1 + + + 1 - "Non" + + + fr.insee + l43xg8do-QOP-lv2h4pt2 + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv2h3x6o + 1 + + ENF21_AUTPAR_C2 + + + 2 - "Oui, tout le temps" + + + fr.insee + l43xg8do-QOP-lv2hb16f + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv2h9wqf + 1 + + ENF21_AUTPAR_C3 + + + 3 - "Oui, au moins la moitié du temps" + + + fr.insee + l43xg8do-QOP-lv2h4sxw + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv2hgjj4 + 1 + + ENF21_AUTPAR_C4 + + + 4 - "Oui, moins de la moitié du temps" + + + fr.insee + l43xg8do-QOP-lv2h9xib + 1 + OutParameter + + + fr.insee + l43xg8do + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + li36e6jz + 1 + + AUT_UNION + + + AUT_UNION label + + + fr.insee + l15131wu-QOP-l43xhx4c + 1 + OutParameter + + + fr.insee + l15131wu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lagvhww3 + 1 + + NB_AUT_UNION + + + NB_AUT_UNION label + + + fr.insee + l43x1amr-QOP-l43xhfsb + 1 + OutParameter + + + fr.insee + l43x1amr + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l34g1oxk + 1 + + PRENOM_U1 + + + PRENOM_U1 label + + + fr.insee + kwqa53jx-QOP-kwqa5f6j + 1 + OutParameter + + + fr.insee + kwqa53jx + 1 + QuestionItem + + + + + + + fr.insee + llgbswhy + 1 + + SEXE_U1H + + + SEXE_U1H label + + + fr.insee + l4p8skko-QOP-l4p8w47s + 1 + OutParameter + + + fr.insee + l4p8skko + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + llgbm843 + 1 + + SEXE_U1F + + + SEXE_U1F label + + + fr.insee + lldenssh-QOP-lldeceld + 1 + OutParameter + + + fr.insee + lldenssh + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + lxstewdv + 1 + + ANNEE_U1 + + + ANNEE_U1 label + + + fr.insee + l34fzu5m-QOP-l34fz29f + 1 + OutParameter + + + fr.insee + l34fzu5m + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + llm3jau1 + 1 + + PACS_U1 + + + PACS_U1 label + + + fr.insee + l27dlnmq-QOP-l27dler4 + 1 + OutParameter + + + fr.insee + l27dlnmq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxstaeby + 1 + + ANNEE_PACS_U1 + + + ANNEE_PACS_U1 label + + + fr.insee + l27dns8a-QOP-l27dy9w1 + 1 + OutParameter + + + fr.insee + l27dns8a + 1 + QuestionItem + + + + YYYY + gYear + + 1999 + 2024 + + + + + + fr.insee + li36ikzo + 1 + + MARI_U1 + + + MARI_U1 label + + + fr.insee + l27duust-QOP-l27dl55t + 1 + OutParameter + + + fr.insee + l27duust + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxst9z86 + 1 + + ANNEE_MARI_U1 + + + ANNEE_MARI_U1 label + + + fr.insee + l27e50tv-QOP-l27dy96e + 1 + OutParameter + + + fr.insee + l27e50tv + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + m155gqwm + 1 + + SEPARE_U1 + + + SEPARE_U1 label + + + fr.insee + l5ktf1wn-QOP-l5kt1un9 + 1 + OutParameter + + + fr.insee + l5ktf1wn + 1 + QuestionItem + + + + + fr.insee + l5ktegqo + 1 + CodeList + + + + + + fr.insee + lxstc10n + 1 + + ANNEE_S_U1 + + + ANNEE_S_U1 label + + + fr.insee + l27dzhzv-QOP-l27e9d05 + 1 + OutParameter + + + fr.insee + l27dzhzv + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + m37ay6z4 + 1 + + ANNEE_D_U1 + + + ANNEE_D_U1 label + + + fr.insee + l27e0qyq-QOP-l27e0zm5 + 1 + OutParameter + + + fr.insee + l27e0qyq + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + l4cje9hx + 1 + + ENFAV_C_U1 + + + ENFAV_C_U1 label + + + fr.insee + l4cjg2rp-QOP-l4cjcmvn + 1 + OutParameter + + + fr.insee + l4cjg2rp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5ktp37h + 1 + + NBENFAV_C_U1 + + + NBENFAV_C_U1 label + + + fr.insee + l4cja8pm-QOP-l4cjc9rj + 1 + OutParameter + + + fr.insee + l4cja8pm + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l5jnkoyz + 1 + + NBENFAV_C1_VENU_U1 + + + NBENFAV_C1_VENU_U1 label + + + fr.insee + l5ilbb89-QOP-l5ild1d2 + 1 + OutParameter + + + fr.insee + l5ilbb89 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lluma0ok + 1 + + NBENFAV_C_VENU_U1 + + + NBENFAV_C_VENU_U1 label + + + fr.insee + l4o5x7yq-QOP-l4o5y0na + 1 + OutParameter + + + fr.insee + l4o5x7yq + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + l9ildsj0 + 1 + + AUT_U2 + + + AUT_U2 label + + + fr.insee + l9il0i0h-QOP-l9ilguvv + 1 + OutParameter + + + fr.insee + l9il0i0h + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + l9ilmr79 + 1 + + PRENOM_U2 + + + PRENOM_U2 label + + + fr.insee + l9ilcol6-QOP-l9il24xt + 1 + OutParameter + + + fr.insee + l9ilcol6 + 1 + QuestionItem + + + + + + + fr.insee + llgbwr7a + 1 + + SEXE_U2H + + + SEXE_U2H label + + + fr.insee + l9ikne2h-QOP-l9ikmsqc + 1 + OutParameter + + + fr.insee + l9ikne2h + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + llgbkefo + 1 + + SEXE_U2F + + + SEXE_U2F label + + + fr.insee + lldetngg-QOP-lldefr60 + 1 + OutParameter + + + fr.insee + lldetngg + 1 + QuestionItem + + + + + fr.insee + lldegmb1 + 1 + CodeList + + + + + + fr.insee + lxswur53 + 1 + + ANNEE_U2 + + + ANNEE_U2 label + + + fr.insee + l9ikn3ea-QOP-l9il1x2i + 1 + OutParameter + + + fr.insee + l9ikn3ea + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + llm3orfw + 1 + + PACS_U2 + + + PACS_U2 label + + + fr.insee + l9il24ft-QOP-l9iks5py + 1 + OutParameter + + + fr.insee + l9il24ft + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxsx6zwr + 1 + + ANNEE_PACS_U2 + + + ANNEE_PACS_U2 label + + + fr.insee + l9ikxoxa-QOP-l9iktamx + 1 + OutParameter + + + fr.insee + l9ikxoxa + 1 + QuestionItem + + + + YYYY + gYear + + 1999 + 2024 + + + + + + fr.insee + l9ilplrs + 1 + + MARI_U2 + + + MARI_U2 label + + + fr.insee + l9ikvx4n-QOP-l9ikpuls + 1 + OutParameter + + + fr.insee + l9ikvx4n + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxsx77tw + 1 + + ANNEE_MARI_U2 + + + ANNEE_MARI_U2 label + + + fr.insee + l9iklcix-QOP-l9ikgh6x + 1 + OutParameter + + + fr.insee + l9iklcix + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + m155i75f + 1 + + SEPARE_U2 + + + SEPARE_U2 label + + + fr.insee + l9ikqlwv-QOP-l9ikoz30 + 1 + OutParameter + + + fr.insee + l9ikqlwv + 1 + QuestionItem + + + + + fr.insee + las91jew + 1 + CodeList + + + + + + fr.insee + lxsx57nt + 1 + + ANNEE_S_U2 + + + ANNEE_S_U2 label + + + fr.insee + l9ikze1y-QOP-l9ikq8j6 + 1 + OutParameter + + + fr.insee + l9ikze1y + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + m37at1hy + 1 + + ANNEE_D_U2 + + + ANNEE_D_U2 label + + + fr.insee + l9ikmjqm-QOP-l9ikmj5h + 1 + OutParameter + + + fr.insee + l9ikmjqm + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2024 + + + + + + fr.insee + l9imhwey + 1 + + ENFAV_C_U2 + + + ENFAV_C_U2 label + + + fr.insee + l9ikxndo-QOP-l9ikxjkq + 1 + OutParameter + + + fr.insee + l9ikxndo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l9imlci5 + 1 + + NBENFAV_C_U2 + + + NBENFAV_C_U2 label + + + fr.insee + l9ikuqoe-QOP-l9ikmqgf + 1 + OutParameter + + + fr.insee + l9ikuqoe + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + l9imbft1 + 1 + + NBENFAV_C1_VENU_U2 + + + NBENFAV_C1_VENU_U2 label + + + fr.insee + l9ikekzu-QOP-l9ikbyxh + 1 + OutParameter + + + fr.insee + l9ikekzu + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + liizkz29 + 1 + + NBENFAV_C_VENU_U2 + + + NBENFAV_C_VENU_U2 label + + + fr.insee + l9iks078-QOP-l9ikl02v + 1 + OutParameter + + + fr.insee + l9iks078 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + l8k91eas + 1 + + ENF + + + ENF label + + + fr.insee + kwqigxtx-QOP-kwqianb6 + 1 + OutParameter + + + fr.insee + kwqigxtx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly47c6wt + 1 + + NBENF + + + NBENF label + + + fr.insee + kwqi5zsm-QOP-kwqilzs8 + 1 + OutParameter + + + fr.insee + kwqi5zsm + 1 + QuestionItem + + + + + 1 + 20 + + Decimal + + + + + fr.insee + ltd0hfsc + 1 + + NBENF_ADOP_UN + + + NBENF_ADOP_UN label + + + fr.insee + l1gkeq97-QOP-l7rlttxu + 1 + OutParameter + + + fr.insee + l1gkeq97 + 1 + QuestionItem + + + + + fr.insee + l7rlvd0y + 1 + CodeList + + + + + + fr.insee + llumdbvx + 1 + + NBENF_ADOP + + + NBENF_ADOP label + + + fr.insee + l7rlim3p-QOP-l7rlfeda + 1 + OutParameter + + + fr.insee + l7rlim3p + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + llvxrvuz + 1 + + LANGUE1_ENF + + + LANGUE1_ENF label + + + fr.insee + l1gi76wy-QOP-llvz7u99 + 1 + OutParameter + + + fr.insee + l1gi76wy + 1 + QuestionItem + + + + + + + fr.insee + lumokutj + 1 + + LANGUE1_ENFL + + + LANGUE1_ENFL label + + + fr.insee + lumogysw-QOP-lumot76k + 1 + OutParameter + + + fr.insee + lumogysw + 1 + QuestionItem + + + + + + + fr.insee + lw52lms5 + 1 + + LANGUE2_ENFE + + + LANGUE2_ENFE label + + + fr.insee + lw52ifu3-QOP-lw54ol76 + 1 + OutParameter + + + fr.insee + lw52ifu3 + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lw52j6r7 + 1 + + LANGUE2_ENF + + + LANGUE2_ENF label + + + fr.insee + l445u9x8-QOP-llvyyveq + 1 + OutParameter + + + fr.insee + l445u9x8 + 1 + QuestionItem + + + + + + + fr.insee + lumsy7gr + 1 + + LANGUE2_ENFL + + + LANGUE2_ENFL label + + + fr.insee + lumstcob-QOP-lumstrv3 + 1 + OutParameter + + + fr.insee + lumstcob + 1 + QuestionItem + + + + + + + fr.insee + lw53mlvn + 1 + + LANGUE3_ENFE + + + LANGUE3_ENFE label + + + fr.insee + lumnxb5k-QOP-lw54m4hq + 1 + OutParameter + + + fr.insee + lumnxb5k + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lw53ldxd + 1 + + LANGUE3_ENF + + + LANGUE3_ENF label + + + fr.insee + lw543f35-QOP-lw543jzd + 1 + OutParameter + + + fr.insee + lw543f35 + 1 + QuestionItem + + + + + + + fr.insee + lumt055d + 1 + + LANGUE3_ENFL + + + LANGUE3_ENFL label + + + fr.insee + lumsq0y7-QOP-lumssga8 + 1 + OutParameter + + + fr.insee + lumsq0y7 + 1 + QuestionItem + + + + + + + fr.insee + lw53yvgy + 1 + + LANGUE4_ENFE + + + LANGUE4_ENFE label + + + fr.insee + lumnyjae-QOP-lw54f3wu + 1 + OutParameter + + + fr.insee + lumnyjae + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw53q66a + 1 + + LANGUE4_ENF + + + LANGUE4_ENF label + + + fr.insee + lw547oxc-QOP-lw53vioh + 1 + OutParameter + + + fr.insee + lw547oxc + 1 + QuestionItem + + + + + + + fr.insee + lumsuaeg + 1 + + LANGUE4_ENFL + + + LANGUE4_ENFL label + + + fr.insee + lumsq00h-QOP-lumszz44 + 1 + OutParameter + + + fr.insee + lumsq00h + 1 + QuestionItem + + + + + + + fr.insee + ltd0io6q + 1 + + NBENFLOG_UN + + + NBENFLOG_UN label + + + fr.insee + l4idom4o-QOP-l4idkl19 + 1 + OutParameter + + + fr.insee + l4idom4o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ltd06v5e + 1 + + NBENFLOG + + + NBENFLOG label + + + fr.insee + ltd023vh-QOP-ltczw6tn + 1 + OutParameter + + + fr.insee + ltd023vh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw4yaviq + 1 + + CBENFLOG + + + CBENFLOG label + + + fr.insee + l4lcr3vb-QOP-l4lcyzfy + 1 + OutParameter + + + fr.insee + l4lcr3vb + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + ltd0d2d1 + 1 + + NBENFAIL_UN + + + NBENFAIL_UN label + + + fr.insee + ltd0h1g7-QOP-ltd0m6q3 + 1 + OutParameter + + + fr.insee + ltd0h1g7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw4y9mhm + 1 + + CBENFAIL + + + CBENFAIL label + + + fr.insee + l4lfzig7-QOP-l4lgbag5 + 1 + OutParameter + + + fr.insee + l4lfzig7 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + l4i7t09m + 1 + + PRENOM_ENFLOG1 + + + PRENOM_ENFLOG1 label + + + fr.insee + l446nede-QOP-l446c5pz + 1 + OutParameter + + + fr.insee + l446nede + 1 + QuestionItem + + + + + + + fr.insee + llgbzex2 + 1 + + SEXE_ENFLOG1 + + + SEXE_ENFLOG1 label + + + fr.insee + kwqjk80w-QOP-kwqjqaig + 1 + OutParameter + + + fr.insee + kwqjk80w + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxynf7im + 1 + + ANAI_ENFLOG1 + + + ANAI_ENFLOG1 label + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + kwqjmq2o + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + lai2q0l2 + 1 + + NEFRANCE_ENFLOG1 + + + NEFRANCE_ENFLOG1 label + + + fr.insee + l4qtls9o-QOP-l4qtebrx + 1 + OutParameter + + + fr.insee + l4qtls9o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3tp7wa + 1 + + ADOPT_ENFLOG1 + + + ADOPT_ENFLOG1 label + + + fr.insee + lv3teph7-QOP-lv3ti529 + 1 + OutParameter + + + fr.insee + lv3teph7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynfm06 + 1 + + ANADOPT_ENFLOG1 + + + ANADOPT_ENFLOG1 label + + + fr.insee + lv3ts84i-QOP-lv3v32lg + 1 + OutParameter + + + fr.insee + lv3ts84i + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lg5xq + 1 + + PARENT_VIT_ENFLOG1 + + + PARENT_VIT_ENFLOG1 label + + + fr.insee + kwqjol7e-QOP-kwqj742g + 1 + OutParameter + + + fr.insee + kwqjol7e + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + lai2vxng + 1 + + PARENT_FR_ENFLOG1 + + + PARENT_FR_ENFLOG1 label + + + fr.insee + l4iaicn8-QOP-l4ia62t2 + 1 + OutParameter + + + fr.insee + l4iaicn8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxsb8n + 1 + + PARENT_COM_ENFLOG1 + + + PARENT_COM_ENFLOG1 label + + + fr.insee + l4parilg-QOP-llvz00eo + 1 + OutParameter + + + fr.insee + l4parilg + 1 + QuestionItem + + + + + + + fr.insee + llvxl0i4 + 1 + + PARENT_DEP_ENFLOG1 + + + PARENT_DEP_ENFLOG1 label + + + fr.insee + l4pav1bd-QOP-llvz43dk + 1 + OutParameter + + + fr.insee + l4pav1bd + 1 + QuestionItem + + + + + + + fr.insee + llvxptki + 1 + + PARENT_PAY_ENFLOG1 + + + PARENT_PAY_ENFLOG1 label + + + fr.insee + l4pavrnh-QOP-llvz0tqh + 1 + OutParameter + + + fr.insee + l4pavrnh + 1 + QuestionItem + + + + + + + fr.insee + lysgeqbu + 1 + + PARENT_FREQ_ENFLOG1 + + + PARENT_FREQ_ENFLOG1 label + + + fr.insee + l1ez78st-QOP-l1ezqoac + 1 + OutParameter + + + fr.insee + l1ez78st + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4iaop7n + 1 + + PARENT_DORT_ENFLOG1 + + + PARENT_DORT_ENFLOG1 label + + + fr.insee + l4iain70-QOP-l4iapk3a + 1 + OutParameter + + + fr.insee + l4iain70 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lai37uhg + 1 + + PARENT_VECU_ENFLOG1 + + + PARENT_VECU_ENFLOG1 label + + + fr.insee + kwqk3gx2-QOP-kwqjmrl7 + 1 + OutParameter + + + fr.insee + kwqk3gx2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yvw8y + 1 + + SEP_AUT_PAR_ENFLOG1 + + + SEP_AUT_PAR_ENFLOG1 label + + + fr.insee + la6ydnyh-QOP-la6ylcb8 + 1 + OutParameter + + + fr.insee + la6ydnyh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rnio1 + 1 + + RESID_ENFLOG1 + + + RESID_ENFLOG1 label + + + fr.insee + kwqjmy9d-QOP-kwqjfzw0 + 1 + OutParameter + + + fr.insee + kwqjmy9d + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgnmkao + 1 + + SANTE_ENFLOG1 + + + SANTE_ENFLOG1 label + + + fr.insee + l1gia5uh-QOP-lvgobnzd + 1 + OutParameter + + + fr.insee + l1gia5uh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgp4nwr + 1 + + ASE_ENFLOG1 + + + ASE_ENFLOG1 label + + + fr.insee + lvgn6d99-QOP-lvgo9bqf + 1 + OutParameter + + + fr.insee + lvgn6d99 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4i9d8v4 + 1 + + PRENOM_ENFLOG2 + + + PRENOM_ENFLOG2 label + + + fr.insee + l4i9118b-QOP-l4i95yyt + 1 + OutParameter + + + fr.insee + l4i9118b + 1 + QuestionItem + + + + + + + fr.insee + llgdof4r + 1 + + SEXE_ENFLOG2 + + + SEXE_ENFLOG2 label + + + fr.insee + l4i8zu5m-QOP-l4i9doqz + 1 + OutParameter + + + fr.insee + l4i8zu5m + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxync601 + 1 + + ANAI_ENFLOG2 + + + ANAI_ENFLOG2 label + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + l4ia7rxn + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4qtshn8 + 1 + + NEFRANCE_ENFLOG2 + + + NEFRANCE_ENFLOG2 label + + + fr.insee + l4qtpg9f-QOP-l4qtj10v + 1 + OutParameter + + + fr.insee + l4qtpg9f + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3uek9p + 1 + + ADOPT_ENFLOG2 + + + ADOPT_ENFLOG2 label + + + fr.insee + lv3u5cvk-QOP-lv3ugypu + 1 + OutParameter + + + fr.insee + lv3u5cvk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynh545 + 1 + + ANADOPT_ENFLOG2 + + + ANADOPT_ENFLOG2 label + + + fr.insee + lv3ule5a-QOP-lv3um57g + 1 + OutParameter + + + fr.insee + lv3ule5a + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l6xvv + 1 + + PARENT_VIT_ENFLOG2 + + + PARENT_VIT_ENFLOG2 label + + + fr.insee + l4iano52-QOP-l4ia429z + 1 + OutParameter + + + fr.insee + l4iano52 + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pah4e9 + 1 + + PARENT_FR_ENFLOG2 + + + PARENT_FR_ENFLOG2 label + + + fr.insee + kwqjmujx-QOP-kwqjglld + 1 + OutParameter + + + fr.insee + kwqjmujx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxvybh + 1 + + PARENT_COM_ENFLOG2 + + + PARENT_COM_ENFLOG2 label + + + fr.insee + l4pasuts-QOP-llvz300g + 1 + OutParameter + + + fr.insee + l4pasuts + 1 + QuestionItem + + + + + + + fr.insee + llvxlqkx + 1 + + PARENT_DEP_ENFLOG2 + + + PARENT_DEP_ENFLOG2 label + + + fr.insee + l4pannoa-QOP-llvz35s7 + 1 + OutParameter + + + fr.insee + l4pannoa + 1 + QuestionItem + + + + + + + fr.insee + llvy0bjq + 1 + + PARENT_PAY_ENFLOG2 + + + PARENT_PAY_ENFLOG2 label + + + fr.insee + l4pbc5wa-QOP-llvz3uou + 1 + OutParameter + + + fr.insee + l4pbc5wa + 1 + QuestionItem + + + + + + + fr.insee + lysgbbno + 1 + + PARENT_FREQ_ENFLOG2 + + + PARENT_FREQ_ENFLOG2 label + + + fr.insee + l4idgpbr-QOP-l4idauus + 1 + OutParameter + + + fr.insee + l4idgpbr + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4ia9byx + 1 + + PARENT_DORT_ENFLOG2 + + + PARENT_DORT_ENFLOG2 label + + + fr.insee + l4486unb-QOP-l4486uz3 + 1 + OutParameter + + + fr.insee + l4486unb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4iai6rj + 1 + + PARENT_VECU_ENFLOG2 + + + PARENT_VECU_ENFLOG2 label + + + fr.insee + l4ia5o28-QOP-l4ia9b25 + 1 + OutParameter + + + fr.insee + l4ia5o28 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yqwyf + 1 + + SEP_AUT_PAR_ENFLOG2 + + + SEP_AUT_PAR_ENFLOG2 label + + + fr.insee + la6yjh65-QOP-la6yhprv + 1 + OutParameter + + + fr.insee + la6yjh65 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rrwgx + 1 + + RESID_ENFLOG2 + + + RESID_ENFLOG2 label + + + fr.insee + l4idgqx9-QOP-l4idnmx1 + 1 + OutParameter + + + fr.insee + l4idgqx9 + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvwihdi5 + 1 + + SANTE_ENFLOG2 + + + SANTE_ENFLOG2 label + + + fr.insee + l4ia7y0p-QOP-lvgocsz8 + 1 + OutParameter + + + fr.insee + l4ia7y0p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgnl17j + 1 + + ASE_ENFLOG2 + + + ASE_ENFLOG2 label + + + fr.insee + lvgneyls-QOP-lvgo7bos + 1 + OutParameter + + + fr.insee + lvgneyls + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lcm3zm + 1 + + PRENOM_ENFLOG3 + + + PRENOM_ENFLOG3 label + + + fr.insee + l4ld0ziw-QOP-l4lco011 + 1 + OutParameter + + + fr.insee + l4ld0ziw + 1 + QuestionItem + + + + + + + fr.insee + llge4od7 + 1 + + SEXE_ENFLOG3 + + + SEXE_ENFLOG3 label + + + fr.insee + l4lcp4co-QOP-l4ld0wcd + 1 + OutParameter + + + fr.insee + l4lcp4co + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxyndb87 + 1 + + ANAI_ENFLOG3 + + + ANAI_ENFLOG3 label + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + l4ld3y0j + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4qtpx6f + 1 + + NEFRANCE_ENFLOG3 + + + NEFRANCE_ENFLOG3 label + + + fr.insee + l4qty53i-QOP-l4qtewva + 1 + OutParameter + + + fr.insee + l4qty53i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3uv9km + 1 + + ADOPT_ENFLOG3 + + + ADOPT_ENFLOG3 label + + + fr.insee + lv3uun9e-QOP-lv3uqxkh + 1 + OutParameter + + + fr.insee + lv3uun9e + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynaw84 + 1 + + ANADOPT_ENFLOG3 + + + ANADOPT_ENFLOG3 label + + + fr.insee + lv3v5m6c-QOP-lv3v6ea5 + 1 + OutParameter + + + fr.insee + lv3v5m6c + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l562b + 1 + + PARENT_VIT_ENFLOG3 + + + PARENT_VIT_ENFLOG3 label + + + fr.insee + l4lct7cb-QOP-l4lctczi + 1 + OutParameter + + + fr.insee + l4lct7cb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pae240 + 1 + + PARENT_FR_ENFLOG3 + + + PARENT_FR_ENFLOG3 label + + + fr.insee + l4ld827i-QOP-l4ld6gqw + 1 + OutParameter + + + fr.insee + l4ld827i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxo6tz + 1 + + PARENT_COM_ENFLOG3 + + + PARENT_COM_ENFLOG3 label + + + fr.insee + l4pavp6y-QOP-llvyyz9y + 1 + OutParameter + + + fr.insee + l4pavp6y + 1 + QuestionItem + + + + + + + fr.insee + llvxwe5z + 1 + + PARENT_DEP_ENFLOG3 + + + PARENT_DEP_ENFLOG3 label + + + fr.insee + l4pat7vx-QOP-llvyw7q3 + 1 + OutParameter + + + fr.insee + l4pat7vx + 1 + QuestionItem + + + + + + + fr.insee + llvy3238 + 1 + + PARENT_PAY_ENFLOG3 + + + PARENT_PAY_ENFLOG3 label + + + fr.insee + l4pb77tv-QOP-llvyspw0 + 1 + OutParameter + + + fr.insee + l4pb77tv + 1 + QuestionItem + + + + + + + fr.insee + lysg2x2j + 1 + + PARENT_FREQ_ENFLOG3 + + + PARENT_FREQ_ENFLOG3 label + + + fr.insee + l4ld15su-QOP-l4ld55kd + 1 + OutParameter + + + fr.insee + l4ld15su + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4ldfxok + 1 + + PARENT_DORT_ENFLOG3 + + + PARENT_DORT_ENFLOG3 label + + + fr.insee + l4ld0zmv-QOP-l4lda7jw + 1 + OutParameter + + + fr.insee + l4ld0zmv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ld9url + 1 + + PARENT_VECU_ENFLOG3 + + + PARENT_VECU_ENFLOG3 label + + + fr.insee + l4ld0jea-QOP-l4ld7yr1 + 1 + OutParameter + + + fr.insee + l4ld0jea + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ymh2v + 1 + + SEP_AUT_PAR_ENFLOG3 + + + SEP_AUT_PAR_ENFLOG3 label + + + fr.insee + la6y9flo-QOP-la6y6kev + 1 + OutParameter + + + fr.insee + la6y9flo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rfnbg + 1 + + RESID_ENFLOG3 + + + RESID_ENFLOG3 label + + + fr.insee + l4lde13h-QOP-l4lddsd8 + 1 + OutParameter + + + fr.insee + l4lde13h + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgnt013 + 1 + + SANTE_ENFLOG3 + + + SANTE_ENFLOG3 label + + + fr.insee + l4lcuoke-QOP-lvgoe8l2 + 1 + OutParameter + + + fr.insee + l4lcuoke + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgnkfc7 + 1 + + ASE_ENFLOG3 + + + ASE_ENFLOG3 label + + + fr.insee + lvgnpugy-QOP-lvgoc0ak + 1 + OutParameter + + + fr.insee + lvgnpugy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4le9osn + 1 + + PRENOM_ENFLOG4 + + + PRENOM_ENFLOG4 label + + + fr.insee + l4lec0rk-QOP-l4lefzhk + 1 + OutParameter + + + fr.insee + l4lec0rk + 1 + QuestionItem + + + + + + + fr.insee + llgdmzwn + 1 + + SEXE_ENFLOG4 + + + SEXE_ENFLOG4 label + + + fr.insee + l4lefdoh-QOP-l4le4jn4 + 1 + OutParameter + + + fr.insee + l4lefdoh + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxynr77e + 1 + + ANAI_ENFLOG4 + + + ANAI_ENFLOG4 label + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + l4le9rs3 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4qtueyu + 1 + + NEFRANCE_ENFLOG4 + + + NEFRANCE_ENFLOG4 label + + + fr.insee + l4qtvt71-QOP-l4qtzd2y + 1 + OutParameter + + + fr.insee + l4qtvt71 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3w456w + 1 + + ADOPT_ENFLOG4 + + + ADOPT_ENFLOG4 label + + + fr.insee + lv3w60ed-QOP-lv3w0zkt + 1 + OutParameter + + + fr.insee + lv3w60ed + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynclss + 1 + + ANADOPT_ENFLOG4 + + + ANADOPT_ENFLOG4 label + + + fr.insee + lv3w2pql-QOP-lv3w6yp3 + 1 + OutParameter + + + fr.insee + lv3w2pql + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lkccl + 1 + + PARENT_VIT_ENFLOG4 + + + PARENT_VIT_ENFLOG4 label + + + fr.insee + l4ler7fu-QOP-l4lequew + 1 + OutParameter + + + fr.insee + l4ler7fu + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pao37f + 1 + + PARENT_FR_ENFLOG4 + + + PARENT_FR_ENFLOG4 label + + + fr.insee + l4lemegm-QOP-l4leh99i + 1 + OutParameter + + + fr.insee + l4lemegm + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy28yg + 1 + + PARENT_COM_ENFLOG4 + + + PARENT_COM_ENFLOG4 label + + + fr.insee + l4paz6m4-QOP-llvyy20q + 1 + OutParameter + + + fr.insee + l4paz6m4 + 1 + QuestionItem + + + + + + + fr.insee + llvy3nrc + 1 + + PARENT_DEP_ENFLOG4 + + + PARENT_DEP_ENFLOG4 label + + + fr.insee + l4payjff-QOP-llvyruw7 + 1 + OutParameter + + + fr.insee + l4payjff + 1 + QuestionItem + + + + + + + fr.insee + llvy62d0 + 1 + + PARENT_PAY_ENFLOG4 + + + PARENT_PAY_ENFLOG4 label + + + fr.insee + l4pbax4x-QOP-llvz97hj + 1 + OutParameter + + + fr.insee + l4pbax4x + 1 + QuestionItem + + + + + + + fr.insee + lysg1stl + 1 + + PARENT_FREQ_ENFLOG4 + + + PARENT_FREQ_ENFLOG4 label + + + fr.insee + l4letwtq-QOP-l4lesyhr + 1 + OutParameter + + + fr.insee + l4letwtq + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4leeukk + 1 + + PARENT_DORT_ENFLOG4 + + + PARENT_DORT_ENFLOG4 label + + + fr.insee + l4letk9j-QOP-l4lergt1 + 1 + OutParameter + + + fr.insee + l4letk9j + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4leseyk + 1 + + PARENT_VECU_ENFLOG4 + + + PARENT_VECU_ENFLOG4 label + + + fr.insee + l4lekh2t-QOP-l4leazvr + 1 + OutParameter + + + fr.insee + l4lekh2t + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yno8u + 1 + + SEP_AUT_PAR_ENFLOG4 + + + SEP_AUT_PAR_ENFLOG4 label + + + fr.insee + la6y7rno-QOP-la6yfcb1 + 1 + OutParameter + + + fr.insee + la6y7rno + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rcl6q + 1 + + RESID_ENFLOG4 + + + RESID_ENFLOG4 label + + + fr.insee + l4lexatl-QOP-l4leps7n + 1 + OutParameter + + + fr.insee + l4lexatl + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgnzr5w + 1 + + SANTE_ENFLOG4 + + + SANTE_ENFLOG4 label + + + fr.insee + l4lec2qz-QOP-lvgntssj + 1 + OutParameter + + + fr.insee + l4lec2qz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgnqvql + 1 + + ASE_ENFLOG4 + + + ASE_ENFLOG4 label + + + fr.insee + lvgnp3j5-QOP-lvgnuf33 + 1 + OutParameter + + + fr.insee + lvgnp3j5 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lerlrc + 1 + + PRENOM_ENFLOG5 + + + PRENOM_ENFLOG5 label + + + fr.insee + l4leulqw-QOP-l4leruxk + 1 + OutParameter + + + fr.insee + l4leulqw + 1 + QuestionItem + + + + + + + fr.insee + llgdmwr4 + 1 + + SEXE_ENFLOG5 + + + SEXE_ENFLOG5 label + + + fr.insee + l4lem0yg-QOP-l4leqtd3 + 1 + OutParameter + + + fr.insee + l4lem0yg + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxynafj0 + 1 + + ANAI_ENFLOG5 + + + ANAI_ENFLOG5 label + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + l4lffj1f + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4qto89v + 1 + + NEFRANCE_ENFLOG5 + + + NEFRANCE_ENFLOG5 label + + + fr.insee + l4qtm8di-QOP-l4qtqnl5 + 1 + OutParameter + + + fr.insee + l4qtm8di + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv5dqz1j + 1 + + ADOPT_ENFLOG5 + + + ADOPT_ENFLOG5 label + + + fr.insee + lv5dkuad-QOP-lv5db7oh + 1 + OutParameter + + + fr.insee + lv5dkuad + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynl5f7 + 1 + + ANADOPT_ENFLOG5 + + + ANADOPT_ENFLOG5 label + + + fr.insee + lv5db081-QOP-lv5dujr9 + 1 + OutParameter + + + fr.insee + lv5db081 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lddha + 1 + + PARENT_VIT_ENFLOG5 + + + PARENT_VIT_ENFLOG5 label + + + fr.insee + l4lfye1g-QOP-l4lfqvi9 + 1 + OutParameter + + + fr.insee + l4lfye1g + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l4pakdk6 + 1 + + PARENT_FR_ENFLOG5 + + + PARENT_FR_ENFLOG5 label + + + fr.insee + l4lfoek4-QOP-l4lfrft6 + 1 + OutParameter + + + fr.insee + l4lfoek4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxz4y8 + 1 + + PARENT_COM_ENFLOG5 + + + PARENT_COM_ENFLOG5 label + + + fr.insee + l4paw4ax-QOP-llvyqmlu + 1 + OutParameter + + + fr.insee + l4paw4ax + 1 + QuestionItem + + + + + + + fr.insee + llvy6d0r + 1 + + PARENT_DEP_ENFLOG5 + + + PARENT_DEP_ENFLOG5 label + + + fr.insee + l4pauqgi-QOP-llvyw6mw + 1 + OutParameter + + + fr.insee + l4pauqgi + 1 + QuestionItem + + + + + + + fr.insee + llvxv8yy + 1 + + PARENT_PAY_ENFLOG5 + + + PARENT_PAY_ENFLOG5 label + + + fr.insee + l4pb234a-QOP-llvz0jpe + 1 + OutParameter + + + fr.insee + l4pb234a + 1 + QuestionItem + + + + + + + fr.insee + lysgbit0 + 1 + + PARENT_FREQ_ENFLOG5 + + + PARENT_FREQ_ENFLOG5 label + + + fr.insee + l8n262ck-QOP-l8n27wnd + 1 + OutParameter + + + fr.insee + l8n262ck + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4lg1pyn + 1 + + PARENT_DORT_ENFLOG5 + + + PARENT_DORT_ENFLOG5 label + + + fr.insee + l4lfr4qa-QOP-l4lfvr6s + 1 + OutParameter + + + fr.insee + l4lfr4qa + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lg1xr6 + 1 + + PARENT_VECU_ENFLOG5 + + + PARENT_VECU_ENFLOG5 label + + + fr.insee + l4lfvape-QOP-l4lfk081 + 1 + OutParameter + + + fr.insee + l4lfvape + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6yidpr + 1 + + SEP_AUT_PAR_ENFLOG5 + + + SEP_AUT_PAR_ENFLOG5 label + + + fr.insee + la6yfjnf-QOP-la6y9op3 + 1 + OutParameter + + + fr.insee + la6yfjnf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rdskg + 1 + + RESID_ENFLOG5 + + + RESID_ENFLOG5 label + + + fr.insee + l4lg25av-QOP-l4lfuclq + 1 + OutParameter + + + fr.insee + l4lg25av + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgo1c7e + 1 + + SANTE_ENFLOG5 + + + SANTE_ENFLOG5 label + + + fr.insee + l4lfclty-QOP-lvgo6ny4 + 1 + OutParameter + + + fr.insee + l4lfclty + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgo58ie + 1 + + ASE_ENFLOG5 + + + ASE_ENFLOG5 label + + + fr.insee + lvgo5arn-QOP-lvgob02e + 1 + OutParameter + + + fr.insee + lvgo5arn + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + l8n2vo7b + 1 + + PRENOM_ENFLOG6 + + + PRENOM_ENFLOG6 label + + + fr.insee + l8n2umnw-QOP-l8n2q8ti + 1 + OutParameter + + + fr.insee + l8n2umnw + 1 + QuestionItem + + + + + + + fr.insee + llge1k6m + 1 + + SEXE_ENFLOG6 + + + SEXE_ENFLOG6 label + + + fr.insee + l8n2e1mr-QOP-l8n2ef3o + 1 + OutParameter + + + fr.insee + l8n2e1mr + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxynudzk + 1 + + ANAI_ENFLOG6 + + + ANAI_ENFLOG6 label + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + l8n2lctv + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8n2f6ge + 1 + + NEFRANCE_ENFLOG6 + + + NEFRANCE_ENFLOG6 label + + + fr.insee + l8n2gmuq-QOP-l8n2bcdy + 1 + OutParameter + + + fr.insee + l8n2gmuq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6bje4l + 1 + + ADOPT_ENFLOG6 + + + ADOPT_ENFLOG6 label + + + fr.insee + lv6b9lq6-QOP-lv6bjv1b + 1 + OutParameter + + + fr.insee + lv6b9lq6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lye3djqw + 1 + + ANADOPT_ENFLOG6 + + + ANADOPT_ENFLOG6 label + + + fr.insee + lv6bv1fo-QOP-lv6bh86z + 1 + OutParameter + + + fr.insee + lv6bv1fo + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l4th4 + 1 + + PARENT_VIT_ENFLOG6 + + + PARENT_VIT_ENFLOG6 label + + + fr.insee + l8n2ilpb-QOP-l8n290y2 + 1 + OutParameter + + + fr.insee + l8n2ilpb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n2bifj + 1 + + PARENT_FR_ENFLOG6 + + + PARENT_FR_ENFLOG6 label + + + fr.insee + l8n1zy7o-QOP-l8n23nvd + 1 + OutParameter + + + fr.insee + l8n1zy7o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxyjt8 + 1 + + PARENT_COM_ENFLOG6 + + + PARENT_COM_ENFLOG6 label + + + fr.insee + l8n1u6yt-QOP-llvz20va + 1 + OutParameter + + + fr.insee + l8n1u6yt + 1 + QuestionItem + + + + + + + fr.insee + llvxysia + 1 + + PARENT_DEP_ENFLOG6 + + + PARENT_DEP_ENFLOG6 label + + + fr.insee + l8n2awb0-QOP-llvz079i + 1 + OutParameter + + + fr.insee + l8n2awb0 + 1 + QuestionItem + + + + + + + fr.insee + llvxx6pu + 1 + + PARENT_PAY_ENFLOG6 + + + PARENT_PAY_ENFLOG6 label + + + fr.insee + l8n20r8i-QOP-llvz6xrr + 1 + OutParameter + + + fr.insee + l8n20r8i + 1 + QuestionItem + + + + + + + fr.insee + lysg6vaq + 1 + + PARENT_FREQ_ENFLOG6 + + + PARENT_FREQ_ENFLOG6 label + + + fr.insee + l4lfnqiq-QOP-l4lg2h6j + 1 + OutParameter + + + fr.insee + l4lfnqiq + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n28aup + 1 + + PARENT_DORT_ENFLOG6 + + + PARENT_DORT_ENFLOG6 label + + + fr.insee + l8n29jww-QOP-l8n23c9r + 1 + OutParameter + + + fr.insee + l8n29jww + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n1v5qt + 1 + + PARENT_VECU_ENFLOG6 + + + PARENT_VECU_ENFLOG6 label + + + fr.insee + l8n1p0yj-QOP-l8n23ghn + 1 + OutParameter + + + fr.insee + l8n1p0yj + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ygrmz + 1 + + SEP_AUT_PAR_ENFLOG6 + + + SEP_AUT_PAR_ENFLOG6 label + + + fr.insee + la6y7ni0-QOP-la6y43a4 + 1 + OutParameter + + + fr.insee + la6y7ni0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3ro3oz + 1 + + RESID_ENFLOG6 + + + RESID_ENFLOG6 label + + + fr.insee + l8n1u2kg-QOP-l8n1lsvh + 1 + OutParameter + + + fr.insee + l8n1u2kg + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgo7h16 + 1 + + SANTE_ENFLOG6 + + + SANTE_ENFLOG6 label + + + fr.insee + l8n2hdgw-QOP-lvgnv3bn + 1 + OutParameter + + + fr.insee + l8n2hdgw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgntds8 + 1 + + ASE_ENFLOG6 + + + ASE_ENFLOG6 label + + + fr.insee + lvgnrib2-QOP-lvgo6nvx + 1 + OutParameter + + + fr.insee + lvgnrib2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n3vait + 1 + + PRENOM_ENFLOG7 + + + PRENOM_ENFLOG7 label + + + fr.insee + l8n3pb4f-QOP-l8n3v5q6 + 1 + OutParameter + + + fr.insee + l8n3pb4f + 1 + QuestionItem + + + + + + + fr.insee + llgdp5xh + 1 + + SEXE_ENFLOG7 + + + SEXE_ENFLOG7 label + + + fr.insee + l8n3mik2-QOP-l8n3szau + 1 + OutParameter + + + fr.insee + l8n3mik2 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxyntbhy + 1 + + ANAI_ENFLOG7 + + + ANAI_ENFLOG7 label + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + l8n3jmk8 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8n3hi4s + 1 + + NEFRANCE_ENFLOG7 + + + NEFRANCE_ENFLOG7 label + + + fr.insee + l8n36fv3-QOP-l8n384e4 + 1 + OutParameter + + + fr.insee + l8n36fv3 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6ednfy + 1 + + ADOPT_ENFLOG7 + + + ADOPT_ENFLOG7 label + + + fr.insee + lv6ecg0i-QOP-lv6efjal + 1 + OutParameter + + + fr.insee + lv6ecg0i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynusow + 1 + + ANADOPT_ENFLOG7 + + + ANADOPT_ENFLOG7 label + + + fr.insee + lv6eqkwn-QOP-lv6egwpj + 1 + OutParameter + + + fr.insee + lv6eqkwn + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l66af + 1 + + PARENT_VIT_ENFLOG7 + + + PARENT_VIT_ENFLOG7 label + + + fr.insee + l8n3ff6s-QOP-l8n3ns0y + 1 + OutParameter + + + fr.insee + l8n3ff6s + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n3jy6y + 1 + + PARENT_FR_ENFLOG7 + + + PARENT_FR_ENFLOG7 label + + + fr.insee + l8n3b7uo-QOP-l8n3h6xz + 1 + OutParameter + + + fr.insee + l8n3b7uo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvy2ddo + 1 + + PARENT_COM_ENFLOG7 + + + PARENT_COM_ENFLOG7 label + + + fr.insee + l8n3485v-QOP-llvyxcs0 + 1 + OutParameter + + + fr.insee + l8n3485v + 1 + QuestionItem + + + + + + + fr.insee + llvy6ybc + 1 + + PARENT_DEP_ENFLOG7 + + + PARENT_DEP_ENFLOG7 label + + + fr.insee + l8n3fzap-QOP-llvz2fkv + 1 + OutParameter + + + fr.insee + l8n3fzap + 1 + QuestionItem + + + + + + + fr.insee + llvy83kg + 1 + + PARENT_PAY_ENFLOG7 + + + PARENT_PAY_ENFLOG7 label + + + fr.insee + l8n3burz-QOP-llvz5jsq + 1 + OutParameter + + + fr.insee + l8n3burz + 1 + QuestionItem + + + + + + + fr.insee + lysgm0p5 + 1 + + PARENT_FREQ_ENFLOG7 + + + PARENT_FREQ_ENFLOG7 label + + + fr.insee + l8n32xk9-QOP-l8n37thq + 1 + OutParameter + + + fr.insee + l8n32xk9 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n2ve3t + 1 + + PARENT_DORT_ENFLOG7 + + + PARENT_DORT_ENFLOG7 label + + + fr.insee + l8n2x7q4-QOP-l8n348ci + 1 + OutParameter + + + fr.insee + l8n2x7q4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n2x63v + 1 + + PARENT_VECU_ENFLOG7 + + + PARENT_VECU_ENFLOG7 label + + + fr.insee + l8n3ary8-QOP-l8n3c8ra + 1 + OutParameter + + + fr.insee + l8n3ary8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6ya7r2 + 1 + + SEP_AUT_PAR_ENFLOG7 + + + SEP_AUT_PAR_ENFLOG7 label + + + fr.insee + la6y542q-QOP-la6y48t7 + 1 + OutParameter + + + fr.insee + la6y542q + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rp22u + 1 + + RESID_ENFLOG7 + + + RESID_ENFLOG7 label + + + fr.insee + l8n2t39d-QOP-l8n38vu9 + 1 + OutParameter + + + fr.insee + l8n2t39d + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgozoxk + 1 + + SANTE_ENFLOG7 + + + SANTE_ENFLOG7 label + + + fr.insee + l8n3bp4o-QOP-lvgqcrys + 1 + OutParameter + + + fr.insee + l8n3bp4o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgp7gnz + 1 + + ASE_ENFLOG7 + + + ASE_ENFLOG7 label + + + fr.insee + lvgp60q8-QOP-lvgos8ft + 1 + OutParameter + + + fr.insee + lvgp60q8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n49za1 + 1 + + PRENOM_ENFLOG8 + + + PRENOM_ENFLOG8 label + + + fr.insee + l8n4cayp-QOP-l8n40opx + 1 + OutParameter + + + fr.insee + l8n4cayp + 1 + QuestionItem + + + + + + + fr.insee + llge0ibj + 1 + + SEXE_ENFLOG8 + + + SEXE_ENFLOG8 label + + + fr.insee + l8n406m9-QOP-l8n4es1f + 1 + OutParameter + + + fr.insee + l8n406m9 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxyne3cx + 1 + + ANAI_ENFLOG8 + + + ANAI_ENFLOG8 label + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + l8n3tya0 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8n457wa + 1 + + NEFRANCE_ENFLOG8 + + + NEFRANCE_ENFLOG8 label + + + fr.insee + l8n3vr8b-QOP-l8n49n0l + 1 + OutParameter + + + fr.insee + l8n3vr8b + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6elkhp + 1 + + ADOPT_ENFLOG8 + + + ADOPT_ENFLOG8 label + + + fr.insee + lv6evuvu-QOP-lv6f0zo8 + 1 + OutParameter + + + fr.insee + lv6evuvu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynu2j8 + 1 + + ANADOPT_ENFLOG8 + + + ANADOPT_ENFLOG8 label + + + fr.insee + lv6ev10t-QOP-lv6emis4 + 1 + OutParameter + + + fr.insee + lv6ev10t + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lh3pw + 1 + + PARENT_VIT_ENFLOG8 + + + PARENT_VIT_ENFLOG8 label + + + fr.insee + l8n427a2-QOP-l8n40s7s + 1 + OutParameter + + + fr.insee + l8n427a2 + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l8n3ocrc + 1 + + PARENT_FR_ENFLOG8 + + + PARENT_FR_ENFLOG8 label + + + fr.insee + l8n41hvu-QOP-l8n3z6kp + 1 + OutParameter + + + fr.insee + l8n41hvu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvxyo73 + 1 + + PARENT_COM_ENFLOG8 + + + PARENT_COM_ENFLOG8 label + + + fr.insee + l8n3tbmd-QOP-llvyt2m9 + 1 + OutParameter + + + fr.insee + l8n3tbmd + 1 + QuestionItem + + + + + + + fr.insee + llvy6byb + 1 + + PARENT_DEP_ENFLOG8 + + + PARENT_DEP_ENFLOG8 label + + + fr.insee + l8n41c78-QOP-llvz93ha + 1 + OutParameter + + + fr.insee + l8n41c78 + 1 + QuestionItem + + + + + + + fr.insee + llvy74id + 1 + + PARENT_PAY_ENFLOG8 + + + PARENT_PAY_ENFLOG8 label + + + fr.insee + l8n40r7t-QOP-llvyxwit + 1 + OutParameter + + + fr.insee + l8n40r7t + 1 + QuestionItem + + + + + + + fr.insee + lysgf7gc + 1 + + PARENT_FREQ_ENFLOG8 + + + PARENT_FREQ_ENFLOG8 label + + + fr.insee + l8n3fpp7-QOP-l8n40f43 + 1 + OutParameter + + + fr.insee + l8n3fpp7 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l8n3jswg + 1 + + PARENT_DORT_ENFLOG8 + + + PARENT_DORT_ENFLOG8 label + + + fr.insee + l8n3xb0z-QOP-l8n3tomk + 1 + OutParameter + + + fr.insee + l8n3xb0z + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8n3v5ev + 1 + + PARENT_VECU_ENFLOG8 + + + PARENT_VECU_ENFLOG8 label + + + fr.insee + l8n3tjlw-QOP-l8n3nqy3 + 1 + OutParameter + + + fr.insee + l8n3tjlw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + la6vczh4 + 1 + + SEP_AUT_PAR_ENFLOG8 + + + SEP_AUT_PAR_ENFLOG8 label + + + fr.insee + la6v947r-QOP-la6v9lhg + 1 + OutParameter + + + fr.insee + la6v947r + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rnmnh + 1 + + RESID_ENFLOG8 + + + RESID_ENFLOG8 label + + + fr.insee + l8n3ocd5-QOP-l8n3iyus + 1 + OutParameter + + + fr.insee + l8n3ocd5 + 1 + QuestionItem + + + + + fr.insee + kwqjqlpa + 1 + CodeList + + + + + + fr.insee + lvgpalhz + 1 + + SANTE_ENFLOG8 + + + SANTE_ENFLOG8 label + + + fr.insee + l8n3uqr2-QOP-lvgqdlet + 1 + OutParameter + + + fr.insee + l8n3uqr2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgpm7as + 1 + + ASE_ENFLOG8 + + + ASE_ENFLOG8 label + + + fr.insee + lvgp89uy-QOP-lvgpfso0 + 1 + OutParameter + + + fr.insee + lvgp89uy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ie7fv4 + 1 + + PRENOM_ENFAIL1 + + + PRENOM_ENFAIL1 label + + + fr.insee + l4idug6p-QOP-l4idueaa + 1 + OutParameter + + + fr.insee + l4idug6p + 1 + QuestionItem + + + + + + + fr.insee + llge79j7 + 1 + + SEXE_ENFAIL1 + + + SEXE_ENFAIL1 label + + + fr.insee + kwqix1j5-QOP-kwqixdic + 1 + OutParameter + + + fr.insee + kwqix1j5 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxyngxrg + 1 + + ANAI_ENFAIL1 + + + ANAI_ENFAIL1 label + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + kwqj561a + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4ie15d7 + 1 + + NEFRANCE_ENFAIL1 + + + NEFRANCE_ENFAIL1 label + + + fr.insee + l4cjlk0i-QOP-l4cjenl6 + 1 + OutParameter + + + fr.insee + l4cjlk0i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6fm4av + 1 + + ADOPT_ENFAIL1 + + + ADOPT_ENFAIL1 label + + + fr.insee + lv6fvjdh-QOP-lv6g0yf3 + 1 + OutParameter + + + fr.insee + lv6fvjdh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynonpf + 1 + + ANADOPT_ENFAIL1 + + + ANADOPT_ENFAIL1 label + + + fr.insee + lv6fuaur-QOP-lv6fxqku + 1 + OutParameter + + + fr.insee + lv6fuaur + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lhf8h + 1 + + PARENT_VIT_ENFAIL1 + + + PARENT_VIT_ENFAIL1 label + + + fr.insee + l4cjivdg-QOP-l4cjvm0q + 1 + OutParameter + + + fr.insee + l4cjivdg + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dv2jor + 1 + + PARENT_VECU_ENFAIL1 + + + PARENT_VECU_ENFAIL1 label + + + fr.insee + l8lzt19v-QOP-l8lzmjqf + 1 + OutParameter + + + fr.insee + l8lzt19v + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8k9yqfn + 1 + + DC_ENFAIL1 + + + DC_ENFAIL1 label + + + fr.insee + l4485tkr-QOP-l4484mb2 + 1 + OutParameter + + + fr.insee + l4485tkr + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzuiox0 + 1 + + AG_DC_ENFAIL1 + + + AG_DC_ENFAIL1 label + + + fr.insee + kwqkh05l-QOP-kwqk5oby + 1 + OutParameter + + + fr.insee + kwqkh05l + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzu8lp8 + 1 + + AG_DEPART_ENFAIL1 + + + AG_DEPART_ENFAIL1 label + + + fr.insee + kwqk3ki3-QOP-kwqkjt71 + 1 + OutParameter + + + fr.insee + kwqk3ki3 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysg8w2o + 1 + + PARENT_FREQ_ENFAIL1 + + + PARENT_FREQ_ENFAIL1 label + + + fr.insee + kwqkmusz-QOP-l34h1xd0 + 1 + OutParameter + + + fr.insee + kwqkmusz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai72f8d + 1 + + FR_ENFAIL1 + + + FR_ENFAIL1 label + + + fr.insee + kwqjp9yr-QOP-l48dyt79 + 1 + OutParameter + + + fr.insee + kwqjp9yr + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + llvycj4j + 1 + + COM_ENFAIL1 + + + COM_ENFAIL1 label + + + fr.insee + l4onsq99-QOP-llvyydq0 + 1 + OutParameter + + + fr.insee + l4onsq99 + 1 + QuestionItem + + + + + + + fr.insee + llvylz7b + 1 + + DEP_ENFAIL1 + + + DEP_ENFAIL1 label + + + fr.insee + l4onskib-QOP-llvz9m81 + 1 + OutParameter + + + fr.insee + l4onskib + 1 + QuestionItem + + + + + + + fr.insee + llvyajtl + 1 + + PAY_ENFAIL1 + + + PAY_ENFAIL1 label + + + fr.insee + l4onsf7y-QOP-llvyw05u + 1 + OutParameter + + + fr.insee + l4onsf7y + 1 + QuestionItem + + + + + + + fr.insee + l4ie8a4z + 1 + + LOG_ENFAIL1 + + + LOG_ENFAIL1 label + + + fr.insee + kwqk3a58-QOP-kwqkfnsx + 1 + OutParameter + + + fr.insee + kwqk3a58 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5ilmykd + 1 + + AUT_PAR_ENFAIL1 + + + AUT_PAR_ENFAIL1 label + + + fr.insee + l44849iu-QOP-l4483bnv + 1 + OutParameter + + + fr.insee + l44849iu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4iec3iy + 1 + + DORT_ENFAIL1 + + + DORT_ENFAIL1 label + + + fr.insee + kwqj7xh6-QOP-l1gkylst + 1 + OutParameter + + + fr.insee + kwqj7xh6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7a7kk + 1 + + SEP_AUT_PAR_ENFAIL1 + + + SEP_AUT_PAR_ENFAIL1 label + + + fr.insee + l4o74e6d-QOP-l4o73ai5 + 1 + OutParameter + + + fr.insee + l4o74e6d + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rh0yp + 1 + + RESID_ENFAIL1 + + + RESID_ENFAIL1 label + + + fr.insee + l1gknpsx-QOP-l1gkaoki + 1 + OutParameter + + + fr.insee + l1gknpsx + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgpelav + 1 + + SANTE_ENFAIL1 + + + SANTE_ENFAIL1 label + + + fr.insee + l1gi8vrf-QOP-lvgqmd1b + 1 + OutParameter + + + fr.insee + l1gi8vrf + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgpx3kg + 1 + + ASE_ENFAIL1 + + + ASE_ENFAIL1 label + + + fr.insee + lvgpkb6t-QOP-lvgqcmjp + 1 + OutParameter + + + fr.insee + lvgpkb6t + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lg2nk3 + 1 + + PRENOM_ENFAIL2 + + + PRENOM_ENFAIL2 label + + + fr.insee + l4lg1tus-QOP-l4lg294k + 1 + OutParameter + + + fr.insee + l4lg1tus + 1 + QuestionItem + + + + + + + fr.insee + llgjk2nm + 1 + + SEXE_ENFAIL2 + + + SEXE_ENFAIL2 label + + + fr.insee + l4lgd8bs-QOP-l4lg3zcd + 1 + OutParameter + + + fr.insee + l4lgd8bs + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + lxynkubc + 1 + + ANAI_ENFAIL2 + + + ANAI_ENFAIL2 label + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4lh0ajb + 1 + + NEFRANCE_ENFAIL2 + + + NEFRANCE_ENFAIL2 label + + + fr.insee + l4lgtwy7-QOP-l4lgmy6a + 1 + OutParameter + + + fr.insee + l4lgtwy7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6g7449 + 1 + + ADOPT_ENFAIL2 + + + ADOPT_ENFAIL2 label + + + fr.insee + lv6g9dow-QOP-lv6ga8kn + 1 + OutParameter + + + fr.insee + lv6g9dow + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lxynlck9 + 1 + + ANADOPT_ENFAIL2 + + + ANADOPT_ENFAIL2 label + + + fr.insee + lv6gdru6-QOP-lv6g124y + 1 + OutParameter + + + fr.insee + lv6gdru6 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l7s8h + 1 + + PARENT_VIT_ENFAIL2 + + + PARENT_VIT_ENFAIL2 label + + + fr.insee + l4lgqbdk-QOP-l4lgpvm2 + 1 + OutParameter + + + fr.insee + l4lgqbdk + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvg123 + 1 + + PARENT_VECU_ENFAIL2 + + + PARENT_VECU_ENFAIL2 label + + + fr.insee + l8lzthqx-QOP-l8m05h5g + 1 + OutParameter + + + fr.insee + l8lzthqx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh4wfw + 1 + + DC_ENFAIL2 + + + DC_ENFAIL2 label + + + fr.insee + l4lh1bvw-QOP-l4lgv2yw + 1 + OutParameter + + + fr.insee + l4lh1bvw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzudirl + 1 + + AG_DC_ENFAIL2 + + + AG_DC_ENFAIL2 label + + + fr.insee + l4lhc03p-QOP-l4lhgfos + 1 + OutParameter + + + fr.insee + l4lhc03p + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzup79t + 1 + + AG_DEPART_ENFAIL2 + + + AG_DEPART_ENFAIL2 label + + + fr.insee + l4lhkbmw-QOP-l4lhq38m + 1 + OutParameter + + + fr.insee + l4lhkbmw + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysg76p3 + 1 + + PARENT_FREQ_ENFAIL2 + + + PARENT_FREQ_ENFAIL2 label + + + fr.insee + l4liqyis-QOP-l4lj9ipw + 1 + OutParameter + + + fr.insee + l4liqyis + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai71qvf + 1 + + FR_ENFAIL2 + + + FR_ENFAIL2 label + + + fr.insee + l4lj22ar-QOP-l4likfdn + 1 + OutParameter + + + fr.insee + l4lj22ar + 1 + QuestionItem + + + + + fr.insee + l4ongo32 + 1 + CodeList + + + + + + fr.insee + llvys5r8 + 1 + + COM_ENFAIL2 + + + COM_ENFAIL2 label + + + fr.insee + l4oo2unu-QOP-llvyt4to + 1 + OutParameter + + + fr.insee + l4oo2unu + 1 + QuestionItem + + + + + + + fr.insee + llvyhx8j + 1 + + DEP_ENFAIL2 + + + DEP_ENFAIL2 label + + + fr.insee + l4oo8gk0-QOP-llvz89k3 + 1 + OutParameter + + + fr.insee + l4oo8gk0 + 1 + QuestionItem + + + + + + + fr.insee + llvyqaj6 + 1 + + PAY_ENFAIL2 + + + PAY_ENFAIL2 label + + + fr.insee + l4ooebmj-QOP-llvz2rjo + 1 + OutParameter + + + fr.insee + l4ooebmj + 1 + QuestionItem + + + + + + + fr.insee + l4lj0cki + 1 + + LOG_ENFAIL2 + + + LOG_ENFAIL2 label + + + fr.insee + l4liztyl-QOP-l4liyopf + 1 + OutParameter + + + fr.insee + l4liztyl + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ljyhe4 + 1 + + AUT_PAR_ENFAIL2 + + + AUT_PAR_ENFAIL2 label + + + fr.insee + l4lk1w8p-QOP-l4lk92w2 + 1 + OutParameter + + + fr.insee + l4lk1w8p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk2gex + 1 + + DORT_ENFAIL2 + + + DORT_ENFAIL2 label + + + fr.insee + l4ljkmaj-QOP-l4lk4f59 + 1 + OutParameter + + + fr.insee + l4ljkmaj + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l7un2f3g + 1 + + SEP_AUT_PAR_ENFAIL2 + + + SEP_AUT_PAR_ENFAIL2 label + + + fr.insee + l4o73m0u-QOP-l4o79ydp + 1 + OutParameter + + + fr.insee + l4o73m0u + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rwupw + 1 + + RESID_ENFAIL2 + + + RESID_ENFAIL2 label + + + fr.insee + l4lmxke4-QOP-l4lmow3d + 1 + OutParameter + + + fr.insee + l4lmxke4 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgppn9w + 1 + + SANTE_ENFAIL2 + + + SANTE_ENFAIL2 label + + + fr.insee + l4ljj44i-QOP-lvgqml4j + 1 + OutParameter + + + fr.insee + l4ljj44i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgpteqm + 1 + + ASE_ENFAIL2 + + + ASE_ENFAIL2 label + + + fr.insee + lvgpi52w-QOP-lvgpy0fo + 1 + OutParameter + + + fr.insee + lvgpi52w + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lfyg5t + 1 + + PRENOM_ENFAIL3 + + + PRENOM_ENFAIL3 label + + + fr.insee + l4lg3j5g-QOP-l4lg9z9j + 1 + OutParameter + + + fr.insee + l4lg3j5g + 1 + QuestionItem + + + + + + + fr.insee + llgjuydk + 1 + + SEXE_ENFAIL3 + + + SEXE_ENFAIL3 label + + + fr.insee + l4lg6nx5-QOP-l4lg6j08 + 1 + OutParameter + + + fr.insee + l4lg6nx5 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2ria72 + 1 + + ANAI_ENFAIL3 + + + ANAI_ENFAIL3 label + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4lgo3d3 + 1 + + NEFRANCE_ENFAIL3 + + + NEFRANCE_ENFAIL3 label + + + fr.insee + l4lh0q7i-QOP-l4lgw48z + 1 + OutParameter + + + fr.insee + l4lh0q7i + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6gflqy + 1 + + ADOPT_ENFAIL3 + + + ADOPT_ENFAIL3 label + + + fr.insee + lv6g0wv2-QOP-lv6gf0ty + 1 + OutParameter + + + fr.insee + lv6g0wv2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2r79pd + 1 + + ANADOPT_ENFAIL3 + + + ANADOPT_ENFAIL3 label + + + fr.insee + lv6gixgd-QOP-lv6gi1fc + 1 + OutParameter + + + fr.insee + lv6gixgd + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lmam2 + 1 + + PARENT_VIT_ENFAIL3 + + + PARENT_VIT_ENFAIL3 label + + + fr.insee + l4lgysxq-QOP-l4lgtxyg + 1 + OutParameter + + + fr.insee + l4lgysxq + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dv00hr + 1 + + PARENT_VECU_ENFAIL3 + + + PARENT_VECU_ENFAIL3 label + + + fr.insee + l8m0bu1o-QOP-l8m0gq78 + 1 + OutParameter + + + fr.insee + l8m0bu1o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh1dxb + 1 + + DC_ENFAIL3 + + + DC_ENFAIL3 label + + + fr.insee + l4lh0ofl-QOP-l4lhcnt0 + 1 + OutParameter + + + fr.insee + l4lh0ofl + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzuk2vt + 1 + + AG_DC_ENFAIL3 + + + AG_DC_ENFAIL3 label + + + fr.insee + l4lhbuxg-QOP-l4lhhhhy + 1 + OutParameter + + + fr.insee + l4lhbuxg + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzudqhv + 1 + + AG_DEPART_ENFAIL3 + + + AG_DEPART_ENFAIL3 label + + + fr.insee + l4lhdubm-QOP-l4lhr1jr + 1 + OutParameter + + + fr.insee + l4lhdubm + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysg5bah + 1 + + PARENT_FREQ_ENFAIL3 + + + PARENT_FREQ_ENFAIL3 label + + + fr.insee + l4lirpfm-QOP-l4lj5xeo + 1 + OutParameter + + + fr.insee + l4lirpfm + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6zu1s + 1 + + FR_ENFAIL3 + + + FR_ENFAIL3 label + + + fr.insee + l4lj2cqg-QOP-l4liuj0u + 1 + OutParameter + + + fr.insee + l4lj2cqg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvyc82v + 1 + + COM_ENFAIL3 + + + COM_ENFAIL3 label + + + fr.insee + l4oo41j6-QOP-llvyrgzl + 1 + OutParameter + + + fr.insee + l4oo41j6 + 1 + QuestionItem + + + + + + + fr.insee + llvyhkhn + 1 + + DEP_ENFAIL3 + + + DEP_ENFAIL3 label + + + fr.insee + l4oo03nq-QOP-llvyxdr9 + 1 + OutParameter + + + fr.insee + l4oo03nq + 1 + QuestionItem + + + + + + + fr.insee + llvytzoi + 1 + + PAY_ENFAIL3 + + + PAY_ENFAIL3 label + + + fr.insee + l4ooe2gj-QOP-llvz89lf + 1 + OutParameter + + + fr.insee + l4ooe2gj + 1 + QuestionItem + + + + + + + fr.insee + l4lj26cu + 1 + + LOG_ENFAIL3 + + + LOG_ENFAIL3 label + + + fr.insee + l4ljddzv-QOP-l4lj4c9v + 1 + OutParameter + + + fr.insee + l4ljddzv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lasa136n + 1 + + AUT_PAR_ENFAIL3 + + + AUT_PAR_ENFAIL3 label + + + fr.insee + l4lmjzwd-QOP-l4lmk2uc + 1 + OutParameter + + + fr.insee + l4lmjzwd + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk2ey2 + 1 + + DORT_ENFAIL3 + + + DORT_ENFAIL3 label + + + fr.insee + l4ljm6cp-QOP-l4ljuv43 + 1 + OutParameter + + + fr.insee + l4ljm6cp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7s6rx + 1 + + SEP_AUT_PAR_ENFAIL3 + + + SEP_AUT_PAR_ENFAIL3 label + + + fr.insee + l4o7gt0n-QOP-l4o7fj27 + 1 + OutParameter + + + fr.insee + l4o7gt0n + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rolfh + 1 + + RESID_ENFAIL3 + + + RESID_ENFAIL3 label + + + fr.insee + l4lmszob-QOP-l4lmv8du + 1 + OutParameter + + + fr.insee + l4lmszob + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgq055p + 1 + + SANTE_ENFAIL3 + + + SANTE_ENFAIL3 label + + + fr.insee + l4ljg7fn-QOP-lvgqc2yo + 1 + OutParameter + + + fr.insee + l4ljg7fn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgpqf6e + 1 + + ASE_ENFAIL3 + + + ASE_ENFAIL3 label + + + fr.insee + lvgq4efl-QOP-lvgpof4r + 1 + OutParameter + + + fr.insee + lvgq4efl + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lg13lj + 1 + + PRENOM_ENFAIL4 + + + PRENOM_ENFAIL4 label + + + fr.insee + l4lg5t9v-QOP-l4lg3csm + 1 + OutParameter + + + fr.insee + l4lg5t9v + 1 + QuestionItem + + + + + + + fr.insee + llgjs283 + 1 + + SEXE_ENFAIL4 + + + SEXE_ENFAIL4 label + + + fr.insee + l4lg3wub-QOP-l4lg3510 + 1 + OutParameter + + + fr.insee + l4lg3wub + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2rkpc7 + 1 + + ANAI_ENFAIL4 + + + ANAI_ENFAIL4 label + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + l4lgfphb + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4lh0w7d + 1 + + NEFRANCE_ENFAIL4 + + + NEFRANCE_ENFAIL4 label + + + fr.insee + l4lgr9ny-QOP-l4lgx588 + 1 + OutParameter + + + fr.insee + l4lgr9ny + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6gysy2 + 1 + + ADOPT_ENFAIL4 + + + ADOPT_ENFAIL4 label + + + fr.insee + lv6h7uqn-QOP-lv6h5p0j + 1 + OutParameter + + + fr.insee + lv6h7uqn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2raet8 + 1 + + ANADOPT_ENFAIL4 + + + ANADOPT_ENFAIL4 label + + + fr.insee + lv6gsj3o-QOP-lv6gxb8u + 1 + OutParameter + + + fr.insee + lv6gsj3o + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20l8df0 + 1 + + PARENT_VIT_ENFAIL4 + + + PARENT_VIT_ENFAIL4 label + + + fr.insee + l4lgo4yb-QOP-l4lgsplb + 1 + OutParameter + + + fr.insee + l4lgo4yb + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9duyjkw + 1 + + PARENT_VECU_ENFAIL4 + + + PARENT_VECU_ENFAIL4 label + + + fr.insee + l8m03w7m-QOP-l8m0ghal + 1 + OutParameter + + + fr.insee + l8m03w7m + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh0y8b + 1 + + DC_ENFAIL4 + + + DC_ENFAIL4 label + + + fr.insee + l4lh1a42-QOP-l4lh8xt8 + 1 + OutParameter + + + fr.insee + l4lh1a42 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzuggur + 1 + + AG_DC_ENFAIL4 + + + AG_DC_ENFAIL4 label + + + fr.insee + l4lhbfxh-QOP-l4lh4m12 + 1 + OutParameter + + + fr.insee + l4lhbfxh + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzuba92 + 1 + + AG_DEPART_ENFAIL4 + + + AG_DEPART_ENFAIL4 label + + + fr.insee + l4lho0e2-QOP-l4lhe3eu + 1 + OutParameter + + + fr.insee + l4lho0e2 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysgd4r0 + 1 + + PARENT_FREQ_ENFAIL4 + + + PARENT_FREQ_ENFAIL4 label + + + fr.insee + l4lj5kv6-QOP-l4lj2kyh + 1 + OutParameter + + + fr.insee + l4lj5kv6 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + m1erjqr9 + 1 + + FR_ENFAIL4 + + + FR_ENFAIL4 label + + + fr.insee + l4lj0iea-QOP-l4liwqkb + 1 + OutParameter + + + fr.insee + l4lj0iea + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + llvytozk + 1 + + COM_ENFAIL4 + + + COM_ENFAIL4 label + + + fr.insee + l4onwhrf-QOP-llvz7vfx + 1 + OutParameter + + + fr.insee + l4onwhrf + 1 + QuestionItem + + + + + + + fr.insee + llvyp2uu + 1 + + DEP_ENFAIL4 + + + DEP_ENFAIL4 label + + + fr.insee + l4oo4x1t-QOP-llvyr8d7 + 1 + OutParameter + + + fr.insee + l4oo4x1t + 1 + QuestionItem + + + + + + + fr.insee + llvyka8z + 1 + + PAY_ENFAIL4 + + + PAY_ENFAIL4 label + + + fr.insee + l4oo1817-QOP-llvyukzs + 1 + OutParameter + + + fr.insee + l4oo1817 + 1 + QuestionItem + + + + + + + fr.insee + l4ljh4hd + 1 + + LOG_ENFAIL4 + + + LOG_ENFAIL4 label + + + fr.insee + l4lixcs2-QOP-l4lj1r3g + 1 + OutParameter + + + fr.insee + l4lixcs2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lmfm7a + 1 + + AUT_PAR_ENFAIL4 + + + AUT_PAR_ENFAIL4 label + + + fr.insee + l4lms9a0-QOP-l4lmo51c + 1 + OutParameter + + + fr.insee + l4lms9a0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lk882x + 1 + + DORT_ENFAIL4 + + + DORT_ENFAIL4 label + + + fr.insee + l4ljmpiu-QOP-l4ljxs6c + 1 + OutParameter + + + fr.insee + l4ljmpiu + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o80sj1 + 1 + + SEP_AUT_PAR_ENFAIL4 + + + SEP_AUT_PAR_ENFAIL4 label + + + fr.insee + l4o7jdze-QOP-l4o7nzi9 + 1 + OutParameter + + + fr.insee + l4o7jdze + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rpii2 + 1 + + RESID_ENFAIL4 + + + RESID_ENFAIL4 label + + + fr.insee + l4lmvah7-QOP-l4lmu5ae + 1 + OutParameter + + + fr.insee + l4lmvah7 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgq145z + 1 + + SANTE_ENFAIL4 + + + SANTE_ENFAIL4 label + + + fr.insee + l4ljjvig-QOP-lvgqq2fo + 1 + OutParameter + + + fr.insee + l4ljjvig + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgpqvpz + 1 + + ASE_ENFAIL4 + + + ASE_ENFAIL4 label + + + fr.insee + lvgpyw4o-QOP-lvgpsdqj + 1 + OutParameter + + + fr.insee + lvgpyw4o + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lgdupn + 1 + + PRENOM_ENFAIL5 + + + PRENOM_ENFAIL5 label + + + fr.insee + l4lgayon-QOP-l4lg49i3 + 1 + OutParameter + + + fr.insee + l4lgayon + 1 + QuestionItem + + + + + + + fr.insee + llgjrwzu + 1 + + SEXE_ENFAIL5 + + + SEXE_ENFAIL5 label + + + fr.insee + l4lgep4c-QOP-l4lg9rqy + 1 + OutParameter + + + fr.insee + l4lgep4c + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2ryw26 + 1 + + ANAI_ENFAIL5 + + + ANAI_ENFAIL5 label + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l4lgnml2 + 1 + + NEFRANCE_ENFAIL5 + + + NEFRANCE_ENFAIL5 label + + + fr.insee + l4lgnphx-QOP-l4lgsfsx + 1 + OutParameter + + + fr.insee + l4lgnphx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6h1tev + 1 + + ADOPT_ENFAIL5 + + + ADOPT_ENFAIL5 label + + + fr.insee + lv6h7z1u-QOP-lv6h9n3d + 1 + OutParameter + + + fr.insee + lv6h7z1u + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2rx2aw + 1 + + ANADOPT_ENFAIL5 + + + ANADOPT_ENFAIL5 label + + + fr.insee + lv6hzzia-QOP-lv6i8dw9 + 1 + OutParameter + + + fr.insee + lv6hzzia + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lr70g + 1 + + PARENT_VIT_ENFAIL5 + + + PARENT_VIT_ENFAIL5 label + + + fr.insee + l4lh672z-QOP-l4lh0pbe + 1 + OutParameter + + + fr.insee + l4lh672z + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvdo4p + 1 + + PARENT_VECU_ENFAIL5 + + + PARENT_VECU_ENFAIL5 label + + + fr.insee + l8m0ld6c-QOP-l8m08umx + 1 + OutParameter + + + fr.insee + l8m0ld6c + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lh78pu + 1 + + DC_ENFAIL5 + + + DC_ENFAIL5 label + + + fr.insee + l4lhcdf6-QOP-l4lgwio5 + 1 + OutParameter + + + fr.insee + l4lhcdf6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzujc0x + 1 + + AG_DC_ENFAIL5 + + + AG_DC_ENFAIL5 label + + + fr.insee + l4lh8c72-QOP-l4lh96gc + 1 + OutParameter + + + fr.insee + l4lh8c72 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzunfl7 + 1 + + AG_DEPART_ENFAIL5 + + + AG_DEPART_ENFAIL5 label + + + fr.insee + l4lhn614-QOP-l4lhi8ks + 1 + OutParameter + + + fr.insee + l4lhn614 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysgfjh2 + 1 + + PARENT_FREQ_ENFAIL5 + + + PARENT_FREQ_ENFAIL5 label + + + fr.insee + l4lj98cz-QOP-l4lj2b7z + 1 + OutParameter + + + fr.insee + l4lj98cz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6w8kr + 1 + + FR_ENFAIL5 + + + FR_ENFAIL5 label + + + fr.insee + l4lijtvo-QOP-l4liqibl + 1 + OutParameter + + + fr.insee + l4lijtvo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz0fqm + 1 + + COM_ENFAIL5 + + + COM_ENFAIL5 label + + + fr.insee + l4oo41q4-QOP-llvz0237 + 1 + OutParameter + + + fr.insee + l4oo41q4 + 1 + QuestionItem + + + + + + + fr.insee + llvysls5 + 1 + + DEP_ENFAIL5 + + + DEP_ENFAIL5 label + + + fr.insee + l4oo7lwi-QOP-llvz93jz + 1 + OutParameter + + + fr.insee + l4oo7lwi + 1 + QuestionItem + + + + + + + fr.insee + llvylns4 + 1 + + PAY_ENFAIL5 + + + PAY_ENFAIL5 label + + + fr.insee + l4oo5bj9-QOP-llvz2kjk + 1 + OutParameter + + + fr.insee + l4oo5bj9 + 1 + QuestionItem + + + + + + + fr.insee + l4lj62bs + 1 + + LOG_ENFAIL5 + + + LOG_ENFAIL5 label + + + fr.insee + l4lizygc-QOP-l4lj1p4y + 1 + OutParameter + + + fr.insee + l4lizygc + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7oknh + 1 + + AUT_PAR_ENFAIL5 + + + AUT_PAR_ENFAIL5 label + + + fr.insee + l4lmc52p-QOP-l4lmdw7z + 1 + OutParameter + + + fr.insee + l4lmc52p + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4ljvm4i + 1 + + DORT_ENFAIL5 + + + DORT_ENFAIL5 label + + + fr.insee + l4ljxer7-QOP-l4ljxwvx + 1 + OutParameter + + + fr.insee + l4ljxer7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4o7xizu + 1 + + SEP_AUT_PAR_ENFAIL5 + + + SEP_AUT_PAR_ENFAIL5 label + + + fr.insee + l4o7vzru-QOP-l4o80pka + 1 + OutParameter + + + fr.insee + l4o7vzru + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rrju5 + 1 + + RESID_ENFAIL5 + + + RESID_ENFAIL5 label + + + fr.insee + l4lms6u4-QOP-l4ln2eva + 1 + OutParameter + + + fr.insee + l4lms6u4 + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgqd9l4 + 1 + + SANTE_ENFAIL5 + + + SANTE_ENFAIL5 label + + + fr.insee + l4ljcdar-QOP-lvgqicza + 1 + OutParameter + + + fr.insee + l4ljcdar + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgqdrsy + 1 + + ASE_ENFAIL5 + + + ASE_ENFAIL5 label + + + fr.insee + lvgq0pjg-QOP-lvgpu4qm + 1 + OutParameter + + + fr.insee + lvgq0pjg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oi7fel + 1 + + PRENOM_ENFAIL6 + + + PRENOM_ENFAIL6 label + + + fr.insee + l8oign0h-QOP-l8oifcrp + 1 + OutParameter + + + fr.insee + l8oign0h + 1 + QuestionItem + + + + + + + fr.insee + llgjkq9j + 1 + + SEXE_ENFAIL6 + + + SEXE_ENFAIL6 label + + + fr.insee + l8oi92w4-QOP-l8oihhrs + 1 + OutParameter + + + fr.insee + l8oi92w4 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2rx97c + 1 + + ANAI_ENFAIL6 + + + ANAI_ENFAIL6 label + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8oij0b0 + 1 + + NEFRANCE_ENFAIL6 + + + NEFRANCE_ENFAIL6 label + + + fr.insee + l8oientz-QOP-l8oib8l6 + 1 + OutParameter + + + fr.insee + l8oientz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6hwmgr + 1 + + ADOPT_ENFAIL6 + + + ADOPT_ENFAIL6 label + + + fr.insee + lv6i7gwi-QOP-lv6ierbo + 1 + OutParameter + + + fr.insee + lv6i7gwi + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2rxj16 + 1 + + ANADOPT_ENFAIL6 + + + ANADOPT_ENFAIL6 label + + + fr.insee + lv6imul3-QOP-lv6in2pk + 1 + OutParameter + + + fr.insee + lv6imul3 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lc9po + 1 + + PARENT_VIT_ENFAIL6 + + + PARENT_VIT_ENFAIL6 label + + + fr.insee + l8oidc2m-QOP-l8ohy4u9 + 1 + OutParameter + + + fr.insee + l8oidc2m + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9duy8g6 + 1 + + PARENT_VECU_ENFAIL6 + + + PARENT_VECU_ENFAIL6 label + + + fr.insee + l8oib75g-QOP-l8oi8s9r + 1 + OutParameter + + + fr.insee + l8oib75g + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oi73zk + 1 + + DC_ENFAIL6 + + + DC_ENFAIL6 label + + + fr.insee + l8ohus0v-QOP-l8oi6wxh + 1 + OutParameter + + + fr.insee + l8ohus0v + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzunbiw + 1 + + AG_DC_ENFAIL6 + + + AG_DC_ENFAIL6 label + + + fr.insee + l8ohrpn7-QOP-l8ohwfm9 + 1 + OutParameter + + + fr.insee + l8ohrpn7 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzur60d + 1 + + AG_DEPART_ENFAIL6 + + + AG_DEPART_ENFAIL6 label + + + fr.insee + l8ohwpt9-QOP-l8ohnljo + 1 + OutParameter + + + fr.insee + l8ohwpt9 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysgp2lz + 1 + + PARENT_FREQ_ENFAIL6 + + + PARENT_FREQ_ENFAIL6 label + + + fr.insee + l8oh46rn-QOP-l8oh8ggp + 1 + OutParameter + + + fr.insee + l8oh46rn + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai76uzw + 1 + + FR_ENFAIL6 + + + FR_ENFAIL6 label + + + fr.insee + l8ogysyp-QOP-l8ogwc5d + 1 + OutParameter + + + fr.insee + l8ogysyp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvyoxe1 + 1 + + COM_ENFAIL6 + + + COM_ENFAIL6 label + + + fr.insee + l8ogqig3-QOP-llvzas4q + 1 + OutParameter + + + fr.insee + l8ogqig3 + 1 + QuestionItem + + + + + + + fr.insee + llvywof5 + 1 + + DEP_ENFAIL6 + + + DEP_ENFAIL6 label + + + fr.insee + l8ogp9jo-QOP-llvz1v15 + 1 + OutParameter + + + fr.insee + l8ogp9jo + 1 + QuestionItem + + + + + + + fr.insee + llvypr5t + 1 + + PAY_ENFAIL6 + + + PAY_ENFAIL6 label + + + fr.insee + l8ogpnbn-QOP-llvz3tao + 1 + OutParameter + + + fr.insee + l8ogpnbn + 1 + QuestionItem + + + + + + + fr.insee + l8ogvwpl + 1 + + LOG_ENFAIL6 + + + LOG_ENFAIL6 label + + + fr.insee + l8ogukpt-QOP-l8ogy42h + 1 + OutParameter + + + fr.insee + l8ogukpt + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oaxy5v + 1 + + AUT_PAR_ENFAIL6 + + + AUT_PAR_ENFAIL6 label + + + fr.insee + l8ob0dk4-QOP-l8oakgr4 + 1 + OutParameter + + + fr.insee + l8ob0dk4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ob2278 + 1 + + DORT_ENFAIL6 + + + DORT_ENFAIL6 label + + + fr.insee + l8oarkxm-QOP-l8oaqk9w + 1 + OutParameter + + + fr.insee + l8oarkxm + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ob0bwo + 1 + + SEP_AUT_PAR_ENFAIL6 + + + SEP_AUT_PAR_ENFAIL6 label + + + fr.insee + l8oaqbj5-QOP-l8ob57h3 + 1 + OutParameter + + + fr.insee + l8oaqbj5 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rwkwt + 1 + + RESID_ENFAIL6 + + + RESID_ENFAIL6 label + + + fr.insee + l8oanpzw-QOP-l8oayvjg + 1 + OutParameter + + + fr.insee + l8oanpzw + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgq0uab + 1 + + SANTE_ENFAIL6 + + + SANTE_ENFAIL6 label + + + fr.insee + l8oasgat-QOP-lvgq6z78 + 1 + OutParameter + + + fr.insee + l8oasgat + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgqeihf + 1 + + ASE_ENFAIL6 + + + ASE_ENFAIL6 label + + + fr.insee + lvgqbpim-QOP-lvgqaha5 + 1 + OutParameter + + + fr.insee + lvgqbpim + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okm9vv + 1 + + PRENOM_ENFAIL7 + + + PRENOM_ENFAIL7 label + + + fr.insee + l8ok9kmj-QOP-l8okjmzy + 1 + OutParameter + + + fr.insee + l8ok9kmj + 1 + QuestionItem + + + + + + + fr.insee + llgjuj96 + 1 + + SEXE_ENFAIL7 + + + SEXE_ENFAIL7 label + + + fr.insee + l8okbmv3-QOP-l8ok3iy5 + 1 + OutParameter + + + fr.insee + l8okbmv3 + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2rz5zv + 1 + + ANAI_ENFAIL7 + + + ANAI_ENFAIL7 label + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + l8okh65e + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8ojza9l + 1 + + NEFRANCE_ENFAIL7 + + + NEFRANCE_ENFAIL7 label + + + fr.insee + l8okc5z9-QOP-l8ok6z0e + 1 + OutParameter + + + fr.insee + l8okc5z9 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6i4o14 + 1 + + ADOPT_ENFAIL7 + + + ADOPT_ENFAIL7 label + + + fr.insee + lv6hwis8-QOP-lv6i7g5p + 1 + OutParameter + + + fr.insee + lv6hwis8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2rmw4r + 1 + + ANADOPT_ENFAIL7 + + + ANADOPT_ENFAIL7 label + + + fr.insee + lv6kasxf-QOP-lv6k1g9w + 1 + OutParameter + + + fr.insee + lv6kasxf + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20lfty2 + 1 + + PARENT_VIT_ENFAIL7 + + + PARENT_VIT_ENFAIL7 label + + + fr.insee + l8okdoof-QOP-l8ojuyat + 1 + OutParameter + + + fr.insee + l8okdoof + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvd6ci + 1 + + PARENT_VECU_ENFAIL7 + + + PARENT_VECU_ENFAIL7 label + + + fr.insee + l8ok0d4y-QOP-l8ojxc00 + 1 + OutParameter + + + fr.insee + l8ok0d4y + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ojsho1 + 1 + + DC_ENFAIL7 + + + DC_ENFAIL7 label + + + fr.insee + l8ok0acp-QOP-l8ok9idc + 1 + OutParameter + + + fr.insee + l8ok0acp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzuvlhc + 1 + + AG_DC_ENFAIL7 + + + AG_DC_ENFAIL7 label + + + fr.insee + l8ojs3vl-QOP-l8ojtruw + 1 + OutParameter + + + fr.insee + l8ojs3vl + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzv2k09 + 1 + + AG_DEPART_ENFAIL7 + + + AG_DEPART_ENFAIL7 label + + + fr.insee + l8ojuhud-QOP-l8ojvwk7 + 1 + OutParameter + + + fr.insee + l8ojuhud + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysgm4ff + 1 + + PARENT_FREQ_ENFAIL7 + + + PARENT_FREQ_ENFAIL7 label + + + fr.insee + l8ojmjws-QOP-l8ojhru1 + 1 + OutParameter + + + fr.insee + l8ojmjws + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai70va9 + 1 + + FR_ENFAIL7 + + + FR_ENFAIL7 label + + + fr.insee + l8oj98gw-QOP-l8ojo8na + 1 + OutParameter + + + fr.insee + l8oj98gw + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvypqbk + 1 + + COM_ENFAIL7 + + + COM_ENFAIL7 label + + + fr.insee + l8ojczfv-QOP-llvz57ns + 1 + OutParameter + + + fr.insee + l8ojczfv + 1 + QuestionItem + + + + + + + fr.insee + llvyy4np + 1 + + DEP_ENFAIL7 + + + DEP_ENFAIL7 label + + + fr.insee + l8ojb4ub-QOP-llvzaolo + 1 + OutParameter + + + fr.insee + l8ojb4ub + 1 + QuestionItem + + + + + + + fr.insee + llvyovak + 1 + + PAY_ENFAIL7 + + + PAY_ENFAIL7 label + + + fr.insee + l8ojif3m-QOP-llvyqwz8 + 1 + OutParameter + + + fr.insee + l8ojif3m + 1 + QuestionItem + + + + + + + fr.insee + l8ojhh6l + 1 + + LOG_ENFAIL7 + + + LOG_ENFAIL7 label + + + fr.insee + l8oja1pz-QOP-l8oj6h19 + 1 + OutParameter + + + fr.insee + l8oja1pz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oig2bs + 1 + + AUT_PAR_ENFAIL7 + + + AUT_PAR_ENFAIL7 label + + + fr.insee + l8oiinpy-QOP-l8oia0f4 + 1 + OutParameter + + + fr.insee + l8oiinpy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oj2ija + 1 + + DORT_ENFAIL7 + + + DORT_ENFAIL7 label + + + fr.insee + l8oj67fo-QOP-l8oiz02v + 1 + OutParameter + + + fr.insee + l8oj67fo + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8oivphd + 1 + + SEP_AUT_PAR_ENFAIL7 + + + SEP_AUT_PAR_ENFAIL7 label + + + fr.insee + l8oiu9ax-QOP-l8oimcso + 1 + OutParameter + + + fr.insee + l8oiu9ax + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3s0cn8 + 1 + + RESID_ENFAIL7 + + + RESID_ENFAIL7 label + + + fr.insee + l8oicj6e-QOP-l8oirvyk + 1 + OutParameter + + + fr.insee + l8oicj6e + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgq5m4s + 1 + + SANTE_ENFAIL7 + + + SANTE_ENFAIL7 label + + + fr.insee + l8oizp0r-QOP-lvgql017 + 1 + OutParameter + + + fr.insee + l8oizp0r + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgq418g + 1 + + ASE_ENFAIL7 + + + ASE_ENFAIL7 label + + + fr.insee + lvgq4gkg-QOP-lvgqgz9z + 1 + OutParameter + + + fr.insee + lvgq4gkg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8olff0v + 1 + + PRENOM_ENFAIL8 + + + PRENOM_ENFAIL8 label + + + fr.insee + l8olci32-QOP-l8oln1gt + 1 + OutParameter + + + fr.insee + l8olci32 + 1 + QuestionItem + + + + + + + fr.insee + llgjincl + 1 + + SEXE_ENFAIL8 + + + SEXE_ENFAIL8 label + + + fr.insee + l8olbhxj-QOP-l8ol8o60 + 1 + OutParameter + + + fr.insee + l8olbhxj + 1 + QuestionItem + + + + + fr.insee + llgbzo78 + 1 + CodeList + + + + + + fr.insee + ly2rub86 + 1 + + ANAI_ENFAIL8 + + + ANAI_ENFAIL8 label + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + l8olls0i + 1 + + NEFRANCE_ENFAIL8 + + + NEFRANCE_ENFAIL8 label + + + fr.insee + l8ola1mr-QOP-l8olb2am + 1 + OutParameter + + + fr.insee + l8ola1mr + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv6ih5mr + 1 + + ADOPT_ENFAIL8 + + + ADOPT_ENFAIL8 label + + + fr.insee + lv6igxed-QOP-lv6i2nr4 + 1 + OutParameter + + + fr.insee + lv6igxed + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2s8mut + 1 + + ANADOPT_ENFAIL8 + + + ANADOPT_ENFAIL8 label + + + fr.insee + lv6khz5j-QOP-lv6kds0v + 1 + OutParameter + + + fr.insee + lv6khz5j + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + m20llweu + 1 + + PARENT_VIT_ENFAIL8 + + + PARENT_VIT_ENFAIL8 label + + + fr.insee + l8okz45l-QOP-l8olfzvu + 1 + OutParameter + + + fr.insee + l8okz45l + 1 + QuestionItem + + + + + fr.insee + l44726g4 + 1 + CodeList + + + + + + fr.insee + l9dvbaqq + 1 + + PARENT_VECU_ENFAIL8 + + + PARENT_VECU_ENFAIL8 label + + + fr.insee + l8ol369l-QOP-l8okxkvv + 1 + OutParameter + + + fr.insee + l8ol369l + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8ol5yre + 1 + + DC_ENFAIL8 + + + DC_ENFAIL8 label + + + fr.insee + l8ole120-QOP-l8ol3o2i + 1 + OutParameter + + + fr.insee + l8ole120 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyzuqtc5 + 1 + + AG_DC_ENFAIL8 + + + AG_DC_ENFAIL8 label + + + fr.insee + l8olcd8n-QOP-l8oku4vn + 1 + OutParameter + + + fr.insee + l8olcd8n + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lyzuwdlk + 1 + + AG_DEPART_ENFAIL8 + + + AG_DEPART_ENFAIL8 label + + + fr.insee + l8ol84b7-QOP-l8ol1ust + 1 + OutParameter + + + fr.insee + l8ol84b7 + 1 + QuestionItem + + + + + 0 + 95 + + Decimal + + + + + fr.insee + lysextho + 1 + + PARENT_FREQ_ENFAIL8 + + + PARENT_FREQ_ENFAIL8 label + + + fr.insee + l8okx7cd-QOP-l8ol3s4a + 1 + OutParameter + + + fr.insee + l8okx7cd + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lai6too4 + 1 + + FR_ENFAIL8 + + + FR_ENFAIL8 label + + + fr.insee + l8okpxv8-QOP-l8okk1db + 1 + OutParameter + + + fr.insee + l8okpxv8 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz0iw5 + 1 + + COM_ENFAIL8 + + + COM_ENFAIL8 label + + + fr.insee + l8okjfla-QOP-llvz0mdc + 1 + OutParameter + + + fr.insee + l8okjfla + 1 + QuestionItem + + + + + + + fr.insee + llvz0k9p + 1 + + DEP_ENFAIL8 + + + DEP_ENFAIL8 label + + + fr.insee + l8okue2t-QOP-llvz6npr + 1 + OutParameter + + + fr.insee + l8okue2t + 1 + QuestionItem + + + + + + + fr.insee + llvyxbi2 + 1 + + PAY_ENFAIL8 + + + PAY_ENFAIL8 label + + + fr.insee + l8okxgwv-QOP-llvz12vx + 1 + OutParameter + + + fr.insee + l8okxgwv + 1 + QuestionItem + + + + + + + fr.insee + l8okm2oj + 1 + + LOG_ENFAIL8 + + + LOG_ENFAIL8 label + + + fr.insee + l8oksuft-QOP-l8okh5d0 + 1 + OutParameter + + + fr.insee + l8oksuft + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okskbt + 1 + + AUT_PAR_ENFAIL8 + + + AUT_PAR_ENFAIL8 label + + + fr.insee + l8okked6-QOP-l8okd51b + 1 + OutParameter + + + fr.insee + l8okked6 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okje65 + 1 + + DORT_ENFAIL8 + + + DORT_ENFAIL8 label + + + fr.insee + l8okkkef-QOP-l8oktkgp + 1 + OutParameter + + + fr.insee + l8okkkef + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l8okt0i0 + 1 + + SEP_AUT_PAR_ENFAIL8 + + + SEP_AUT_PAR_ENFAIL8 label + + + fr.insee + l8okfvhy-QOP-l8oke48c + 1 + OutParameter + + + fr.insee + l8okfvhy + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lv3rohc1 + 1 + + RESID_ENFAIL8 + + + RESID_ENFAIL8 label + + + fr.insee + l8okioqc-QOP-l8oksr34 + 1 + OutParameter + + + fr.insee + l8okioqc + 1 + QuestionItem + + + + + fr.insee + l448z131 + 1 + CodeList + + + + + + fr.insee + lvgqmok5 + 1 + + SANTE_ENFAIL8 + + + SANTE_ENFAIL8 label + + + fr.insee + l8oklb21-QOP-lvgqkscs + 1 + OutParameter + + + fr.insee + l8oklb21 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lvgq5tgd + 1 + + ASE_ENFAIL8 + + + ASE_ENFAIL8 label + + + fr.insee + lvgq7nb7-QOP-lvgq4rkd + 1 + OutParameter + + + fr.insee + lvgq7nb7 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5iaj6j7 + 1 + + PETIT_ENF + + + PETIT_ENF label + + + fr.insee + l1f6a3qv-QOP-l1f67xik + 1 + OutParameter + + + fr.insee + l1f6a3qv + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lm69vsc6 + 1 + + NB_PETIT_ENF + + + NB_PETIT_ENF label + + + fr.insee + l1f6dz1j-QOP-l1f6aqky + 1 + OutParameter + + + fr.insee + l1f6dz1j + 1 + QuestionItem + + + + + 1 + 40 + + Decimal + + + + + fr.insee + lyzurtxt + 1 + + AG_PETIT_ENF + + + AG_PETIT_ENF label + + + fr.insee + l1f69ivh-QOP-l1f6h1an + 1 + OutParameter + + + fr.insee + l1f69ivh + 1 + QuestionItem + + + + + 0 + 80 + + Decimal + + + + + fr.insee + lysf53ha + 1 + + FREQ_VU_PETIT_ENF1 + + + 1 - Une ou plusieurs fois par semaine + + + fr.insee + l1g3hka7-QOP-lyset8xu + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lysf83t6 + 1 + + FREQ_VU_PETIT_ENF2 + + + 2 - Une ou plusieurs fois par mois + + + fr.insee + l1g3hka7-QOP-lysf9ivz + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lysf76f5 + 1 + + FREQ_VU_PETIT_ENF3 + + + 3 - Une ou plusieurs fois par an + + + fr.insee + l1g3hka7-QOP-lysexinp + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lysex4x5 + 1 + + FREQ_VU_PETIT_ENF4 + + + 4 - Plus rarement ou jamais + + + fr.insee + l1g3hka7-QOP-lysfb2lu + 1 + OutParameter + + + fr.insee + l1g3hka7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lysenkzg + 1 + + FREQ_CONT_PETIT_ENF1 + + + 1 - Une ou plusieurs fois par semaine + + + fr.insee + l1f4yrno-QOP-lysew1yw + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lyseyuwn + 1 + + FREQ_CONT_PETIT_ENF2 + + + 2 - Une ou plusieurs fois par mois + + + fr.insee + l1f4yrno-QOP-lysf8y6x + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lysf84dn + 1 + + FREQ_CONT_PETIT_ENF3 + + + 3 - Une ou plusieurs fois par an + + + fr.insee + l1f4yrno-QOP-lysf9t6e + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lyset387 + 1 + + FREQ_CONT_PETIT_ENF4 + + + 4 - Plus rarement ou jamais + + + fr.insee + l1f4yrno-QOP-lysf9j6m + 1 + OutParameter + + + fr.insee + l1f4yrno + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0ks9w0l + 1 + + AIDE_APPORT1 + + + 1 - "Oui, une aide pour les tâches quotidiennes" + + + fr.insee + l1g87t8t-QOP-m0ks2t7e + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0ks6z77 + 1 + + AIDE_APPORT2 + + + 2 - "Oui, une aide financière ou matérielle" + + + fr.insee + l1g87t8t-QOP-m0krzzyv + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0krvmyp + 1 + + AIDE_APPORT3 + + + 3 - "Oui, un soutien moral" + + + fr.insee + l1g87t8t-QOP-m0kscf0p + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0ks7k0k + 1 + + AIDE_APPORT4 + + + 4 - "Oui, vous êtes" || (if (¤TYPE_QUEST¤ ="1") then " tuteur ou curateur " else " tutrice ou curatrice") + + + fr.insee + l1g87t8t-QOP-m0ks1bw3 + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0ks75cb + 1 + + AIDE_APPORT5 + + + 5 - "Non, aucune aide de ce type" + + + fr.insee + l1g87t8t-QOP-m0ksa9qw + 1 + OutParameter + + + fr.insee + l1g87t8t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cdncs + 1 + + QUI_AID_APP_1A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1ggssgl-QOP-m23czf6s + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cjnp4 + 1 + + QUI_AID_APP_1A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggssgl-QOP-m23cq2u1 + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cq6vk + 1 + + QUI_AID_APP_1A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1ggssgl-QOP-m23cod6m + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c7bv1 + 1 + + QUI_AID_APP_1A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1ggssgl-QOP-m23ch75l + 1 + OutParameter + + + fr.insee + l1ggssgl + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjdkrsu + 1 + + QUI_AID_APP_1AD + + + QUI_AID_APP_1AD label + + + fr.insee + lwhm7k7c-QOP-lwje5tlt + 1 + OutParameter + + + fr.insee + lwhm7k7c + 1 + QuestionItem + + + + + + + fr.insee + m23c7j0j + 1 + + QUI_AID_APP_1B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7u5rox-QOP-m23cqwzh + 1 + OutParameter + + + fr.insee + lw7u5rox + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23clv2b + 1 + + QUI_AID_APP_1B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7u5rox-QOP-m23cy792 + 1 + OutParameter + + + fr.insee + lw7u5rox + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c77tt + 1 + + QUI_AID_APP_1B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7u5rox-QOP-m23cpqpj + 1 + OutParameter + + + fr.insee + lw7u5rox + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjdf3fc + 1 + + QUI_AID_APP_1BD + + + QUI_AID_APP_1BD label + + + fr.insee + lwjdc6vy-QOP-lwjdf9xr + 1 + OutParameter + + + fr.insee + lwjdc6vy + 1 + QuestionItem + + + + + + + fr.insee + m23ca0bg + 1 + + QUI_AID_APP_1C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7tzp47-QOP-m23ctpym + 1 + OutParameter + + + fr.insee + lw7tzp47 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23calgn + 1 + + QUI_AID_APP_1C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7tzp47-QOP-m23chyj6 + 1 + OutParameter + + + fr.insee + lw7tzp47 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c53fz + 1 + + QUI_AID_APP_1C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7tzp47-QOP-m23cjnkj + 1 + OutParameter + + + fr.insee + lw7tzp47 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjd95mc + 1 + + QUI_AID_APP_1CD + + + QUI_AID_APP_1CD label + + + fr.insee + lwjdesu0-QOP-lwjdqzn0 + 1 + OutParameter + + + fr.insee + lwjdesu0 + 1 + QuestionItem + + + + + + + fr.insee + m23c5awe + 1 + + QUI_AID_APP_1D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7u3zby-QOP-m23couft + 1 + OutParameter + + + fr.insee + lw7u3zby + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c6oi9 + 1 + + QUI_AID_APP_1D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7u3zby-QOP-m23coud5 + 1 + OutParameter + + + fr.insee + lw7u3zby + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjdgf3p + 1 + + QUI_AID_APP_1DD + + + QUI_AID_APP_1DD label + + + fr.insee + lwjdhxux-QOP-lwjdmc8r + 1 + OutParameter + + + fr.insee + lwjdhxux + 1 + QuestionItem + + + + + + + fr.insee + m23cet9v + 1 + + QUI_AID_APP_2A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1ggm06b-QOP-m23cy63o + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23coizk + 1 + + QUI_AID_APP_2A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggm06b-QOP-m23clw9y + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmit5 + 1 + + QUI_AID_APP_2A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1ggm06b-QOP-m23cpj0g + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c90l2 + 1 + + QUI_AID_APP_2A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1ggm06b-QOP-m23cs9lm + 1 + OutParameter + + + fr.insee + l1ggm06b + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjdvco3 + 1 + + QUI_AID_APP_2AD + + + QUI_AID_APP_2AD label + + + fr.insee + lwjdpyys-QOP-lwjdjwkb + 1 + OutParameter + + + fr.insee + lwjdpyys + 1 + QuestionItem + + + + + + + fr.insee + m23cfl2j + 1 + + QUI_AID_APP_2B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7vzo64-QOP-m23cpjyf + 1 + OutParameter + + + fr.insee + lw7vzo64 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cb5l3 + 1 + + QUI_AID_APP_2B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7vzo64-QOP-m23cflls + 1 + OutParameter + + + fr.insee + lw7vzo64 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ca8gd + 1 + + QUI_AID_APP_2B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7vzo64-QOP-m23cm1g1 + 1 + OutParameter + + + fr.insee + lw7vzo64 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwjdwtxi + 1 + + QUI_AID_APP_2BD + + + QUI_AID_APP_2BD label + + + fr.insee + lwje55m7-QOP-lwjdskgn + 1 + OutParameter + + + fr.insee + lwje55m7 + 1 + QuestionItem + + + + + + + fr.insee + m23cfm6v + 1 + + QUI_AID_APP_2C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7w4b79-QOP-m23cwdhi + 1 + OutParameter + + + fr.insee + lw7w4b79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23c81z1 + 1 + + QUI_AID_APP_2C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7w4b79-QOP-m23cqhne + 1 + OutParameter + + + fr.insee + lw7w4b79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cgjt1 + 1 + + QUI_AID_APP_2C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7w4b79-QOP-m23cq935 + 1 + OutParameter + + + fr.insee + lw7w4b79 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwje891j + 1 + + QUI_AID_APP_2CD + + + QUI_AID_APP_2CD label + + + fr.insee + lwje0h9j-QOP-lwjdvun8 + 1 + OutParameter + + + fr.insee + lwje0h9j + 1 + QuestionItem + + + + + + + fr.insee + m23cjbcc + 1 + + QUI_AID_APP_2D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7w7lh9-QOP-m23cmpju + 1 + OutParameter + + + fr.insee + lw7w7lh9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cd6hx + 1 + + QUI_AID_APP_2D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7w7lh9-QOP-m23ctsr1 + 1 + OutParameter + + + fr.insee + lw7w7lh9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkr6knx + 1 + + QUI_AID_APP_2DD + + + QUI_AID_APP_2DD label + + + fr.insee + lwkqt10g-QOP-lwkqsn54 + 1 + OutParameter + + + fr.insee + lwkqt10g + 1 + QuestionItem + + + + + + + fr.insee + m23cr6em + 1 + + QUI_AID_APP_3A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1ggtznr-QOP-m23cnl9o + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cdh6u + 1 + + QUI_AID_APP_3A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggtznr-QOP-m23cnawi + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ctmjh + 1 + + QUI_AID_APP_3A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1ggtznr-QOP-m23cyjky + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cfyuk + 1 + + QUI_AID_APP_3A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1ggtznr-QOP-m23cxrro + 1 + OutParameter + + + fr.insee + l1ggtznr + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkqsz5j + 1 + + QUI_AID_APP_3AD + + + QUI_AID_APP_3AD label + + + fr.insee + lwkqxzag-QOP-lwkr61pl + 1 + OutParameter + + + fr.insee + lwkqxzag + 1 + QuestionItem + + + + + + + fr.insee + m23cmqom + 1 + + QUI_AID_APP_3B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7w2d1u-QOP-m23cvmpn + 1 + OutParameter + + + fr.insee + lw7w2d1u + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmzeb + 1 + + QUI_AID_APP_3B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7w2d1u-QOP-m23cr5wt + 1 + OutParameter + + + fr.insee + lw7w2d1u + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23clu63 + 1 + + QUI_AID_APP_3B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7w2d1u-QOP-m23cunxx + 1 + OutParameter + + + fr.insee + lw7w2d1u + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkr4l6r + 1 + + QUI_AID_APP_3BD + + + QUI_AID_APP_3BD label + + + fr.insee + lwkqz11c-QOP-lwkr6qfb + 1 + OutParameter + + + fr.insee + lwkqz11c + 1 + QuestionItem + + + + + + + fr.insee + m23cpd1n + 1 + + QUI_AID_APP_3C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7w9t0f-QOP-m23cnzvc + 1 + OutParameter + + + fr.insee + lw7w9t0f + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ch6jy + 1 + + QUI_AID_APP_3C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7w9t0f-QOP-m23czjsl + 1 + OutParameter + + + fr.insee + lw7w9t0f + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23clk8c + 1 + + QUI_AID_APP_3C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7w9t0f-QOP-m23csrk4 + 1 + OutParameter + + + fr.insee + lw7w9t0f + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkr90s1 + 1 + + QUI_AID_APP_3CD + + + QUI_AID_APP_3CD label + + + fr.insee + lwkqzn6j-QOP-lwkqrhgp + 1 + OutParameter + + + fr.insee + lwkqzn6j + 1 + QuestionItem + + + + + + + fr.insee + m23csyew + 1 + + QUI_AID_APP_3D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7w2fuz-QOP-m23cjrgd + 1 + OutParameter + + + fr.insee + lw7w2fuz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ce6a7 + 1 + + QUI_AID_APP_3D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7w2fuz-QOP-m23cjbmj + 1 + OutParameter + + + fr.insee + lw7w2fuz + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkr8vn9 + 1 + + QUI_AID_APP_3DD + + + QUI_AID_APP_3DD label + + + fr.insee + lwkr8xaw-QOP-lwkr2axx + 1 + OutParameter + + + fr.insee + lwkr8xaw + 1 + QuestionItem + + + + + + + fr.insee + m23cg5j5 + 1 + + QUI_AID_APP_4A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l4lf0y9m-QOP-m23cxxl5 + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cgs8h + 1 + + QUI_AID_APP_4A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l4lf0y9m-QOP-m23ci6zz + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmbna + 1 + + QUI_AID_APP_4A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l4lf0y9m-QOP-m23cxirx + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ctmtw + 1 + + QUI_AID_APP_4A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l4lf0y9m-QOP-m23cza8y + 1 + OutParameter + + + fr.insee + l4lf0y9m + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwkra1cv + 1 + + QUI_AID_APP_4AD + + + QUI_AID_APP_4AD label + + + fr.insee + lwkrbrwr-QOP-lwkqyy9k + 1 + OutParameter + + + fr.insee + lwkrbrwr + 1 + QuestionItem + + + + + + + fr.insee + m23ci724 + 1 + + QUI_AID_APP_4B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7wj733-QOP-m23cwime + 1 + OutParameter + + + fr.insee + lw7wj733 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cplxe + 1 + + QUI_AID_APP_4B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7wj733-QOP-m23cu578 + 1 + OutParameter + + + fr.insee + lw7wj733 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cvv23 + 1 + + QUI_AID_APP_4B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7wj733-QOP-m23cllwq + 1 + OutParameter + + + fr.insee + lw7wj733 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwoma0z5 + 1 + + QUI_AID_APP_4BD + + + QUI_AID_APP_4BD label + + + fr.insee + lwom09ex-QOP-lwolvzx1 + 1 + OutParameter + + + fr.insee + lwom09ex + 1 + QuestionItem + + + + + + + fr.insee + m23co8si + 1 + + QUI_AID_APP_4C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7wk34s-QOP-m23ckv5p + 1 + OutParameter + + + fr.insee + lw7wk34s + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cqavi + 1 + + QUI_AID_APP_4C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7wk34s-QOP-m23cp9bk + 1 + OutParameter + + + fr.insee + lw7wk34s + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmuzl + 1 + + QUI_AID_APP_4C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7wk34s-QOP-m23cf0ox + 1 + OutParameter + + + fr.insee + lw7wk34s + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwom5mr6 + 1 + + QUI_AID_APP_4CD + + + QUI_AID_APP_4CD label + + + fr.insee + lwom95wp-QOP-lwomflcs + 1 + OutParameter + + + fr.insee + lwom95wp + 1 + QuestionItem + + + + + + + fr.insee + m23cun7d + 1 + + QUI_AID_APP_4D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7wj3l9-QOP-m23cpbu6 + 1 + OutParameter + + + fr.insee + lw7wj3l9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmct1 + 1 + + QUI_AID_APP_4D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7wj3l9-QOP-m23ct687 + 1 + OutParameter + + + fr.insee + lw7wj3l9 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomb7vz + 1 + + QUI_AID_APP_4DD + + + QUI_AID_APP_4DD label + + + fr.insee + lwolwwhx-QOP-lwomftfa + 1 + OutParameter + + + fr.insee + lwolwwhx + 1 + QuestionItem + + + + + + + fr.insee + lpsf6slk + 1 + + AIDE_RECUE1 + + + 1 - "Oui, une aide pour les tâches quotidiennes" + + + fr.insee + l1g8o84g-QOP-lpsffede + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lpsfbse5 + 1 + + AIDE_RECUE2 + + + 2 - "Oui, une aide financière ou matérielle" + + + fr.insee + l1g8o84g-QOP-lpsfeu8x + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lpsf3b1j + 1 + + AIDE_RECUE3 + + + 3 - "Oui, un soutien moral" + + + fr.insee + l1g8o84g-QOP-lpsf8tbp + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lpsffccj + 1 + + AIDE_RECUE4 + + + 5 - "Non, aucune aide de ce type" + + + fr.insee + l1g8o84g-QOP-lpsf9f4v + 1 + OutParameter + + + fr.insee + l1g8o84g + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cfr12 + 1 + + QUI_AID_REC_1A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1ggpjd7-QOP-m23cls04 + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cwbye + 1 + + QUI_AID_REC_1A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggpjd7-QOP-m23cv59e + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cdtop + 1 + + QUI_AID_REC_1A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1ggpjd7-QOP-m23ci2xl + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23clprd + 1 + + QUI_AID_REC_1A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1ggpjd7-QOP-m23cn8ns + 1 + OutParameter + + + fr.insee + l1ggpjd7 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwom4rwj + 1 + + QUI_AID_REC_1AD + + + QUI_AID_REC_1AD label + + + fr.insee + lwom8z6i-QOP-lwom5tko + 1 + OutParameter + + + fr.insee + lwom8z6i + 1 + QuestionItem + + + + + + + fr.insee + m23cfi90 + 1 + + QUI_AID_REC_1B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7yo1jt-QOP-m23cezw9 + 1 + OutParameter + + + fr.insee + lw7yo1jt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cm9aq + 1 + + QUI_AID_REC_1B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7yo1jt-QOP-m23cycg0 + 1 + OutParameter + + + fr.insee + lw7yo1jt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cuv8i + 1 + + QUI_AID_REC_1B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7yo1jt-QOP-m23cwiht + 1 + OutParameter + + + fr.insee + lw7yo1jt + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomer7j + 1 + + QUI_AID_REC_1BD + + + QUI_AID_REC_1BD label + + + fr.insee + lwom6128-QOP-lwome1kb + 1 + OutParameter + + + fr.insee + lwom6128 + 1 + QuestionItem + + + + + + + fr.insee + m23cgcgu + 1 + + QUI_AID_REC_1C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7y7vqk-QOP-m23cof6s + 1 + OutParameter + + + fr.insee + lw7y7vqk + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ce3zy + 1 + + QUI_AID_REC_1C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7y7vqk-QOP-m23cryfz + 1 + OutParameter + + + fr.insee + lw7y7vqk + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cdz19 + 1 + + QUI_AID_REC_1C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7y7vqk-QOP-m23chx84 + 1 + OutParameter + + + fr.insee + lw7y7vqk + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwom45yb + 1 + + QUI_AID_REC_1CD + + + QUI_AID_REC_1CD label + + + fr.insee + lwomj4m6-QOP-lwomfo6p + 1 + OutParameter + + + fr.insee + lwomj4m6 + 1 + QuestionItem + + + + + + + fr.insee + m23ci7j0 + 1 + + QUI_AID_REC_1D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7yq0ti-QOP-m23cxmnn + 1 + OutParameter + + + fr.insee + lw7yq0ti + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cvoc0 + 1 + + QUI_AID_REC_1D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7yq0ti-QOP-m23ctm1u + 1 + OutParameter + + + fr.insee + lw7yq0ti + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomkngn + 1 + + QUI_AID_REC_1DD + + + QUI_AID_REC_1DD label + + + fr.insee + lwom7lun-QOP-lwomaw97 + 1 + OutParameter + + + fr.insee + lwom7lun + 1 + QuestionItem + + + + + + + fr.insee + m23celqb + 1 + + QUI_AID_REC_2A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1ggp8js-QOP-m23cn5of + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cwbgc + 1 + + QUI_AID_REC_2A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1ggp8js-QOP-m23cey3c + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ctydu + 1 + + QUI_AID_REC_2A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1ggp8js-QOP-m23cjnpj + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23clwp8 + 1 + + QUI_AID_REC_2A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1ggp8js-QOP-m23ciwsc + 1 + OutParameter + + + fr.insee + l1ggp8js + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomdz3z + 1 + + QUI_AID_REC_2AD + + + QUI_AID_REC_2AD label + + + fr.insee + lwombc8x-QOP-lwomeayh + 1 + OutParameter + + + fr.insee + lwombc8x + 1 + QuestionItem + + + + + + + fr.insee + m23cjz8p + 1 + + QUI_AID_REC_2B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7yq329-QOP-m23cvvst + 1 + OutParameter + + + fr.insee + lw7yq329 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cnyt8 + 1 + + QUI_AID_REC_2B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7yq329-QOP-m23clx8q + 1 + OutParameter + + + fr.insee + lw7yq329 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cpkwf + 1 + + QUI_AID_REC_2B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7yq329-QOP-m23cpziv + 1 + OutParameter + + + fr.insee + lw7yq329 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomc8xz + 1 + + QUI_AID_REC_2BD + + + QUI_AID_REC_2BD label + + + fr.insee + lwomhbiy-QOP-lwom4xkr + 1 + OutParameter + + + fr.insee + lwomhbiy + 1 + QuestionItem + + + + + + + fr.insee + m23ct0ua + 1 + + QUI_AID_REC_2C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7yo7oh-QOP-m23cmlu2 + 1 + OutParameter + + + fr.insee + lw7yo7oh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cxrrj + 1 + + QUI_AID_REC_2C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7yo7oh-QOP-m23chv5u + 1 + OutParameter + + + fr.insee + lw7yo7oh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cixlg + 1 + + QUI_AID_REC_2C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7yo7oh-QOP-m23cqna7 + 1 + OutParameter + + + fr.insee + lw7yo7oh + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomw4ga + 1 + + QUI_AID_REC_2CD + + + QUI_AID_REC_2CD label + + + fr.insee + lwomijww-QOP-lwompss6 + 1 + OutParameter + + + fr.insee + lwomijww + 1 + QuestionItem + + + + + + + fr.insee + m23ci79r + 1 + + QUI_AID_REC_2D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7ypwx5-QOP-m23ctdx6 + 1 + OutParameter + + + fr.insee + lw7ypwx5 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cth4m + 1 + + QUI_AID_REC_2D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7ypwx5-QOP-m23ctlkf + 1 + OutParameter + + + fr.insee + lw7ypwx5 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwomv5td + 1 + + QUI_AID_REC_2DD + + + QUI_AID_REC_2DD label + + + fr.insee + lwomx6w5-QOP-lwomgt4w + 1 + OutParameter + + + fr.insee + lwomx6w5 + 1 + QuestionItem + + + + + + + fr.insee + m23cx8dv + 1 + + QUI_AID_REC_3A1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + l1gh36ky-QOP-m23cib87 + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23ck82b + 1 + + QUI_AID_REC_3A2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + l1gh36ky-QOP-m23cxsfo + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cs6fv + 1 + + QUI_AID_REC_3A3 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + l1gh36ky-QOP-m23clsl9 + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cq1e8 + 1 + + QUI_AID_REC_3A4 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + l1gh36ky-QOP-m23czis0 + 1 + OutParameter + + + fr.insee + l1gh36ky + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwonn5rk + 1 + + QUI_AID_REC_3AD + + + QUI_AID_REC_3AD label + + + fr.insee + lwonhqcb-QOP-lwonv0ay + 1 + OutParameter + + + fr.insee + lwonhqcb + 1 + QuestionItem + + + + + + + fr.insee + m23cyew4 + 1 + + QUI_AID_REC_3B1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7yqyln-QOP-m23cgm1y + 1 + OutParameter + + + fr.insee + lw7yqyln + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cixa6 + 1 + + QUI_AID_REC_3B2 + + + 2 - "" || if (¤kwqabjga-QOP-kwqai8pk¤="2" or isnull(¤kwqabjga-QOP-kwqai8pk¤)) and (¤llde3pgg-QOP-lldeidzi¤="1" or isnull(¤llde3pgg-QOP-lldeidzi¤)) then "Votre conjoint" else "Votre conjointe" + + + fr.insee + lw7yqyln-QOP-m23cwosm + 1 + OutParameter + + + fr.insee + lw7yqyln + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cewoe + 1 + + QUI_AID_REC_3B3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7yqyln-QOP-m23cspkk + 1 + OutParameter + + + fr.insee + lw7yqyln + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwony2cf + 1 + + QUI_AID_REC_3BD + + + QUI_AID_REC_3BD label + + + fr.insee + lwonk1pl-QOP-lwonq38s + 1 + OutParameter + + + fr.insee + lwonk1pl + 1 + QuestionItem + + + + + + + fr.insee + m23cm0j2 + 1 + + QUI_AID_REC_3C1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7z0jkp-QOP-m23cxwql + 1 + OutParameter + + + fr.insee + lw7z0jkp + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cmh1g + 1 + + QUI_AID_REC_3C2 + + + 3 - "" || (if (isnull(¤kwqi5zsm-QOP-kwqilzs8¤) or ¤kwqi5zsm-QOP-kwqilzs8¤ > 1) then "Vos enfants" else "Votre enfant") + + + fr.insee + lw7z0jkp-QOP-m23crs3i + 1 + OutParameter + + + fr.insee + lw7z0jkp + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cs89v + 1 + + QUI_AID_REC_3C3 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7z0jkp-QOP-m23cvbj1 + 1 + OutParameter + + + fr.insee + lw7z0jkp + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwonpbq0 + 1 + + QUI_AID_REC_3CD + + + QUI_AID_REC_3CD label + + + fr.insee + lwonuial-QOP-lwonsphd + 1 + OutParameter + + + fr.insee + lwonuial + 1 + QuestionItem + + + + + + + fr.insee + m23cq0uy + 1 + + QUI_AID_REC_3D1 + + + 1 - Votre(Vos) parent(s) + + + fr.insee + lw7z13d4-QOP-m23cozck + 1 + OutParameter + + + fr.insee + lw7z13d4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m23cqofy + 1 + + QUI_AID_REC_3D2 + + + 4 - Un autre membre de votre famille (tante, beaux-parents, grands-parents...) + + + fr.insee + lw7z13d4-QOP-m23co3ul + 1 + OutParameter + + + fr.insee + lw7z13d4 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lwonv0d8 + 1 + + QUI_AID_REC_3DD + + + QUI_AID_REC_3DD label + + + fr.insee + lwonmnuh-QOP-lwoo47cn + 1 + OutParameter + + + fr.insee + lwonmnuh + 1 + QuestionItem + + + + + + + fr.insee + lw7omjv7 + 1 + + LANGUE1_ENTOUE + + + LANGUE1_ENTOUE label + + + fr.insee + l1g8apw2-QOP-lw7p997k + 1 + OutParameter + + + fr.insee + l1g8apw2 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw7ork43 + 1 + + LANGUE1_ENTOU + + + LANGUE1_ENTOU label + + + fr.insee + lw7oumzg-QOP-lw7ocksm + 1 + OutParameter + + + fr.insee + lw7oumzg + 1 + QuestionItem + + + + + + + fr.insee + lw7owb5b + 1 + + LANGUE1_ENTOUL + + + LANGUE1_ENTOUL label + + + fr.insee + lumpggg9-QOP-lumpls3q + 1 + OutParameter + + + fr.insee + lumpggg9 + 1 + QuestionItem + + + + + + + fr.insee + lw7oms4c + 1 + + LANGUE2_ENTOUE + + + LANGUE2_ENTOUE label + + + fr.insee + l43tgurz-QOP-lw54fsoq + 1 + OutParameter + + + fr.insee + l43tgurz + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw7p459g + 1 + + LANGUE2_ENTOU + + + LANGUE2_ENTOU label + + + fr.insee + lw54iesv-QOP-lw54g204 + 1 + OutParameter + + + fr.insee + lw54iesv + 1 + QuestionItem + + + + + + + fr.insee + lumsyhfe + 1 + + LANGUE2_ENTOUL + + + LANGUE2_ENTOUL label + + + fr.insee + lumsh65o-QOP-lumsrnf6 + 1 + OutParameter + + + fr.insee + lumsh65o + 1 + QuestionItem + + + + + + + fr.insee + lw54h6wg + 1 + + LANGUE3_ENTOUE + + + LANGUE3_ENTOUE label + + + fr.insee + lump9kgk-QOP-lw54k7kt + 1 + OutParameter + + + fr.insee + lump9kgk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw54ogfs + 1 + + LANGUE3_ENTOU + + + LANGUE3_ENTOU label + + + fr.insee + lw54raav-QOP-lw54ecer + 1 + OutParameter + + + fr.insee + lw54raav + 1 + QuestionItem + + + + + + + fr.insee + lumstz9r + 1 + + LANGUE3_ENTOUL + + + LANGUE3_ENTOUL label + + + fr.insee + lumsobo2-QOP-lumsf79d + 1 + OutParameter + + + fr.insee + lumsobo2 + 1 + QuestionItem + + + + + + + fr.insee + l4oec1lq + 1 + + PRENOM_PAR1 + + + PRENOM_PAR1 label + + + fr.insee + l2kjnm8k-QOP-l2kjn4vg + 1 + OutParameter + + + fr.insee + l2kjnm8k + 1 + QuestionItem + + + + + + + fr.insee + ly2rsldd + 1 + + ANAI_PAR1 + + + ANAI_PAR1 label + + + fr.insee + l2kjy49o-QOP-l2kjupyp + 1 + OutParameter + + + fr.insee + l2kjy49o + 1 + QuestionItem + + + + YYYY + gYear + + 1860 + 1992 + + + + + + fr.insee + l3vpisia + 1 + + SEXE_PAR1 + + + SEXE_PAR1 label + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + lyocb7qx + 1 + + LIEUNAIS_PAR1 + + + LIEUNAIS_PAR1 label + + + fr.insee + l7ywp1vk-QOP-l7yx6ylx + 1 + OutParameter + + + fr.insee + l7ywp1vk + 1 + QuestionItem + + + + + fr.insee + lyoc6v5h + 1 + CodeList + + + + + + fr.insee + lyod86xb + 1 + + PNAI_PAR1 + + + PNAI_PAR1 label + + + fr.insee + lyod84wr-QOP-lyodfigc + 1 + OutParameter + + + fr.insee + lyod84wr + 1 + QuestionItem + + + + + + + fr.insee + m21lyhfl + 1 + + NATIO_PAR1 + + + NATIO_PAR1 label + + + fr.insee + l2kk539f-QOP-l2kk2tl9 + 1 + OutParameter + + + fr.insee + l2kk539f + 1 + QuestionItem + + + + + fr.insee + m21lkkyw + 1 + CodeList + + + + + + fr.insee + lyobxox9 + 1 + + TRAV_PAR1 + + + TRAV_PAR1 label + + + fr.insee + lyocgyi4-QOP-lyoc3xpu + 1 + OutParameter + + + fr.insee + lyocgyi4 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvywjqt + 1 + + PROF_PAR1H + + + PROF_PAR1H label + + + fr.insee + l2kjueig-QOP-llvyzrpx + 1 + OutParameter + + + fr.insee + l2kjueig + 1 + QuestionItem + + + + + + + fr.insee + llvytrfl + 1 + + PROF_PAR1F + + + PROF_PAR1F label + + + fr.insee + l4qzvm5v-QOP-llvz490j + 1 + OutParameter + + + fr.insee + l4qzvm5v + 1 + QuestionItem + + + + + + + fr.insee + l8ldy184 + 1 + + PROF_PAR1_2 + + + PROF_PAR1_2 label + + + fr.insee + l45cjoj7-QOP-l4o6wqdy + 1 + OutParameter + + + fr.insee + l45cjoj7 + 1 + QuestionItem + + + + + + + fr.insee + llgnqpnr + 1 + + STATUT_PAR1 + + + STATUT_PAR1 label + + + fr.insee + l2kjshy4-QOP-l2kk0l5l + 1 + OutParameter + + + fr.insee + l2kjshy4 + 1 + QuestionItem + + + + + fr.insee + l1f23fi8 + 1 + CodeList + + + + + + fr.insee + lpsk0wnn + 1 + + SAL_IND_PAR1 + + + SAL_IND_PAR1 label + + + fr.insee + lpsjlk6w-QOP-lpsjoxrt + 1 + OutParameter + + + fr.insee + lpsjlk6w + 1 + QuestionItem + + + + + fr.insee + lpsk26ic + 1 + CodeList + + + + + + fr.insee + lorb1rfj + 1 + + SAL_FP_PAR1 + + + SAL_FP_PAR1 label + + + fr.insee + llgo5n7b-QOP-llgozn3p + 1 + OutParameter + + + fr.insee + llgo5n7b + 1 + QuestionItem + + + + + fr.insee + llgq8911 + 1 + CodeList + + + + + + fr.insee + lorbiizs + 1 + + SAL_ENT_PAR1 + + + SAL_ENT_PAR1 label + + + fr.insee + llgqspnh-QOP-llgqj9en + 1 + OutParameter + + + fr.insee + llgqspnh + 1 + QuestionItem + + + + + fr.insee + llgoa6cg + 1 + CodeList + + + + + + fr.insee + lw6ifibe + 1 + + LANGUE1_PAR1 + + + LANGUE1_PAR1 label + + + fr.insee + l2kk4seh-QOP-llvyt5ul + 1 + OutParameter + + + fr.insee + l2kk4seh + 1 + QuestionItem + + + + + + + fr.insee + lw6i2v1v + 1 + + LANGUE1_PAR1L + + + LANGUE1_PAR1L label + + + fr.insee + lumppr7y-QOP-lumpxcez + 1 + OutParameter + + + fr.insee + lumppr7y + 1 + QuestionItem + + + + + + + fr.insee + lw6ifcty + 1 + + LANGUE2_PAR1E + + + LANGUE2_PAR1E label + + + fr.insee + l447j7cx-QOP-lw6jphbt + 1 + OutParameter + + + fr.insee + l447j7cx + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw6ikdy1 + 1 + + LANGUE2_PAR1 + + + LANGUE2_PAR1 label + + + fr.insee + lw6don31-QOP-lw6dp79v + 1 + OutParameter + + + fr.insee + lw6don31 + 1 + QuestionItem + + + + + + + fr.insee + lw6iro8n + 1 + + LANGUE2_PAR1L + + + LANGUE2_PAR1L label + + + fr.insee + lumsnsej-QOP-lumsjuh5 + 1 + OutParameter + + + fr.insee + lumsnsej + 1 + QuestionItem + + + + + + + fr.insee + lw6ipz01 + 1 + + LANGUE3_PAR1E + + + LANGUE3_PAR1E label + + + fr.insee + lumptzfb-QOP-lw6jto2f + 1 + OutParameter + + + fr.insee + lumptzfb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw6ivyik + 1 + + LANGUE3_PAR1 + + + LANGUE3_PAR1 label + + + fr.insee + lw6dyxml-QOP-lw6dtv3p + 1 + OutParameter + + + fr.insee + lw6dyxml + 1 + QuestionItem + + + + + + + fr.insee + lw6iz5em + 1 + + LANGUE3_PAR1L + + + LANGUE3_PAR1L label + + + fr.insee + lumsdl5a-QOP-lumshoov + 1 + OutParameter + + + fr.insee + lumsdl5a + 1 + QuestionItem + + + + + + + fr.insee + lw6io9q7 + 1 + + LANGUE4_PAR1E + + + LANGUE4_PAR1E label + + + fr.insee + lumptuhp-QOP-lw6jzlgt + 1 + OutParameter + + + fr.insee + lumptuhp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw6inz7m + 1 + + LANGUE4_PAR1 + + + LANGUE4_PAR1 label + + + fr.insee + lw6ecsey-QOP-lw6ehg5h + 1 + OutParameter + + + fr.insee + lw6ecsey + 1 + QuestionItem + + + + + + + fr.insee + lumsgi6h + 1 + + LANGUE4_PAR1L + + + LANGUE4_PAR1L label + + + fr.insee + lumswm4d-QOP-lumscasf + 1 + OutParameter + + + fr.insee + lumswm4d + 1 + QuestionItem + + + + + + + fr.insee + l8k99ilg + 1 + + VIV_PAR1 + + + VIV_PAR1 label + + + fr.insee + l2kjzugb-QOP-l2kjv6tv + 1 + OutParameter + + + fr.insee + l2kjzugb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2s180f + 1 + + ANNEE_DC_PAR1 + + + ANNEE_DC_PAR1 label + + + fr.insee + l2kkd59n-QOP-l2kk3398 + 1 + OutParameter + + + fr.insee + l2kkd59n + 1 + QuestionItem + + + + YYYY + gYear + + 1880 + 2025 + + + + + + fr.insee + lm0e90yl + 1 + + LOG_PAR1 + + + LOG_PAR1 label + + + fr.insee + l2kk4snz-QOP-l34gopr4 + 1 + OutParameter + + + fr.insee + l2kk4snz + 1 + QuestionItem + + + + + fr.insee + l4qualpe + 1 + CodeList + + + + + + fr.insee + lai70nzp + 1 + + FR_PAR1 + + + FR_PAR1 label + + + fr.insee + l2kkb4xa-QOP-l2kk5rd6 + 1 + OutParameter + + + fr.insee + l2kkb4xa + 1 + QuestionItem + + + + + fr.insee + l4o7x17y + 1 + CodeList + + + + + + fr.insee + llvytyg5 + 1 + + COM_PAR1 + + + COM_PAR1 label + + + fr.insee + l4onhpvd-QOP-llvz5uy3 + 1 + OutParameter + + + fr.insee + l4onhpvd + 1 + QuestionItem + + + + + + + fr.insee + llvz8tcu + 1 + + DEP_PAR1 + + + DEP_PAR1 label + + + fr.insee + l4o7ufzl-QOP-llvzb0k0 + 1 + OutParameter + + + fr.insee + l4o7ufzl + 1 + QuestionItem + + + + + + + fr.insee + llvyqp24 + 1 + + PAY_PAR1 + + + PAY_PAR1 label + + + fr.insee + l4o8eale-QOP-llvzajdd + 1 + OutParameter + + + fr.insee + l4o8eale + 1 + QuestionItem + + + + + + + fr.insee + l2kihdd6 + 1 + + ETAB_PAR1 + + + ETAB_PAR1 label + + + fr.insee + l1ezkqes-QOP-l1ezmkcq + 1 + OutParameter + + + fr.insee + l1ezkqes + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lysf6j2h + 1 + + FREQ_VU_PAR1 + + + FREQ_VU_PAR1 label + + + fr.insee + l2kkeqsz-QOP-l2kjzdaf + 1 + OutParameter + + + fr.insee + l2kkeqsz + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lysey82n + 1 + + FREQ_CONT_PAR1 + + + FREQ_CONT_PAR1 label + + + fr.insee + l2kk296y-QOP-l2kkit9z + 1 + OutParameter + + + fr.insee + l2kk296y + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4lonoaj + 1 + + PROX_EGO_PAR1 + + + PROX_EGO_PAR1 label + + + fr.insee + l4lojzxg-QOP-l4lop1g7 + 1 + OutParameter + + + fr.insee + l4lojzxg + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l43y4bul + 1 + + PROX_FRAT_PAR1 + + + PROX_FRAT_PAR1 label + + + fr.insee + l43yap7r-QOP-l43xwxm8 + 1 + OutParameter + + + fr.insee + l43yap7r + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l5axyvf9 + 1 + + EXIST_PAR2 + + + EXIST_PAR2 label + + + fr.insee + l5axrwsa-QOP-l5ay3o3r + 1 + OutParameter + + + fr.insee + l5axrwsa + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4oeo539 + 1 + + PRENOM_PAR2 + + + PRENOM_PAR2 label + + + fr.insee + l27ijusa-QOP-l27i3154 + 1 + OutParameter + + + fr.insee + l27ijusa + 1 + QuestionItem + + + + + + + fr.insee + ly2s75nn + 1 + + ANAI_PAR2 + + + ANAI_PAR2 label + + + fr.insee + kwqfufye-QOP-l0wf22g3 + 1 + OutParameter + + + fr.insee + kwqfufye + 1 + QuestionItem + + + + YYYY + gYear + + 1860 + 1992 + + + + + + fr.insee + l45cezmn + 1 + + SEXE_PAR2 + + + SEXE_PAR2 label + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + l27ig4yy + 1 + QuestionItem + + + + + fr.insee + kwqir1cc + 1 + CodeList + + + + + + fr.insee + lyocmua8 + 1 + + LIEUNAIS_PAR2 + + + LIEUNAIS_PAR2 label + + + fr.insee + lyoc66rt-QOP-lyocagtc + 1 + OutParameter + + + fr.insee + lyoc66rt + 1 + QuestionItem + + + + + fr.insee + lyoc6v5h + 1 + CodeList + + + + + + fr.insee + lyodbt6n + 1 + + PNAI_PAR2 + + + PNAI_PAR2 label + + + fr.insee + lyod9pq3-QOP-lyodex4x + 1 + OutParameter + + + fr.insee + lyod9pq3 + 1 + QuestionItem + + + + + + + fr.insee + m21lrtvp + 1 + + NATIO_PAR2 + + + NATIO_PAR2 label + + + fr.insee + kwqfhhge-QOP-kwqft4ub + 1 + OutParameter + + + fr.insee + kwqfhhge + 1 + QuestionItem + + + + + fr.insee + m21lkkyw + 1 + CodeList + + + + + + fr.insee + l7ywxkf7 + 1 + + TRAV_PAR2 + + + TRAV_PAR2 label + + + fr.insee + l7ywxphs-QOP-l7yx8jjw + 1 + OutParameter + + + fr.insee + l7ywxphs + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvz3hw4 + 1 + + PROF_PAR2H + + + PROF_PAR2H label + + + fr.insee + l1ezowxi-QOP-llvz8km0 + 1 + OutParameter + + + fr.insee + l1ezowxi + 1 + QuestionItem + + + + + + + fr.insee + llvz5gpf + 1 + + PROF_PAR2F + + + PROF_PAR2F label + + + fr.insee + l4qzjbsx-QOP-llvzb8qa + 1 + OutParameter + + + fr.insee + l4qzjbsx + 1 + QuestionItem + + + + + + + fr.insee + l4o73c23 + 1 + + PROF_PAR2_2 + + + PROF_PAR2_2 label + + + fr.insee + l444t31z-QOP-l4o6zyol + 1 + OutParameter + + + fr.insee + l444t31z + 1 + QuestionItem + + + + + + + fr.insee + llgnuzxv + 1 + + STATUT_PAR2 + + + STATUT_PAR2 label + + + fr.insee + kwqfto3c-QOP-kwqg4dq2 + 1 + OutParameter + + + fr.insee + kwqfto3c + 1 + QuestionItem + + + + + fr.insee + l4n5c408 + 1 + CodeList + + + + + + fr.insee + lyx2rj3c + 1 + + SAL_IND_PAR2 + + + SAL_IND_PAR2 label + + + fr.insee + lptlrxcc-QOP-lptld3en + 1 + OutParameter + + + fr.insee + lptlrxcc + 1 + QuestionItem + + + + + fr.insee + lptlw9sx + 1 + CodeList + + + + + + fr.insee + lorb5gvs + 1 + + SAL_FP_PAR2 + + + SAL_FP_PAR2 label + + + fr.insee + llgosp3i-QOP-llgom4r9 + 1 + OutParameter + + + fr.insee + llgosp3i + 1 + QuestionItem + + + + + fr.insee + llmi5xl5 + 1 + CodeList + + + + + + fr.insee + lorb441q + 1 + + SAL_ENT_PAR2 + + + SAL_ENT_PAR2 label + + + fr.insee + llgrqyqg-QOP-llgs2ez2 + 1 + OutParameter + + + fr.insee + llgrqyqg + 1 + QuestionItem + + + + + fr.insee + llgry90d + 1 + CodeList + + + + + + fr.insee + lw6hxxoq + 1 + + LANGUE1_PAR2 + + + LANGUE1_PAR2 label + + + fr.insee + l1ezgxe3-QOP-llvz4083 + 1 + OutParameter + + + fr.insee + l1ezgxe3 + 1 + QuestionItem + + + + + + + fr.insee + lw6j8t6s + 1 + + LANGUE1_PAR2L + + + LANGUE1_PAR2L label + + + fr.insee + lums0dcm-QOP-lums9oq4 + 1 + OutParameter + + + fr.insee + lums0dcm + 1 + QuestionItem + + + + + + + fr.insee + lw6jel2z + 1 + + LANGUE2_PAR2E + + + LANGUE2_PAR2E label + + + fr.insee + l444xjux-QOP-lw6k0w8i + 1 + OutParameter + + + fr.insee + l444xjux + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lw6j2bal + 1 + + LANGUE2_PAR2 + + + LANGUE2_PAR2 label + + + fr.insee + lw6eh4up-QOP-lw6eemjk + 1 + OutParameter + + + fr.insee + lw6eh4up + 1 + QuestionItem + + + + + + + fr.insee + lumsj8zb + 1 + + LANGUE2_PAR2L + + + LANGUE2_PAR2L label + + + fr.insee + lumsfeeu-QOP-lumsjma7 + 1 + OutParameter + + + fr.insee + lumsfeeu + 1 + QuestionItem + + + + + + + fr.insee + lw6je0xm + 1 + + LANGUE3_PAR2E + + + LANGUE3_PAR2E label + + + fr.insee + lums26pp-QOP-lw6k49xr + 1 + OutParameter + + + fr.insee + lums26pp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw6f00ji + 1 + + LANGUE3_PAR2 + + + LANGUE3_PAR2 label + + + fr.insee + lw6euv9i-QOP-lw6exuh8 + 1 + OutParameter + + + fr.insee + lw6euv9i + 1 + QuestionItem + + + + + + + fr.insee + lw6jnnk7 + 1 + + LANGUE3_PAR2L + + + LANGUE3_PAR2L label + + + fr.insee + lumsp0o4-QOP-lumslfat + 1 + OutParameter + + + fr.insee + lumsp0o4 + 1 + QuestionItem + + + + + + + fr.insee + lw6ey227 + 1 + + LANGUE4_PAR2E + + + LANGUE4_PAR2E label + + + fr.insee + lumrz70d-QOP-lw6jlhek + 1 + OutParameter + + + fr.insee + lumrz70d + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lw6evtqe + 1 + + LANGUE4_PAR2 + + + LANGUE4_PAR2 label + + + fr.insee + lw6er2dw-QOP-lw6epzej + 1 + OutParameter + + + fr.insee + lw6er2dw + 1 + QuestionItem + + + + + + + fr.insee + lw6k2tuc + 1 + + LANGUE4_PAR2L + + + LANGUE4_PAR2L label + + + fr.insee + lumso5hv-QOP-lumsrv1d + 1 + OutParameter + + + fr.insee + lumso5hv + 1 + QuestionItem + + + + + + + fr.insee + l8k9sjms + 1 + + VIV_PAR2 + + + VIV_PAR2 label + + + fr.insee + kwqhjfzk-QOP-kwqhv63j + 1 + OutParameter + + + fr.insee + kwqhjfzk + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2s5o6x + 1 + + ANNEE_DC_PAR2 + + + ANNEE_DC_PAR2 label + + + fr.insee + kwqg35i9-QOP-kwqg1sjf + 1 + OutParameter + + + fr.insee + kwqg35i9 + 1 + QuestionItem + + + + YYYY + gYear + + 1880 + 2025 + + + + + + fr.insee + m0pekbh5 + 1 + + LOG_PAR2A1 + + + 1 - "Avec vous, dans ce logement" + + + fr.insee + kwqgffvw-QOP-m0peo2kw + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0pebxst + 1 + + LOG_PAR2A2 + + + 2 - "Avec " || (if (isnull(¤l2kjnm8k-QOP-l2kjn4vg¤)) then "votre autre parent" else ¤l2kjnm8k-QOP-l2kjn4vg¤) + + + fr.insee + kwqgffvw-QOP-m0pe8z8l + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0peanmk + 1 + + LOG_PAR2A3 + + + 3 - "Ailleurs" + + + fr.insee + kwqgffvw-QOP-m0pefwls + 1 + OutParameter + + + fr.insee + kwqgffvw + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + laguuyk8 + 1 + + LOG_PAR2B + + + LOG_PAR2B label + + + fr.insee + lab6xfk9-QOP-lab73lgn + 1 + OutParameter + + + fr.insee + lab6xfk9 + 1 + QuestionItem + + + + + fr.insee + kwqjgcfw + 1 + CodeList + + + + + + fr.insee + lai7blbr + 1 + + FR_PAR2 + + + FR_PAR2 label + + + fr.insee + kwqgawqp-QOP-kwqgeipr + 1 + OutParameter + + + fr.insee + kwqgawqp + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llvytvcv + 1 + + COM_PAR2 + + + COM_PAR2 label + + + fr.insee + l4onk34z-QOP-llvz0ewe + 1 + OutParameter + + + fr.insee + l4onk34z + 1 + QuestionItem + + + + + + + fr.insee + llvz5jjn + 1 + + DEP_PAR2 + + + DEP_PAR2 label + + + fr.insee + l4o8co0c-QOP-llvyr5wh + 1 + OutParameter + + + fr.insee + l4o8co0c + 1 + QuestionItem + + + + + + + fr.insee + llvz5i4v + 1 + + PAY_PAR2 + + + PAY_PAR2 label + + + fr.insee + l4o8dk7q-QOP-llvyu3jn + 1 + OutParameter + + + fr.insee + l4o8dk7q + 1 + QuestionItem + + + + + + + fr.insee + l8m1qyu9 + 1 + + ETAB_PAR2 + + + ETAB_PAR2 label + + + fr.insee + l2kkc8s9-QOP-l2kkfxvm + 1 + OutParameter + + + fr.insee + l2kkc8s9 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lyseqal0 + 1 + + FREQ_VU_PAR2 + + + FREQ_VU_PAR2 label + + + fr.insee + l1gl4054-QOP-l1gl5e3e + 1 + OutParameter + + + fr.insee + l1gl4054 + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + lysewr7g + 1 + + FREQ_CONT_PAR2 + + + FREQ_CONT_PAR2 label + + + fr.insee + l1ezkbsf-QOP-l1ezevjd + 1 + OutParameter + + + fr.insee + l1ezkbsf + 1 + QuestionItem + + + + + fr.insee + l1f65uvw + 1 + CodeList + + + + + + fr.insee + l4los1a5 + 1 + + PROX_EGO_PAR2 + + + PROX_EGO_PAR2 label + + + fr.insee + l445itcb-QOP-l445hldo + 1 + OutParameter + + + fr.insee + l445itcb + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + l4lonmxd + 1 + + PROX_FRAT_PAR2 + + + PROX_FRAT_PAR2 label + + + fr.insee + l4cjeqc0-QOP-l4ciywxr + 1 + OutParameter + + + fr.insee + l4cjeqc0 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly5ybe8g + 1 + + NB_FRERES + + + NB_FRERES label + + + fr.insee + l473kp51-QOP-l473rzw1 + 1 + OutParameter + + + fr.insee + l473kp51 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + li362nsa + 1 + + NB_FRERES_VIV1 + + + NB_FRERES_VIV1 label + + + fr.insee + l5ikk5zq-QOP-l5iken9h + 1 + OutParameter + + + fr.insee + l5ikk5zq + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + l473t9qd + 1 + + NB_FRERES_VIV + + + NB_FRERES_VIV label + + + fr.insee + l4740wd1-QOP-l473vroh + 1 + OutParameter + + + fr.insee + l4740wd1 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + ly5xylt6 + 1 + + NB_SOEURS + + + NB_SOEURS label + + + fr.insee + l4742c2v-QOP-l473q5ei + 1 + OutParameter + + + fr.insee + l4742c2v + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + li367ko1 + 1 + + NB_SOEURS_VIV1 + + + NB_SOEURS_VIV1 label + + + fr.insee + l5ikyrbc-QOP-l5ikxm9l + 1 + OutParameter + + + fr.insee + l5ikyrbc + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + lai0huem + 1 + + NB_SOEURS_VIV + + + NB_SOEURS_VIV label + + + fr.insee + l473w273-QOP-l4741u6l + 1 + OutParameter + + + fr.insee + l473w273 + 1 + QuestionItem + + + + + 0 + 20 + + Decimal + + + + + fr.insee + m0kr5w5h + 1 + + AG_DEP_PARENT + + + AG_DEP_PARENT label + + + fr.insee + l1f5th3i-QOP-l1f5ynl3 + 1 + OutParameter + + + fr.insee + l1f5th3i + 1 + QuestionItem + + + + + 0 + 99 + + Decimal + + + + + fr.insee + lv6kuafp + 1 + + VECU_JEUNESSE1 + + + 1 - "Vos deux parents en couple" + + + fr.insee + l1f61fa3-QOP-lv6moj96 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6ktw2p + 1 + + VECU_JEUNESSE2 + + + 2 - "Votre mère et son/sa conjoint(e)" + + + fr.insee + l1f61fa3-QOP-lv6mdd03 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6kkj8b + 1 + + VECU_JEUNESSE3 + + + 3 - "Votre père et son/sa conjoint(e)" + + + fr.insee + l1f61fa3-QOP-lv6mmx53 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6kiix1 + 1 + + VECU_JEUNESSE4 + + + 4 - "Votre mère seule" + + + fr.insee + l1f61fa3-QOP-lv6miqdb + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6kxwft + 1 + + VECU_JEUNESSE5 + + + 5 - "Votre père seul" + + + fr.insee + l1f61fa3-QOP-lv6m53q1 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6kv1u8 + 1 + + VECU_JEUNESSE6 + + + 6 - "Une autre personne de votre famille" + + + fr.insee + l1f61fa3-QOP-lv6mjy61 + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lv6ko2rm + 1 + + VECU_JEUNESSE7 + + + 7 - "En dehors de votre famille" + + + fr.insee + l1f61fa3-QOP-lv6mif9h + 1 + OutParameter + + + fr.insee + l1f61fa3 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l8k9vl42 + 1 + + VECU_PLACE + + + VECU_PLACE label + + + fr.insee + l43ttd47-QOP-l43tsfar + 1 + OutParameter + + + fr.insee + l43ttd47 + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lzqqlsmb + 1 + + TYP_PLACE1 + + + 1 - "Placement en foyer" + + + fr.insee + l43u439h-QOP-lzqsmpxp + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lzqq73cv + 1 + + TYP_PLACE2 + + + 2 - "Placement en famille d'accueil" + + + fr.insee + l43u439h-QOP-lzqsedxr + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lzqq4h6w + 1 + + TYP_PLACE3 + + + 3 - "Placement chez une personne de la famille" + + + fr.insee + l43u439h-QOP-lzqsb3hv + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + lzqqajh2 + 1 + + TYP_PLACE4 + + + 4 - "Autre type de placement" + + + fr.insee + l43u439h-QOP-lzqs6uxr + 1 + OutParameter + + + fr.insee + l43u439h + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + l1f6b3hb + 1 + + HEBERG + + + HEBERG label + + + fr.insee + l1f65zkh-QOP-l1f6bv9c + 1 + OutParameter + + + fr.insee + l1f65zkh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + llethxrg + 1 + + FINETU + + + FINETU label + + + fr.insee + l1g3unwh-QOP-l1g3npll + 1 + OutParameter + + + fr.insee + l1g3unwh + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly2scqeb + 1 + + ANNEE_FINETU + + + ANNEE_FINETU label + + + fr.insee + l1g3yk6q-QOP-l1g42814 + 1 + OutParameter + + + fr.insee + l1g3yk6q + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + lyzv2a7a + 1 + + AGE_FINETU + + + AGE_FINETU label + + + fr.insee + lv6kuuw3-QOP-lv6kx1xj + 1 + OutParameter + + + fr.insee + lv6kuuw3 + 1 + QuestionItem + + + + + 10 + 100 + + Decimal + + + + + fr.insee + l445l6g2 + 1 + + TRAVACT + + + TRAVACT label + + + fr.insee + l445x7tq-QOP-l445yz7o + 1 + OutParameter + + + fr.insee + l445x7tq + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lumn1v1m + 1 + + DEJATRAV1 + + + DEJATRAV1 label + + + fr.insee + l1g7pgbn-QOP-l1g7tm7z + 1 + OutParameter + + + fr.insee + l1g7pgbn + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + lumn9ys1 + 1 + + DEJATRAV2 + + + DEJATRAV2 label + + + fr.insee + lumnhjfi-QOP-lumna927 + 1 + OutParameter + + + fr.insee + lumnhjfi + 1 + QuestionItem + + + + + fr.insee + kwqa6qr6 + 1 + CodeList + + + + + + fr.insee + ly5yfiw9 + 1 + + ANNEE_EMPLOI1 + + + ANNEE_EMPLOI1 label + + + fr.insee + l1g4pid1-QOP-l1g4r0qn + 1 + OutParameter + + + fr.insee + l1g4pid1 + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + lyzulxln + 1 + + AGE_EMPLOI1 + + + AGE_EMPLOI1 label + + + fr.insee + lv6l9f59-QOP-lv6kxbrh + 1 + OutParameter + + + fr.insee + lv6l9f59 + 1 + QuestionItem + + + + + 10 + 100 + + Decimal + + + + + fr.insee + ly2sejvu + 1 + + ANNEE_FINEMP + + + ANNEE_FINEMP label + + + fr.insee + l1g7iu0j-QOP-l1g7p8dq + 1 + OutParameter + + + fr.insee + l1g7iu0j + 1 + QuestionItem + + + + YYYY + gYear + + 1920 + 2025 + + + + + + fr.insee + lyzv1ph8 + 1 + + AGE_FINEMP + + + AGE_FINEMP label + + + fr.insee + lv6m34hz-QOP-lv6meoaj + 1 + OutParameter + + + fr.insee + lv6m34hz + 1 + QuestionItem + + + + + 10 + 100 + + Decimal + + + + + fr.insee + m1htw952 + 1 + + INTER_TRAV1 + + + 1 - "...toujours travaillé sans interruption" + + + fr.insee + l1g7vwo6-QOP-m1htommh + 1 + OutParameter + + + fr.insee + l1g7vwo6 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m1htvysx + 1 + + INTER_TRAV2 + + + 2 - "...eu une ou plusieurs périodes de chômage d'au moins six mois" + + + fr.insee + l1g7vwo6-QOP-m1hty7yg + 1 + OutParameter + + + fr.insee + l1g7vwo6 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m1htt7bu + 1 + + INTER_TRAV3 + + + 3 - "...eu d'autres interruptions d'au moins six mois" + + + fr.insee + l1g7vwo6-QOP-m1hu4fcs + 1 + OutParameter + + + fr.insee + l1g7vwo6 + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + ljwz1ro0 + 1 + + PRENOM_FIN + + + PRENOM_FIN label + + + fr.insee + ljwxkrnl-QOP-ljwxfacv + 1 + OutParameter + + + fr.insee + ljwxkrnl + 1 + QuestionItem + + + + + fr.insee + ljwxdg2x + 1 + CodeList + + + + + + fr.insee + lamjg3vg + 1 + + PRENOM_PROX + + + PRENOM_PROX label + + + fr.insee + lamjnyx4-QOP-lamjnllg + 1 + OutParameter + + + fr.insee + lamjnyx4 + 1 + QuestionItem + + + + + + + fr.insee + m0quwwsv + 1 + + POSTENQ + + + POSTENQ label + + + fr.insee + ly4bmrhf-QOP-ly4c2yfu + 1 + OutParameter + + + fr.insee + ly4bmrhf + 1 + QuestionItem + + + + + fr.insee + l4onk0te + 1 + CodeList + + + + + + fr.insee + m0kslnfy + 1 + + POSTENQ_CONT1 + + + 1 - "Par mail" + + + fr.insee + m0ksi30t-QOP-m0ktcljz + 1 + OutParameter + + + fr.insee + m0ksi30t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0kt13p4 + 1 + + POSTENQ_CONT2 + + + 2 - "Par téléphone" + + + fr.insee + m0ksi30t-QOP-m0kt2hbe + 1 + OutParameter + + + fr.insee + m0ksi30t + 1 + QuestionGrid + + + + + + + fr.insee + INSEE-COMMUN-CL-Booleen-1 + 1 + Code + + + + + + + + fr.insee + m0ksxi7j + 1 + + POSTENQ_MAIL + + + POSTENQ_MAIL label + + + fr.insee + m0ksqayr-QOP-m0kt9h7i + 1 + OutParameter + + + fr.insee + m0ksqayr + 1 + QuestionItem + + + + + + + fr.insee + m23a72w1 + 1 + + POSTENQ_TEL + + + POSTENQ_TEL label + + + fr.insee + m0kss4a5-QOP-m0kt7yo5 + 1 + OutParameter + + + fr.insee + m0kss4a5 + 1 + QuestionItem + + + + + + + fr.insee + l4idqt1t-vg + 1 + + + fr.insee + l4idqt1t + 1 + Loop + + + fr.insee + lywy061z-TEST_RP + 1 + Loop + + + Loop + + B_PRENOMREP + + + fr.insee + ltd23enq + 1 + Variable + + + fr.insee + ltd1mklp + 1 + Variable + + + fr.insee + ltd1mjsw + 1 + Variable + + + fr.insee + ltd23txo + 1 + Variable + + + fr.insee + ltd1kmxm + 1 + Variable + + + fr.insee + ltd24u2k + 1 + Variable + + + fr.insee + ltd22w3g + 1 + Variable + + + fr.insee + ltd1t7in + 1 + Variable + + + fr.insee + ltd1nckz + 1 + Variable + + + fr.insee + ltd1s54l + 1 + Variable + + + fr.insee + ltd20wke + 1 + Variable + + + fr.insee + ltd1nmcl + 1 + Variable + + + fr.insee + ltd1z2u9 + 1 + Variable + + + fr.insee + ltd22uk7 + 1 + Variable + + + fr.insee + ltd24w90 + 1 + Variable + + + fr.insee + ltd1mo93 + 1 + Variable + + + fr.insee + ltd1tr9u + 1 + Variable + + + fr.insee + ltd1xvpk + 1 + Variable + + + fr.insee + ltd23kmk + 1 + Variable + + + fr.insee + ltd1w7di + 1 + Variable + + + fr.insee + ltd1p2io + 1 + Variable + + + fr.insee + ltd1rvdq + 1 + Variable + + + fr.insee + ltd1vp73 + 1 + Variable + + + fr.insee + lvwd7z56 + 1 + Variable + + + fr.insee + lvwcvvn8 + 1 + Variable + + + fr.insee + lvwcxiaz + 1 + Variable + + + fr.insee + lvwdaze4 + 1 + Variable + + + fr.insee + lvwd63xh + 1 + Variable + + + fr.insee + lvwdayz6 + 1 + Variable + + + fr.insee + lvwcxkrp + 1 + Variable + + + fr.insee + lvwd4c2m + 1 + Variable + + + fr.insee + ltd1b4rx + 1 + Variable + + + fr.insee + ltd1pqmf + 1 + Variable + + + fr.insee + ltd18lx3 + 1 + Variable + + + fr.insee + ltd1n50d + 1 + Variable + + + fr.insee + ltd1knjj + 1 + Variable + + + fr.insee + ltd16g0n + 1 + Variable + + + fr.insee + ltd1ceqy + 1 + Variable + + + fr.insee + ltd1hs8a + 1 + Variable + + + fr.insee + ltd1pqf0 + 1 + Variable + + + fr.insee + lywyltkf + 1 + Variable + + + fr.insee + lywyp55m + 1 + Variable + + + fr.insee + lywysir4 + 1 + Variable + + + fr.insee + lywyodr9 + 1 + Variable + + + fr.insee + lyygfcb8 + 1 + Variable + + + fr.insee + lyygms3p + 1 + Variable + + + fr.insee + lyygojza + 1 + Variable + + + fr.insee + m0b4t95v + 1 + Variable + + + fr.insee + ly4c5mxw + 1 + Variable + + + fr.insee + ly4bui4s + 1 + Variable + + + fr.insee + ly4bsvyu + 1 + Variable + + + fr.insee + m20g7o2q + 1 + Variable + + + fr.insee + ly4cxzye + 1 + Variable + + + fr.insee + ltg0flhk + 1 + Variable + + + fr.insee + lzths0nv + 1 + Variable + + + fr.insee + li359gpp + 1 + Variable + + + fr.insee + lyye0duu + 1 + Variable + + + fr.insee + ly34jqso + 1 + Variable + + + fr.insee + lna1wj6r + 1 + Variable + + + fr.insee + lldrx968 + 1 + Variable + + + fr.insee + lldrjxp8 + 1 + Variable + + + fr.insee + llvxlfv8 + 1 + Variable + + + fr.insee + llvxhzxi + 1 + Variable + + + fr.insee + m0gqszl1 + 1 + Variable + + + fr.insee + m0gq7tvc + 1 + Variable + + + fr.insee + llvx9163 + 1 + Variable + + + fr.insee + llvxubc4 + 1 + Variable + + + fr.insee + llds9t21 + 1 + Variable + + + fr.insee + llmh74gq + 1 + Variable + + + fr.insee + lwp4zy9s + 1 + Variable + + + fr.insee + loref546 + 1 + Variable + + + fr.insee + lorbjz57 + 1 + Variable + + + fr.insee + lldrj7dd + 1 + Variable + + + fr.insee + lldrxbyn + 1 + Variable + + + fr.insee + llvxrs8n + 1 + Variable + + + fr.insee + llvxem9q + 1 + Variable + + + fr.insee + m0gqzvxt + 1 + Variable + + + fr.insee + m0gr00lh + 1 + Variable + + + fr.insee + llvxpjun + 1 + Variable + + + fr.insee + llvxbql6 + 1 + Variable + + + fr.insee + lldse6ue + 1 + Variable + + + fr.insee + llmhxy6z + 1 + Variable + + + fr.insee + lwuo4x4c + 1 + Variable + + + fr.insee + lorc20ro + 1 + Variable + + + fr.insee + lorbtmqe + 1 + Variable + + + fr.insee + lxsrrd0n + 1 + Variable + + + fr.insee + llm3di1p + 1 + Variable + + + fr.insee + lxssi4gn + 1 + Variable + + + fr.insee + li36k75s + 1 + Variable + + + fr.insee + lxstcckb + 1 + Variable + + + fr.insee + m1552y2o + 1 + Variable + + + fr.insee + lxstcgd1 + 1 + Variable + + + fr.insee + lxstcz30 + 1 + Variable + + + fr.insee + li36eujn + 1 + Variable + + + fr.insee + li36l5p1 + 1 + Variable + + + fr.insee + l9iilq19 + 1 + Variable + + + fr.insee + li36im4p + 1 + Variable + + + fr.insee + lwuo0yno + 1 + Variable + + + fr.insee + lv2h8bki + 1 + Variable + + + fr.insee + lv2h3x6o + 1 + Variable + + + fr.insee + lv2h9wqf + 1 + Variable + + + fr.insee + lv2hgjj4 + 1 + Variable + + + fr.insee + li36e6jz + 1 + Variable + + + fr.insee + lagvhww3 + 1 + Variable + + + fr.insee + l34g1oxk + 1 + Variable + + + fr.insee + llgbswhy + 1 + Variable + + + fr.insee + llgbm843 + 1 + Variable + + + fr.insee + lxstewdv + 1 + Variable + + + fr.insee + llm3jau1 + 1 + Variable + + + fr.insee + lxstaeby + 1 + Variable + + + fr.insee + li36ikzo + 1 + Variable + + + fr.insee + lxst9z86 + 1 + Variable + + + fr.insee + m155gqwm + 1 + Variable + + + fr.insee + lxstc10n + 1 + Variable + + + fr.insee + m37ay6z4 + 1 + Variable + + + fr.insee + l4cje9hx + 1 + Variable + + + fr.insee + l5ktp37h + 1 + Variable + + + fr.insee + l5jnkoyz + 1 + Variable + + + fr.insee + lluma0ok + 1 + Variable + + + fr.insee + l9ildsj0 + 1 + Variable + + + fr.insee + l9ilmr79 + 1 + Variable + + + fr.insee + llgbwr7a + 1 + Variable + + + fr.insee + llgbkefo + 1 + Variable + + + fr.insee + lxswur53 + 1 + Variable + + + fr.insee + llm3orfw + 1 + Variable + + + fr.insee + lxsx6zwr + 1 + Variable + + + fr.insee + l9ilplrs + 1 + Variable + + + fr.insee + lxsx77tw + 1 + Variable + + + fr.insee + m155i75f + 1 + Variable + + + fr.insee + lxsx57nt + 1 + Variable + + + fr.insee + m37at1hy + 1 + Variable + + + fr.insee + l9imhwey + 1 + Variable + + + fr.insee + l9imlci5 + 1 + Variable + + + fr.insee + l9imbft1 + 1 + Variable + + + fr.insee + liizkz29 + 1 + Variable + + + fr.insee + l8k91eas + 1 + Variable + + + fr.insee + ly47c6wt + 1 + Variable + + + fr.insee + ltd0hfsc + 1 + Variable + + + fr.insee + llumdbvx + 1 + Variable + + + fr.insee + llvxrvuz + 1 + Variable + + + fr.insee + lumokutj + 1 + Variable + + + fr.insee + lw52lms5 + 1 + Variable + + + fr.insee + lw52j6r7 + 1 + Variable + + + fr.insee + lumsy7gr + 1 + Variable + + + fr.insee + lw53mlvn + 1 + Variable + + + fr.insee + lw53ldxd + 1 + Variable + + + fr.insee + lumt055d + 1 + Variable + + + fr.insee + lw53yvgy + 1 + Variable + + + fr.insee + lw53q66a + 1 + Variable + + + fr.insee + lumsuaeg + 1 + Variable + + + fr.insee + ltd0io6q + 1 + Variable + + + fr.insee + ltd06v5e + 1 + Variable + + + fr.insee + lw4yaviq + 1 + Variable + + + fr.insee + ltd0d2d1 + 1 + Variable + + + fr.insee + lw4y9mhm + 1 + Variable + + + fr.insee + l4i7t09m + 1 + Variable + + + fr.insee + llgbzex2 + 1 + Variable + + + fr.insee + lxynf7im + 1 + Variable + + + fr.insee + lai2q0l2 + 1 + Variable + + + fr.insee + lv3tp7wa + 1 + Variable + + + fr.insee + lxynfm06 + 1 + Variable + + + fr.insee + m20lg5xq + 1 + Variable + + + fr.insee + lai2vxng + 1 + Variable + + + fr.insee + llvxsb8n + 1 + Variable + + + fr.insee + llvxl0i4 + 1 + Variable + + + fr.insee + llvxptki + 1 + Variable + + + fr.insee + lysgeqbu + 1 + Variable + + + fr.insee + l4iaop7n + 1 + Variable + + + fr.insee + lai37uhg + 1 + Variable + + + fr.insee + la6yvw8y + 1 + Variable + + + fr.insee + lv3rnio1 + 1 + Variable + + + fr.insee + lvgnmkao + 1 + Variable + + + fr.insee + lvgp4nwr + 1 + Variable + + + fr.insee + l4i9d8v4 + 1 + Variable + + + fr.insee + llgdof4r + 1 + Variable + + + fr.insee + lxync601 + 1 + Variable + + + fr.insee + l4qtshn8 + 1 + Variable + + + fr.insee + lv3uek9p + 1 + Variable + + + fr.insee + lxynh545 + 1 + Variable + + + fr.insee + m20l6xvv + 1 + Variable + + + fr.insee + l4pah4e9 + 1 + Variable + + + fr.insee + llvxvybh + 1 + Variable + + + fr.insee + llvxlqkx + 1 + Variable + + + fr.insee + llvy0bjq + 1 + Variable + + + fr.insee + lysgbbno + 1 + Variable + + + fr.insee + l4ia9byx + 1 + Variable + + + fr.insee + l4iai6rj + 1 + Variable + + + fr.insee + la6yqwyf + 1 + Variable + + + fr.insee + lv3rrwgx + 1 + Variable + + + fr.insee + lvwihdi5 + 1 + Variable + + + fr.insee + lvgnl17j + 1 + Variable + + + fr.insee + l4lcm3zm + 1 + Variable + + + fr.insee + llge4od7 + 1 + Variable + + + fr.insee + lxyndb87 + 1 + Variable + + + fr.insee + l4qtpx6f + 1 + Variable + + + fr.insee + lv3uv9km + 1 + Variable + + + fr.insee + lxynaw84 + 1 + Variable + + + fr.insee + m20l562b + 1 + Variable + + + fr.insee + l4pae240 + 1 + Variable + + + fr.insee + llvxo6tz + 1 + Variable + + + fr.insee + llvxwe5z + 1 + Variable + + + fr.insee + llvy3238 + 1 + Variable + + + fr.insee + lysg2x2j + 1 + Variable + + + fr.insee + l4ldfxok + 1 + Variable + + + fr.insee + l4ld9url + 1 + Variable + + + fr.insee + la6ymh2v + 1 + Variable + + + fr.insee + lv3rfnbg + 1 + Variable + + + fr.insee + lvgnt013 + 1 + Variable + + + fr.insee + lvgnkfc7 + 1 + Variable + + + fr.insee + l4le9osn + 1 + Variable + + + fr.insee + llgdmzwn + 1 + Variable + + + fr.insee + lxynr77e + 1 + Variable + + + fr.insee + l4qtueyu + 1 + Variable + + + fr.insee + lv3w456w + 1 + Variable + + + fr.insee + lxynclss + 1 + Variable + + + fr.insee + m20lkccl + 1 + Variable + + + fr.insee + l4pao37f + 1 + Variable + + + fr.insee + llvy28yg + 1 + Variable + + + fr.insee + llvy3nrc + 1 + Variable + + + fr.insee + llvy62d0 + 1 + Variable + + + fr.insee + lysg1stl + 1 + Variable + + + fr.insee + l4leeukk + 1 + Variable + + + fr.insee + l4leseyk + 1 + Variable + + + fr.insee + la6yno8u + 1 + Variable + + + fr.insee + lv3rcl6q + 1 + Variable + + + fr.insee + lvgnzr5w + 1 + Variable + + + fr.insee + lvgnqvql + 1 + Variable + + + fr.insee + l4lerlrc + 1 + Variable + + + fr.insee + llgdmwr4 + 1 + Variable + + + fr.insee + lxynafj0 + 1 + Variable + + + fr.insee + l4qto89v + 1 + Variable + + + fr.insee + lv5dqz1j + 1 + Variable + + + fr.insee + lxynl5f7 + 1 + Variable + + + fr.insee + m20lddha + 1 + Variable + + + fr.insee + l4pakdk6 + 1 + Variable + + + fr.insee + llvxz4y8 + 1 + Variable + + + fr.insee + llvy6d0r + 1 + Variable + + + fr.insee + llvxv8yy + 1 + Variable + + + fr.insee + lysgbit0 + 1 + Variable + + + fr.insee + l4lg1pyn + 1 + Variable + + + fr.insee + l4lg1xr6 + 1 + Variable + + + fr.insee + la6yidpr + 1 + Variable + + + fr.insee + lv3rdskg + 1 + Variable + + + fr.insee + lvgo1c7e + 1 + Variable + + + fr.insee + lvgo58ie + 1 + Variable + + + fr.insee + l8n2vo7b + 1 + Variable + + + fr.insee + llge1k6m + 1 + Variable + + + fr.insee + lxynudzk + 1 + Variable + + + fr.insee + l8n2f6ge + 1 + Variable + + + fr.insee + lv6bje4l + 1 + Variable + + + fr.insee + lye3djqw + 1 + Variable + + + fr.insee + m20l4th4 + 1 + Variable + + + fr.insee + l8n2bifj + 1 + Variable + + + fr.insee + llvxyjt8 + 1 + Variable + + + fr.insee + llvxysia + 1 + Variable + + + fr.insee + llvxx6pu + 1 + Variable + + + fr.insee + lysg6vaq + 1 + Variable + + + fr.insee + l8n28aup + 1 + Variable + + + fr.insee + l8n1v5qt + 1 + Variable + + + fr.insee + la6ygrmz + 1 + Variable + + + fr.insee + lv3ro3oz + 1 + Variable + + + fr.insee + lvgo7h16 + 1 + Variable + + + fr.insee + lvgntds8 + 1 + Variable + + + fr.insee + l8n3vait + 1 + Variable + + + fr.insee + llgdp5xh + 1 + Variable + + + fr.insee + lxyntbhy + 1 + Variable + + + fr.insee + l8n3hi4s + 1 + Variable + + + fr.insee + lv6ednfy + 1 + Variable + + + fr.insee + lxynusow + 1 + Variable + + + fr.insee + m20l66af + 1 + Variable + + + fr.insee + l8n3jy6y + 1 + Variable + + + fr.insee + llvy2ddo + 1 + Variable + + + fr.insee + llvy6ybc + 1 + Variable + + + fr.insee + llvy83kg + 1 + Variable + + + fr.insee + lysgm0p5 + 1 + Variable + + + fr.insee + l8n2ve3t + 1 + Variable + + + fr.insee + l8n2x63v + 1 + Variable + + + fr.insee + la6ya7r2 + 1 + Variable + + + fr.insee + lv3rp22u + 1 + Variable + + + fr.insee + lvgozoxk + 1 + Variable + + + fr.insee + lvgp7gnz + 1 + Variable + + + fr.insee + l8n49za1 + 1 + Variable + + + fr.insee + llge0ibj + 1 + Variable + + + fr.insee + lxyne3cx + 1 + Variable + + + fr.insee + l8n457wa + 1 + Variable + + + fr.insee + lv6elkhp + 1 + Variable + + + fr.insee + lxynu2j8 + 1 + Variable + + + fr.insee + m20lh3pw + 1 + Variable + + + fr.insee + l8n3ocrc + 1 + Variable + + + fr.insee + llvxyo73 + 1 + Variable + + + fr.insee + llvy6byb + 1 + Variable + + + fr.insee + llvy74id + 1 + Variable + + + fr.insee + lysgf7gc + 1 + Variable + + + fr.insee + l8n3jswg + 1 + Variable + + + fr.insee + l8n3v5ev + 1 + Variable + + + fr.insee + la6vczh4 + 1 + Variable + + + fr.insee + lv3rnmnh + 1 + Variable + + + fr.insee + lvgpalhz + 1 + Variable + + + fr.insee + lvgpm7as + 1 + Variable + + + fr.insee + l4ie7fv4 + 1 + Variable + + + fr.insee + llge79j7 + 1 + Variable + + + fr.insee + lxyngxrg + 1 + Variable + + + fr.insee + l4ie15d7 + 1 + Variable + + + fr.insee + lv6fm4av + 1 + Variable + + + fr.insee + lxynonpf + 1 + Variable + + + fr.insee + m20lhf8h + 1 + Variable + + + fr.insee + l9dv2jor + 1 + Variable + + + fr.insee + l8k9yqfn + 1 + Variable + + + fr.insee + lyzuiox0 + 1 + Variable + + + fr.insee + lyzu8lp8 + 1 + Variable + + + fr.insee + lysg8w2o + 1 + Variable + + + fr.insee + lai72f8d + 1 + Variable + + + fr.insee + llvycj4j + 1 + Variable + + + fr.insee + llvylz7b + 1 + Variable + + + fr.insee + llvyajtl + 1 + Variable + + + fr.insee + l4ie8a4z + 1 + Variable + + + fr.insee + l5ilmykd + 1 + Variable + + + fr.insee + l4iec3iy + 1 + Variable + + + fr.insee + l4o7a7kk + 1 + Variable + + + fr.insee + lv3rh0yp + 1 + Variable + + + fr.insee + lvgpelav + 1 + Variable + + + fr.insee + lvgpx3kg + 1 + Variable + + + fr.insee + l4lg2nk3 + 1 + Variable + + + fr.insee + llgjk2nm + 1 + Variable + + + fr.insee + lxynkubc + 1 + Variable + + + fr.insee + l4lh0ajb + 1 + Variable + + + fr.insee + lv6g7449 + 1 + Variable + + + fr.insee + lxynlck9 + 1 + Variable + + + fr.insee + m20l7s8h + 1 + Variable + + + fr.insee + l9dvg123 + 1 + Variable + + + fr.insee + l4lh4wfw + 1 + Variable + + + fr.insee + lyzudirl + 1 + Variable + + + fr.insee + lyzup79t + 1 + Variable + + + fr.insee + lysg76p3 + 1 + Variable + + + fr.insee + lai71qvf + 1 + Variable + + + fr.insee + llvys5r8 + 1 + Variable + + + fr.insee + llvyhx8j + 1 + Variable + + + fr.insee + llvyqaj6 + 1 + Variable + + + fr.insee + l4lj0cki + 1 + Variable + + + fr.insee + l4ljyhe4 + 1 + Variable + + + fr.insee + l4lk2gex + 1 + Variable + + + fr.insee + l7un2f3g + 1 + Variable + + + fr.insee + lv3rwupw + 1 + Variable + + + fr.insee + lvgppn9w + 1 + Variable + + + fr.insee + lvgpteqm + 1 + Variable + + + fr.insee + l4lfyg5t + 1 + Variable + + + fr.insee + llgjuydk + 1 + Variable + + + fr.insee + ly2ria72 + 1 + Variable + + + fr.insee + l4lgo3d3 + 1 + Variable + + + fr.insee + lv6gflqy + 1 + Variable + + + fr.insee + ly2r79pd + 1 + Variable + + + fr.insee + m20lmam2 + 1 + Variable + + + fr.insee + l9dv00hr + 1 + Variable + + + fr.insee + l4lh1dxb + 1 + Variable + + + fr.insee + lyzuk2vt + 1 + Variable + + + fr.insee + lyzudqhv + 1 + Variable + + + fr.insee + lysg5bah + 1 + Variable + + + fr.insee + lai6zu1s + 1 + Variable + + + fr.insee + llvyc82v + 1 + Variable + + + fr.insee + llvyhkhn + 1 + Variable + + + fr.insee + llvytzoi + 1 + Variable + + + fr.insee + l4lj26cu + 1 + Variable + + + fr.insee + lasa136n + 1 + Variable + + + fr.insee + l4lk2ey2 + 1 + Variable + + + fr.insee + l4o7s6rx + 1 + Variable + + + fr.insee + lv3rolfh + 1 + Variable + + + fr.insee + lvgq055p + 1 + Variable + + + fr.insee + lvgpqf6e + 1 + Variable + + + fr.insee + l4lg13lj + 1 + Variable + + + fr.insee + llgjs283 + 1 + Variable + + + fr.insee + ly2rkpc7 + 1 + Variable + + + fr.insee + l4lh0w7d + 1 + Variable + + + fr.insee + lv6gysy2 + 1 + Variable + + + fr.insee + ly2raet8 + 1 + Variable + + + fr.insee + m20l8df0 + 1 + Variable + + + fr.insee + l9duyjkw + 1 + Variable + + + fr.insee + l4lh0y8b + 1 + Variable + + + fr.insee + lyzuggur + 1 + Variable + + + fr.insee + lyzuba92 + 1 + Variable + + + fr.insee + lysgd4r0 + 1 + Variable + + + fr.insee + m1erjqr9 + 1 + Variable + + + fr.insee + llvytozk + 1 + Variable + + + fr.insee + llvyp2uu + 1 + Variable + + + fr.insee + llvyka8z + 1 + Variable + + + fr.insee + l4ljh4hd + 1 + Variable + + + fr.insee + l4lmfm7a + 1 + Variable + + + fr.insee + l4lk882x + 1 + Variable + + + fr.insee + l4o80sj1 + 1 + Variable + + + fr.insee + lv3rpii2 + 1 + Variable + + + fr.insee + lvgq145z + 1 + Variable + + + fr.insee + lvgpqvpz + 1 + Variable + + + fr.insee + l4lgdupn + 1 + Variable + + + fr.insee + llgjrwzu + 1 + Variable + + + fr.insee + ly2ryw26 + 1 + Variable + + + fr.insee + l4lgnml2 + 1 + Variable + + + fr.insee + lv6h1tev + 1 + Variable + + + fr.insee + ly2rx2aw + 1 + Variable + + + fr.insee + m20lr70g + 1 + Variable + + + fr.insee + l9dvdo4p + 1 + Variable + + + fr.insee + l4lh78pu + 1 + Variable + + + fr.insee + lyzujc0x + 1 + Variable + + + fr.insee + lyzunfl7 + 1 + Variable + + + fr.insee + lysgfjh2 + 1 + Variable + + + fr.insee + lai6w8kr + 1 + Variable + + + fr.insee + llvz0fqm + 1 + Variable + + + fr.insee + llvysls5 + 1 + Variable + + + fr.insee + llvylns4 + 1 + Variable + + + fr.insee + l4lj62bs + 1 + Variable + + + fr.insee + l4o7oknh + 1 + Variable + + + fr.insee + l4ljvm4i + 1 + Variable + + + fr.insee + l4o7xizu + 1 + Variable + + + fr.insee + lv3rrju5 + 1 + Variable + + + fr.insee + lvgqd9l4 + 1 + Variable + + + fr.insee + lvgqdrsy + 1 + Variable + + + fr.insee + l8oi7fel + 1 + Variable + + + fr.insee + llgjkq9j + 1 + Variable + + + fr.insee + ly2rx97c + 1 + Variable + + + fr.insee + l8oij0b0 + 1 + Variable + + + fr.insee + lv6hwmgr + 1 + Variable + + + fr.insee + ly2rxj16 + 1 + Variable + + + fr.insee + m20lc9po + 1 + Variable + + + fr.insee + l9duy8g6 + 1 + Variable + + + fr.insee + l8oi73zk + 1 + Variable + + + fr.insee + lyzunbiw + 1 + Variable + + + fr.insee + lyzur60d + 1 + Variable + + + fr.insee + lysgp2lz + 1 + Variable + + + fr.insee + lai76uzw + 1 + Variable + + + fr.insee + llvyoxe1 + 1 + Variable + + + fr.insee + llvywof5 + 1 + Variable + + + fr.insee + llvypr5t + 1 + Variable + + + fr.insee + l8ogvwpl + 1 + Variable + + + fr.insee + l8oaxy5v + 1 + Variable + + + fr.insee + l8ob2278 + 1 + Variable + + + fr.insee + l8ob0bwo + 1 + Variable + + + fr.insee + lv3rwkwt + 1 + Variable + + + fr.insee + lvgq0uab + 1 + Variable + + + fr.insee + lvgqeihf + 1 + Variable + + + fr.insee + l8okm9vv + 1 + Variable + + + fr.insee + llgjuj96 + 1 + Variable + + + fr.insee + ly2rz5zv + 1 + Variable + + + fr.insee + l8ojza9l + 1 + Variable + + + fr.insee + lv6i4o14 + 1 + Variable + + + fr.insee + ly2rmw4r + 1 + Variable + + + fr.insee + m20lfty2 + 1 + Variable + + + fr.insee + l9dvd6ci + 1 + Variable + + + fr.insee + l8ojsho1 + 1 + Variable + + + fr.insee + lyzuvlhc + 1 + Variable + + + fr.insee + lyzv2k09 + 1 + Variable + + + fr.insee + lysgm4ff + 1 + Variable + + + fr.insee + lai70va9 + 1 + Variable + + + fr.insee + llvypqbk + 1 + Variable + + + fr.insee + llvyy4np + 1 + Variable + + + fr.insee + llvyovak + 1 + Variable + + + fr.insee + l8ojhh6l + 1 + Variable + + + fr.insee + l8oig2bs + 1 + Variable + + + fr.insee + l8oj2ija + 1 + Variable + + + fr.insee + l8oivphd + 1 + Variable + + + fr.insee + lv3s0cn8 + 1 + Variable + + + fr.insee + lvgq5m4s + 1 + Variable + + + fr.insee + lvgq418g + 1 + Variable + + + fr.insee + l8olff0v + 1 + Variable + + + fr.insee + llgjincl + 1 + Variable + + + fr.insee + ly2rub86 + 1 + Variable + + + fr.insee + l8olls0i + 1 + Variable + + + fr.insee + lv6ih5mr + 1 + Variable + + + fr.insee + ly2s8mut + 1 + Variable + + + fr.insee + m20llweu + 1 + Variable + + + fr.insee + l9dvbaqq + 1 + Variable + + + fr.insee + l8ol5yre + 1 + Variable + + + fr.insee + lyzuqtc5 + 1 + Variable + + + fr.insee + lyzuwdlk + 1 + Variable + + + fr.insee + lysextho + 1 + Variable + + + fr.insee + lai6too4 + 1 + Variable + + + fr.insee + llvz0iw5 + 1 + Variable + + + fr.insee + llvz0k9p + 1 + Variable + + + fr.insee + llvyxbi2 + 1 + Variable + + + fr.insee + l8okm2oj + 1 + Variable + + + fr.insee + l8okskbt + 1 + Variable + + + fr.insee + l8okje65 + 1 + Variable + + + fr.insee + l8okt0i0 + 1 + Variable + + + fr.insee + lv3rohc1 + 1 + Variable + + + fr.insee + lvgqmok5 + 1 + Variable + + + fr.insee + lvgq5tgd + 1 + Variable + + + fr.insee + l5iaj6j7 + 1 + Variable + + + fr.insee + lm69vsc6 + 1 + Variable + + + fr.insee + lyzurtxt + 1 + Variable + + + fr.insee + lysf53ha + 1 + Variable + + + fr.insee + lysf83t6 + 1 + Variable + + + fr.insee + lysf76f5 + 1 + Variable + + + fr.insee + lysex4x5 + 1 + Variable + + + fr.insee + lysenkzg + 1 + Variable + + + fr.insee + lyseyuwn + 1 + Variable + + + fr.insee + lysf84dn + 1 + Variable + + + fr.insee + lyset387 + 1 + Variable + + + fr.insee + m0ks9w0l + 1 + Variable + + + fr.insee + m0ks6z77 + 1 + Variable + + + fr.insee + m0krvmyp + 1 + Variable + + + fr.insee + m0ks7k0k + 1 + Variable + + + fr.insee + m0ks75cb + 1 + Variable + + + fr.insee + m23cdncs + 1 + Variable + + + fr.insee + m23cjnp4 + 1 + Variable + + + fr.insee + m23cq6vk + 1 + Variable + + + fr.insee + m23c7bv1 + 1 + Variable + + + fr.insee + lwjdkrsu + 1 + Variable + + + fr.insee + m23c7j0j + 1 + Variable + + + fr.insee + m23clv2b + 1 + Variable + + + fr.insee + m23c77tt + 1 + Variable + + + fr.insee + lwjdf3fc + 1 + Variable + + + fr.insee + m23ca0bg + 1 + Variable + + + fr.insee + m23calgn + 1 + Variable + + + fr.insee + m23c53fz + 1 + Variable + + + fr.insee + lwjd95mc + 1 + Variable + + + fr.insee + m23c5awe + 1 + Variable + + + fr.insee + m23c6oi9 + 1 + Variable + + + fr.insee + lwjdgf3p + 1 + Variable + + + fr.insee + m23cet9v + 1 + Variable + + + fr.insee + m23coizk + 1 + Variable + + + fr.insee + m23cmit5 + 1 + Variable + + + fr.insee + m23c90l2 + 1 + Variable + + + fr.insee + lwjdvco3 + 1 + Variable + + + fr.insee + m23cfl2j + 1 + Variable + + + fr.insee + m23cb5l3 + 1 + Variable + + + fr.insee + m23ca8gd + 1 + Variable + + + fr.insee + lwjdwtxi + 1 + Variable + + + fr.insee + m23cfm6v + 1 + Variable + + + fr.insee + m23c81z1 + 1 + Variable + + + fr.insee + m23cgjt1 + 1 + Variable + + + fr.insee + lwje891j + 1 + Variable + + + fr.insee + m23cjbcc + 1 + Variable + + + fr.insee + m23cd6hx + 1 + Variable + + + fr.insee + lwkr6knx + 1 + Variable + + + fr.insee + m23cr6em + 1 + Variable + + + fr.insee + m23cdh6u + 1 + Variable + + + fr.insee + m23ctmjh + 1 + Variable + + + fr.insee + m23cfyuk + 1 + Variable + + + fr.insee + lwkqsz5j + 1 + Variable + + + fr.insee + m23cmqom + 1 + Variable + + + fr.insee + m23cmzeb + 1 + Variable + + + fr.insee + m23clu63 + 1 + Variable + + + fr.insee + lwkr4l6r + 1 + Variable + + + fr.insee + m23cpd1n + 1 + Variable + + + fr.insee + m23ch6jy + 1 + Variable + + + fr.insee + m23clk8c + 1 + Variable + + + fr.insee + lwkr90s1 + 1 + Variable + + + fr.insee + m23csyew + 1 + Variable + + + fr.insee + m23ce6a7 + 1 + Variable + + + fr.insee + lwkr8vn9 + 1 + Variable + + + fr.insee + m23cg5j5 + 1 + Variable + + + fr.insee + m23cgs8h + 1 + Variable + + + fr.insee + m23cmbna + 1 + Variable + + + fr.insee + m23ctmtw + 1 + Variable + + + fr.insee + lwkra1cv + 1 + Variable + + + fr.insee + m23ci724 + 1 + Variable + + + fr.insee + m23cplxe + 1 + Variable + + + fr.insee + m23cvv23 + 1 + Variable + + + fr.insee + lwoma0z5 + 1 + Variable + + + fr.insee + m23co8si + 1 + Variable + + + fr.insee + m23cqavi + 1 + Variable + + + fr.insee + m23cmuzl + 1 + Variable + + + fr.insee + lwom5mr6 + 1 + Variable + + + fr.insee + m23cun7d + 1 + Variable + + + fr.insee + m23cmct1 + 1 + Variable + + + fr.insee + lwomb7vz + 1 + Variable + + + fr.insee + lpsf6slk + 1 + Variable + + + fr.insee + lpsfbse5 + 1 + Variable + + + fr.insee + lpsf3b1j + 1 + Variable + + + fr.insee + lpsffccj + 1 + Variable + + + fr.insee + m23cfr12 + 1 + Variable + + + fr.insee + m23cwbye + 1 + Variable + + + fr.insee + m23cdtop + 1 + Variable + + + fr.insee + m23clprd + 1 + Variable + + + fr.insee + lwom4rwj + 1 + Variable + + + fr.insee + m23cfi90 + 1 + Variable + + + fr.insee + m23cm9aq + 1 + Variable + + + fr.insee + m23cuv8i + 1 + Variable + + + fr.insee + lwomer7j + 1 + Variable + + + fr.insee + m23cgcgu + 1 + Variable + + + fr.insee + m23ce3zy + 1 + Variable + + + fr.insee + m23cdz19 + 1 + Variable + + + fr.insee + lwom45yb + 1 + Variable + + + fr.insee + m23ci7j0 + 1 + Variable + + + fr.insee + m23cvoc0 + 1 + Variable + + + fr.insee + lwomkngn + 1 + Variable + + + fr.insee + m23celqb + 1 + Variable + + + fr.insee + m23cwbgc + 1 + Variable + + + fr.insee + m23ctydu + 1 + Variable + + + fr.insee + m23clwp8 + 1 + Variable + + + fr.insee + lwomdz3z + 1 + Variable + + + fr.insee + m23cjz8p + 1 + Variable + + + fr.insee + m23cnyt8 + 1 + Variable + + + fr.insee + m23cpkwf + 1 + Variable + + + fr.insee + lwomc8xz + 1 + Variable + + + fr.insee + m23ct0ua + 1 + Variable + + + fr.insee + m23cxrrj + 1 + Variable + + + fr.insee + m23cixlg + 1 + Variable + + + fr.insee + lwomw4ga + 1 + Variable + + + fr.insee + m23ci79r + 1 + Variable + + + fr.insee + m23cth4m + 1 + Variable + + + fr.insee + lwomv5td + 1 + Variable + + + fr.insee + m23cx8dv + 1 + Variable + + + fr.insee + m23ck82b + 1 + Variable + + + fr.insee + m23cs6fv + 1 + Variable + + + fr.insee + m23cq1e8 + 1 + Variable + + + fr.insee + lwonn5rk + 1 + Variable + + + fr.insee + m23cyew4 + 1 + Variable + + + fr.insee + m23cixa6 + 1 + Variable + + + fr.insee + m23cewoe + 1 + Variable + + + fr.insee + lwony2cf + 1 + Variable + + + fr.insee + m23cm0j2 + 1 + Variable + + + fr.insee + m23cmh1g + 1 + Variable + + + fr.insee + m23cs89v + 1 + Variable + + + fr.insee + lwonpbq0 + 1 + Variable + + + fr.insee + m23cq0uy + 1 + Variable + + + fr.insee + m23cqofy + 1 + Variable + + + fr.insee + lwonv0d8 + 1 + Variable + + + fr.insee + lw7omjv7 + 1 + Variable + + + fr.insee + lw7ork43 + 1 + Variable + + + fr.insee + lw7owb5b + 1 + Variable + + + fr.insee + lw7oms4c + 1 + Variable + + + fr.insee + lw7p459g + 1 + Variable + + + fr.insee + lumsyhfe + 1 + Variable + + + fr.insee + lw54h6wg + 1 + Variable + + + fr.insee + lw54ogfs + 1 + Variable + + + fr.insee + lumstz9r + 1 + Variable + + + fr.insee + l4oec1lq + 1 + Variable + + + fr.insee + ly2rsldd + 1 + Variable + + + fr.insee + l3vpisia + 1 + Variable + + + fr.insee + lyocb7qx + 1 + Variable + + + fr.insee + lyod86xb + 1 + Variable + + + fr.insee + m21lyhfl + 1 + Variable + + + fr.insee + lyobxox9 + 1 + Variable + + + fr.insee + llvywjqt + 1 + Variable + + + fr.insee + llvytrfl + 1 + Variable + + + fr.insee + l8ldy184 + 1 + Variable + + + fr.insee + llgnqpnr + 1 + Variable + + + fr.insee + lpsk0wnn + 1 + Variable + + + fr.insee + lorb1rfj + 1 + Variable + + + fr.insee + lorbiizs + 1 + Variable + + + fr.insee + lw6ifibe + 1 + Variable + + + fr.insee + lw6i2v1v + 1 + Variable + + + fr.insee + lw6ifcty + 1 + Variable + + + fr.insee + lw6ikdy1 + 1 + Variable + + + fr.insee + lw6iro8n + 1 + Variable + + + fr.insee + lw6ipz01 + 1 + Variable + + + fr.insee + lw6ivyik + 1 + Variable + + + fr.insee + lw6iz5em + 1 + Variable + + + fr.insee + lw6io9q7 + 1 + Variable + + + fr.insee + lw6inz7m + 1 + Variable + + + fr.insee + lumsgi6h + 1 + Variable + + + fr.insee + l8k99ilg + 1 + Variable + + + fr.insee + ly2s180f + 1 + Variable + + + fr.insee + lm0e90yl + 1 + Variable + + + fr.insee + lai70nzp + 1 + Variable + + + fr.insee + llvytyg5 + 1 + Variable + + + fr.insee + llvz8tcu + 1 + Variable + + + fr.insee + llvyqp24 + 1 + Variable + + + fr.insee + l2kihdd6 + 1 + Variable + + + fr.insee + lysf6j2h + 1 + Variable + + + fr.insee + lysey82n + 1 + Variable + + + fr.insee + l4lonoaj + 1 + Variable + + + fr.insee + l43y4bul + 1 + Variable + + + fr.insee + l5axyvf9 + 1 + Variable + + + fr.insee + l4oeo539 + 1 + Variable + + + fr.insee + ly2s75nn + 1 + Variable + + + fr.insee + l45cezmn + 1 + Variable + + + fr.insee + lyocmua8 + 1 + Variable + + + fr.insee + lyodbt6n + 1 + Variable + + + fr.insee + m21lrtvp + 1 + Variable + + + fr.insee + l7ywxkf7 + 1 + Variable + + + fr.insee + llvz3hw4 + 1 + Variable + + + fr.insee + llvz5gpf + 1 + Variable + + + fr.insee + l4o73c23 + 1 + Variable + + + fr.insee + llgnuzxv + 1 + Variable + + + fr.insee + lyx2rj3c + 1 + Variable + + + fr.insee + lorb5gvs + 1 + Variable + + + fr.insee + lorb441q + 1 + Variable + + + fr.insee + lw6hxxoq + 1 + Variable + + + fr.insee + lw6j8t6s + 1 + Variable + + + fr.insee + lw6jel2z + 1 + Variable + + + fr.insee + lw6j2bal + 1 + Variable + + + fr.insee + lumsj8zb + 1 + Variable + + + fr.insee + lw6je0xm + 1 + Variable + + + fr.insee + lw6f00ji + 1 + Variable + + + fr.insee + lw6jnnk7 + 1 + Variable + + + fr.insee + lw6ey227 + 1 + Variable + + + fr.insee + lw6evtqe + 1 + Variable + + + fr.insee + lw6k2tuc + 1 + Variable + + + fr.insee + l8k9sjms + 1 + Variable + + + fr.insee + ly2s5o6x + 1 + Variable + + + fr.insee + m0pekbh5 + 1 + Variable + + + fr.insee + m0pebxst + 1 + Variable + + + fr.insee + m0peanmk + 1 + Variable + + + fr.insee + laguuyk8 + 1 + Variable + + + fr.insee + lai7blbr + 1 + Variable + + + fr.insee + llvytvcv + 1 + Variable + + + fr.insee + llvz5jjn + 1 + Variable + + + fr.insee + llvz5i4v + 1 + Variable + + + fr.insee + l8m1qyu9 + 1 + Variable + + + fr.insee + lyseqal0 + 1 + Variable + + + fr.insee + lysewr7g + 1 + Variable + + + fr.insee + l4los1a5 + 1 + Variable + + + fr.insee + l4lonmxd + 1 + Variable + + + fr.insee + ly5ybe8g + 1 + Variable + + + fr.insee + li362nsa + 1 + Variable + + + fr.insee + l473t9qd + 1 + Variable + + + fr.insee + ly5xylt6 + 1 + Variable + + + fr.insee + li367ko1 + 1 + Variable + + + fr.insee + lai0huem + 1 + Variable + + + fr.insee + m0kr5w5h + 1 + Variable + + + fr.insee + lv6kuafp + 1 + Variable + + + fr.insee + lv6ktw2p + 1 + Variable + + + fr.insee + lv6kkj8b + 1 + Variable + + + fr.insee + lv6kiix1 + 1 + Variable + + + fr.insee + lv6kxwft + 1 + Variable + + + fr.insee + lv6kv1u8 + 1 + Variable + + + fr.insee + lv6ko2rm + 1 + Variable + + + fr.insee + l8k9vl42 + 1 + Variable + + + fr.insee + lzqqlsmb + 1 + Variable + + + fr.insee + lzqq73cv + 1 + Variable + + + fr.insee + lzqq4h6w + 1 + Variable + + + fr.insee + lzqqajh2 + 1 + Variable + + + fr.insee + l1f6b3hb + 1 + Variable + + + fr.insee + llethxrg + 1 + Variable + + + fr.insee + ly2scqeb + 1 + Variable + + + fr.insee + lyzv2a7a + 1 + Variable + + + fr.insee + l445l6g2 + 1 + Variable + + + fr.insee + lumn1v1m + 1 + Variable + + + fr.insee + lumn9ys1 + 1 + Variable + + + fr.insee + ly5yfiw9 + 1 + Variable + + + fr.insee + lyzulxln + 1 + Variable + + + fr.insee + ly2sejvu + 1 + Variable + + + fr.insee + lyzv1ph8 + 1 + Variable + + + fr.insee + m1htw952 + 1 + Variable + + + fr.insee + m1htvysx + 1 + Variable + + + fr.insee + m1htt7bu + 1 + Variable + + + fr.insee + ljwz1ro0 + 1 + Variable + + + fr.insee + lamjg3vg + 1 + Variable + + + fr.insee + m0quwwsv + 1 + Variable + + + fr.insee + m0kslnfy + 1 + Variable + + + fr.insee + m0kt13p4 + 1 + Variable + + + fr.insee + m0ksxi7j + 1 + Variable + + + fr.insee + m23a72w1 + 1 + Variable + + + + fr.insee + INSEE-Instrument-m4754kes-vg + 1 + + + fr.insee + Instrument-m4754kes + 1 + Instrument + + + Questionnaire + + ENQFAMI25 + + + fr.insee + ltd1ad0o + 1 + Variable + + + fr.insee + ltd1mblq + 1 + Variable + + + fr.insee + lywyejl8 + 1 + Variable + + + fr.insee + m0kr9lfk + 1 + Variable + + + fr.insee + l4idqt1t-vg + 1 + VariableGroup + + + + + fr.insee + INSEE-SIMPSONS-PIS-1 + 1 + + SIMPSONS + + + Processing instructions of the Simpsons questionnaire + + + fr.insee + ltd23enq-GI + 1 + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + fr.insee + l3vpisia + 1 + Variable + + + + vtl + + fr.insee + ltd23enq-IP-1 + 1 + + SEXE_PAR1 + + + + fr.insee + ltd23enq-GOP + 1 + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + ltd23enq-IP-1 + 1 + InParameter + + + if (isnull(ltd23enq-IP-1)) then "" else (if (ltd23enq-IP-1 = "1") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1mklp-GI + 1 + + fr.insee + l27ig4yy + 1 + QuestionItem + + + fr.insee + l45cezmn + 1 + Variable + + + + vtl + + fr.insee + ltd1mklp-IP-1 + 1 + + SEXE_PAR2 + + + + fr.insee + ltd1mklp-GOP + 1 + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + ltd1mklp-IP-1 + 1 + InParameter + + + if (isnull(ltd1mklp-IP-1)) then "" else (if (ltd1mklp-IP-1 = "1") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1mjsw-GI + 1 + + fr.insee + l2kkvar7 + 1 + QuestionItem + + + fr.insee + l3vpisia + 1 + Variable + + + + vtl + + fr.insee + ltd1mjsw-IP-1 + 1 + + SEXE_PAR1 + + + + fr.insee + ltd1mjsw-GOP + 1 + + + + fr.insee + l2kkvar7-QOP-l2kkywzf + 1 + OutParameter + + + fr.insee + ltd1mjsw-IP-1 + 1 + InParameter + + + if (isnull(ltd1mjsw-IP-1)) then "il" else (if (ltd1mjsw-IP-1 = "1") then "elle" else "il") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd23txo-GI + 1 + + fr.insee + l27ig4yy + 1 + QuestionItem + + + fr.insee + l45cezmn + 1 + Variable + + + + vtl + + fr.insee + ltd23txo-IP-1 + 1 + + SEXE_PAR2 + + + + fr.insee + ltd23txo-GOP + 1 + + + + fr.insee + l27ig4yy-QOP-l27ii3c9 + 1 + OutParameter + + + fr.insee + ltd23txo-IP-1 + 1 + InParameter + + + if (isnull(ltd23txo-IP-1)) then "il" else (if (ltd23txo-IP-1 = "1") then "elle" else "il") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1kmxm-GI + 1 + + fr.insee + m0kr9lfk + 1 + Variable + + + + vtl + + fr.insee + ltd1kmxm-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + ltd1kmxm-GOP + 1 + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + ltd1kmxm-IP-1 + 1 + InParameter + + + if (isnull(ltd1kmxm-IP-1)) then "" else (if (ltd1kmxm-IP-1 = "2") then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd24u2k-GI + 1 + + fr.insee + ltd1s54l + 1 + Variable + + + + vtl + + fr.insee + ltd24u2k-IP-1 + 1 + + ANAIS + + + + fr.insee + ltd24u2k-GOP + 1 + + + + fr.insee + ltd1s54l-GOP + 1 + OutParameter + + + fr.insee + ltd24u2k-IP-1 + 1 + InParameter + + + if isnull(ltd24u2k-IP-1) then 0 else 2025 - ltd24u2k-IP-1 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd22w3g-GI + 1 + + fr.insee + kwqabjga + 1 + QuestionItem + + + fr.insee + lldrx968 + 1 + Variable + + + + vtl + + fr.insee + ltd22w3g-IP-1 + 1 + + SEXE_CH + + + + fr.insee + ltd22w3g-GOP + 1 + + + + fr.insee + kwqabjga-QOP-kwqai8pk + 1 + OutParameter + + + fr.insee + ltd22w3g-IP-1 + 1 + InParameter + + + if (isnull(ltd22w3g-IP-1)) then "" else (if ltd22w3g-IP-1="1" then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1t7in-GI + 1 + + fr.insee + kwqa0ism + 1 + QuestionItem + + + fr.insee + lna1wj6r + 1 + Variable + + + + vtl + + fr.insee + ltd1t7in-IP-1 + 1 + + DATNAIS_C + + + + fr.insee + ltd1t7in-GOP + 1 + + + + fr.insee + kwqa0ism-QOP-kwqa5c2z + 1 + OutParameter + + + fr.insee + ltd1t7in-IP-1 + 1 + InParameter + + + substr(cast(ltd1t7in-IP-1,string),1,4) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1nckz-GI + 1 + + fr.insee + ly4blyt6 + 1 + QuestionItem + + + fr.insee + kwq9wijq + 1 + QuestionItem + + + fr.insee + lywyodr9 + 1 + Variable + + + fr.insee + ly4bsvyu + 1 + Variable + + + fr.insee + m20g7o2q + 1 + Variable + + + + vtl + + fr.insee + ltd1nckz-IP-1 + 1 + + RPANAISENQ + + + + fr.insee + ltd1nckz-IP-2 + 1 + + VAL_ANNAISS + + + + fr.insee + ltd1nckz-IP-3 + 1 + + DATNAIS_X + + + + fr.insee + ltd1nckz-GOP + 1 + + + + fr.insee + RPANAISENQ + 1 + InParameter + + + fr.insee + ltd1nckz-IP-1 + 1 + InParameter + + + + + fr.insee + ly4blyt6-QOP-ly4c24uw + 1 + OutParameter + + + fr.insee + ltd1nckz-IP-2 + 1 + InParameter + + + + + fr.insee + kwq9wijq-QOP-kwq9l0nj + 1 + OutParameter + + + fr.insee + ltd1nckz-IP-3 + 1 + InParameter + + + if (nvl(ltd1nckz-IP-2,"") = "2") then substr(cast(ltd1nckz-IP-3,string),1,4) else ltd1nckz-IP-1 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1s54l-GI + 1 + + fr.insee + ltd1nckz + 1 + Variable + + + + vtl + + fr.insee + ltd1s54l-IP-1 + 1 + + ANAISS + + + + fr.insee + ltd1s54l-GOP + 1 + + + + fr.insee + ltd1nckz-GOP + 1 + OutParameter + + + fr.insee + ltd1s54l-IP-1 + 1 + InParameter + + + cast(ltd1s54l-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd20wke-GI + 1 + + fr.insee + kwqj561a + 1 + QuestionItem + + + fr.insee + lxyngxrg + 1 + Variable + + + + vtl + + fr.insee + ltd20wke-IP-1 + 1 + + ANAI_ENFAIL1 + + + + fr.insee + ltd20wke-GOP + 1 + + + + fr.insee + kwqj561a-QOP-kwqj8zg8 + 1 + OutParameter + + + fr.insee + ltd20wke-IP-1 + 1 + InParameter + + + if isnull(ltd20wke-IP-1) then 0 else 2025-cast(ltd20wke-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1nmcl-GI + 1 + + fr.insee + l4lgjbi8 + 1 + QuestionItem + + + fr.insee + lxynkubc + 1 + Variable + + + + vtl + + fr.insee + ltd1nmcl-IP-1 + 1 + + ANAI_ENFAIL2 + + + + fr.insee + ltd1nmcl-GOP + 1 + + + + fr.insee + l4lgjbi8-QOP-l4lg7r84 + 1 + OutParameter + + + fr.insee + ltd1nmcl-IP-1 + 1 + InParameter + + + if isnull(ltd1nmcl-IP-1) then 0 else 2025-cast(ltd1nmcl-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1z2u9-GI + 1 + + fr.insee + l4lgenh5 + 1 + QuestionItem + + + fr.insee + ly2ria72 + 1 + Variable + + + + vtl + + fr.insee + ltd1z2u9-IP-1 + 1 + + ANAI_ENFAIL3 + + + + fr.insee + ltd1z2u9-GOP + 1 + + + + fr.insee + l4lgenh5-QOP-l4lgj042 + 1 + OutParameter + + + fr.insee + ltd1z2u9-IP-1 + 1 + InParameter + + + if isnull(ltd1z2u9-IP-1) then 0 else 2025-cast(ltd1z2u9-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd22uk7-GI + 1 + + fr.insee + l4lgfphb + 1 + QuestionItem + + + fr.insee + ly2rkpc7 + 1 + Variable + + + + vtl + + fr.insee + ltd22uk7-IP-1 + 1 + + ANAI_ENFAIL4 + + + + fr.insee + ltd22uk7-GOP + 1 + + + + fr.insee + l4lgfphb-QOP-l4lgh2oy + 1 + OutParameter + + + fr.insee + ltd22uk7-IP-1 + 1 + InParameter + + + if isnull(ltd22uk7-IP-1) then 0 else 2025-cast(ltd22uk7-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd24w90-GI + 1 + + fr.insee + l4lgp1ft + 1 + QuestionItem + + + fr.insee + ly2ryw26 + 1 + Variable + + + + vtl + + fr.insee + ltd24w90-IP-1 + 1 + + ANAI_ENFAIL5 + + + + fr.insee + ltd24w90-GOP + 1 + + + + fr.insee + l4lgp1ft-QOP-l4lgleu5 + 1 + OutParameter + + + fr.insee + ltd24w90-IP-1 + 1 + InParameter + + + if isnull(ltd24w90-IP-1) then 0 else 2025-cast(ltd24w90-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1mo93-GI + 1 + + fr.insee + l8oi7q9f + 1 + QuestionItem + + + fr.insee + ly2rx97c + 1 + Variable + + + + vtl + + fr.insee + ltd1mo93-IP-1 + 1 + + ANAI_ENFAIL6 + + + + fr.insee + ltd1mo93-GOP + 1 + + + + fr.insee + l8oi7q9f-QOP-l8oijkad + 1 + OutParameter + + + fr.insee + ltd1mo93-IP-1 + 1 + InParameter + + + if isnull(ltd1mo93-IP-1) then 0 else 2025-cast(ltd1mo93-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1tr9u-GI + 1 + + fr.insee + l8okh65e + 1 + QuestionItem + + + fr.insee + ly2rz5zv + 1 + Variable + + + + vtl + + fr.insee + ltd1tr9u-IP-1 + 1 + + ANAI_ENFAIL7 + + + + fr.insee + ltd1tr9u-GOP + 1 + + + + fr.insee + l8okh65e-QOP-l8okdvkx + 1 + OutParameter + + + fr.insee + ltd1tr9u-IP-1 + 1 + InParameter + + + if isnull(ltd1tr9u-IP-1) then 0 else 2025-cast(ltd1tr9u-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1xvpk-GI + 1 + + fr.insee + l8ol9xy3 + 1 + QuestionItem + + + fr.insee + ly2rub86 + 1 + Variable + + + + vtl + + fr.insee + ltd1xvpk-IP-1 + 1 + + ANAI_ENFAIL8 + + + + fr.insee + ltd1xvpk-GOP + 1 + + + + fr.insee + l8ol9xy3-QOP-l8ol6h1q + 1 + OutParameter + + + fr.insee + ltd1xvpk-IP-1 + 1 + InParameter + + + if isnull(ltd1xvpk-IP-1) then 0 else 2025-cast(ltd1xvpk-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd23kmk-GI + 1 + + fr.insee + l473latk + 1 + QuestionItem + + + fr.insee + ly4bzjcl + 1 + QuestionItem + + + fr.insee + lywyltkf + 1 + Variable + + + fr.insee + ly4c5mxw + 1 + Variable + + + fr.insee + ly4bui4s + 1 + Variable + + + + vtl + + fr.insee + ltd23kmk-IP-1 + 1 + + RPPRENOM + + + + fr.insee + ltd23kmk-IP-2 + 1 + + VAL_PRENOM + + + + fr.insee + ltd23kmk-IP-3 + 1 + + PRENOM_X + + + + fr.insee + ltd23kmk-GOP + 1 + + + + fr.insee + RPPRENOM + 1 + InParameter + + + fr.insee + ltd23kmk-IP-1 + 1 + InParameter + + + + + fr.insee + l473latk-QOP-ll2h5il3 + 1 + OutParameter + + + fr.insee + ltd23kmk-IP-2 + 1 + InParameter + + + + + fr.insee + ly4bzjcl-QOP-ly4c9b6e + 1 + OutParameter + + + fr.insee + ltd23kmk-IP-3 + 1 + InParameter + + + if (nvl(ltd23kmk-IP-2,"") = "2") then ltd23kmk-IP-3 else ltd23kmk-IP-1 + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1w7di-GI + 1 + + fr.insee + m0kr9lfk + 1 + Variable + + + + vtl + + fr.insee + ltd1w7di-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + ltd1w7di-GOP + 1 + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + ltd1w7di-IP-1 + 1 + InParameter + + + if ltd1w7di-IP-1="1" then SEXE_CH else SEXE_CF + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1p2io-GI + 1 + + fr.insee + m0kr9lfk + 1 + Variable + + + + vtl + + fr.insee + ltd1p2io-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + ltd1p2io-GOP + 1 + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + ltd1p2io-IP-1 + 1 + InParameter + + + if ltd1p2io-IP-1="1" then SEXE_U1H else SEXE_U1F + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1rvdq-GI + 1 + + fr.insee + m0kr9lfk + 1 + Variable + + + + vtl + + fr.insee + ltd1rvdq-IP-1 + 1 + + TYPE_QUEST + + + + fr.insee + ltd1rvdq-GOP + 1 + + + + fr.insee + TYPE_QUEST + 1 + InParameter + + + fr.insee + ltd1rvdq-IP-1 + 1 + InParameter + + + if ltd1rvdq-IP-1="1" then SEXE_U2H else SEXE_U2F + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + ltd1vp73-GI + 1 + + fr.insee + llde3pgg + 1 + QuestionItem + + + fr.insee + lldrj7dd + 1 + Variable + + + + vtl + + fr.insee + ltd1vp73-IP-1 + 1 + + SEXE_CF + + + + fr.insee + ltd1vp73-GOP + 1 + + + + fr.insee + llde3pgg-QOP-lldeidzi + 1 + OutParameter + + + fr.insee + ltd1vp73-IP-1 + 1 + InParameter + + + if (isnull(ltd1vp73-IP-1)) then "" else (if ltd1vp73-IP-1="2" then "e" else "") + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwd7z56-GI + 1 + + fr.insee + kwqjmq2o + 1 + QuestionItem + + + fr.insee + lxynf7im + 1 + Variable + + + + vtl + + fr.insee + lvwd7z56-IP-1 + 1 + + ANAI_ENFLOG1 + + + + fr.insee + lvwd7z56-GOP + 1 + + + + fr.insee + kwqjmq2o-QOP-kwqjvmys + 1 + OutParameter + + + fr.insee + lvwd7z56-IP-1 + 1 + InParameter + + + if isnull(lvwd7z56-IP-1) then 0 else 2025-cast(lvwd7z56-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwcvvn8-GI + 1 + + fr.insee + l4ia7rxn + 1 + QuestionItem + + + fr.insee + lxync601 + 1 + Variable + + + + vtl + + fr.insee + lvwcvvn8-IP-1 + 1 + + ANAI_ENFLOG2 + + + + fr.insee + lvwcvvn8-GOP + 1 + + + + fr.insee + l4ia7rxn-QOP-l4iad1cc + 1 + OutParameter + + + fr.insee + lvwcvvn8-IP-1 + 1 + InParameter + + + if isnull(lvwcvvn8-IP-1) then 0 else 2025-cast(lvwcvvn8-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwcxiaz-GI + 1 + + fr.insee + l4ld3y0j + 1 + QuestionItem + + + fr.insee + lxyndb87 + 1 + Variable + + + + vtl + + fr.insee + lvwcxiaz-IP-1 + 1 + + ANAI_ENFLOG3 + + + + fr.insee + lvwcxiaz-GOP + 1 + + + + fr.insee + l4ld3y0j-QOP-l4ld1d4p + 1 + OutParameter + + + fr.insee + lvwcxiaz-IP-1 + 1 + InParameter + + + if isnull(lvwcxiaz-IP-1) then 0 else 2025-cast(lvwcxiaz-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwdaze4-GI + 1 + + fr.insee + l4le9rs3 + 1 + QuestionItem + + + fr.insee + lxynr77e + 1 + Variable + + + + vtl + + fr.insee + lvwdaze4-IP-1 + 1 + + ANAI_ENFLOG4 + + + + fr.insee + lvwdaze4-GOP + 1 + + + + fr.insee + l4le9rs3-QOP-l4le8tph + 1 + OutParameter + + + fr.insee + lvwdaze4-IP-1 + 1 + InParameter + + + if isnull(lvwdaze4-IP-1) then 0 else 2025-cast(lvwdaze4-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwd63xh-GI + 1 + + fr.insee + l4lffj1f + 1 + QuestionItem + + + fr.insee + lxynafj0 + 1 + Variable + + + + vtl + + fr.insee + lvwd63xh-IP-1 + 1 + + ANAI_ENFLOG5 + + + + fr.insee + lvwd63xh-GOP + 1 + + + + fr.insee + l4lffj1f-QOP-l4lfqb24 + 1 + OutParameter + + + fr.insee + lvwd63xh-IP-1 + 1 + InParameter + + + if isnull(lvwd63xh-IP-1) then 0 else 2025-cast(lvwd63xh-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwdayz6-GI + 1 + + fr.insee + l8n2lctv + 1 + QuestionItem + + + fr.insee + lxynudzk + 1 + Variable + + + + vtl + + fr.insee + lvwdayz6-IP-1 + 1 + + ANAI_ENFLOG6 + + + + fr.insee + lvwdayz6-GOP + 1 + + + + fr.insee + l8n2lctv-QOP-l8n2f2zr + 1 + OutParameter + + + fr.insee + lvwdayz6-IP-1 + 1 + InParameter + + + if isnull(lvwdayz6-IP-1) then 0 else 2025-cast(lvwdayz6-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwcxkrp-GI + 1 + + fr.insee + l8n3jmk8 + 1 + QuestionItem + + + fr.insee + lxyntbhy + 1 + Variable + + + + vtl + + fr.insee + lvwcxkrp-IP-1 + 1 + + ANAI_ENFLOG7 + + + + fr.insee + lvwcxkrp-GOP + 1 + + + + fr.insee + l8n3jmk8-QOP-l8n3qluw + 1 + OutParameter + + + fr.insee + lvwcxkrp-IP-1 + 1 + InParameter + + + if isnull(lvwcxkrp-IP-1) then 0 else 2025-cast(lvwcxkrp-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + fr.insee + lvwd4c2m-GI + 1 + + fr.insee + l8n3tya0 + 1 + QuestionItem + + + fr.insee + lxyne3cx + 1 + Variable + + + + vtl + + fr.insee + lvwd4c2m-IP-1 + 1 + + ANAI_ENFLOG8 + + + + fr.insee + lvwd4c2m-GOP + 1 + + + + fr.insee + l8n3tya0-QOP-l8n414mk + 1 + OutParameter + + + fr.insee + lvwd4c2m-IP-1 + 1 + InParameter + + + if isnull(lvwd4c2m-IP-1) then 0 else 2025-cast(lvwd4c2m-IP-1,integer) + + + + fr.insee + l4idqt1t + 1 + Loop + + + + + 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 + INSEE-COMMUN-MNR-DateTimedate-YYYY + 1 + YYYY + gYear + + 1900 + year-from-date(current-date()) + + + + + + fr.insee + StudyUnit-m4754kes + 1 + + + fr.insee + DataCollection-m4754kes + 1 + + fr.insee + QuestionScheme-m4754kes + 1 + QuestionScheme + + + fr.insee + ControlConstructScheme-m4754kes + 1 + ControlConstructScheme + + + fr.insee + InterviewerInstructionScheme-m4754kes + 1 + InterviewerInstructionScheme + + + fr.insee + InstrumentScheme-m4754kes + 1 + + fr.insee + Instrument-m4754kes + 1 + + ENQFAMI25 + + + Enquête Familles 2025 questionnaire + + A définir + + fr.insee + Sequence-m4754kes + 1 + Sequence + + + + + + diff --git a/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/lunaticFAM2025X01.json b/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/lunaticFAM2025X01.json new file mode 100644 index 00000000..2068ed1f --- /dev/null +++ b/src/test/resources/specs/RAWDATATESTCAMPAIGN/WEB/lunaticFAM2025X01.json @@ -0,0 +1 @@ +{"id":"m4754kes","componentType":"Questionnaire","modele":"ENQFAMI25","enoCoreVersion":"3.29.0-hotfix.2","lunaticModelVersion":"3.15.1","generatingDate":"06-12-2024 09:19:29","pagination":"question","maxPage":"4","label":{"value":"Enquête Familles 2025 ","type":"VTL|MD"},"components":[{"id":"l473bp2x","componentType":"Sequence","page":"1","label":{"value":"\"I - \" || \"La/les personne(s) concernée(s) par l'enquête\"","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"}},{"id":"l4idqt1t","componentType":"Loop","page":"2","depth":1,"paginatedLoop":false,"conditionFilter":{"value":"true","type":"VTL"},"loopDependencies":["RPNBQUEST"],"lines":{"min":{"value":"RPNBQUEST","type":"VTL"},"max":{"value":"RPNBQUEST","type":"VTL"}},"components":[{"id":"lywyuxtl","componentType":"Subsequence","page":"2","goToPage":"2","label":{"value":"\"Cette enquête concerne \" || RPPRENOM ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"}},{"id":"question-l473latk","componentType":"Question","page":"2","label":{"value":"\"Confirmez-vous l'orthographe de votre prénom : \" || RPPRENOM || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lq0sf9ks","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"**Attention** : il est _très important_ pour la suite du questionnaire de répondre à cette question.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l473latk","componentType":"Radio","mandatory":false,"page":"2","orientation":"vertical","controls":[{"id":"l473latk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(VAL_PRENOM,\"\") = \"\"))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VAL_PRENOM"}}]},{"id":"question-ly4bzjcl","componentType":"Question","page":"2","label":{"value":"\"Comment s'écrit votre prénom ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(nvl(VAL_PRENOM,\"\") = \"2\")","type":"VTL"},"components":[{"id":"ly4bzjcl","componentType":"Input","mandatory":false,"page":"2","maxLength":249,"controls":[{"id":"ly4bzjcl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_X) or PRENOM_X=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_X"}}]},{"id":"question-ly4blyt6","componentType":"Question","page":"2","label":{"value":"\"Confirmez-vous votre date de naissance : \" || cast(RPJNAISENQ,string) || \"/\" || cast(RPMNAISENQ,string) || \"/\" || cast(RPANAISENQ,string) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"ly4bp25d","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"**Attention** : il est _très important_ pour la suite du questionnaire de répondre à cette question.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"ly4blyt6","componentType":"Radio","mandatory":false,"page":"2","orientation":"vertical","controls":[{"id":"ly4blyt6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(VAL_ANNAISS) or VAL_ANNAISS=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VAL_ANNAISS"}}]},{"id":"question-kwq9wijq","componentType":"Question","page":"2","label":{"value":"\"Quelle est votre date de naissance ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(nvl(VAL_ANNAISS,\"\") = \"2\")","type":"VTL"},"components":[{"id":"kwq9wijq","componentType":"Datepicker","mandatory":false,"page":"2","min":"1900-01-01","max":"2025-01-01","dateFormat":"YYYY-MM-DD","controls":[{"id":"kwq9wijq-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(DATNAIS_X)) and (cast(DATNAIS_X, date, \"YYYY-MM-DD\")cast(\"2025-01-01\", date, \"YYYY-MM-DD\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1900-01-01 et 2025-01-01.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwq9wijq-CI-0","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(DATNAIS_X, \"\") = \"\"))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"DATNAIS_X"}}]},{"id":"question-ly4cuvn6","componentType":"Question","page":"2","label":{"value":" \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", confirmez-vous être mineur\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" au 1er janvier 2025 ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(cast(ANAISS,integer) >= 2008)","type":"VTL"},"components":[{"id":"ly4cuvn6","componentType":"Radio","mandatory":false,"page":"2","orientation":"vertical","controls":[{"id":"ly4cuvn6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(MINEUR) or MINEUR=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"MINEUR"}}]}]},{"id":"lywy061z","componentType":"Roundabout","page":"3","label":{"value":"\"Questionnaire de chaque personne concernée par l'enquête\"","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"controls":[{"id":"lywy061z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(nvl(COUPLE,\"\")=\"\")","type":"VTL"},"errorMessage":{"value":"\"Attention, vous devez remplir le questionnaire de \" || PRENOMREP ","type":"VTL|MD"},"type":"ROW"}],"iterations":{"value":"count(VAL_PRENOM)","type":"VTL"},"locked":false,"progressVariable":"B_PRENOMREP_PROGRESS","item":{"label":{"value":"PRENOMREP ","type":"VTL|MD"},"description":{"value":"if nvl(MINEUR,\"\")=\"1\" then (nvl(PRENOMREP,\"cette personne\") || \" est mineur(e) donc n'est pas interrogé(e)\") else \"Informations sur \" || nvl(PRENOMREP,\"cette personne\") ","type":"VTL|MD"}},"components":[{"id":"kwq9l9z1","componentType":"Sequence","page":"3.1","label":{"value":"\"II - \" || \"Informations concernant \" || nvl(PRENOMREP,\"cette personne\") ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"\"Vous allez remplir le questionnaire de l'enquête Familles de \"|| nvl(PRENOMREP,\"cette personne\") || \".\" ","type":"VTL|MD"}},{"id":"question-kwq9y19w","componentType":"Question","page":"3.2","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", êtes-vous actuellement en couple [?](. 'Pourquoi cette question ? \r\nPour identifier l’ensemble des situations de vie en couple, actuelles ou passées. En effet, le recensement ne permet de connaître que les couples vivant dans le même logement. \r\nCette question est essentielle pour comprendre la diversité des histoires et situations de couple.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"kwq9y19w","componentType":"Radio","mandatory":false,"page":"3.2","orientation":"vertical","controls":[{"id":"kwq9y19w-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COUPLE) or COUPLE = \"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, avec quelqu'un qui vit avec vous dans ce logement\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Oui, avec quelqu'un qui vit dans un autre logement\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, mais vous avez déjà été en couple par le passé\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Non, vous n'avez jamais été en couple\"","type":"VTL|MD"}}],"response":{"name":"COUPLE"}}]},{"id":"question-l0qkj23a","componentType":"Question","page":"3.3","label":{"value":"\"Pour quelle raison principale ne vivez-vous pas ensemble [?](. 'Pourquoi cette question ?\r\nPour mieux comprendre pourquoi certains couples ne vivent pas dans le même logement.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE=\"2\")","type":"VTL"},"components":[{"id":"l0qkj23a","componentType":"Radio","mandatory":false,"page":"3.3","orientation":"vertical","controls":[{"id":"l0qkj23a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RAISON_VIE_CJT) or RAISON_VIE_CJT=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pour des raisons professionnelles\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Pour des raisons de santé (votre conjoint(e) vit en EHPAD, etc.)\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Pour une autre raison\"","type":"VTL|MD"}}],"response":{"name":"RAISON_VIE_CJT"}}]},{"id":"question-li353rhu","componentType":"Question","page":"3.4","label":{"value":"\"Pouvez-vous préciser cette raison ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(RAISON_VIE_CJT =\"3\")","type":"VTL"},"components":[{"id":"li353rhu","componentType":"Input","mandatory":false,"page":"3.4","maxLength":249,"response":{"name":"PRECIS_VIECJT"}}]},{"id":"question-lyye1a7t","componentType":"Question","page":"3.5","label":{"value":"\"Vivez-vous à moins d'une heure de votre conjoint(e) ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE=\"2\")","type":"VTL"},"components":[{"id":"lyye1a7t","componentType":"Radio","mandatory":false,"page":"3.5","orientation":"vertical","controls":[{"id":"lyye1a7t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROX_VIE_CJT) or PROX_VIE_CJT=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PROX_VIE_CJT"}}]},{"id":"kwqaaqd3","componentType":"Sequence","page":"3.6","label":{"value":"\"III - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\") ","type":"VTL"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"description":{"value":"\"\" || (nvl(PRENOMREP,\"Madame/Monsieur\")) || \", quelques questions sur votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"conjoint(e) actuel(le) pour étudier la diversité des couples.\"\r\nelse \"dernier(ère) conjoint(e), pour étudier la diversité des couples.\") ","type":"VTL|MD"}},{"id":"question-l34grb6h","componentType":"Question","page":"3.7","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" le prénom de votre \" || (if (COUPLE=\"1\" or COUPLE =\"2\") then \"conjoint(e) actuel(le)\" else \"dernier(ère) conjoint(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre conjoint(e) avec son prénom.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\"\r\n ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"l34grb6h","componentType":"Input","mandatory":false,"page":"3.7","maxLength":249,"controls":[{"id":"l34grb6h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_C) or PRENOM_C=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_C"}}]},{"id":"l154t9l0","componentType":"Subsequence","goToPage":"3.8","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\") ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"}},{"id":"question-kwqa0ism","componentType":"Question","page":"3.8","label":{"value":"\"Quelle \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" la date de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint(e) actuel(le) \" else \"votre dernier(ère) conjoint(e) \") else PRENOM_C) || \" [?](. 'Pourquoi cette question ? \r\nPour mesurer l’écart d’âge entre conjoints.\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"declarations":[{"id":"lv2hty76","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if COUPLE=\"3\" then \"Indiquez une année approximative si vous ne savez pas précisément.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"kwqa0ism","componentType":"Datepicker","mandatory":false,"page":"3.8","min":"1900-01-01","max":"2011-01-01","dateFormat":"YYYY-MM-DD","controls":[{"id":"kwqa0ism-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(DATNAIS_C)) and (cast(DATNAIS_C, date, \"YYYY-MM-DD\")cast(\"2011-01-01\", date, \"YYYY-MM-DD\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1900-01-01 et 2011-01-01.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqa0ism-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(DATNAIS_C, \"\") = \"\"))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer la date attendue.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"DATNAIS_C"}}]},{"id":"question-kwqabjga","componentType":"Question","page":"3.9","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Votre conjoint(e) est-il/elle ?\" else \"Votre dernier(ère) conjoint(e) était-il/elle ?\") else (PRENOM_C || \" \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est-il/elle ?\" else \"était-il/elle ?\"))) ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")","type":"VTL"},"components":[{"id":"kwqabjga","componentType":"Radio","mandatory":false,"page":"3.9","orientation":"vertical","controls":[{"id":"kwqabjga-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_CH) or SEXE_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une femme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Un homme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_CH"}}]},{"id":"question-l4o59ei7","componentType":"Question","page":"3.10","label":{"value":"\"\" || (if nvl(PRENOM_C,\"\") <> \"\" then PRENOM_C else (if ((COUPLE =\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH))) then \"Votre conjoint\" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"Votre conjointe\" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"Votre dernier conjoint\" else \"Votre dernière conjointe\")))) || \"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" est\" else \" était\") || \"-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il né\" else \"elle née\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4pa18h0","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","type":"VTL"},"components":[{"id":"l4o59ei7","componentType":"Radio","mandatory":false,"page":"3.10","orientation":"vertical","controls":[{"id":"l4o59ei7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LIEUNAIS_CH) or LIEUNAIS_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LIEUNAIS_CH"}}]},{"id":"question-l0quikkt","componentType":"Question","page":"3.11","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" le département de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o5rn9i","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","type":"VTL"},"components":[{"id":"l0quikkt","componentType":"Suggester","mandatory":false,"page":"3.11","maxLength":20,"controls":[{"id":"l0quikkt-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DNAI_CH) or DNAI_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DNAI_CH"}}]},{"id":"question-l4o57595","componentType":"Question","page":"3.12","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" le pays de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o5lb2p","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")","type":"VTL"},"components":[{"id":"l4o57595","componentType":"Suggester","mandatory":false,"page":"3.12","maxLength":20,"controls":[{"id":"l4o57595-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PNAI_CH) or PNAI_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PNAI_CH"}}]},{"id":"question-l7ywou64","componentType":"Question","page":"3.13","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"Votre conjoint\" else \"Votre conjointe\") else PRENOM_C) || \" travaille-t-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il \" else \"elle \") || \"ou a-t-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il \" else \"elle \") || \"déjà travaillé [?](. 'Pourquoi cette question ?\r\nPour connaître la situation d’emploi et la catégorie sociale de votre conjoint(e) actuel(le). \r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","type":"VTL"},"components":[{"id":"l7ywou64","componentType":"Radio","mandatory":false,"page":"3.13","orientation":"vertical","controls":[{"id":"l7ywou64-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAV_CH_C) or TRAV_CH_C=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_CH_C"}}]},{"id":"question-m0gppl9e","componentType":"Question","page":"3.14","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CH =\"2\" or isnull(SEXE_CH)) then \"Votre dernier conjoint\" else \"Votre dernière conjointe\") else PRENOM_C) || \" avait-\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il \" else \"elle \") || \"déjà travaillé [?](. 'Pourquoi cette question ?\r\nPour connaître la situation d’emploi et la catégorie sociale de votre dernier(ère) conjoint(e). \r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","type":"VTL"},"components":[{"id":"m0gppl9e","componentType":"Radio","mandatory":false,"page":"3.14","orientation":"vertical","controls":[{"id":"m0gppl9e-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAV_CH_P) or TRAV_CH_P=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_CH_P"}}]},{"id":"question-l0qudtd2","componentType":"Question","page":"3.15","label":{"value":"\"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Quelle est/était\" else \"Lorsque vous étiez en couple, quelle était\") || \" la profession principale de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o5bu87","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","type":"VTL"},"components":[{"id":"l0qudtd2","componentType":"Suggester","mandatory":false,"page":"3.15","maxLength":20,"storeName":"L_PCS_HOMMES-2-1-0","response":{"name":"PROF_CH1"}}]},{"id":"question-lldp4562","componentType":"Question","page":"3.16","label":{"value":"\"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Quelle est/était\" else \"Lorsque vous étiez en couple, quelle était\") || \" la profession principale de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lldoqdme","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","type":"VTL"},"components":[{"id":"lldp4562","componentType":"Suggester","mandatory":false,"page":"3.16","maxLength":20,"storeName":"L_PCS_FEMMES-2-1-0","response":{"name":"PROF_CH2"}}]},{"id":"question-l43zea6v","componentType":"Question","page":"3.17","label":{"value":"\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","type":"VTL"},"components":[{"id":"l43zea6v","componentType":"Input","mandatory":false,"page":"3.17","maxLength":249,"controls":[{"id":"l43zea6v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROF_C2H) or PROF_C2H=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PROF_C2H"}}]},{"id":"question-l0quphwx","componentType":"Question","page":"3.18","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est/était\" else \"était\") || \" le statut professionnel de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","type":"VTL"},"components":[{"id":"l0quphwx","componentType":"Radio","mandatory":false,"page":"3.18","orientation":"vertical","controls":[{"id":"l0quphwx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(STATUT_CH=\"\" or isnull(STATUT_CH))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"A son compte (y compris gérant\" || LIBSEXCJH || \" de société salarié\" || LIBSEXCJH || \")\" ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Salarié\" || LIBSEXCJH || \" de la fonction publique (Etat, territoriale, hospitalière)\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Salarié\" || LIBSEXCJH || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Salarié\" || LIBSEXCJH || \" d'un particulier\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Aide familial\" || LIBSEXCJH || \" non rémunéré\" || LIBSEXCJH ","type":"VTL|MD"}}],"response":{"name":"STATUT_CH"}}]},{"id":"question-lpsj90yi","componentType":"Question","page":"3.19","label":{"value":"\"En comptant \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint\" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe\" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint\" else \"votre dernière conjointe\"))) else PRENOM_C) || \", combien de personnes \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"travaillent/travaillaient\" else \"travaillaient\") || \" dans son entreprise ?\" ","type":"VTL|MD"},"declarations":[{"id":"lpsjaaiu","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","type":"VTL"},"components":[{"id":"lpsj90yi","componentType":"Radio","mandatory":false,"page":"3.19","orientation":"vertical","controls":[{"id":"lpsj90yi-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_IND_CH=\"\" or isnull(SAL_IND_CH))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une seule personne : \" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"il\" else \"elle\") || \" travaille ou travaillait seul\" || LIBSEXCJH ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Entre 2 à 10 personnes\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Entre 11 à 49 personnes\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"50 personnes ou plus\"","type":"VTL|MD"}}],"response":{"name":"SAL_IND_CH"}}]},{"id":"question-llgt315z","componentType":"Question","page":"3.20","label":{"value":"\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","type":"VTL"},"components":[{"id":"llgt315z","componentType":"Radio","mandatory":false,"page":"3.20","orientation":"vertical","controls":[{"id":"llgt315z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_FP_CH) or SAL_FP_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXCJH ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXCJH ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Technici\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent\" || LIBSEXCJH || \" de catégorie C de la fonction publique\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Agent\" || LIBSEXCJH || \" de catégorie B de la fonction publique\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Agent\" || LIBSEXCJH || \" de catégorie A de la fonction publique\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_FP_CH"}}]},{"id":"question-llgt75zv","componentType":"Question","page":"3.21","label":{"value":"\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CH=\"1\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CH =\"2\" or isnull(SEXE_CH))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")","type":"VTL"},"components":[{"id":"llgt75zv","componentType":"Radio","mandatory":false,"page":"3.21","orientation":"vertical","controls":[{"id":"llgt75zv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_ENT_CH) or SAL_ENT_CH=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXCJH ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXCJH || \", technici\" || (if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"en\" else \"enne\") || \" d'atelier\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Employé\" || LIBSEXCJH || \" de bureau, de commerce, de services\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent de maîtrise (y compris administrative ou commerciale)\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Technici\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Ingénieur\" || LIBSEXCJH || \", cadre d'entreprise\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_ENT_CH"}}]},{"id":"question-llde3pgg","componentType":"Question","page":"3.22","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Votre conjoint(e) est-il/elle ?\" else \"Votre dernier(ère) conjoint(e) était-il/elle ?\") else (PRENOM_C || \" \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est-il/elle ?\" else \"était-il/elle ?\"))) ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")","type":"VTL"},"components":[{"id":"llde3pgg","componentType":"Radio","mandatory":false,"page":"3.22","orientation":"vertical","controls":[{"id":"llde3pgg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_CF) or SEXE_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Un homme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une femme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_CF"}}]},{"id":"question-lldpi629","componentType":"Question","page":"3.23","label":{"value":"\"\" || (if nvl(PRENOM_C,\"\") <> \"\" then PRENOM_C else (if ((COUPLE =\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF))) then \"Votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"Votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"Votre dernier conjoint \" else \"Votre dernière conjointe \")))) || \"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" est\" else \" était\") || \"-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il né\" else \"elle née\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"declarations":[{"id":"lldp0f22","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","type":"VTL"},"components":[{"id":"lldpi629","componentType":"Radio","mandatory":false,"page":"3.23","orientation":"vertical","controls":[{"id":"lldpi629-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LIEUNAIS_CF) or LIEUNAIS_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LIEUNAIS_CF"}}]},{"id":"question-lldp8203","componentType":"Question","page":"3.24","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" le département de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lldpcfe1","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","type":"VTL"},"components":[{"id":"lldp8203","componentType":"Suggester","mandatory":false,"page":"3.24","maxLength":20,"controls":[{"id":"lldp8203-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DNAI_CF) or DNAI_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DNAI_CF"}}]},{"id":"question-lldpejfa","componentType":"Question","page":"3.25","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est\" else \"était\") || \" le pays de naissance de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lldp3of6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")","type":"VTL"},"components":[{"id":"lldpejfa","componentType":"Suggester","mandatory":false,"page":"3.25","maxLength":20,"controls":[{"id":"lldpejfa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PNAI_CF) or PNAI_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PNAI_CF"}}]},{"id":"question-m0gqs0nr","componentType":"Question","page":"3.26","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\") else PRENOM_C) || \" travaille-t-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il \" else \"elle \") || \"ou a-t-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il \" else \"elle \") || \"déjà travaillé [?](. 'Pourquoi cette question ?\r\nPour connaître la situation d’emploi et la catégorie sociale de votre conjoint(e) actuel(le). \r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","type":"VTL"},"components":[{"id":"m0gqs0nr","componentType":"Radio","mandatory":false,"page":"3.26","orientation":"vertical","controls":[{"id":"m0gqs0nr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAV_CF_C) or TRAV_CF_C=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_CF_C"}}]},{"id":"question-m0gr51no","componentType":"Question","page":"3.27","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CF =\"1\" or isnull(SEXE_CF)) then \"Votre dernier conjoint\" else \"Votre dernière conjointe\") else PRENOM_C) || \" avait-\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il \" else \"elle \") || \"déjà travaillé [?](. 'Pourquoi cette question ?\r\nPour connaître la situation d’emploi et la catégorie sociale de votre dernier(ère) conjoint(e). \r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","type":"VTL"},"components":[{"id":"m0gr51no","componentType":"Radio","mandatory":false,"page":"3.27","orientation":"vertical","controls":[{"id":"m0gr51no-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAV_CF_P) or TRAV_CF_P=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_CF_P"}}]},{"id":"question-l4quaxvt","componentType":"Question","page":"3.28","label":{"value":"\"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Quelle est/était\" else \"Lorsque vous étiez en couple, quelle était\") || \" la profession principale de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjoint\" else \"votre dernier conjoint\") else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4qu3r4l","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","type":"VTL"},"components":[{"id":"l4quaxvt","componentType":"Suggester","mandatory":false,"page":"3.28","maxLength":20,"storeName":"L_PCS_HOMMES-2-1-0","response":{"name":"PROF_CF1"}}]},{"id":"question-lldpqtrp","componentType":"Question","page":"3.29","label":{"value":"\"\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"Quelle est/était\" else \"Lorsque vous étiez en couple, quelle était\") || \" la profession principale de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") then \"votre conjointe\" else \"votre dernière conjointe\") else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lldp9mst","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","type":"VTL"},"components":[{"id":"lldpqtrp","componentType":"Suggester","mandatory":false,"page":"3.29","maxLength":20,"storeName":"L_PCS_FEMMES-2-1-0","response":{"name":"PROF_CF2"}}]},{"id":"question-lldqd2sd","componentType":"Question","page":"3.30","label":{"value":"\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","type":"VTL"},"components":[{"id":"lldqd2sd","componentType":"Input","mandatory":false,"page":"3.30","maxLength":249,"controls":[{"id":"lldqd2sd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROF_C2F) or PROF_C2F=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PROF_C2F"}}]},{"id":"question-llmhdvun","componentType":"Question","page":"3.31","label":{"value":"\"Quel \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"est/était\" else \"était\") || \" le statut professionnel de \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","type":"VTL"},"components":[{"id":"llmhdvun","componentType":"Radio","mandatory":false,"page":"3.31","orientation":"vertical","controls":[{"id":"llmhdvun-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(STATUT_CF) or STATUT_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"A son compte (y compris gérant\" || LIBSEXCJF || \" de société salarié\" || LIBSEXCJF || \")\" ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Salarié\" || LIBSEXCJF || \" de la fonction publique (Etat, territoriale, hospitalière)\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Salarié\" || LIBSEXCJF || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Salarié\" || LIBSEXCJF || \" d'un particulier\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Aide familial\" || LIBSEXCJF || \" non rémunéré\" || LIBSEXCJF ","type":"VTL|MD"}}],"response":{"name":"STATUT_CF"}}]},{"id":"question-lpsiiaoa","componentType":"Question","page":"3.32","label":{"value":"\"En comptant \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint\" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe\" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint\" else \"votre dernière conjointe\"))) else PRENOM_C) || \", combien de personnes \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"travaillent/travaillaient\" else \"travaillaient\") || \" dans son entreprise ?\" ","type":"VTL|MD"},"declarations":[{"id":"lpsj3626","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","type":"VTL"},"components":[{"id":"lpsiiaoa","componentType":"Radio","mandatory":false,"page":"3.32","orientation":"vertical","controls":[{"id":"lpsiiaoa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_IND_CF=\"\" or isnull(SAL_IND_CF))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une seule personne : \" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"il\" else \"elle\") || \" travaille ou travaillait seul\" || LIBSEXCJF ","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":"SAL_IND_CF"}}]},{"id":"question-llmhi6fd","componentType":"Question","page":"3.33","label":{"value":"\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est/était ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","type":"VTL"},"components":[{"id":"llmhi6fd","componentType":"Radio","mandatory":false,"page":"3.33","orientation":"vertical","controls":[{"id":"llmhi6fd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_FP_CF) or SAL_FP_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXCJF ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXCJF ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Technici\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent\" || LIBSEXCJF || \" de catégorie C de la fonction publique\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Agent\" || LIBSEXCJF || \" de catégorie B de la fonction publique\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Agent\" || LIBSEXCJF || \" de catégorie A de la fonction publique\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_FP_CF"}}]},{"id":"question-llnh2qpm","componentType":"Question","page":"3.34","label":{"value":"\"Dans son emploi, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and SEXE_CF=\"2\") then \"votre conjointe \" else (if (COUPLE=\"3\" and (SEXE_CF =\"1\" or isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" est/était ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")","type":"VTL"},"components":[{"id":"llnh2qpm","componentType":"Radio","mandatory":false,"page":"3.34","orientation":"vertical","controls":[{"id":"llnh2qpm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_ENT_CF) or SAL_ENT_CF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXCJF ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXCJF || \", technici\" || (if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\") || \" d'atelier\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Employé\" || LIBSEXCJF || \" de bureau, de commerce, de services\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent de maîtrise (y compris administrative ou commerciale)\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Technici\" || if (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Ingénieur\" || LIBSEXCJF || \", cadre d'entreprise\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_ENT_CF"}}]},{"id":"l27f5twb","componentType":"Subsequence","page":"3.35","goToPage":"3.35","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", les étapes de votre\" || (if (COUPLE=\"3\") then \" dernière\" else \"\") || \" vie en couple \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \"actuelle \" else \" \") ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur votre \" || if (COUPLE=\"1\" or COUPLE =\"2\") then \" vie en couple actuelle pour mesurer par exemple la durée des couples ou savoir comment et quand les couples formalisent leur union (mariage, pacs).\"\r\nelse \" dernière période de vie en couple pour connaître la durée des couples ou savoir combien de personnes se remettent en couple après une séparation ou le décès de leur conjoint(e).\" ","type":"VTL|MD"}},{"id":"question-l27dlmvl","componentType":"Question","page":"3.36","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", en quelle année vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" [?](. 'Pourquoi cette question ? \r\nPour mesurer la durée des unions et reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour connaître les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"l27dlmvl","componentType":"Datepicker","mandatory":false,"page":"3.36","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l27dlmvl-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_U)) and (cast(ANNEE_U, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dlmvl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_U) or ANNEE_U=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dlmvl-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U)) and not(isnull(ANAIS)) and cast(ANNEE_U,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dlmvl-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U)) and not(isnull(ANNAISCJ)) and cast(ANNEE_U,integer) < cast(ANNAISCJ,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mise en couple antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dlmvl-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U)) and not(isnull(ANAIS)) and (ANAIS + 15) > cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dlmvl-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U)) and not(isnull(ANNAISCJ)) and (cast(ANNAISCJ,integer) + 15) > cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_U"}}]},{"id":"question-kwqa4zjf","componentType":"Question","page":"3.37","label":{"value":"\"Vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" (même si vous vous êtes marié\" || (if ((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) then \"s)\" else (if (SEXE_CF =\"2\" and isnull(SEXE_CH)) then \"es)\" else \"s)\")) || \" [?](. 'Pourquoi cette question ? \r\nPour savoir combien de couples sont pacsés et donnent un cadre juridique à leur union. \r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"kwqa4zjf","componentType":"Radio","mandatory":false,"page":"3.37","orientation":"vertical","controls":[{"id":"kwqa4zjf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PACS) or PACS=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PACS"}}]},{"id":"question-l0qu7e2g","componentType":"Question","page":"3.38","label":{"value":"\"En quelle année vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")","type":"VTL"},"components":[{"id":"l0qu7e2g","componentType":"Datepicker","mandatory":false,"page":"3.38","min":"1999","max":"2025","dateFormat":"YYYY","controls":[{"id":"l0qu7e2g-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_PACS)) and (cast(ANNEE_PACS, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1999 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qu7e2g-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_PACS) or ANNEE_PACS=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qu7e2g-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANAIS)) and cast(ANNEE_PACS,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qu7e2g-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_PACS,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qu7e2g-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANNAISCJ)) and (cast(ANNAISCJ,integer) + 15 > cast(ANNEE_PACS,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qu7e2g-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_U)) and cast(ANNEE_PACS,integer) < cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de pacs antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_PACS"}}]},{"id":"question-l0qujqzn","componentType":"Question","page":"3.39","label":{"value":"\"Vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" [?](. 'Pourquoi cette question ? \r\nPour savoir combien de couples sont mariés et donnent un cadre juridique à leur union.\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"l0qujqzn","componentType":"Radio","mandatory":false,"page":"3.39","orientation":"vertical","controls":[{"id":"l0qujqzn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(MARI) or MARI=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"MARI"}}]},{"id":"question-l0qul94p","componentType":"Question","page":"3.40","label":{"value":"\"En quelle année vous \" || (if (COUPLE=\"3\") then \"étiez\" else \"êtes\") || \"-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\") and ((SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" ? \" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")","type":"VTL"},"components":[{"id":"l0qul94p","componentType":"Datepicker","mandatory":false,"page":"3.40","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l0qul94p-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_MARI)) and (cast(ANNEE_MARI, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_MARI) or ANNEE_MARI =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI)) and not(isnull(ANAIS)) and cast(ANNEE_MARI,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_MARI,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI)) and not(isnull(ANNAISCJ)) and (cast(ANNAISCJ,integer) + 15 > cast(ANNEE_MARI,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre l'année de naissance de votre conjoint(e) et celle de votre mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI)) and not(isnull(ANNEE_U)) and cast(ANNEE_MARI,integer) < cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mariage antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l0qul94p-CI-5","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI)) and not(isnull(ANNEE_PACS)) and ANNEE_MARI < ANNEE_PACS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mariage antérieure à votre année de pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_MARI"}}]},{"id":"question-l5kszr2f","componentType":"Question","page":"3.41","label":{"value":"\"Si vous n'êtes plus en couple, est-ce parce que [...](. 'Pourquoi cette question ? \r\nPour savoir comment se terminent les unions, et par exemple savoir si les personnes seules le sont à la suite d’une séparation ou du décès de leur conjoint(e).\r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","type":"VTL"},"components":[{"id":"l5kszr2f","componentType":"Radio","mandatory":false,"page":"3.41","orientation":"vertical","controls":[{"id":"l5kszr2f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEPARE) or SEPARE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"...vous vous êtes séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"...\" || (if (nvl(PRENOM_C,\"\")=\"\") then (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint\" else \"votre dernière conjointe\") else PRENOM_C) || \" est décédé\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))) then \" \" else \"e \") ","type":"VTL|MD"}}],"response":{"name":"SEPARE"}}]},{"id":"question-l27dzhpw","componentType":"Question","page":"3.42","label":{"value":"\"En quelle année vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") || \" avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (SEXE_CH=\"2\" and isnull(SEXE_CF)) or (SEXE_CF=\"1\" and isnull(SEXE_CH)) or (isnull(SEXE_CH) and isnull(SEXE_CF)) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else PRENOM_C) || \" [?](. 'Pourquoi cette question ? \r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.\r\nEn particulier, pour savoir depuis combien de temps les personnes à la tête d’une famille monoparentale sont sans conjoint(e).')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")","type":"VTL"},"components":[{"id":"l27dzhpw","componentType":"Datepicker","mandatory":false,"page":"3.42","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l27dzhpw-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_S)) and (cast(ANNEE_S, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhpw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_S) or ANNEE_S=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhpw-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S)) and not(isnull(ANAIS)) and cast(ANNEE_S,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhpw-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S)) and not(isnull(ANNAISCJ)) and cast(ANNEE_S,integer) < cast(ANNAISCJ,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de séparation antérieure à l'année de naissance de votre conjoint(e). Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhpw-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S)) and not(isnull(ANNEE_U)) and cast(ANNEE_S,integer) < cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_S"}}]},{"id":"question-l155mqhc","componentType":"Question","page":"3.43","label":{"value":"\"En quelle année \" || (if(nvl(PRENOM_C,\"\")=\"\") then (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint \" else \"votre dernière conjointe \") else PRENOM_C) || \" est-\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" décédé\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"\" else \"e\") || \" [?](. 'Pourquoi cette question ? \r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")","type":"VTL"},"components":[{"id":"l155mqhc","componentType":"Datepicker","mandatory":false,"page":"3.43","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l155mqhc-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_D)) and (cast(ANNEE_D, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_D) or ANNEE_D=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D)) and not(isnull(ANNAISCJ)) and cast(ANNEE_D,integer) < cast(ANNAISCJ,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D)) and not(isnull(ANAIS)) and cast(ANNEE_D,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D)) and not(isnull(ANNEE_U)) and cast(ANNEE_D,integer) < cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D)) and not(isnull(ANNEE_PACS)) and cast(ANNEE_D,integer) < cast(ANNEE_PACS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l155mqhc-CI-5","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D)) and not(isnull(ANNEE_MARI)) and cast(ANNEE_D,integer) < cast(ANNEE_MARI,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_D"}}]},{"id":"question-l8lz0355","componentType":"Question","page":"3.44","label":{"value":"\"Avez-vous vécu avec \" || (if (nvl(PRENOM_C,\"\")=\"\") then (((if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre dernier conjoint\" else \"votre dernière conjointe\"))) else PRENOM_C) || \", dans le même logement, pendant au moins 6 mois sous le même toit, avec ou sans mariage [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","type":"VTL"},"components":[{"id":"l8lz0355","componentType":"Radio","mandatory":false,"page":"3.44","orientation":"vertical","controls":[{"id":"l8lz0355-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(VECU_C) or VECU_C=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VECU_C"}}]},{"id":"ljmotpyk","componentType":"Subsequence","page":"3.45","goToPage":"3.45","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", les enfants de votre\" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\") ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur les enfants de votre \" || (if (COUPLE=\"1\" or COUPLE=\"2\") then \" conjoint(e) actuel(le) \" else \" dernier(ère) conjoint(e) \") || nvl(PRENOM_C,\"\") || \".\r\nCes informations sont essentielles pour répondre à des questions comme ''Comment se reforment les couples après avoir eu des enfants d’une précédente union ?''.\"\r\n\r\n\r\n ","type":"VTL|MD"}},{"id":"question-l43u9qqf","componentType":"Question","page":"3.46","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", avant d'être en couple avec vous, \" || (if (nvl(PRENOM_C,\"\")=\"\") then (if (COUPLE=\"1\" or COUPLE=\"2\") and ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint \" else (if ((COUPLE =\"1\" or COUPLE=\"2\") and ((SEXE_CF =\"2\" and isnull(SEXE_CH)) or (SEXE_CH = \"1\" and isnull(SEXE_CF)))) then \"votre conjointe \" else (if (COUPLE=\"3\" and ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF)))) then \"votre dernier conjoint \" else \"votre dernière conjointe \"))) else PRENOM_C) || \" avait-\" || (if (((nvl(SEXE_CF,\"\")=\"\") and (nvl(SEXE_CH,\"\")=\"\")) or (SEXE_CF =\"1\" and isnull(SEXE_CH)) or (SEXE_CH = \"2\" and isnull(SEXE_CF))or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" déjà des enfants [?](. 'Pourquoi cette question ? \r\nPour savoir comment se (re)construisent les familles.\r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"components":[{"id":"l43u9qqf","componentType":"Radio","mandatory":false,"page":"3.46","orientation":"vertical","controls":[{"id":"l43u9qqf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ENFAV_C) or ENFAV_C=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ENFAV_C"}}]},{"id":"question-l43u4x96","componentType":"Question","page":"3.47","label":{"value":"\"Avant d’être en couple avec vous, combien \" || (if (nvl(PRENOM_C,\"\")=\"\") then (((if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"votre conjoint\" else \"votre conjointe\"))) else PRENOM_C) || \" avait-\" || (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" d’enfants ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")","type":"VTL"},"components":[{"id":"l43u4x96","componentType":"InputNumber","mandatory":false,"page":"3.47","min":1.0,"max":20.0,"decimals":0,"controls":[{"id":"l43u4x96-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_C)) and (1>NBENFAV_C or 20NBENFAV_C)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l43u4x96-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_C"},"description":{"value":"Format attendu : un nombre entre 1 et 20","type":"TXT"}}]},{"id":"question-l5jnmvs2","componentType":"Question","page":"3.48","label":{"value":"\"Cet enfant vit-il ou a-t-il vécu avec vous ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)","type":"VTL"},"components":[{"id":"l5jnmvs2","componentType":"Radio","mandatory":false,"page":"3.48","orientation":"vertical","controls":[{"id":"l5jnmvs2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_VENU_C1) or NBENFAV_VENU_C1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFAV_VENU_C1"}}]},{"id":"question-l43why6c","componentType":"Question","page":"3.49","label":{"value":"\"Parmi eux, combien vivent ou ont vécu avec vous ?\"","type":"VTL|MD"},"declarations":[{"id":"liiz5sj3","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucun, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))","type":"VTL"},"components":[{"id":"l43why6c","componentType":"InputNumber","mandatory":false,"page":"3.49","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l43why6c-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_VENU_C)) and (0>NBENFAV_VENU_C or 20NBENFAV_VENU_C)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l43why6c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_VENU_C))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l43why6c-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NBENFAV_VENU_C,0) > nvl(NBENFAV_C,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_VENU_C"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l43xg8do","componentType":"Question","page":"3.50","label":{"value":"\"\" || (if (nvl(PRENOM_C,\"\")=\"\") then (((if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"Votre conjoint\" else \"Votre conjointe\"))) else PRENOM_C) || \" a-t-\" || (if ((SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) or (isnull(SEXE_CH) and isnull(SEXE_CF))) then \"il\" else \"elle\") || \" des enfants de moins de 21 ans qui vivent avec leur autre parent [?](. 'Pourquoi cette question ? \r\nPour savoir comment se (re)construisent les familles.\r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"declarations":[{"id":"l484uyl9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles s’il y a plusieurs enfants.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","type":"VTL"},"components":[{"id":"l43xg8do","componentType":"CheckboxGroup","page":"3.50","orientation":"vertical","controls":[{"id":"l43xg8do-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(ENF21_AUTPAR_C1, false) = false and nvl(ENF21_AUTPAR_C2, false) = false and nvl(ENF21_AUTPAR_C3, false) = false and nvl(ENF21_AUTPAR_C4, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l43xg8do-CI-1","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C2, false)) or (nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C3, false)) or (nvl(ENF21_AUTPAR_C1, false) and nvl(ENF21_AUTPAR_C4, false)))","type":"VTL"},"errorMessage":{"value":"\"Vous ne pouvez pas cocher ''Non'' et une autre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l43xg8do-QOP-lv2h4pt2","label":{"value":"\"Non\"","type":"VTL|MD"},"response":{"name":"ENF21_AUTPAR_C1"}},{"id":"l43xg8do-QOP-lv2hb16f","label":{"value":"\"Oui, tout le temps\"","type":"VTL|MD"},"response":{"name":"ENF21_AUTPAR_C2"}},{"id":"l43xg8do-QOP-lv2h4sxw","label":{"value":"\"Oui, au moins la moitié du temps\"","type":"VTL|MD"},"response":{"name":"ENF21_AUTPAR_C3"}},{"id":"l43xg8do-QOP-lv2h9xib","label":{"value":"\"Oui, moins de la moitié du temps\"","type":"VTL|MD"},"response":{"name":"ENF21_AUTPAR_C4"}}]}]},{"id":"lldr8qge","componentType":"Sequence","page":"3.51","label":{"value":"\"IV - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", vos précédentes périodes de vie en couple\" ","type":"VTL"},"conditionFilter":{"value":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\"))","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions désormais sur vos précédentes périodes de vie en couple pour mesurer par exemple la fréquence des ruptures ou la durée entre deux périodes de vie en couple.\" ","type":"VTL|MD"}},{"id":"question-l15131wu","componentType":"Question","page":"3.52","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous eu d'autres périodes de vie en couple auparavant, pendant au moins six mois sous le même toit, avec ou sans mariage [?](. 'Pourquoi cette question ? \r\nPour savoir comment se (re)construisent les familles.\r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\"))","type":"VTL"},"components":[{"id":"l15131wu","componentType":"Radio","mandatory":false,"page":"3.52","orientation":"vertical","controls":[{"id":"l15131wu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_UNION) or AUT_UNION=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_UNION"}}]},{"id":"question-l43x1amr","componentType":"Question","page":"3.53","label":{"value":"\"Combien d'autres périodes de vie en couple, pendant au moins six mois sous le même toit, avec ou sans mariage, avez-vous eues ?\"","type":"VTL|MD"},"conditionFilter":{"value":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\")) and (AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l43x1amr","componentType":"InputNumber","mandatory":false,"page":"3.53","min":1.0,"max":20.0,"decimals":0,"controls":[{"id":"l43x1amr-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_AUT_UNION)) and (1>NB_AUT_UNION or 20NB_AUT_UNION)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l43x1amr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_AUT_UNION))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_AUT_UNION"},"description":{"value":"Format attendu : un nombre entre 1 et 20","type":"TXT"}}]},{"id":"m17k80xk","componentType":"Sequence","page":"3.54","label":{"value":"\"V - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre première période de vie en couple\" ","type":"VTL"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", décrivons votre première période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage), jalon important du passage à l'âge adulte.\" ","type":"VTL|MD"}},{"id":"question-kwqa53jx","componentType":"Question","page":"3.55","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel est le prénom de votre premier(ère) conjoint(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre premier(ère) conjoint(e) avec son prénom.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"kwqa53jx","componentType":"Input","mandatory":false,"page":"3.55","maxLength":249,"controls":[{"id":"kwqa53jx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_U1) or PRENOM_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_U1"}}]},{"id":"question-l4p8skko","componentType":"Question","page":"3.56","label":{"value":"\"\" || (if (nvl(PRENOM_U1,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else (PRENOM_U1 || \" est-il/elle ?\")) ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")","type":"VTL"},"components":[{"id":"l4p8skko","componentType":"Radio","mandatory":false,"page":"3.56","orientation":"vertical","controls":[{"id":"l4p8skko-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_U1H) or SEXE_U1H=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une femme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Un homme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_U1H"}}]},{"id":"question-lldenssh","componentType":"Question","page":"3.57","label":{"value":"\"\" || (if (nvl(PRENOM_U1,\"\")=\"\") then (\"Votre premier(ère) conjoint(e) est-il/elle ? \") else (PRENOM_U1 || \" est-il/elle ?\")) ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")","type":"VTL"},"components":[{"id":"lldenssh","componentType":"Radio","mandatory":false,"page":"3.57","orientation":"vertical","controls":[{"id":"lldenssh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_U1F) or SEXE_U1F=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Un homme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une femme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_U1F"}}]},{"id":"question-l34fzu5m","componentType":"Question","page":"3.58","label":{"value":"\"En quelle année vous étiez-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" [?](. 'Pourquoi cette question ? \r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l34fzu5m","componentType":"Datepicker","mandatory":false,"page":"3.58","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l34fzu5m-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_U1)) and (cast(ANNEE_U1, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l34fzu5m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_U1) or ANNEE_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l34fzu5m-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U1)) and not(isnull(ANNEE_U)) and cast(ANNEE_U1,integer) > cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de première mise en couple postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l34fzu5m-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U1)) and not(isnull(ANAIS)) and cast(ANNEE_U1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de première mise en couple antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l34fzu5m-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_U1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre date de naissance et celle de votre première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_U1"}}]},{"id":"question-l27dlnmq","componentType":"Question","page":"3.59","label":{"value":"\"Vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" (même si vous vous êtes marié\" || (if ((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) then \"s)\" else (if (SEXE_U1F =\"2\" and isnull(SEXE_U1H)) then \"es)\" else \"s)\")) || \" [?](. 'Pourquoi cette question ? \r\nPour savoir combien de premiers couples se sont pacsés et ont donné un cadre juridique à leur union.\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l27dlnmq","componentType":"Radio","mandatory":false,"page":"3.59","orientation":"vertical","controls":[{"id":"l27dlnmq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PACS_U1) or PACS_U1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PACS_U1"}}]},{"id":"question-l27dns8a","componentType":"Question","page":"3.60","label":{"value":"\"En quelle année vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (PACS_U1 =\"1\")","type":"VTL"},"components":[{"id":"l27dns8a","componentType":"Datepicker","mandatory":false,"page":"3.60","min":"1999","max":"2024","dateFormat":"YYYY","controls":[{"id":"l27dns8a-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_PACS_U1)) and (cast(ANNEE_PACS_U1, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1999 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dns8a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_PACS_U1) or ANNEE_PACS_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dns8a-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS_U1)) and not(isnull(ANAIS)) and cast(ANNEE_PACS_U1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier pacs antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dns8a-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS_U1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_PACS_U1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre premier pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dns8a-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U1)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_PACS_U1,integer) < cast(ANNEE_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier pacs antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dns8a-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_PACS_U1,integer) >= cast(ANNEE_PACS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier pacs postérieure à votre année de pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_PACS_U1"}}]},{"id":"question-l27duust","componentType":"Question","page":"3.61","label":{"value":"\"Vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" [?](. 'Pourquoi cette question ? \r\nPour savoir combien de premiers couples se sont mariés et ont donné un cadre juridique à leur union.\r\nCette information est essentielle pour mesurer la diversité des couples.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l27duust","componentType":"Radio","mandatory":false,"page":"3.61","orientation":"vertical","controls":[{"id":"l27duust-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(MARI_U1) or MARI_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"MARI_U1"}}]},{"id":"question-l27e50tv","componentType":"Question","page":"3.62","label":{"value":"\"En quelle année vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (MARI_U1 =\"1\")","type":"VTL"},"components":[{"id":"l27e50tv","componentType":"Datepicker","mandatory":false,"page":"3.62","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l27e50tv-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_MARI_U1)) and (cast(ANNEE_MARI_U1, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_MARI_U1) or ANNEE_MARI_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_MARI_U1,integer) < cast(ANNEE_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier mariage antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_MARI_U1,integer) < cast(ANNEE_PACS_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier mariage antérieure à votre année de premier pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANAIS)) and cast(ANNEE_MARI_U1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier mariage antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_MARI_U1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre premier mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-5","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_MARI)) and cast(ANNEE_MARI_U1,integer) >= cast(ANNEE_MARI,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier mariage postérieure à votre année de mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e50tv-CI-6","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U1)) and not(isnull(ANNEE_U)) and cast(ANNEE_MARI_U1,integer) > cast(ANNEE_U,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier mariage postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_MARI_U1"}}]},{"id":"question-l5ktf1wn","componentType":"Question","page":"3.63","label":{"value":"\"Cette période de vie en couple s'est achevée parce que [...](. 'Pourquoi cette question ? \r\nPour savoir comment se terminent les premières unions.\r\nCette information est essentielle pour mesurer la diversité des couples.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l5ktf1wn","componentType":"Radio","mandatory":false,"page":"3.63","orientation":"vertical","controls":[{"id":"l5ktf1wn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEPARE_U1) or SEPARE_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"...vous vous êtes séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"...\" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint\" else \"votre première conjointe\") else PRENOM_U1) || \" est décédé\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F))) then \" \" else \"e \") ","type":"VTL|MD"}}],"response":{"name":"SEPARE_U1"}}]},{"id":"question-l27dzhzv","componentType":"Question","page":"3.64","label":{"value":"\"En quelle année vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") || \" avec \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if (SEXE_U1H=\"2\" and isnull(SEXE_U1F)) or (SEXE_U1F=\"1\" and isnull(SEXE_U1H)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F)) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" [?](. 'Pourquoi cette question ? \r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")","type":"VTL"},"components":[{"id":"l27dzhzv","componentType":"Datepicker","mandatory":false,"page":"3.64","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l27dzhzv-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_S_U1)) and (cast(ANNEE_S_U1, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhzv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_S_U1) or ANNEE_S_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhzv-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_S_U1,integer) < cast(ANNEE_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de première séparation antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27dzhzv-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S_U1)) and not(isnull(ANAIS)) and cast(ANNEE_S_U1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de première séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_S_U1"}}]},{"id":"question-l27e0qyq","componentType":"Question","page":"3.65","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint \" else \"votre première conjointe \") else PRENOM_U1) || \" est-\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"il décédé\" else \"elle décédée\") || \" [?](. 'Pourquoi cette question ? \r\nPour reconstruire les grandes étapes de la vie familiale. \r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")","type":"VTL"},"components":[{"id":"l27e0qyq","componentType":"Datepicker","mandatory":false,"page":"3.65","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l27e0qyq-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_D_U1)) and (cast(ANNEE_D_U1, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e0qyq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_D_U1) or ANNEE_D_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e0qyq-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U1)) and not(isnull(ANAIS)) and ANNEE_D_U1 < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e0qyq-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U1)) and not(isnull(ANNEE_U1)) and cast(ANNEE_D_U1,integer) < cast(ANNEE_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e0qyq-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U1)) and not(isnull(ANNEE_PACS_U1)) and cast(ANNEE_D_U1,integer) < cast(ANNEE_PACS_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l27e0qyq-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U1)) and not(isnull(ANNEE_MARI_U1)) and cast(ANNEE_D_U1,integer) < cast(ANNEE_MARI_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre premier(ère) conjoint(e) antérieure à votre année de premier mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_D_U1"}}]},{"id":"ly7a1b7g","componentType":"Subsequence","page":"3.66","goToPage":"3.66","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", les enfants de votre \" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"premier conjoint \" else \"première conjointe \") || nvl(PRENOM_U1,\"\") ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\")","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur les éventuels enfants de votre \" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"premier conjoint \" else \"première conjointe \") || nvl(PRENOM_U1,\"\") || \", pour comprendre comment se reforment les couples après avoir eu des enfants d'une précédente union.\" ","type":"VTL|MD"}},{"id":"question-l4cjg2rp","componentType":"Question","page":"3.67","label":{"value":"\"Avant d'être en couple avec vous, \" || (if(nvl(PRENOM_U1,\"\")=\"\") then (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint\" else \"votre première conjointe\") else PRENOM_U1) || \" avait-\" || (if (((nvl(SEXE_U1F,\"\")=\"\") and (nvl(SEXE_U1H,\"\")=\"\")) or (SEXE_U1F =\"1\" and isnull(SEXE_U1H)) or (SEXE_U1H = \"2\" and isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"il\" else \"elle\") || \" déjà des enfants [?](. 'Pourquoi cette question ? \r\nPour savoir comment se (re)construisent les familles.\r\nCette information est essentielle pour comprendre les situations familiales d’aujourd’hui.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\")","type":"VTL"},"components":[{"id":"l4cjg2rp","componentType":"Radio","mandatory":false,"page":"3.67","orientation":"vertical","controls":[{"id":"l4cjg2rp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ENFAV_C_U1) or ENFAV_C_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ENFAV_C_U1"}}]},{"id":"question-l4cja8pm","componentType":"Question","page":"3.68","label":{"value":"\"Avant d'être en couple avec vous, combien \" || (if (nvl(PRENOM_U1,\"\")=\"\") then (((if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"votre premier conjoint\" else \"votre première conjointe\"))) else PRENOM_U1) || \" avait-t-\" || (if ((SEXE_U1H=\"2\" or isnull(SEXE_U1H)) and (SEXE_U1F=\"1\" or isnull(SEXE_U1F)) or (isnull(SEXE_U1H) and isnull(SEXE_U1F))) then \"il\" else \"elle\") || \" d'enfants ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")","type":"VTL"},"components":[{"id":"l4cja8pm","componentType":"InputNumber","mandatory":false,"page":"3.68","min":1.0,"max":20.0,"decimals":0,"controls":[{"id":"l4cja8pm-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_C_U1)) and (1>NBENFAV_C_U1 or 20NBENFAV_C_U1)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4cja8pm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C_U1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_C_U1"},"description":{"value":"Format attendu : un nombre entre 1 et 20","type":"TXT"}}]},{"id":"question-l5ilbb89","componentType":"Question","page":"3.69","label":{"value":"\"Cet enfant a-t-il vécu avec vous ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)","type":"VTL"},"components":[{"id":"l5ilbb89","componentType":"Radio","mandatory":false,"page":"3.69","orientation":"vertical","controls":[{"id":"l5ilbb89-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C1_VENU_U1) or NBENFAV_C1_VENU_U1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFAV_C1_VENU_U1"}}]},{"id":"question-l4o5x7yq","componentType":"Question","page":"3.70","label":{"value":"\"Parmi eux, combien ont vécu avec vous ?\"","type":"VTL|MD"},"declarations":[{"id":"liiz9el9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucun, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))","type":"VTL"},"components":[{"id":"l4o5x7yq","componentType":"InputNumber","mandatory":false,"page":"3.70","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l4o5x7yq-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_C_VENU_U1)) and (0>NBENFAV_C_VENU_U1 or 20NBENFAV_C_VENU_U1)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4o5x7yq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C_VENU_U1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4o5x7yq-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NBENFAV_C_VENU_U1,0) > nvl(NBENFAV_C_U1,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d’enfants venus vivre avec vous ne peut pas être supérieur au nombre total d’enfants.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_C_VENU_U1"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"m17k1dbo","componentType":"Sequence","page":"3.71","label":{"value":"\"VI - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", une autre période de vie en couple\" ","type":"VTL"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) ))","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", nous allons maintenant décrire, si vous le souhaitez, une autre période de vie en couple (pendant au moins six mois sous le même toit, avec ou sans mariage).\" ","type":"VTL|MD"}},{"id":"question-l9il0i0h","componentType":"Question","page":"3.72","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", souhaitez-vous décrire une autre période de vie en couple qui est ou a été importante pour vous ? \" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) ))","type":"VTL"},"components":[{"id":"l9il0i0h","componentType":"Radio","mandatory":false,"page":"3.72","orientation":"vertical","controls":[{"id":"l9il0i0h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_U2) or AUT_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_U2"}}]},{"id":"question-l9ilcol6","componentType":"Question","page":"3.73","label":{"value":"\"Quel est le prénom de votre autre conjoint(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions sur votre autre conjoint(e) avec son prénom.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\"","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9ilcol6","componentType":"Input","mandatory":false,"page":"3.73","maxLength":249,"controls":[{"id":"l9ilcol6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_U2) or PRENOM_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_U2"}}]},{"id":"question-l9ikne2h","componentType":"Question","page":"3.74","label":{"value":"\"\" || (if (nvl(PRENOM_U2,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else (PRENOM_U2 || \" est-il/elle ?\")) ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")","type":"VTL"},"components":[{"id":"l9ikne2h","componentType":"Radio","mandatory":false,"page":"3.74","orientation":"vertical","controls":[{"id":"l9ikne2h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_U2H) or SEXE_U2H=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une femme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Un homme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_U2H"}}]},{"id":"question-lldetngg","componentType":"Question","page":"3.75","label":{"value":"\"\" || (if (nvl(PRENOM_U2,\"\")=\"\") then (\"Votre autre conjoint(e) est-il/elle ? \") else (PRENOM_U2 || \" est-il/elle ?\")) ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")","type":"VTL"},"components":[{"id":"lldetngg","componentType":"Radio","mandatory":false,"page":"3.75","orientation":"vertical","controls":[{"id":"lldetngg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_U2F) or SEXE_U2F=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Un homme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une femme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_U2F"}}]},{"id":"question-l9ikn3ea","componentType":"Question","page":"3.76","label":{"value":"\"En quelle année vous étiez-vous mis\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" en couple avec \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9ikn3ea","componentType":"Datepicker","mandatory":false,"page":"3.76","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l9ikn3ea-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_U2)) and (cast(ANNEE_U2, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikn3ea-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_U2) or ANNEE_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikn3ea-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U2)) and not(isnull(ANAIS)) and cast(ANNEE_U2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikn3ea-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_U2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre date de naissance et celle de la mise en couple de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikn3ea-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U2)) and not(isnull(ANNEE_U1)) and cast(ANNEE_U2,integer) < cast(ANNEE_U1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mise en couple de cette autre union antérieure à votre année de première mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikn3ea-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U2)) and not(isnull(ANNEE_U)) and cast(ANNEE_U,integer) < cast(ANNEE_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de mise en couple de cette autre union postérieure à votre année de dernière mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_U2"}}]},{"id":"question-l9il24ft","componentType":"Question","page":"3.77","label":{"value":"\"Vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" (même si vous vous étiez marié\" || (if ((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) then \"s)\" else (if (SEXE_U2F =\"2\" and isnull(SEXE_U2H)) then \"es)\" else \"s)\")) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9il24ft","componentType":"Radio","mandatory":false,"page":"3.77","orientation":"vertical","controls":[{"id":"l9il24ft-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PACS_U2) or PACS_U2 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PACS_U2"}}]},{"id":"question-l9ikxoxa","componentType":"Question","page":"3.78","label":{"value":"\"En quelle année vous étiez-vous pacsé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")","type":"VTL"},"components":[{"id":"l9ikxoxa","componentType":"Datepicker","mandatory":false,"page":"3.78","min":"1999","max":"2024","dateFormat":"YYYY","controls":[{"id":"l9ikxoxa-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_PACS_U2)) and (cast(ANNEE_PACS_U2, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1999 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikxoxa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_PACS_U2) or ANNEE_PACS_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikxoxa-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_U2)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_PACS_U2,integer) < cast(ANNEE_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikxoxa-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS_U2)) and not(isnull(ANAIS)) and cast(ANNEE_PACS_U2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de pacs de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikxoxa-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS_U2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANNEE_PACS_U2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle du pacs de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikxoxa-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_PACS)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_PACS_U2,integer) >= cast(ANNEE_PACS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de pacs de cette autre union postérieure à votre année de pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_PACS_U2"}}]},{"id":"question-l9ikvx4n","componentType":"Question","page":"3.79","label":{"value":"\"Vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9ikvx4n","componentType":"Radio","mandatory":false,"page":"3.79","orientation":"vertical","controls":[{"id":"l9ikvx4n-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(MARI_U2) or MARI_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"MARI_U2"}}]},{"id":"question-l9iklcix","componentType":"Question","page":"3.80","label":{"value":"\"En quelle année vous étiez-vous marié\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" avec \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")","type":"VTL"},"components":[{"id":"l9iklcix","componentType":"Datepicker","mandatory":false,"page":"3.80","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l9iklcix-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_MARI_U2)) and (cast(ANNEE_MARI_U2, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_MARI_U2) or ANNEE_MARI_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_MARI_U2,integer) < cast(ANNEE_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_MARI_U2,integer) < cast(ANNEE_PACS_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de pacs. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U2)) and not(isnull(ANAIS)) and cast(ANNEE_MARI_U2,integer) < cast(ANAIS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du mariage de cette autre union antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U2)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANNEE_MARI_U2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle du mariage de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iklcix-CI-5","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_MARI_U2)) and not(isnull(ANNEE_MARI)) and cast(ANNEE_MARI_U2,integer) >= cast(ANNEE_MARI,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du mariage de cette autre union postérieure à votre année de mariage. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_MARI_U2"}}]},{"id":"question-l9ikqlwv","componentType":"Question","page":"3.81","label":{"value":"\"Cette période de vie en couple s'est achevée parce que... \"","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9ikqlwv","componentType":"Radio","mandatory":false,"page":"3.81","orientation":"vertical","controls":[{"id":"l9ikqlwv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEPARE_U2) or SEPARE_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"...vous vous êtes séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"...\" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint\" else \"votre autre conjointe\") else PRENOM_U2) || \" est décédé\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F))) then \" \" else \"e \") ","type":"VTL|MD"}}],"response":{"name":"SEPARE_U2"}}]},{"id":"question-l9ikze1y","componentType":"Question","page":"3.82","label":{"value":"\"En quelle année vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"(e)s\" else \"s\") || \" avec \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (if (SEXE_U2H=\"2\" and isnull(SEXE_U2F)) or (SEXE_U2F=\"1\" and isnull(SEXE_U2H)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F)) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","type":"VTL"},"components":[{"id":"l9ikze1y","componentType":"Datepicker","mandatory":false,"page":"3.82","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l9ikze1y-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_S_U2)) and (cast(ANNEE_S_U2, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikze1y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_S_U2) or ANNEE_S_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikze1y-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S_U2)) and not(isnull(ANAIS))and cast(ANNEE_S_U2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de séparation antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikze1y-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_S_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_S_U2,integer) < cast(ANNEE_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de séparation antérieure à votre année de mise en couple. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_S_U2"}}]},{"id":"question-l9ikmjqm","componentType":"Question","page":"3.83","label":{"value":"\"En quelle année \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint \" else \"votre autre conjointe \") else PRENOM_U2) || \" est-\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"il décédé ?\" else \"elle décédée ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")","type":"VTL"},"components":[{"id":"l9ikmjqm","componentType":"Datepicker","mandatory":false,"page":"3.83","min":"1920","max":"2024","dateFormat":"YYYY","controls":[{"id":"l9ikmjqm-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_D_U2)) and (cast(ANNEE_D_U2, date, \"YYYY\")cast(\"2024\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2024.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikmjqm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_D_U2) or ANNEE_D_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikmjqm-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U2)) and not(isnull(ANNEE_U2)) and cast(ANNEE_D_U2,integer) < cast(ANNEE_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mise en couple de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikmjqm-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U2)) and not(isnull(ANAIS)) and cast(ANNEE_D_U2,integer) < cast(ANAIS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikmjqm-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U2)) and not(isnull(ANNEE_PACS_U2)) and cast(ANNEE_D_U2,integer) < cast(ANNEE_PACS_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de pacs de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikmjqm-CI-4","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_D_U2)) and not(isnull(ANNEE_MARI_U2)) and cast(ANNEE_D_U2,integer) < cast(ANNEE_MARI_U2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de décès de votre conjoint(e) antérieure à l'année de mariage de cette autre union. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_D_U2"}}]},{"id":"ly7ayc3i","componentType":"Subsequence","page":"3.84","goToPage":"3.84","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", les enfants de votre autre \" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"conjoint \" else \"conjointe \") || nvl(PRENOM_U2,\"\") ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"description":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur les éventuels enfants de votre autre \" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"conjoint \" else \"conjointe \") || nvl(PRENOM_U2,\"\") || \", pour comprendre comment se reforment les couples après avoir eu des enfants d'une précédente union.\" ","type":"VTL|MD"}},{"id":"question-l9ikxndo","componentType":"Question","page":"3.85","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", avant d'être en couple avec vous, \" || (if(nvl(PRENOM_U2,\"\")=\"\") then (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint\" else \"votre autre conjointe\") else PRENOM_U2) || \" avait-\" || (if (((nvl(SEXE_U2F,\"\")=\"\") and (nvl(SEXE_U2H,\"\")=\"\")) or (SEXE_U2F =\"1\" and isnull(SEXE_U2H)) or (SEXE_U2H = \"2\" and isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"il\" else \"elle\") || \" déjà des enfants ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"components":[{"id":"l9ikxndo","componentType":"Radio","mandatory":false,"page":"3.85","orientation":"vertical","controls":[{"id":"l9ikxndo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ENFAV_C_U2) or ENFAV_C_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ENFAV_C_U2"}}]},{"id":"question-l9ikuqoe","componentType":"Question","page":"3.86","label":{"value":"\"Avant d’être en couple avec vous, combien \" || (if (nvl(PRENOM_U2,\"\")=\"\") then (((if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"votre autre conjoint\" else \"votre autre conjointe\"))) else PRENOM_U2) || \" avait-t-\" || (if ((SEXE_U2H=\"2\" or isnull(SEXE_U2H)) and (SEXE_U2F=\"1\" or isnull(SEXE_U2F)) or (isnull(SEXE_U2H) and isnull(SEXE_U2F))) then \"il\" else \"elle\") || \" d’enfants ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","type":"VTL"},"components":[{"id":"l9ikuqoe","componentType":"InputNumber","mandatory":false,"page":"3.86","min":1.0,"max":20.0,"decimals":0,"controls":[{"id":"l9ikuqoe-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_C_U2)) and (1>NBENFAV_C_U2 or 20NBENFAV_C_U2)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9ikuqoe-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C_U2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_C_U2"},"description":{"value":"Format attendu : un nombre entre 1 et 20","type":"TXT"}}]},{"id":"question-l9ikekzu","componentType":"Question","page":"3.87","label":{"value":"\"Cet enfant a-t-il vécu avec vous ?\"","type":"VTL|MD"},"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","type":"VTL"},"components":[{"id":"l9ikekzu","componentType":"Radio","mandatory":false,"page":"3.87","orientation":"vertical","controls":[{"id":"l9ikekzu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C1_VENU_U2) or NBENFAV_C1_VENU_U2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFAV_C1_VENU_U2"}}]},{"id":"question-l9iks078","componentType":"Question","page":"3.88","label":{"value":"\"Parmi eux, combien ont vécu avec vous ?\"","type":"VTL|MD"},"declarations":[{"id":"liizbc3w","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucun, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))","type":"VTL"},"components":[{"id":"l9iks078","componentType":"InputNumber","mandatory":false,"page":"3.88","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l9iks078-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENFAV_C_VENU_U2)) and (0>NBENFAV_C_VENU_U2 or 20NBENFAV_C_VENU_U2)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iks078-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFAV_C_VENU_U2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l9iks078-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NBENFAV_C_VENU_U2,0) > nvl(NBENFAV_C_U2,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d'enfants venus vivre avec vous ne peut pas être supérieur au nombre total d'enfants.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENFAV_C_VENU_U2"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"kwqi91j9","componentType":"Sequence","page":"3.89","label":{"value":"\"VII - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", vos enfants qui vivent avec vous ou non\" ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur vos enfants (y compris adoptés), qu’ils vivent avec vous ou non.\" ","type":"VTL|MD"}},{"id":"ljmulh27","componentType":"Subsequence","goToPage":"3.90","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", description de vos enfants qui vivent avec vous ou non\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"}},{"id":"question-kwqigxtx","componentType":"Question","page":"3.90","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous eu des enfants (y compris ceux adoptés ou décédés) [?](. 'Pourquoi cette question ? \r\nPour identifier les personnes qui ont eu ou non des enfants au cours de leur vie.\r\nCette information est essentielle pour comprendre les familles, et n’est disponible dans aucune autre enquête ou source administrative.')\" ","type":"VTL|MD"},"declarations":[{"id":"lzsfgijs","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ne comptez pas vos beaux-enfants, même si vous les avez élevés.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"kwqigxtx","componentType":"Radio","mandatory":false,"page":"3.90","orientation":"vertical","controls":[{"id":"kwqigxtx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ENF) or ENF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ENF"}}]},{"id":"question-kwqi5zsm","componentType":"Question","page":"3.91","label":{"value":"\"Combien d'enfant(s) avez-vous eu(s) en tout (y compris ceux adoptés ou décédés) ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF))","type":"VTL"},"components":[{"id":"kwqi5zsm","componentType":"InputNumber","mandatory":false,"page":"3.91","min":1.0,"max":20.0,"decimals":0,"controls":[{"id":"kwqi5zsm-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENF)) and (1>NBENF or 20NBENF)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqi5zsm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENF))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENF"},"description":{"value":"Format attendu : un nombre entre 1 et 20","type":"TXT"}}]},{"id":"question-l1gkeq97","componentType":"Question","page":"3.92","label":{"value":"\"Cet(te) enfant a-t-il/elle été adopté(e) (adoption simple ou plénière) [?](. 'Pourquoi cette question ?\r\nPour compter et décrire les familles qui ont adopté des enfants. \r\nCette information est essentielle pour mesurer la diversité des familles.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","type":"VTL"},"components":[{"id":"l1gkeq97","componentType":"Radio","mandatory":false,"page":"3.92","orientation":"vertical","controls":[{"id":"l1gkeq97-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENF_ADOP_UN) or NBENF_ADOP_UN=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENF_ADOP_UN"}}]},{"id":"question-l7rlim3p","componentType":"Question","page":"3.93","label":{"value":"\"Parmi eux, combien d'enfant(s) ont-ils été adopté(s) (adoption simple ou plénière) [?](. 'Pourquoi cette question ?\r\nPour compter et décrire les familles qui ont adopté des enfants. \r\nCette information est essentielle pour mesurer la diversité des familles.')\"","type":"VTL|MD"},"declarations":[{"id":"l7rlwtef","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucun n'a été adopté, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","type":"VTL"},"components":[{"id":"l7rlim3p","componentType":"InputNumber","mandatory":false,"page":"3.93","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l7rlim3p-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NBENF_ADOP)) and (0>NBENF_ADOP or 20NBENF_ADOP)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l7rlim3p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENF_ADOP))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l7rlim3p-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NBENF_ADOP,0) > nvl(NBENF,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d'enfants adoptés ne peut pas être supérieur au nombre total d'enfants.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NBENF_ADOP"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l1gi76wy","componentType":"Question","page":"3.94","label":{"value":"\"En quelle langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) parliez-vous avec \" || (if (isnull(NBENF) or NBENF > 1) then \"vos enfants\" else \"votre enfant\") || \" lorsqu’il\" || (if (isnull(NBENF) or NBENF > 1) then \"s étaient jeunes ou leur\" else \" était jeune ou lui\") || \" parlez-vous maintenant s’il\" || (if (isnull(NBENF) or NBENF > 1) then \"s sont encore mineurs\" else \" est encore mineur\") || \" [?](. 'Pourquoi cette question ?\r\nPour savoir comment se transmettent les langues au fil des générations.')\" ","type":"VTL|MD"},"declarations":[{"id":"laiambix","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF))","type":"VTL"},"components":[{"id":"l1gi76wy","componentType":"Suggester","mandatory":false,"page":"3.94","maxLength":20,"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE1_ENF"}}]},{"id":"question-lumogysw","componentType":"Question","page":"3.95","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (isnull(LANGUE1_ENF) or LANGUE1_ENF=\"\")","type":"VTL"},"components":[{"id":"lumogysw","componentType":"Input","mandatory":false,"page":"3.95","maxLength":249,"controls":[{"id":"lumogysw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE1_ENFL) or LANGUE1_ENFL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE1_ENFL"}}]},{"id":"question-lw52ifu3","componentType":"Question","page":"3.96","label":{"value":"\"Parliez/parlez-vous à \" || (if (isnull(NBENF) or NBENF > 1) then \"vos enfants\" else \"votre enfant\") || \" dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL)))","type":"VTL"},"components":[{"id":"lw52ifu3","componentType":"Radio","mandatory":false,"page":"3.96","orientation":"vertical","controls":[{"id":"lw52ifu3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_ENFE) or LANGUE2_ENFE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE2_ENFE"}}]},{"id":"question-l445u9x8","componentType":"Question","page":"3.97","label":{"value":"\"Quelle est cette autre langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lvuztgu9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","type":"VTL"},"components":[{"id":"l445u9x8","componentType":"Suggester","mandatory":false,"page":"3.97","maxLength":20,"controls":[{"id":"l445u9x8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE1_ENF)) and not(isnull(LANGUE2_ENF)) and LANGUE2_ENF=LANGUE1_ENF))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE2_ENF"}}]},{"id":"question-lumstcob","componentType":"Question","page":"3.98","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","type":"VTL"},"components":[{"id":"lumstcob","componentType":"Input","mandatory":false,"page":"3.98","maxLength":249,"controls":[{"id":"lumstcob-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_ENFL) or LANGUE2_ENFL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE2_ENFL"}}]},{"id":"question-lumnxb5k","componentType":"Question","page":"3.99","label":{"value":"\"Parliez/parlez-vous à \" || (if (isnull(NBENF) or NBENF > 1) then \"vos enfants\" else \"votre enfant\") || \" dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","type":"VTL"},"components":[{"id":"lumnxb5k","componentType":"Radio","mandatory":false,"page":"3.99","orientation":"vertical","controls":[{"id":"lumnxb5k-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_ENFE) or LANGUE3_ENFE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE3_ENFE"}}]},{"id":"question-lw543f35","componentType":"Question","page":"3.100","label":{"value":"\"Quelle est cette troisième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw53s36h","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","type":"VTL"},"components":[{"id":"lw543f35","componentType":"Suggester","mandatory":false,"page":"3.100","maxLength":20,"controls":[{"id":"lw543f35-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE3_ENF)) and not(isnull(LANGUE2_ENF)) and LANGUE2_ENF=LANGUE3_ENF))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE3_ENF"}}]},{"id":"question-lumsq0y7","componentType":"Question","page":"3.101","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","type":"VTL"},"components":[{"id":"lumsq0y7","componentType":"Input","mandatory":false,"page":"3.101","maxLength":249,"controls":[{"id":"lumsq0y7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_ENFL) or LANGUE3_ENFL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE3_ENFL"}}]},{"id":"question-lumnyjae","componentType":"Question","page":"3.102","label":{"value":"\"Parliez/parlez-vous à \" || (if (isnull(NBENF) or NBENF > 1) then \"vos enfants\" else \"votre enfant\") || \" dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","type":"VTL"},"components":[{"id":"lumnyjae","componentType":"Radio","mandatory":false,"page":"3.102","orientation":"vertical","controls":[{"id":"lumnyjae-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_ENFE) or LANGUE4_ENFE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE4_ENFE"}}]},{"id":"question-lw547oxc","componentType":"Question","page":"3.103","label":{"value":"\"Quelle est cette quatrième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw549g86","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","type":"VTL"},"components":[{"id":"lw547oxc","componentType":"Suggester","mandatory":false,"page":"3.103","maxLength":20,"controls":[{"id":"lw547oxc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE4_ENF)) and not(isnull(LANGUE3_ENF)) and LANGUE3_ENF=LANGUE4_ENF))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE4_ENF"}}]},{"id":"question-lumsq00h","componentType":"Question","page":"3.104","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")","type":"VTL"},"components":[{"id":"lumsq00h","componentType":"Input","mandatory":false,"page":"3.104","maxLength":249,"controls":[{"id":"lumsq00h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_ENFL) or LANGUE4_ENFL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE4_ENFL"}}]},{"id":"question-l4idom4o","componentType":"Question","page":"3.105","label":{"value":"\"Cet(te) enfant vit-il/elle avec vous, même une petite partie du temps seulement [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","type":"VTL"},"components":[{"id":"l4idom4o","componentType":"Radio","mandatory":false,"page":"3.105","orientation":"vertical","controls":[{"id":"l4idom4o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NBENFLOG_UN) or NBENFLOG_UN=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFLOG_UN"}}]},{"id":"question-ltd023vh","componentType":"Question","page":"3.106","label":{"value":"\"Parmi vos enfants, certains vivent-ils avec vous, même une petite partie du temps seulement [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","type":"VTL"},"components":[{"id":"ltd023vh","componentType":"Radio","mandatory":false,"page":"3.106","orientation":"vertical","options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFLOG"}}]},{"id":"question-l4lcr3vb","componentType":"Question","page":"3.107","label":{"value":"\"Combien de vos enfants vivent avec vous, même une petite partie du temps seulement ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1 and (NBENFLOG = \"1\" or isnull(NBENFLOG)))","type":"VTL"},"components":[{"id":"l4lcr3vb","componentType":"InputNumber","mandatory":false,"page":"3.107","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l4lcr3vb-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(CBENFLOG)) and (0>CBENFLOG or 20CBENFLOG)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lcr3vb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(CBENFLOG))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lcr3vb-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(CBENFLOG,0) > nvl(NBENF,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d'enfants qui vivent avec vous est supérieur au nombre total d'enfants que vous avez déclaré. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"CBENFLOG"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-ltd0h1g7","componentType":"Question","page":"3.108","label":{"value":"\"Confirmez-vous que cet(te) enfant ne vit pas avec vous ou est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour connaître la situation de chaque enfant. \r\nCette information est essentielle pour mesurer la diversité des familles. \r\nEn particulier, elle permet de savoir où vivent les enfants devenus grands ou de parents séparés ou combien de personnes ont eu des enfants qui sont aujourd’hui décédés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1 and (NBENFLOG_UN =\"2\" or isnull(NBENFLOG_UN)))","type":"VTL"},"components":[{"id":"ltd0h1g7","componentType":"Radio","mandatory":false,"page":"3.108","orientation":"vertical","controls":[{"id":"ltd0h1g7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(NBENFAIL_UN=\"\" or isnull(NBENFAIL_UN))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NBENFAIL_UN"}}]},{"id":"question-l4lfzig7","componentType":"Question","page":"3.109","label":{"value":"\"Combien de vos enfants ne vivent pas avec vous ou sont décédés ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENF > 1)","type":"VTL"},"components":[{"id":"l4lfzig7","componentType":"InputNumber","mandatory":false,"page":"3.109","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l4lfzig7-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(CBENFAIL)) and (0>CBENFAIL or 20CBENFAIL)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lfzig7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(CBENFAIL))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lfzig7-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(CBENFAIL,0) + nvl(CBENFLOG,0) <> nvl(NBENF,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre d'enfants vivant dans le logement, vivant ailleurs ou décédés est différent du nombre total d'enfants. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"CBENFAIL"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"l446h6js","componentType":"Subsequence","page":"3.110","goToPage":"3.110","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre \" || (if (CBENFLOG=1 or isnull(CBENFLOG) or NBENFLOG_UN=\"1\" ) then \"enfant\" else \"premier enfant\") || \" qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"description":{"value":"(if (cast(CBENFLOG,integer)=1 or NBENFLOG_UN =\"1\") then \"Décrivons votre enfant qui vit avec vous, même une petite partie du temps seulement.\" else \"Commençons par décrire votre premier enfant qui vit avec vous, même une petite partie du temps seulement.\")\r\n|| (if cast(CBENFLOG, integer)>8 then \" Décrivez seulement les 8 plus âgés.\" else \"\")\r\n ","type":"VTL|MD"}},{"id":"question-l446nede","componentType":"Question","page":"3.111","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle \" || (if (CBENFLOG=1 or (isnull(CBENFLOG) and NBENFLOG_UN=\"1\")) then \"votre enfant\" else \"votre premier enfant\") || \" qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"l446nede","componentType":"Input","mandatory":false,"page":"3.111","maxLength":249,"controls":[{"id":"l446nede-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG1) or PRENOM_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG1"}}]},{"id":"question-kwqjk80w","componentType":"Question","page":"3.112","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"kwqjk80w","componentType":"Radio","mandatory":false,"page":"3.112","orientation":"vertical","controls":[{"id":"kwqjk80w-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull (SEXE_ENFLOG1) or SEXE_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG1"}}]},{"id":"question-kwqjmq2o","componentType":"Question","page":"3.113","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"kwqjmq2o","componentType":"Datepicker","mandatory":false,"page":"3.113","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"kwqjmq2o-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG1)) and (cast(ANAI_ENFLOG1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqjmq2o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG1) or ANAI_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqjmq2o-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG1)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqjmq2o-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG1"}}]},{"id":"question-l4qtls9o","componentType":"Question","page":"3.114","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG1) || \" est-\" || (if SEXE_ENFLOG1=\"1\" then \"il né\" else if SEXE_ENFLOG1=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qth2nf","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"l4qtls9o","componentType":"Radio","mandatory":false,"page":"3.114","orientation":"vertical","controls":[{"id":"l4qtls9o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG1) or NEFRANCE_ENFLOG1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG1"}}]},{"id":"question-lv3teph7","componentType":"Question","page":"3.115","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG1) || \" a-t-\" || (if SEXE_ENFLOG1=\"1\" then \"il été adopté\" else if SEXE_ENFLOG1=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv3teph7","componentType":"Radio","mandatory":false,"page":"3.115","orientation":"vertical","controls":[{"id":"lv3teph7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG1) or ADOPT_ENFLOG1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG1"}}]},{"id":"question-lv3ts84i","componentType":"Question","page":"3.116","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" a-t-\" || (if SEXE_ENFLOG1=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG1=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))","type":"VTL"},"components":[{"id":"lv3ts84i","componentType":"Datepicker","mandatory":false,"page":"3.116","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv3ts84i-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG1)) and (cast(ANADOPT_ENFLOG1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ts84i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG1) or ANADOPT_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ts84i-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG1)) and not(isnull(ANAI_ENFLOG1)) and cast(ANADOPT_ENFLOG1,integer) < cast(ANAI_ENFLOG1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ts84i-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG1)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ts84i-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG1"}}]},{"id":"question-kwqjol7e","componentType":"Question","page":"3.117","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6lxfn","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\")) then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"kwqjol7e","componentType":"Radio","mandatory":false,"page":"3.117","orientation":"vertical","controls":[{"id":"kwqjol7e-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG1) or PARENT_VIT_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG1"}}]},{"id":"question-l4iaicn8","componentType":"Question","page":"3.118","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4paxo23","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"components":[{"id":"l4iaicn8","componentType":"Radio","mandatory":false,"page":"3.118","orientation":"vertical","controls":[{"id":"l4iaicn8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG1) or PARENT_FR_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG1"}}]},{"id":"question-l4parilg","componentType":"Question","page":"3.119","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37btc9s","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","type":"VTL"},"components":[{"id":"l4parilg","componentType":"Suggester","mandatory":false,"page":"3.119","maxLength":20,"controls":[{"id":"l4parilg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG1) or PARENT_COM_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG1"}}]},{"id":"question-l4pav1bd","componentType":"Question","page":"3.120","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4papcwn","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","type":"VTL"},"components":[{"id":"l4pav1bd","componentType":"Suggester","mandatory":false,"page":"3.120","maxLength":20,"controls":[{"id":"l4pav1bd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG1) or PARENT_DEP_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG1"}}]},{"id":"question-l4pavrnh","componentType":"Question","page":"3.121","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pbeb5v","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")","type":"VTL"},"components":[{"id":"l4pavrnh","componentType":"Suggester","mandatory":false,"page":"3.121","maxLength":20,"controls":[{"id":"l4pavrnh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG1) or PARENT_PAY_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG1"}}]},{"id":"question-l1ez78st","componentType":"Question","page":"3.122","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" est-\" || (if SEXE_ENFLOG1=\"1\" then \"il\" else if SEXE_ENFLOG1=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"components":[{"id":"l1ez78st","componentType":"Radio","mandatory":false,"page":"3.122","orientation":"vertical","controls":[{"id":"l1ez78st-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG1) or PARENT_FREQ_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG1"}}]},{"id":"question-l4iain70","componentType":"Question","page":"3.123","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"components":[{"id":"l4iain70","componentType":"Radio","mandatory":false,"page":"3.123","orientation":"vertical","controls":[{"id":"l4iain70-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG1) or PARENT_DORT_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG1"}}]},{"id":"question-kwqk3gx2","componentType":"Question","page":"3.124","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"components":[{"id":"kwqk3gx2","componentType":"Radio","mandatory":false,"page":"3.124","orientation":"vertical","controls":[{"id":"kwqk3gx2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG1) or PARENT_VECU_ENFLOG1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG1"}}]},{"id":"question-la6ydnyh","componentType":"Question","page":"3.125","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG1) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"components":[{"id":"la6ydnyh","componentType":"Radio","mandatory":false,"page":"3.125","orientation":"vertical","controls":[{"id":"la6ydnyh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG1) or SEP_AUT_PAR_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG1"}}]},{"id":"question-kwqjmy9d","componentType":"Question","page":"3.126","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")","type":"VTL"},"components":[{"id":"kwqjmy9d","componentType":"Radio","mandatory":false,"page":"3.126","orientation":"vertical","controls":[{"id":"kwqjmy9d-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG1) or RESID_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG1"}}]},{"id":"question-l1gia5uh","componentType":"Question","page":"3.127","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG1) || \" vit-\" || (if SEXE_ENFLOG1=\"1\" then \"il\" else if SEXE_ENFLOG1=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"l1gia5uh","componentType":"Radio","mandatory":false,"page":"3.127","orientation":"vertical","controls":[{"id":"l1gia5uh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG1) or SANTE_ENFLOG1 = \"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG1"}}]},{"id":"question-lvgn6d99","componentType":"Question","page":"3.128","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG1,\"\")=\"\") then (if SEXE_ENFLOG1=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG1) || \" vit-\" || (if SEXE_ENFLOG1=\"1\" then \"il\" else if SEXE_ENFLOG1=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"components":[{"id":"lvgn6d99","componentType":"Radio","mandatory":false,"page":"3.128","orientation":"vertical","controls":[{"id":"lvgn6d99-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG1) or ASE_ENFLOG1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG1"}}]},{"id":"ljmv0rhg","componentType":"Subsequence","goToPage":"3.129","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre deuxième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"}},{"id":"question-l4i9118b","componentType":"Question","page":"3.129","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le deuxième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4i9118b","componentType":"Input","mandatory":false,"page":"3.129","maxLength":249,"controls":[{"id":"l4i9118b-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG2) or PRENOM_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG2"}}]},{"id":"question-l4i8zu5m","componentType":"Question","page":"3.130","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4i8zu5m","componentType":"Radio","mandatory":false,"page":"3.130","orientation":"vertical","controls":[{"id":"l4i8zu5m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG2) or SEXE_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG2"}}]},{"id":"question-l4ia7rxn","componentType":"Question","page":"3.131","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4ia7rxn","componentType":"Datepicker","mandatory":false,"page":"3.131","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4ia7rxn-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG2)) and (cast(ANAI_ENFLOG2, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ia7rxn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG2) or ANAI_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ia7rxn-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG2)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ia7rxn-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il semble y avoir peu d'écart entre votre année de naissance et celle de votre enfant, est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG2"}}]},{"id":"question-l4qtpg9f","componentType":"Question","page":"3.132","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG2) || \" est-\" || (if SEXE_ENFLOG2=\"1\" then \"il né\" else if SEXE_ENFLOG2=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qtdwhq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4qtpg9f","componentType":"Radio","mandatory":false,"page":"3.132","orientation":"vertical","controls":[{"id":"l4qtpg9f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG2) or NEFRANCE_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG2"}}]},{"id":"question-lv3u5cvk","componentType":"Question","page":"3.133","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG2) || \" a-t-\" || (if SEXE_ENFLOG2=\"1\" then \"il été adopté\" else if SEXE_ENFLOG2=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv3u5cvk","componentType":"Radio","mandatory":false,"page":"3.133","orientation":"vertical","controls":[{"id":"lv3u5cvk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG2"}}]},{"id":"question-lv3ule5a","componentType":"Question","page":"3.134","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" a-t-\" || (if SEXE_ENFLOG2=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG2=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2 =\"1\")","type":"VTL"},"components":[{"id":"lv3ule5a","componentType":"Datepicker","mandatory":false,"page":"3.134","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv3ule5a-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG2)) and (cast(ANADOPT_ENFLOG2, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ule5a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG2) or ANADOPT_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ule5a-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG2)) and not(isnull(ANAI_ENFLOG2)) and cast(ANADOPT_ENFLOG2,integer) < cast(ANAI_ENFLOG2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ule5a-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG2)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3ule5a-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG2"}}]},{"id":"question-l4iano52","componentType":"Question","page":"3.135","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6ogjx","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG2=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4iano52","componentType":"Radio","mandatory":false,"page":"3.135","orientation":"vertical","controls":[{"id":"l4iano52-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG2) or PARENT_VIT_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG2"}}]},{"id":"question-kwqjmujx","componentType":"Question","page":"3.136","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4pavsqb","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"components":[{"id":"kwqjmujx","componentType":"Radio","mandatory":false,"page":"3.136","orientation":"vertical","controls":[{"id":"kwqjmujx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG2) or PARENT_FR_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG2"}}]},{"id":"question-l4pasuts","componentType":"Question","page":"3.137","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bupmw","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))","type":"VTL"},"components":[{"id":"l4pasuts","componentType":"Suggester","mandatory":false,"page":"3.137","maxLength":20,"controls":[{"id":"l4pasuts-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG2) or PARENT_COM_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG2"}}]},{"id":"question-l4pannoa","componentType":"Question","page":"3.138","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pakgkw","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))","type":"VTL"},"components":[{"id":"l4pannoa","componentType":"Suggester","mandatory":false,"page":"3.138","maxLength":20,"controls":[{"id":"l4pannoa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG2) or PARENT_DEP_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG2"}}]},{"id":"question-l4pbc5wa","componentType":"Question","page":"3.139","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pbep5s","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")","type":"VTL"},"components":[{"id":"l4pbc5wa","componentType":"Suggester","mandatory":false,"page":"3.139","maxLength":20,"controls":[{"id":"l4pbc5wa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG2) or PARENT_PAY_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG2"}}]},{"id":"question-l4idgpbr","componentType":"Question","page":"3.140","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" est-\" || (if SEXE_ENFLOG2=\"1\" then \"il\" else if SEXE_ENFLOG2=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"components":[{"id":"l4idgpbr","componentType":"Radio","mandatory":false,"page":"3.140","orientation":"vertical","controls":[{"id":"l4idgpbr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG2) or PARENT_FREQ_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG2"}}]},{"id":"question-l4486unb","componentType":"Question","page":"3.141","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"components":[{"id":"l4486unb","componentType":"Radio","mandatory":false,"page":"3.141","orientation":"vertical","controls":[{"id":"l4486unb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG2) or PARENT_DORT_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG2"}}]},{"id":"question-l4ia5o28","componentType":"Question","page":"3.142","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"components":[{"id":"l4ia5o28","componentType":"Radio","mandatory":false,"page":"3.142","orientation":"vertical","controls":[{"id":"l4ia5o28-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG2) or PARENT_VECU_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG2"}}]},{"id":"question-la6yjh65","componentType":"Question","page":"3.143","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG2) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"components":[{"id":"la6yjh65","componentType":"Radio","mandatory":false,"page":"3.143","orientation":"vertical","controls":[{"id":"la6yjh65-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG2) or SEP_AUT_PAR_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG2"}}]},{"id":"question-l4idgqx9","componentType":"Question","page":"3.144","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")","type":"VTL"},"components":[{"id":"l4idgqx9","componentType":"Radio","mandatory":false,"page":"3.144","orientation":"vertical","controls":[{"id":"l4idgqx9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG2) or RESID_ENFLOG2 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG2"}}]},{"id":"question-l4ia7y0p","componentType":"Question","page":"3.145","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG2) || \" vit-\" || (if SEXE_ENFLOG2=\"1\" then \"il\" else if SEXE_ENFLOG2=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"l4ia7y0p","componentType":"Radio","mandatory":false,"page":"3.145","orientation":"vertical","controls":[{"id":"l4ia7y0p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG2) or SANTE_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG2"}}]},{"id":"question-lvgneyls","componentType":"Question","page":"3.146","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG2,\"\")=\"\") then (if SEXE_ENFLOG2=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG2) || \" vit-\" || (if SEXE_ENFLOG2=\"1\" then \"il\" else if SEXE_ENFLOG2=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"components":[{"id":"lvgneyls","componentType":"Radio","mandatory":false,"page":"3.146","orientation":"vertical","controls":[{"id":"lvgneyls-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG2) or ASE_ENFLOG2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG2"}}]},{"id":"ljmvg6vc","componentType":"Subsequence","goToPage":"3.147","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre troisième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"}},{"id":"question-l4ld0ziw","componentType":"Question","page":"3.147","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le troisième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4ld0ziw","componentType":"Input","mandatory":false,"page":"3.147","maxLength":249,"controls":[{"id":"l4ld0ziw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG3) or PRENOM_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG3"}}]},{"id":"question-l4lcp4co","componentType":"Question","page":"3.148","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG3) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4lcp4co","componentType":"Radio","mandatory":false,"page":"3.148","orientation":"vertical","controls":[{"id":"l4lcp4co-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG3) or SEXE_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG3"}}]},{"id":"question-l4ld3y0j","componentType":"Question","page":"3.149","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4ld3y0j","componentType":"Datepicker","mandatory":false,"page":"3.149","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4ld3y0j-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG3)) and (cast(ANAI_ENFLOG3, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ld3y0j-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG3) or ANAI_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ld3y0j-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG3)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG3,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4ld3y0j-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG3)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG3,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG3"}}]},{"id":"question-l4qty53i","componentType":"Question","page":"3.150","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG3) || \" est-\" || (if SEXE_ENFLOG3=\"1\" then \"il né\" else if SEXE_ENFLOG3=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qthko2","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4qty53i","componentType":"Radio","mandatory":false,"page":"3.150","orientation":"vertical","controls":[{"id":"l4qty53i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG3) or NEFRANCE_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG3"}}]},{"id":"question-lv3uun9e","componentType":"Question","page":"3.151","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG3) || \" a-t-\" || (if SEXE_ENFLOG3=\"1\" then \"il été adopté\" else if SEXE_ENFLOG3=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv3uun9e","componentType":"Radio","mandatory":false,"page":"3.151","orientation":"vertical","controls":[{"id":"lv3uun9e-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG3"}}]},{"id":"question-lv3v5m6c","componentType":"Question","page":"3.152","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" a-t-\" || (if SEXE_ENFLOG3=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG3=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3 =\"1\")","type":"VTL"},"components":[{"id":"lv3v5m6c","componentType":"Datepicker","mandatory":false,"page":"3.152","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv3v5m6c-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG3)) and (cast(ANADOPT_ENFLOG3, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3v5m6c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG3) or ANADOPT_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3v5m6c-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG3)) and not(isnull(ANAI_ENFLOG3)) and cast(ANADOPT_ENFLOG3,integer) < cast(ANAI_ENFLOG3,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3v5m6c-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG3)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG3,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3v5m6c-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG3)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG3,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG3"}}]},{"id":"question-l4lct7cb","componentType":"Question","page":"3.153","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b689zo","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG3=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4lct7cb","componentType":"Radio","mandatory":false,"page":"3.153","orientation":"vertical","controls":[{"id":"l4lct7cb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG3) or PARENT_VIT_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG3"}}]},{"id":"question-l4ld827i","componentType":"Question","page":"3.154","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4pawrpv","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"components":[{"id":"l4ld827i","componentType":"Radio","mandatory":false,"page":"3.154","orientation":"vertical","controls":[{"id":"l4ld827i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG3) or PARENT_FR_ENFLOG3 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG3"}}]},{"id":"question-l4pavp6y","componentType":"Question","page":"3.155","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bqfyk","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))","type":"VTL"},"components":[{"id":"l4pavp6y","componentType":"Suggester","mandatory":false,"page":"3.155","maxLength":20,"controls":[{"id":"l4pavp6y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG3) or PARENT_COM_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG3"}}]},{"id":"question-l4pat7vx","componentType":"Question","page":"3.156","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pb2s4u","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))","type":"VTL"},"components":[{"id":"l4pat7vx","componentType":"Suggester","mandatory":false,"page":"3.156","maxLength":20,"controls":[{"id":"l4pat7vx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG3) or PARENT_DEP_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG3"}}]},{"id":"question-l4pb77tv","componentType":"Question","page":"3.157","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pbgztm","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")","type":"VTL"},"components":[{"id":"l4pb77tv","componentType":"Suggester","mandatory":false,"page":"3.157","maxLength":20,"controls":[{"id":"l4pb77tv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG3) or PARENT_PAY_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG3"}}]},{"id":"question-l4ld15su","componentType":"Question","page":"3.158","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" est-\" || (if SEXE_ENFLOG3=\"1\" then \"il\" else if SEXE_ENFLOG3=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"components":[{"id":"l4ld15su","componentType":"Radio","mandatory":false,"page":"3.158","orientation":"vertical","controls":[{"id":"l4ld15su-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG3) or PARENT_FREQ_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG3"}}]},{"id":"question-l4ld0zmv","componentType":"Question","page":"3.159","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"components":[{"id":"l4ld0zmv","componentType":"Radio","mandatory":false,"page":"3.159","orientation":"vertical","controls":[{"id":"l4ld0zmv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG3) or PARENT_DORT_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG3"}}]},{"id":"question-l4ld0jea","componentType":"Question","page":"3.160","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"components":[{"id":"l4ld0jea","componentType":"Radio","mandatory":false,"page":"3.160","orientation":"vertical","controls":[{"id":"l4ld0jea-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG3) or PARENT_VECU_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG3"}}]},{"id":"question-la6y9flo","componentType":"Question","page":"3.161","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG3) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"components":[{"id":"la6y9flo","componentType":"Radio","mandatory":false,"page":"3.161","orientation":"vertical","controls":[{"id":"la6y9flo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG3) or SEP_AUT_PAR_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG3"}}]},{"id":"question-l4lde13h","componentType":"Question","page":"3.162","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")","type":"VTL"},"components":[{"id":"l4lde13h","componentType":"Radio","mandatory":false,"page":"3.162","orientation":"vertical","controls":[{"id":"l4lde13h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG3) or RESID_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG3"}}]},{"id":"question-l4lcuoke","componentType":"Question","page":"3.163","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG3) || \" vit-\" || (if SEXE_ENFLOG3=\"1\" then \"il\" else if SEXE_ENFLOG3=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"l4lcuoke","componentType":"Radio","mandatory":false,"page":"3.163","orientation":"vertical","controls":[{"id":"l4lcuoke-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG3) or SANTE_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG3"}}]},{"id":"question-lvgnpugy","componentType":"Question","page":"3.164","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG3,\"\")=\"\") then (if SEXE_ENFLOG3=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG3) || \" vit-\" || (if SEXE_ENFLOG3=\"1\" then \"il\" else if SEXE_ENFLOG3=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"components":[{"id":"lvgnpugy","componentType":"Radio","mandatory":false,"page":"3.164","orientation":"vertical","controls":[{"id":"lvgnpugy-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG3) or ASE_ENFLOG3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG3"}}]},{"id":"ljmv7iyw","componentType":"Subsequence","goToPage":"3.165","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre quatrième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"}},{"id":"question-l4lec0rk","componentType":"Question","page":"3.165","label":{"value":"\"\" || (nvl(PRENOMREP,\"Madame/Monsieur\")) || \", comment s'appelle le quatrième enfant qui vit avec vous [?](. 'Pourquoi cette question ?\r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4lec0rk","componentType":"Input","mandatory":false,"page":"3.165","maxLength":249,"controls":[{"id":"l4lec0rk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG4) or PRENOM_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG4"}}]},{"id":"question-l4lefdoh","componentType":"Question","page":"3.166","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG4) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4lefdoh","componentType":"Radio","mandatory":false,"page":"3.166","orientation":"vertical","controls":[{"id":"l4lefdoh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(insull(SEXE_ENFLOG4) or SEXE_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG4"}}]},{"id":"question-l4le9rs3","componentType":"Question","page":"3.167","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4le9rs3","componentType":"Datepicker","mandatory":false,"page":"3.167","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4le9rs3-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG4)) and (cast(ANAI_ENFLOG4, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4le9rs3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG4) or ANAI_ENFLOG4 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4le9rs3-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG4)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG4,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4le9rs3-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG4)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG4,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG4"}}]},{"id":"question-l4qtvt71","componentType":"Question","page":"3.168","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG4) || \" est-\" || (if SEXE_ENFLOG4=\"1\" then \"il né\" else if SEXE_ENFLOG4=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qty3sm","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4qtvt71","componentType":"Radio","mandatory":false,"page":"3.168","orientation":"vertical","controls":[{"id":"l4qtvt71-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG4) or NEFRANCE_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG4"}}]},{"id":"question-lv3w60ed","componentType":"Question","page":"3.169","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG4) || \" a-t-\" || (if SEXE_ENFLOG4=\"1\" then \"il été adopté\" else if SEXE_ENFLOG4=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv3w60ed","componentType":"Radio","mandatory":false,"page":"3.169","orientation":"vertical","controls":[{"id":"lv3w60ed-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG4"}}]},{"id":"question-lv3w2pql","componentType":"Question","page":"3.170","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" a-t-\" || (if SEXE_ENFLOG4=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG4=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4 =\"1\")","type":"VTL"},"components":[{"id":"lv3w2pql","componentType":"Datepicker","mandatory":false,"page":"3.170","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv3w2pql-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG4)) and (cast(ANADOPT_ENFLOG4, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3w2pql-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG4) or ANADOPT_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3w2pql-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG4)) and not(isnull(ANAI_ENFLOG4)) and cast(ANADOPT_ENFLOG4,integer) < cast(ANAI_ENFLOG4,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3w2pql-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG4)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG4,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv3w2pql-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG4)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG4,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG4"}}]},{"id":"question-l4ler7fu","componentType":"Question","page":"3.171","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6ndrj","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG4=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4ler7fu","componentType":"Radio","mandatory":false,"page":"3.171","orientation":"vertical","controls":[{"id":"l4ler7fu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG4) or PARENT_VIT_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG4"}}]},{"id":"question-l4lemegm","componentType":"Question","page":"3.172","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4paro0f","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"components":[{"id":"l4lemegm","componentType":"Radio","mandatory":false,"page":"3.172","orientation":"vertical","controls":[{"id":"l4lemegm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG4) or PARENT_FR_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG4"}}]},{"id":"question-l4paz6m4","componentType":"Question","page":"3.173","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bsr91","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))","type":"VTL"},"components":[{"id":"l4paz6m4","componentType":"Suggester","mandatory":false,"page":"3.173","maxLength":20,"controls":[{"id":"l4paz6m4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG4) or PARENT_COM_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG4"}}]},{"id":"question-l4payjff","componentType":"Question","page":"3.174","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paqxkg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))","type":"VTL"},"components":[{"id":"l4payjff","componentType":"Suggester","mandatory":false,"page":"3.174","maxLength":20,"controls":[{"id":"l4payjff-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG4) or PARENT_DEP_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG4"}}]},{"id":"question-l4pbax4x","componentType":"Question","page":"3.175","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pbe5ur","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")","type":"VTL"},"components":[{"id":"l4pbax4x","componentType":"Suggester","mandatory":false,"page":"3.175","maxLength":20,"controls":[{"id":"l4pbax4x-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG4) or PARENT_PAY_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG4"}}]},{"id":"question-l4letwtq","componentType":"Question","page":"3.176","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" est-\" || (if SEXE_ENFLOG4=\"1\" then \"il\" else if SEXE_ENFLOG4=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"components":[{"id":"l4letwtq","componentType":"Radio","mandatory":false,"page":"3.176","orientation":"vertical","controls":[{"id":"l4letwtq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG4) or PARENT_FREQ_ENFLOG4 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG4"}}]},{"id":"question-l4letk9j","componentType":"Question","page":"3.177","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"components":[{"id":"l4letk9j","componentType":"Radio","mandatory":false,"page":"3.177","orientation":"vertical","controls":[{"id":"l4letk9j-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG4) or PARENT_DORT_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG4"}}]},{"id":"question-l4lekh2t","componentType":"Question","page":"3.178","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"components":[{"id":"l4lekh2t","componentType":"Radio","mandatory":false,"page":"3.178","orientation":"vertical","controls":[{"id":"l4lekh2t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG4) or PARENT_VECU_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG4"}}]},{"id":"question-la6y7rno","componentType":"Question","page":"3.179","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG4) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"components":[{"id":"la6y7rno","componentType":"Radio","mandatory":false,"page":"3.179","orientation":"vertical","controls":[{"id":"la6y7rno-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG4) or SEP_AUT_PAR_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG4"}}]},{"id":"question-l4lexatl","componentType":"Question","page":"3.180","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")","type":"VTL"},"components":[{"id":"l4lexatl","componentType":"Radio","mandatory":false,"page":"3.180","orientation":"vertical","controls":[{"id":"l4lexatl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG4) or RESID_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG4"}}]},{"id":"question-l4lec2qz","componentType":"Question","page":"3.181","label":{"value":" \"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG4) || \" vit-\" || (if SEXE_ENFLOG4=\"1\" then \"il\" else if SEXE_ENFLOG4=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"l4lec2qz","componentType":"Radio","mandatory":false,"page":"3.181","orientation":"vertical","controls":[{"id":"l4lec2qz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG4) or SANTE_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG4"}}]},{"id":"question-lvgnp3j5","componentType":"Question","page":"3.182","label":{"value":" \"\" || (if (nvl(PRENOM_ENFLOG4,\"\")=\"\") then (if SEXE_ENFLOG4=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG4) || \" vit-\" || (if SEXE_ENFLOG4=\"1\" then \"il\" else if SEXE_ENFLOG4=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"components":[{"id":"lvgnp3j5","componentType":"Radio","mandatory":false,"page":"3.182","orientation":"vertical","controls":[{"id":"lvgnp3j5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG4) or ASE_ENFLOG4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG4"}}]},{"id":"ljmv5mgh","componentType":"Subsequence","goToPage":"3.183","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre cinquième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"}},{"id":"question-l4leulqw","componentType":"Question","page":"3.183","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le cinquième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4leulqw","componentType":"Input","mandatory":false,"page":"3.183","maxLength":249,"controls":[{"id":"l4leulqw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG5) or PRENOM_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG5"}}]},{"id":"question-l4lem0yg","componentType":"Question","page":"3.184","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG5) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4lem0yg","componentType":"Radio","mandatory":false,"page":"3.184","orientation":"vertical","controls":[{"id":"l4lem0yg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG5) or SEXE_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG5"}}]},{"id":"question-l4lffj1f","componentType":"Question","page":"3.185","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4lffj1f","componentType":"Datepicker","mandatory":false,"page":"3.185","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4lffj1f-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG5)) and (cast(ANAI_ENFLOG5, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lffj1f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG5) or ANAI_ENFLOG5 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lffj1f-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG5)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG5,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lffj1f-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG5)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG5,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG5"}}]},{"id":"question-l4qtm8di","componentType":"Question","page":"3.186","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG5) || \" est-\" || (if SEXE_ENFLOG5=\"1\" then \"il né\" else if SEXE_ENFLOG5=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qu07sd","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4qtm8di","componentType":"Radio","mandatory":false,"page":"3.186","orientation":"vertical","controls":[{"id":"l4qtm8di-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG5) or NEFRANCE_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG5"}}]},{"id":"question-lv5dkuad","componentType":"Question","page":"3.187","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG5) || \" a-t-\" || (if SEXE_ENFLOG5=\"1\" then \"il été adopté\" else if SEXE_ENFLOG5=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv5dkuad","componentType":"Radio","mandatory":false,"page":"3.187","orientation":"vertical","controls":[{"id":"lv5dkuad-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG5"}}]},{"id":"question-lv5db081","componentType":"Question","page":"3.188","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" a-t-\" || (if SEXE_ENFLOG5=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG5=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5 =\"1\")","type":"VTL"},"components":[{"id":"lv5db081","componentType":"Datepicker","mandatory":false,"page":"3.188","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv5db081-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG5)) and (cast(ANADOPT_ENFLOG5, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv5db081-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG5) or ANADOPT_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv5db081-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG5)) and not(isnull(ANAI_ENFLOG5)) and cast(ANADOPT_ENFLOG5,integer) < cast(ANAI_ENFLOG5,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv5db081-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG5)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG5,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv5db081-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG5)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG5,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG5"}}]},{"id":"question-l4lfye1g","componentType":"Question","page":"3.189","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6p61g","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG5=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4lfye1g","componentType":"Radio","mandatory":false,"page":"3.189","orientation":"vertical","controls":[{"id":"l4lfye1g-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG5) or PARENT_VIT_ENFLOG5= \"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG5"}}]},{"id":"question-l4lfoek4","componentType":"Question","page":"3.190","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4papqg4","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"components":[{"id":"l4lfoek4","componentType":"Radio","mandatory":false,"page":"3.190","orientation":"vertical","controls":[{"id":"l4lfoek4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG5) or PARENT_FR_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG5"}}]},{"id":"question-l4paw4ax","componentType":"Question","page":"3.191","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37blclw","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))","type":"VTL"},"components":[{"id":"l4paw4ax","componentType":"Suggester","mandatory":false,"page":"3.191","maxLength":20,"controls":[{"id":"l4paw4ax-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG5) or PARENT_COM_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG5"}}]},{"id":"question-l4pauqgi","componentType":"Question","page":"3.192","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pb0t6z","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))","type":"VTL"},"components":[{"id":"l4pauqgi","componentType":"Suggester","mandatory":false,"page":"3.192","maxLength":20,"controls":[{"id":"l4pauqgi-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG5) or PARENT_DEP_ENFLOG5 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG5"}}]},{"id":"question-l4pb234a","componentType":"Question","page":"3.193","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pb68fn","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")","type":"VTL"},"components":[{"id":"l4pb234a","componentType":"Suggester","mandatory":false,"page":"3.193","maxLength":20,"controls":[{"id":"l4pb234a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG5) or PARENT_PAY_ENFLOG5 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG5"}}]},{"id":"question-l8n262ck","componentType":"Question","page":"3.194","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" est-\" || (if SEXE_ENFLOG5=\"1\" then \"il\" else if SEXE_ENFLOG5=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"components":[{"id":"l8n262ck","componentType":"Radio","mandatory":false,"page":"3.194","orientation":"vertical","controls":[{"id":"l8n262ck-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG5) or PARENT_FREQ_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG5"}}]},{"id":"question-l4lfr4qa","componentType":"Question","page":"3.195","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"components":[{"id":"l4lfr4qa","componentType":"Radio","mandatory":false,"page":"3.195","orientation":"vertical","controls":[{"id":"l4lfr4qa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG5) or PARENT_DORT_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG5"}}]},{"id":"question-l4lfvape","componentType":"Question","page":"3.196","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"components":[{"id":"l4lfvape","componentType":"Radio","mandatory":false,"page":"3.196","orientation":"vertical","controls":[{"id":"l4lfvape-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG5) or PARENT_VECU_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG5"}}]},{"id":"question-la6yfjnf","componentType":"Question","page":"3.197","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG5) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"components":[{"id":"la6yfjnf","componentType":"Radio","mandatory":false,"page":"3.197","orientation":"vertical","controls":[{"id":"la6yfjnf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG5) or SEP_AUT_PAR_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG5"}}]},{"id":"question-l4lg25av","componentType":"Question","page":"3.198","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")","type":"VTL"},"components":[{"id":"l4lg25av","componentType":"Radio","mandatory":false,"page":"3.198","orientation":"vertical","controls":[{"id":"l4lg25av-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG5) or RESID_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG5"}}]},{"id":"question-l4lfclty","componentType":"Question","page":"3.199","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG5) || \" vit-\" || (if SEXE_ENFLOG5=\"1\" then \"il\" else if SEXE_ENFLOG5=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"l4lfclty","componentType":"Radio","mandatory":false,"page":"3.199","orientation":"vertical","controls":[{"id":"l4lfclty-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG5) or SANTE_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG5"}}]},{"id":"question-lvgo5arn","componentType":"Question","page":"3.200","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG5,\"\")=\"\") then (if SEXE_ENFLOG5=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG5) || \" vit-\" || (if SEXE_ENFLOG5=\"1\" then \"il\" else if SEXE_ENFLOG5=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"components":[{"id":"lvgo5arn","componentType":"Radio","mandatory":false,"page":"3.200","orientation":"vertical","controls":[{"id":"lvgo5arn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG5) or ASE_ENFLOG5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG5"}}]},{"id":"ljmvjhon","componentType":"Subsequence","goToPage":"3.201","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre sixième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"}},{"id":"question-l8n2umnw","componentType":"Question","page":"3.201","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le sixième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2umnw","componentType":"Input","mandatory":false,"page":"3.201","maxLength":249,"controls":[{"id":"l8n2umnw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG6) or PRENOM_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG6"}}]},{"id":"question-l8n2e1mr","componentType":"Question","page":"3.202","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG6) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2e1mr","componentType":"Radio","mandatory":false,"page":"3.202","orientation":"vertical","controls":[{"id":"l8n2e1mr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG6) or SEXE_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG6"}}]},{"id":"question-l8n2lctv","componentType":"Question","page":"3.203","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2lctv","componentType":"Datepicker","mandatory":false,"page":"3.203","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8n2lctv-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG6)) and (cast(ANAI_ENFLOG6, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n2lctv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG6) or ANAI_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n2lctv-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG6)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG6,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n2lctv-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG6)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG6,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG6"}}]},{"id":"question-l8n2gmuq","componentType":"Question","page":"3.204","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG6) || \" est-\" || (if SEXE_ENFLOG6=\"1\" then \"il né\" else if SEXE_ENFLOG6=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n2r8je","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2gmuq","componentType":"Radio","mandatory":false,"page":"3.204","orientation":"vertical","controls":[{"id":"l8n2gmuq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG6) or NEFRANCE_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG6"}}]},{"id":"question-lv6b9lq6","componentType":"Question","page":"3.205","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG6) || \" a-t-\" || (if SEXE_ENFLOG6=\"1\" then \"il été adopté\" else if SEXE_ENFLOG6=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6b9lq6","componentType":"Radio","mandatory":false,"page":"3.205","orientation":"vertical","controls":[{"id":"lv6b9lq6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG6"}}]},{"id":"question-lv6bv1fo","componentType":"Question","page":"3.206","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" a-t-\" || (if SEXE_ENFLOG6=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG6=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6 =\"1\")","type":"VTL"},"components":[{"id":"lv6bv1fo","componentType":"Datepicker","mandatory":false,"page":"3.206","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6bv1fo-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG6)) and (cast(ANADOPT_ENFLOG6, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6bv1fo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG6) or ANADOPT_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6bv1fo-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG6)) and not(isnull(ANAI_ENFLOG6)) and cast(ANADOPT_ENFLOG6,integer) < cast(ANAI_ENFLOG6,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6bv1fo-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG6)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG6,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6bv1fo-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG6)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG6,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG6"}}]},{"id":"question-l8n2ilpb","componentType":"Question","page":"3.207","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6ao2k","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG6=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2ilpb","componentType":"Radio","mandatory":false,"page":"3.207","orientation":"vertical","controls":[{"id":"l8n2ilpb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG6) or PARENT_VIT_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG6"}}]},{"id":"question-l8n1zy7o","componentType":"Question","page":"3.208","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n2g2zx","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"components":[{"id":"l8n1zy7o","componentType":"Radio","mandatory":false,"page":"3.208","orientation":"vertical","controls":[{"id":"l8n1zy7o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG6) or PARENT_FR_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG6"}}]},{"id":"question-l8n1u6yt","componentType":"Question","page":"3.209","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37brd8c","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))","type":"VTL"},"components":[{"id":"l8n1u6yt","componentType":"Suggester","mandatory":false,"page":"3.209","maxLength":20,"controls":[{"id":"l8n1u6yt-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG6) or PARENT_COM_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG6"}}]},{"id":"question-l8n2awb0","componentType":"Question","page":"3.210","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n24jzh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))","type":"VTL"},"components":[{"id":"l8n2awb0","componentType":"Suggester","mandatory":false,"page":"3.210","maxLength":20,"controls":[{"id":"l8n2awb0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG6) or PARENT_DEP_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG6"}}]},{"id":"question-l8n20r8i","componentType":"Question","page":"3.211","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n2b8s7","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")","type":"VTL"},"components":[{"id":"l8n20r8i","componentType":"Suggester","mandatory":false,"page":"3.211","maxLength":20,"controls":[{"id":"l8n20r8i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG6) or PARENT_PAY_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG6"}}]},{"id":"question-l4lfnqiq","componentType":"Question","page":"3.212","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" est-\" || (if SEXE_ENFLOG6=\"1\" then \"il\" else if SEXE_ENFLOG6=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"components":[{"id":"l4lfnqiq","componentType":"Radio","mandatory":false,"page":"3.212","orientation":"vertical","controls":[{"id":"l4lfnqiq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG6) or PARENT_FREQ_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG6"}}]},{"id":"question-l8n29jww","componentType":"Question","page":"3.213","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"components":[{"id":"l8n29jww","componentType":"Radio","mandatory":false,"page":"3.213","orientation":"vertical","controls":[{"id":"l8n29jww-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG6) or PARENT_DORT_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG6"}}]},{"id":"question-l8n1p0yj","componentType":"Question","page":"3.214","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"components":[{"id":"l8n1p0yj","componentType":"Radio","mandatory":false,"page":"3.214","orientation":"vertical","controls":[{"id":"l8n1p0yj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG6) or PARENT_VECU_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG6"}}]},{"id":"question-la6y7ni0","componentType":"Question","page":"3.215","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG6) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"components":[{"id":"la6y7ni0","componentType":"Radio","mandatory":false,"page":"3.215","orientation":"vertical","controls":[{"id":"la6y7ni0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG6) or SEP_AUT_PAR_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG6"}}]},{"id":"question-l8n1u2kg","componentType":"Question","page":"3.216","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")","type":"VTL"},"components":[{"id":"l8n1u2kg","componentType":"Radio","mandatory":false,"page":"3.216","orientation":"vertical","controls":[{"id":"l8n1u2kg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG6) or RESID_ENFLOG6 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG6"}}]},{"id":"question-l8n2hdgw","componentType":"Question","page":"3.217","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG6) || \" vit-\" || (if SEXE_ENFLOG6=\"1\" then \"il\" else if SEXE_ENFLOG6=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"l8n2hdgw","componentType":"Radio","mandatory":false,"page":"3.217","orientation":"vertical","controls":[{"id":"l8n2hdgw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG6) or SANTE_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG6"}}]},{"id":"question-lvgnrib2","componentType":"Question","page":"3.218","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG6,\"\")=\"\") then (if SEXE_ENFLOG6=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG6) || \" vit-\" || (if SEXE_ENFLOG6=\"1\" then \"il\" else if SEXE_ENFLOG6=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"components":[{"id":"lvgnrib2","componentType":"Radio","mandatory":false,"page":"3.218","orientation":"vertical","controls":[{"id":"lvgnrib2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG6) or ASE_ENFLOG6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG6"}}]},{"id":"ljmvjzfz","componentType":"Subsequence","goToPage":"3.219","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre septième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"}},{"id":"question-l8n3pb4f","componentType":"Question","page":"3.219","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le septième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n3pb4f","componentType":"Input","mandatory":false,"page":"3.219","maxLength":249,"controls":[{"id":"l8n3pb4f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG7) or PRENOM_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG7"}}]},{"id":"question-l8n3mik2","componentType":"Question","page":"3.220","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG7) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n3mik2","componentType":"Radio","mandatory":false,"page":"3.220","orientation":"vertical","controls":[{"id":"l8n3mik2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG7) or SEXE_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG7"}}]},{"id":"question-l8n3jmk8","componentType":"Question","page":"3.221","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n3jmk8","componentType":"Datepicker","mandatory":false,"page":"3.221","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8n3jmk8-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG7)) and (cast(ANAI_ENFLOG7, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3jmk8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG7) or ANAI_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3jmk8-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG7)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG7,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3jmk8-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG7)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG7,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG7"}}]},{"id":"question-l8n36fv3","componentType":"Question","page":"3.222","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG7) || \" est-\" || (if SEXE_ENFLOG7=\"1\" then \"il né\" else if SEXE_ENFLOG7=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n38zes","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n36fv3","componentType":"Radio","mandatory":false,"page":"3.222","orientation":"vertical","controls":[{"id":"l8n36fv3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG7) or NEFRANCE_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG7"}}]},{"id":"question-lv6ecg0i","componentType":"Question","page":"3.223","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG7) || \" a-t-\" || (if SEXE_ENFLOG7=\"1\" then \"il été adopté\" else if SEXE_ENFLOG7=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6ecg0i","componentType":"Radio","mandatory":false,"page":"3.223","orientation":"vertical","controls":[{"id":"lv6ecg0i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG7"}}]},{"id":"question-lv6eqkwn","componentType":"Question","page":"3.224","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" a-t-\" || (if SEXE_ENFLOG7=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG7=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7 =\"1\")","type":"VTL"},"components":[{"id":"lv6eqkwn","componentType":"Datepicker","mandatory":false,"page":"3.224","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6eqkwn-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG7)) and (cast(ANADOPT_ENFLOG7, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6eqkwn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG7) or ANADOPT_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6eqkwn-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG7)) and not(isnull(ANAI_ENFLOG7)) and cast(ANADOPT_ENFLOG7,integer) < cast(ANAI_ENFLOG7,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6eqkwn-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG7)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG7,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6eqkwn-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG7)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG7,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG7"}}]},{"id":"question-l8n3ff6s","componentType":"Question","page":"3.225","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6mw7k","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG7=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n3ff6s","componentType":"Radio","mandatory":false,"page":"3.225","orientation":"vertical","controls":[{"id":"l8n3ff6s-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG7) or PARENT_VIT_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG7"}}]},{"id":"question-l8n3b7uo","componentType":"Question","page":"3.226","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n32k1l","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n3b7uo","componentType":"Radio","mandatory":false,"page":"3.226","orientation":"vertical","controls":[{"id":"l8n3b7uo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG7) or PARENT_FR_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG7"}}]},{"id":"question-l8n3485v","componentType":"Question","page":"3.227","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bexmr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n3485v","componentType":"Suggester","mandatory":false,"page":"3.227","maxLength":20,"controls":[{"id":"l8n3485v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG7) or PARENT_COM_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG7"}}]},{"id":"question-l8n3fzap","componentType":"Question","page":"3.228","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n3j9rq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n3fzap","componentType":"Suggester","mandatory":false,"page":"3.228","maxLength":20,"controls":[{"id":"l8n3fzap-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG7) or PARENT_DEP_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG7"}}]},{"id":"question-l8n3burz","componentType":"Question","page":"3.229","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n2z0lq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")","type":"VTL"},"components":[{"id":"l8n3burz","componentType":"Suggester","mandatory":false,"page":"3.229","maxLength":20,"controls":[{"id":"l8n3burz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG7) or PARENT_PAY_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG7"}}]},{"id":"question-l8n32xk9","componentType":"Question","page":"3.230","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" est-\" || (if SEXE_ENFLOG7=\"1\" then \"il\" else if SEXE_ENFLOG7=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n32xk9","componentType":"Radio","mandatory":false,"page":"3.230","orientation":"vertical","controls":[{"id":"l8n32xk9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG7) or PARENT_FREQ_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG7"}}]},{"id":"question-l8n2x7q4","componentType":"Question","page":"3.231","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n2x7q4","componentType":"Radio","mandatory":false,"page":"3.231","orientation":"vertical","controls":[{"id":"l8n2x7q4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG7) or PARENT_DORT_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG7"}}]},{"id":"question-l8n3ary8","componentType":"Question","page":"3.232","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"components":[{"id":"l8n3ary8","componentType":"Radio","mandatory":false,"page":"3.232","orientation":"vertical","controls":[{"id":"l8n3ary8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG7) or PARENT_VECU_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG7"}}]},{"id":"question-la6y542q","componentType":"Question","page":"3.233","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG7) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"components":[{"id":"la6y542q","componentType":"Radio","mandatory":false,"page":"3.233","orientation":"vertical","controls":[{"id":"la6y542q-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG7) or SEP_AUT_PAR_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG7"}}]},{"id":"question-l8n2t39d","componentType":"Question","page":"3.234","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")","type":"VTL"},"components":[{"id":"l8n2t39d","componentType":"Radio","mandatory":false,"page":"3.234","orientation":"vertical","controls":[{"id":"l8n2t39d-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG7) or RESID_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG7"}}]},{"id":"question-l8n3bp4o","componentType":"Question","page":"3.235","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG7) || \" vit-\" || (if SEXE_ENFLOG7=\"1\" then \"il\" else if SEXE_ENFLOG7=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"l8n3bp4o","componentType":"Radio","mandatory":false,"page":"3.235","orientation":"vertical","controls":[{"id":"l8n3bp4o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG7) or SANTE_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG7"}}]},{"id":"question-lvgp60q8","componentType":"Question","page":"3.236","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG7,\"\")=\"\") then (if SEXE_ENFLOG7=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG7) || \" vit-\" || (if SEXE_ENFLOG7=\"1\" then \"il\" else if SEXE_ENFLOG7=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"components":[{"id":"lvgp60q8","componentType":"Radio","mandatory":false,"page":"3.236","orientation":"vertical","controls":[{"id":"lvgp60q8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG7) or ASE_ENFLOG7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG7"}}]},{"id":"ljmvnzv4","componentType":"Subsequence","goToPage":"3.237","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre huitième enfant qui vit avec vous, même une petite partie du temps seulement\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"}},{"id":"question-l8n4cayp","componentType":"Question","page":"3.237","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle le huitième enfant qui vit avec vous [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n4cayp","componentType":"Input","mandatory":false,"page":"3.237","maxLength":249,"controls":[{"id":"l8n4cayp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFLOG8) or PRENOM_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFLOG8"}}]},{"id":"question-l8n406m9","componentType":"Question","page":"3.238","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFLOG8) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n406m9","componentType":"Radio","mandatory":false,"page":"3.238","orientation":"vertical","controls":[{"id":"l8n406m9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFLOG8) or SEXE_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFLOG8"}}]},{"id":"question-l8n3tya0","componentType":"Question","page":"3.239","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n3tya0","componentType":"Datepicker","mandatory":false,"page":"3.239","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8n3tya0-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFLOG8)) and (cast(ANAI_ENFLOG8, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3tya0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFLOG8) or ANAI_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3tya0-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG8)) and not(isnull(ANAIS)) and cast(ANAI_ENFLOG8,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8n3tya0-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFLOG8)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFLOG8,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFLOG8"}}]},{"id":"question-l8n3vr8b","componentType":"Question","page":"3.240","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG8) || \" est-\" || (if SEXE_ENFLOG8=\"1\" then \"il né\" else if SEXE_ENFLOG8=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n3xl10","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n3vr8b","componentType":"Radio","mandatory":false,"page":"3.240","orientation":"vertical","controls":[{"id":"l8n3vr8b-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFLOG8) or NEFRANCE_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFLOG8"}}]},{"id":"question-lv6evuvu","componentType":"Question","page":"3.241","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG8) || \" a-t-\" || (if SEXE_ENFLOG8=\"1\" then \"il été adopté\" else if SEXE_ENFLOG8=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6evuvu","componentType":"Radio","mandatory":false,"page":"3.241","orientation":"vertical","controls":[{"id":"lv6evuvu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFLOG8"}}]},{"id":"question-lv6ev10t","componentType":"Question","page":"3.242","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" a-t-\" || (if SEXE_ENFLOG8=\"1\" then \"il été adopté ?\" else if SEXE_ENFLOG8=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8 =\"1\")","type":"VTL"},"components":[{"id":"lv6ev10t","componentType":"Datepicker","mandatory":false,"page":"3.242","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6ev10t-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFLOG8)) and (cast(ANADOPT_ENFLOG8, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6ev10t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFLOG8) or ANADOPT_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6ev10t-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG8)) and not(isnull(ANAI_ENFLOG8)) and cast(ANADOPT_ENFLOG8,integer) < cast(ANAI_ENFLOG8,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6ev10t-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG8)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFLOG8,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6ev10t-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFLOG8)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFLOG8,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFLOG8"}}]},{"id":"question-l8n427a2","componentType":"Question","page":"3.243","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6ir1k","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFLOG8=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n427a2","componentType":"Radio","mandatory":false,"page":"3.243","orientation":"vertical","controls":[{"id":"l8n427a2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFLOG8) or PARENT_VIT_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFLOG8"}}]},{"id":"question-l8n41hvu","componentType":"Question","page":"3.244","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" vit-il/elle en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8n3m622","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n41hvu","componentType":"Radio","mandatory":false,"page":"3.244","orientation":"vertical","controls":[{"id":"l8n41hvu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FR_ENFLOG8) or PARENT_FR_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FR_ENFLOG8"}}]},{"id":"question-l8n3tbmd","componentType":"Question","page":"3.245","label":{"value":"\"Dans quelle commune vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bhseb","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n3tbmd","componentType":"Suggester","mandatory":false,"page":"3.245","maxLength":20,"controls":[{"id":"l8n3tbmd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_COM_ENFLOG8) or PARENT_COM_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"PARENT_COM_ENFLOG8"}}]},{"id":"question-l8n41c78","componentType":"Question","page":"3.246","label":{"value":"\"Dans quel département vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n3q2xj","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n41c78","componentType":"Suggester","mandatory":false,"page":"3.246","maxLength":20,"controls":[{"id":"l8n41c78-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DEP_ENFLOG8) or PARENT_DEP_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"PARENT_DEP_ENFLOG8"}}]},{"id":"question-l8n40r7t","componentType":"Question","page":"3.247","label":{"value":"\"Dans quel pays vit l'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8n3kcnq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")","type":"VTL"},"components":[{"id":"l8n40r7t","componentType":"Suggester","mandatory":false,"page":"3.247","maxLength":20,"controls":[{"id":"l8n40r7t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_PAY_ENFLOG8) or PARENT_PAY_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PARENT_PAY_ENFLOG8"}}]},{"id":"question-l8n3fpp7","componentType":"Question","page":"3.248","label":{"value":"\"A quelle fréquence \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" est-\" || (if SEXE_ENFLOG8=\"1\" then \"il\" else if SEXE_ENFLOG8=\"2\" then \"elle\" else \"il/elle\") || \" en contact avec son autre parent (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n3fpp7","componentType":"Radio","mandatory":false,"page":"3.248","orientation":"vertical","controls":[{"id":"l8n3fpp7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFLOG8) or PARENT_FREQ_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFLOG8"}}]},{"id":"question-l8n3xb0z","componentType":"Question","page":"3.249","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" de dormir chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n3xb0z","componentType":"Radio","mandatory":false,"page":"3.249","orientation":"vertical","controls":[{"id":"l8n3xb0z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_DORT_ENFLOG8) or PARENT_DORT_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_DORT_ENFLOG8"}}]},{"id":"question-l8n3tjlw","componentType":"Question","page":"3.250","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"components":[{"id":"l8n3tjlw","componentType":"Radio","mandatory":false,"page":"3.250","orientation":"vertical","controls":[{"id":"l8n3tjlw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFLOG8) or PARENT_VECU_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFLOG8"}}]},{"id":"question-la6v947r","componentType":"Question","page":"3.251","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFLOG8) || \" [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"components":[{"id":"la6v947r","componentType":"Radio","mandatory":false,"page":"3.251","orientation":"vertical","controls":[{"id":"la6v947r-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFLOG8) or SEP_AUT_PAR_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFLOG8"}}]},{"id":"question-l8n3ocd5","componentType":"Question","page":"3.252","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")","type":"VTL"},"components":[{"id":"l8n3ocd5","componentType":"Radio","mandatory":false,"page":"3.252","orientation":"vertical","controls":[{"id":"l8n3ocd5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFLOG8) or RESID_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"2","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFLOG8"}}]},{"id":"question-l8n3uqr2","componentType":"Question","page":"3.253","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG8) || \" vit-\" || (if SEXE_ENFLOG8=\"1\" then \"il\" else if SEXE_ENFLOG8=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"l8n3uqr2","componentType":"Radio","mandatory":false,"page":"3.253","orientation":"vertical","controls":[{"id":"l8n3uqr2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFLOG8) or SANTE_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFLOG8"}}]},{"id":"question-lvgp89uy","componentType":"Question","page":"3.254","label":{"value":"\"\" || (if (nvl(PRENOM_ENFLOG8,\"\")=\"\") then (if SEXE_ENFLOG8=\"1\" then \"Cet enfant\" else if SEXE_ENFLOG8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFLOG8) || \" vit-\" || (if SEXE_ENFLOG8=\"1\" then \"il\" else if SEXE_ENFLOG8=\"2\" then \"elle\" else \"il/elle\") || \" aussi ailleurs à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. En particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"components":[{"id":"lvgp89uy","componentType":"Radio","mandatory":false,"page":"3.254","orientation":"vertical","controls":[{"id":"lvgp89uy-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFLOG8) or ASE_ENFLOG8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFLOG8"}}]},{"id":"l447aq23","componentType":"Subsequence","page":"3.255","goToPage":"3.255","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre \" || (if (CBENFAIL=1 or isnull(CBENFAIL) or NBENFAIL_UN=\"1\" ) then \"enfant\" else \"premier enfant\") || \" qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"description":{"value":"(if (cast(CBENFAIL,integer)=1 or NBENFAIL_UN=\"1\") then \"Décrivons votre enfant qui ne vit pas avec vous ou qui est décédé(e).\" else \"Commençons par décrire votre premier enfant qui ne vit pas avec vous ou qui est décédé(e).\")\r\n|| (if cast(CBENFAIL, integer)>8 then \" Décrivez seulement les 8 plus âgés.\" else \"\") ","type":"VTL|MD"}},{"id":"question-l4idug6p","componentType":"Question","page":"3.256","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle \" || (if (CBENFAIL = 1 or isnull(CBENFAIL) or NBENFAIL_UN=\"1\") then \"votre enfant\" else \"votre premier enfant\") || \" qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"l4idug6p","componentType":"Input","mandatory":false,"page":"3.256","maxLength":249,"controls":[{"id":"l4idug6p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL1) or PRENOM_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL1"}}]},{"id":"question-kwqix1j5","componentType":"Question","page":"3.257","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"kwqix1j5","componentType":"Radio","mandatory":false,"page":"3.257","orientation":"vertical","controls":[{"id":"kwqix1j5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL1) or SEXE_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL1"}}]},{"id":"question-kwqj561a","componentType":"Question","page":"3.258","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"kwqj561a","componentType":"Datepicker","mandatory":false,"page":"3.258","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"kwqj561a-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL1)) and (cast(ANAI_ENFAIL1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqj561a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL1) or ANAI_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqj561a-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL1)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqj561a-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL1"}}]},{"id":"question-l4cjlk0i","componentType":"Question","page":"3.259","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" est-\" || (if SEXE_ENFAIL1=\"1\" then \"il né\" else if SEXE_ENFAIL1=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4p9roph","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"l4cjlk0i","componentType":"Radio","mandatory":false,"page":"3.259","orientation":"vertical","controls":[{"id":"l4cjlk0i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL1) or NEFRANCE_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL1"}}]},{"id":"question-lv6fvjdh","componentType":"Question","page":"3.260","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" a-t-\" || (if SEXE_ENFAIL1=\"1\" then \"il été adopté\" else if SEXE_ENFAIL1=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6fvjdh","componentType":"Radio","mandatory":false,"page":"3.260","orientation":"vertical","controls":[{"id":"lv6fvjdh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL1) or ADOPT_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL1"}}]},{"id":"question-lv6fuaur","componentType":"Question","page":"3.261","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" a-t-\" || (if SEXE_ENFAIL1=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL1=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))","type":"VTL"},"components":[{"id":"lv6fuaur","componentType":"Datepicker","mandatory":false,"page":"3.261","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6fuaur-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL1)) and (cast(ANADOPT_ENFAIL1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6fuaur-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL1) or ANADOPT_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6fuaur-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL1)) and not(isnull(ANAI_ENFAIL1)) and cast(ANADOPT_ENFAIL1,integer) < cast(ANAI_ENFAIL1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6fuaur-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL1)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6fuaur-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL1)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL1"}}]},{"id":"question-l4cjivdg","componentType":"Question","page":"3.262","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6qqes","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\")) then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"l4cjivdg","componentType":"Radio","mandatory":false,"page":"3.262","orientation":"vertical","controls":[{"id":"l4cjivdg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL1) or PARENT_VIT_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL1"}}]},{"id":"question-l8lzt19v","componentType":"Question","page":"3.263","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))","type":"VTL"},"components":[{"id":"l8lzt19v","componentType":"Radio","mandatory":false,"page":"3.263","orientation":"vertical","controls":[{"id":"l8lzt19v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL1) or PARENT_VECU_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL1"}}]},{"id":"question-l4485tkr","componentType":"Question","page":"3.264","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" est-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"components":[{"id":"l4485tkr","componentType":"Radio","mandatory":false,"page":"3.264","orientation":"vertical","controls":[{"id":"l4485tkr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL1) or DC_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL1"}}]},{"id":"question-kwqkh05l","componentType":"Question","page":"3.265","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" est-\" || if SEXE_ENFAIL1=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL1=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l2eizvoe","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if (SEXE_ENFAIL1=\"1\" or isnull(SEXE_ENFAIL1)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL1) || (\" est\") || (if (SEXE_ENFAIL1 = \"1\" or nvl(SEXE_ENFAIL1,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1 =\"2\")","type":"VTL"},"components":[{"id":"kwqkh05l","componentType":"InputNumber","mandatory":false,"page":"3.265","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"kwqkh05l-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL1)) and (0>AG_DC_ENFAIL1 or 95AG_DC_ENFAIL1)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqkh05l-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqkh05l-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL1)) and not (isnull(AG_DC_ENFAIL1)) and cast(AG_DC_ENFAIL1,integer) > cast(AG_ENFAIL1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL1"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-kwqk3ki3","componentType":"Question","page":"3.266","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" a-t-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"components":[{"id":"kwqk3ki3","componentType":"InputNumber","mandatory":false,"page":"3.266","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"kwqk3ki3-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL1)) and (0>AG_DEPART_ENFAIL1 or 95AG_DEPART_ENFAIL1)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqk3ki3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqk3ki3-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL1)) and not(isnull(AG_ENFAIL1)) and cast(AG_DEPART_ENFAIL1,integer) > cast(AG_ENFAIL1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL1"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-kwqkmusz","componentType":"Question","page":"3.267","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"components":[{"id":"kwqkmusz","componentType":"Radio","mandatory":false,"page":"3.267","orientation":"vertical","controls":[{"id":"kwqkmusz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL1) or PARENT_FREQ_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL1"}}]},{"id":"question-kwqjp9yr","componentType":"Question","page":"3.268","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai6xcya","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"components":[{"id":"kwqjp9yr","componentType":"Radio","mandatory":false,"page":"3.268","orientation":"vertical","controls":[{"id":"kwqjp9yr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL1) or FR_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL1"}}]},{"id":"question-l4onsq99","componentType":"Question","page":"3.269","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bjupt","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","type":"VTL"},"components":[{"id":"l4onsq99","componentType":"Suggester","mandatory":false,"page":"3.269","maxLength":20,"controls":[{"id":"l4onsq99-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL1) or COM_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL1"}}]},{"id":"question-l4onskib","componentType":"Question","page":"3.270","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paafoh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","type":"VTL"},"components":[{"id":"l4onskib","componentType":"Suggester","mandatory":false,"page":"3.270","maxLength":20,"controls":[{"id":"l4onskib-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL1) or DEP_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL1"}}]},{"id":"question-l4onsf7y","componentType":"Question","page":"3.271","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4panc40","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")","type":"VTL"},"components":[{"id":"l4onsf7y","componentType":"Suggester","mandatory":false,"page":"3.271","maxLength":20,"controls":[{"id":"l4onsf7y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL1) or PAY_ENFAIL1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL1"}}]},{"id":"question-kwqk3a58","componentType":"Question","page":"3.272","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","type":"VTL"},"components":[{"id":"kwqk3a58","componentType":"Radio","mandatory":false,"page":"3.272","orientation":"vertical","controls":[{"id":"kwqk3a58-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL1) or LOG_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL1"}}]},{"id":"question-l44849iu","componentType":"Question","page":"3.273","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-\"|| (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","type":"VTL"},"components":[{"id":"l44849iu","componentType":"Radio","mandatory":false,"page":"3.273","orientation":"vertical","controls":[{"id":"l44849iu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL1) or AUT_PAR_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL1"}}]},{"id":"question-kwqj7xh6","componentType":"Question","page":"3.274","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"components":[{"id":"kwqj7xh6","componentType":"Radio","mandatory":false,"page":"3.274","orientation":"vertical","controls":[{"id":"kwqj7xh6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL1) or DORT_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL1"}}]},{"id":"question-l4o74e6d","componentType":"Question","page":"3.275","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL1) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","type":"VTL"},"components":[{"id":"l4o74e6d","componentType":"Radio","mandatory":false,"page":"3.275","orientation":"vertical","controls":[{"id":"l4o74e6d-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL1) or SEP_AUT_PAR_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL1"}}]},{"id":"question-l1gknpsx","componentType":"Question","page":"3.276","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","type":"VTL"},"components":[{"id":"l1gknpsx","componentType":"Radio","mandatory":false,"page":"3.276","orientation":"vertical","controls":[{"id":"l1gknpsx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL1) or RESID_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL1"}}]},{"id":"question-l1gi8vrf","componentType":"Question","page":"3.277","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"components":[{"id":"l1gi8vrf","componentType":"Radio","mandatory":false,"page":"3.277","orientation":"vertical","controls":[{"id":"l1gi8vrf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL1) or SANTE_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL1"}}]},{"id":"question-lvgpkb6t","componentType":"Question","page":"3.278","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL1,\"\")=\"\") then (if SEXE_ENFAIL1=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL1=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL1) || \" vit-\" || (if SEXE_ENFAIL1=\"1\" then \"il\" else if SEXE_ENFAIL1=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgpkb6t","componentType":"Radio","mandatory":false,"page":"3.278","orientation":"vertical","controls":[{"id":"lvgpkb6t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL1) or ASE_ENFAIL1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL1"}}]},{"id":"ljmwx9yl","componentType":"Subsequence","goToPage":"3.279","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre deuxième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"}},{"id":"question-l4lg1tus","componentType":"Question","page":"3.279","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre deuxième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lg1tus","componentType":"Input","mandatory":false,"page":"3.279","maxLength":249,"controls":[{"id":"l4lg1tus-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL2) or PRENOM_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL2"}}]},{"id":"question-l4lgd8bs","componentType":"Question","page":"3.280","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lgd8bs","componentType":"Radio","mandatory":false,"page":"3.280","orientation":"vertical","controls":[{"id":"l4lgd8bs-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL2) or SEXE_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL2"}}]},{"id":"question-l4lgjbi8","componentType":"Question","page":"3.281","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lgjbi8","componentType":"Datepicker","mandatory":false,"page":"3.281","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4lgjbi8-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL2)) and (cast(ANAI_ENFAIL2, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgjbi8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL2) or ANAI_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgjbi8-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL2)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgjbi8-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL2"}}]},{"id":"question-l4lgtwy7","componentType":"Question","page":"3.282","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" est-\" || (if SEXE_ENFAIL2=\"1\" then \"il né\" else if SEXE_ENFAIL2=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4p9xwnx","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lgtwy7","componentType":"Radio","mandatory":false,"page":"3.282","orientation":"vertical","controls":[{"id":"l4lgtwy7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL2) or NEFRANCE_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL2"}}]},{"id":"question-lv6g9dow","componentType":"Question","page":"3.283","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" a-t-\" || (if SEXE_ENFAIL2=\"1\" then \"il été adopté\" else if SEXE_ENFAIL2=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6g9dow","componentType":"Radio","mandatory":false,"page":"3.283","orientation":"vertical","controls":[{"id":"lv6g9dow-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL2"}}]},{"id":"question-lv6gdru6","componentType":"Question","page":"3.284","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" a-t-\" || (if SEXE_ENFAIL2=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL2=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2 =\"1\")","type":"VTL"},"components":[{"id":"lv6gdru6","componentType":"Datepicker","mandatory":false,"page":"3.284","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6gdru6-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL2)) and (cast(ANADOPT_ENFAIL2, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gdru6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL2) or ANADOPT_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gdru6-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL2)) and not(isnull(ANAI_ENFAIL2)) and cast(ANADOPT_ENFAIL2,integer) < cast(ANAI_ENFAIL2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gdru6-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL2)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL2,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gdru6-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL2)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL2,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL2"}}]},{"id":"question-l4lgqbdk","componentType":"Question","page":"3.285","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6qizr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL2=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lgqbdk","componentType":"Radio","mandatory":false,"page":"3.285","orientation":"vertical","controls":[{"id":"l4lgqbdk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL2) or PARENT_VIT_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL2"}}]},{"id":"question-l8lzthqx","componentType":"Question","page":"3.286","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))","type":"VTL"},"components":[{"id":"l8lzthqx","componentType":"Radio","mandatory":false,"page":"3.286","orientation":"vertical","controls":[{"id":"l8lzthqx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL2) or PARENT_VECU_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL2"}}]},{"id":"question-l4lh1bvw","componentType":"Question","page":"3.287","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" est-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"components":[{"id":"l4lh1bvw","componentType":"Radio","mandatory":false,"page":"3.287","orientation":"vertical","controls":[{"id":"l4lh1bvw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL2) or DC_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL2"}}]},{"id":"question-l4lhc03p","componentType":"Question","page":"3.288","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" est-\" || if SEXE_ENFAIL2=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL2=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4lh6w99","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if (SEXE_ENFAIL2=\"1\" or isnull(SEXE_ENFAIL2)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL2) || (\" est\") || (if (SEXE_ENFAIL2 = \"1\" or nvl(SEXE_ENFAIL2,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")","type":"VTL"},"components":[{"id":"l4lhc03p","componentType":"InputNumber","mandatory":false,"page":"3.288","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhc03p-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL2)) and (0>AG_DC_ENFAIL2 or 95AG_DC_ENFAIL2)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhc03p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhc03p-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL2)) and not (isnull(AG_DC_ENFAIL2)) and cast(AG_DC_ENFAIL2,integer) > cast(AG_ENFAIL2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL2"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lhkbmw","componentType":"Question","page":"3.289","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" a-t-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"components":[{"id":"l4lhkbmw","componentType":"InputNumber","mandatory":false,"page":"3.289","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhkbmw-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL2)) and (0>AG_DEPART_ENFAIL2 or 95AG_DEPART_ENFAIL2)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhkbmw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhkbmw-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL2)) and not(isnull(AG_ENFAIL2)) and cast(AG_DEPART_ENFAIL2,integer) > cast(AG_ENFAIL2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL2"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4liqyis","componentType":"Question","page":"3.290","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"components":[{"id":"l4liqyis","componentType":"Radio","mandatory":false,"page":"3.290","orientation":"vertical","controls":[{"id":"l4liqyis-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL2) or PARENT_FREQ_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL2"}}]},{"id":"question-l4lj22ar","componentType":"Question","page":"3.291","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai6wbee","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"components":[{"id":"l4lj22ar","componentType":"Radio","mandatory":false,"page":"3.291","orientation":"vertical","controls":[{"id":"l4lj22ar-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL2) or FR_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL2"}}]},{"id":"question-l4oo2unu","componentType":"Question","page":"3.292","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bxvdy","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))","type":"VTL"},"components":[{"id":"l4oo2unu","componentType":"Suggester","mandatory":false,"page":"3.292","maxLength":20,"controls":[{"id":"l4oo2unu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL2) or COM_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL2"}}]},{"id":"question-l4oo8gk0","componentType":"Question","page":"3.293","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paergi","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))","type":"VTL"},"components":[{"id":"l4oo8gk0","componentType":"Suggester","mandatory":false,"page":"3.293","maxLength":20,"controls":[{"id":"l4oo8gk0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL2) or DEP_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL2"}}]},{"id":"question-l4ooebmj","componentType":"Question","page":"3.294","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4padk5u","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")","type":"VTL"},"components":[{"id":"l4ooebmj","componentType":"Suggester","mandatory":false,"page":"3.294","maxLength":20,"controls":[{"id":"l4ooebmj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL2) or PAY_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL2"}}]},{"id":"question-l4liztyl","componentType":"Question","page":"3.295","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (cast(ANAI_ENFAIL2,integer) <= 2012)","type":"VTL"},"components":[{"id":"l4liztyl","componentType":"Radio","mandatory":false,"page":"3.295","orientation":"vertical","controls":[{"id":"l4liztyl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL2) or LOG_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL2"}}]},{"id":"question-l4lk1w8p","componentType":"Question","page":"3.296","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","type":"VTL"},"components":[{"id":"l4lk1w8p","componentType":"Radio","mandatory":false,"page":"3.296","orientation":"vertical","controls":[{"id":"l4lk1w8p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL2) or AUT_PAR_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL2"}}]},{"id":"question-l4ljkmaj","componentType":"Question","page":"3.297","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljkmaj","componentType":"Radio","mandatory":false,"page":"3.297","orientation":"vertical","controls":[{"id":"l4ljkmaj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL2) or DORT_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL2"}}]},{"id":"question-l4o73m0u","componentType":"Question","page":"3.298","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL2) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","type":"VTL"},"components":[{"id":"l4o73m0u","componentType":"Radio","mandatory":false,"page":"3.298","orientation":"vertical","controls":[{"id":"l4o73m0u-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL2) or SEP_AUT_PAR_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL2"}}]},{"id":"question-l4lmxke4","componentType":"Question","page":"3.299","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))","type":"VTL"},"components":[{"id":"l4lmxke4","componentType":"Radio","mandatory":false,"page":"3.299","orientation":"vertical","controls":[{"id":"l4lmxke4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL2) or RESID_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL2"}}]},{"id":"question-l4ljj44i","componentType":"Question","page":"3.300","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljj44i","componentType":"Radio","mandatory":false,"page":"3.300","orientation":"vertical","controls":[{"id":"l4ljj44i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL2) or SANTE_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL2"}}]},{"id":"question-lvgpi52w","componentType":"Question","page":"3.301","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL2,\"\")=\"\") then (if SEXE_ENFAIL2=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL2=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL2) || \" vit-\" || (if SEXE_ENFAIL2=\"1\" then \"il\" else if SEXE_ENFAIL2=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgpi52w","componentType":"Radio","mandatory":false,"page":"3.301","orientation":"vertical","controls":[{"id":"lvgpi52w-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL2) or ASE_ENFAIL2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL2"}}]},{"id":"ljmwnjny","componentType":"Subsequence","goToPage":"3.302","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre troisième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"}},{"id":"question-l4lg3j5g","componentType":"Question","page":"3.302","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre troisième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lg3j5g","componentType":"Input","mandatory":false,"page":"3.302","maxLength":249,"controls":[{"id":"l4lg3j5g-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL3) or PRENOM_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL3"}}]},{"id":"question-l4lg6nx5","componentType":"Question","page":"3.303","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL3) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lg6nx5","componentType":"Radio","mandatory":false,"page":"3.303","orientation":"vertical","controls":[{"id":"l4lg6nx5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL3) or SEXE_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL3"}}]},{"id":"question-l4lgenh5","componentType":"Question","page":"3.304","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lgenh5","componentType":"Datepicker","mandatory":false,"page":"3.304","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4lgenh5-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL3)) and (cast(ANAI_ENFAIL3, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgenh5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL3) or ANAI_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgenh5-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL3)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL3,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgenh5-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL3)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL3,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL3"}}]},{"id":"question-l4lh0q7i","componentType":"Question","page":"3.305","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" est-\" || (if SEXE_ENFAIL3=\"1\" then \"il né\" else if SEXE_ENFAIL3=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4pa7lpq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lh0q7i","componentType":"Radio","mandatory":false,"page":"3.305","orientation":"vertical","controls":[{"id":"l4lh0q7i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL3) or NEFRANCE_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL3"}}]},{"id":"question-lv6g0wv2","componentType":"Question","page":"3.306","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" a-t-\" || (if SEXE_ENFAIL3=\"1\" then \"il été adopté\" else if SEXE_ENFAIL3=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6g0wv2","componentType":"Radio","mandatory":false,"page":"3.306","orientation":"vertical","controls":[{"id":"lv6g0wv2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL3"}}]},{"id":"question-lv6gixgd","componentType":"Question","page":"3.307","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" a-t-\" || (if SEXE_ENFAIL3=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL3=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3 =\"1\")","type":"VTL"},"components":[{"id":"lv6gixgd","componentType":"Datepicker","mandatory":false,"page":"3.307","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6gixgd-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL3)) and (cast(ANADOPT_ENFAIL3, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gixgd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL3) or ANADOPT_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gixgd-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL3)) and not(isnull(ANAI_ENFAIL3)) and cast(ANADOPT_ENFAIL3,integer) < cast(ANAI_ENFAIL3,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gixgd-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL3)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL3,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gixgd-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL3)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL3,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL3"}}]},{"id":"question-l4lgysxq","componentType":"Question","page":"3.308","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6idi8","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL3=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lgysxq","componentType":"Radio","mandatory":false,"page":"3.308","orientation":"vertical","controls":[{"id":"l4lgysxq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL3) or PARENT_VIT_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL3"}}]},{"id":"question-l8m0bu1o","componentType":"Question","page":"3.309","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))","type":"VTL"},"components":[{"id":"l8m0bu1o","componentType":"Radio","mandatory":false,"page":"3.309","orientation":"vertical","controls":[{"id":"l8m0bu1o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL3) or PARENT_VECU_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL3"}}]},{"id":"question-l4lh0ofl","componentType":"Question","page":"3.310","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" est-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"components":[{"id":"l4lh0ofl","componentType":"Radio","mandatory":false,"page":"3.310","orientation":"vertical","controls":[{"id":"l4lh0ofl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL3) or DC_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL3"}}]},{"id":"question-l4lhbuxg","componentType":"Question","page":"3.311","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" est-\" || if SEXE_ENFAIL3=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL3=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4lh8af1","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if (SEXE_ENFAIL3=\"1\" or isnull(SEXE_ENFAIL3)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL3) || (\" est\") || (if (SEXE_ENFAIL3 = \"1\" or nvl(SEXE_ENFAIL3,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")","type":"VTL"},"components":[{"id":"l4lhbuxg","componentType":"InputNumber","mandatory":false,"page":"3.311","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhbuxg-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL3)) and (0>AG_DC_ENFAIL3 or 95AG_DC_ENFAIL3)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhbuxg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL3))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhbuxg-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL3)) and not (isnull(AG_DC_ENFAIL3)) and cast(AG_DC_ENFAIL3,integer) > cast(AG_ENFAIL3,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL3"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lhdubm","componentType":"Question","page":"3.312","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" a-t-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"components":[{"id":"l4lhdubm","componentType":"InputNumber","mandatory":false,"page":"3.312","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhdubm-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL3)) and (0>AG_DEPART_ENFAIL3 or 95AG_DEPART_ENFAIL3)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhdubm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL3))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhdubm-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL3)) and not(isnull(AG_ENFAIL3)) and cast(AG_DEPART_ENFAIL3,integer) > cast(AG_ENFAIL3,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL3"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lirpfm","componentType":"Question","page":"3.313","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"components":[{"id":"l4lirpfm","componentType":"Radio","mandatory":false,"page":"3.313","orientation":"vertical","controls":[{"id":"l4lirpfm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL3) or PARENT_FREQ_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL3"}}]},{"id":"question-l4lj2cqg","componentType":"Question","page":"3.314","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai71v9g","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"components":[{"id":"l4lj2cqg","componentType":"Radio","mandatory":false,"page":"3.314","orientation":"vertical","controls":[{"id":"l4lj2cqg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL3) or FR_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL3"}}]},{"id":"question-l4oo41j6","componentType":"Question","page":"3.315","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bf2u0","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))","type":"VTL"},"components":[{"id":"l4oo41j6","componentType":"Suggester","mandatory":false,"page":"3.315","maxLength":20,"controls":[{"id":"l4oo41j6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL3) or COM_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL3"}}]},{"id":"question-l4oo03nq","componentType":"Question","page":"3.316","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paa00m","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))","type":"VTL"},"components":[{"id":"l4oo03nq","componentType":"Suggester","mandatory":false,"page":"3.316","maxLength":20,"controls":[{"id":"l4oo03nq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL3) or DEP_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL3"}}]},{"id":"question-l4ooe2gj","componentType":"Question","page":"3.317","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pac47a","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")","type":"VTL"},"components":[{"id":"l4ooe2gj","componentType":"Suggester","mandatory":false,"page":"3.317","maxLength":20,"controls":[{"id":"l4ooe2gj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL3) or PAY_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL3"}}]},{"id":"question-l4ljddzv","componentType":"Question","page":"3.318","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (cast(ANAI_ENFAIL3,integer) <= 2012)","type":"VTL"},"components":[{"id":"l4ljddzv","componentType":"Radio","mandatory":false,"page":"3.318","orientation":"vertical","controls":[{"id":"l4ljddzv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL3) or LOG_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL3"}}]},{"id":"question-l4lmjzwd","componentType":"Question","page":"3.319","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","type":"VTL"},"components":[{"id":"l4lmjzwd","componentType":"Radio","mandatory":false,"page":"3.319","orientation":"vertical","controls":[{"id":"l4lmjzwd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL3) or AUT_PAR_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL3"}}]},{"id":"question-l4ljm6cp","componentType":"Question","page":"3.320","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljm6cp","componentType":"Radio","mandatory":false,"page":"3.320","orientation":"vertical","controls":[{"id":"l4ljm6cp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL3) or DORT_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL3"}}]},{"id":"question-l4o7gt0n","componentType":"Question","page":"3.321","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL3) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","type":"VTL"},"components":[{"id":"l4o7gt0n","componentType":"Radio","mandatory":false,"page":"3.321","orientation":"vertical","controls":[{"id":"l4o7gt0n-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL3) or SEP_AUT_PAR_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL3"}}]},{"id":"question-l4lmszob","componentType":"Question","page":"3.322","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))","type":"VTL"},"components":[{"id":"l4lmszob","componentType":"Radio","mandatory":false,"page":"3.322","orientation":"vertical","controls":[{"id":"l4lmszob-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL3) or RESID_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL3"}}]},{"id":"question-l4ljg7fn","componentType":"Question","page":"3.323","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljg7fn","componentType":"Radio","mandatory":false,"page":"3.323","orientation":"vertical","controls":[{"id":"l4ljg7fn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL3) or SANTE_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL3"}}]},{"id":"question-lvgq4efl","componentType":"Question","page":"3.324","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL3,\"\")=\"\") then (if SEXE_ENFAIL3=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL3=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL3) || \" vit-\" || (if SEXE_ENFAIL3=\"1\" then \"il\" else if SEXE_ENFAIL3=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgq4efl","componentType":"Radio","mandatory":false,"page":"3.324","orientation":"vertical","controls":[{"id":"lvgq4efl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL3) or ASE_ENFAIL3=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL3"}}]},{"id":"ljof3wlm","componentType":"Subsequence","goToPage":"3.325","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre quatrième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"}},{"id":"question-l4lg5t9v","componentType":"Question","page":"3.325","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre quatrième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lg5t9v","componentType":"Input","mandatory":false,"page":"3.325","maxLength":249,"controls":[{"id":"l4lg5t9v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL4) or PRENOM_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL4"}}]},{"id":"question-l4lg3wub","componentType":"Question","page":"3.326","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL4) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lg3wub","componentType":"Radio","mandatory":false,"page":"3.326","orientation":"vertical","controls":[{"id":"l4lg3wub-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL4) or SEXE_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL4"}}]},{"id":"question-l4lgfphb","componentType":"Question","page":"3.327","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lgfphb","componentType":"Datepicker","mandatory":false,"page":"3.327","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4lgfphb-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL4)) and (cast(ANAI_ENFAIL4, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgfphb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL4) or ANAI_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgfphb-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL4)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL4,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgfphb-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL4)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL4,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL4"}}]},{"id":"question-l4lgr9ny","componentType":"Question","page":"3.328","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" est-\" || (if SEXE_ENFAIL4=\"1\" then \"il né\" else if SEXE_ENFAIL4=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4paawvf","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lgr9ny","componentType":"Radio","mandatory":false,"page":"3.328","orientation":"vertical","controls":[{"id":"l4lgr9ny-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL4) or NEFRANCE_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL4"}}]},{"id":"question-lv6h7uqn","componentType":"Question","page":"3.329","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" a-t-\" || (if SEXE_ENFAIL4=\"1\" then \"il été adopté\" else if SEXE_ENFAIL4=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6h7uqn","componentType":"Radio","mandatory":false,"page":"3.329","orientation":"vertical","controls":[{"id":"lv6h7uqn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL4"}}]},{"id":"question-lv6gsj3o","componentType":"Question","page":"3.330","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" a-t-\" || (if SEXE_ENFAIL4=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL4=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4 =\"1\")","type":"VTL"},"components":[{"id":"lv6gsj3o","componentType":"Datepicker","mandatory":false,"page":"3.330","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6gsj3o-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL4)) and (cast(ANADOPT_ENFAIL4, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gsj3o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL4) or ANADOPT_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gsj3o-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(not(isnull(ANADOPT_ENFAIL4)) and not(isnull(ANAI_ENFAIL4)) and cast(ANADOPT_ENFAIL4,integer) < cast(ANAI_ENFAIL4,integer))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gsj3o-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(not(isnull(ANADOPT_ENFAIL4)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL4,integer) < ANAIS)","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6gsj3o-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(not(isnull(ANADOPT_ENFAIL4)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL4,integer)))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL4"}}]},{"id":"question-l4lgo4yb","componentType":"Question","page":"3.331","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6nlan","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL4=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lgo4yb","componentType":"Radio","mandatory":false,"page":"3.331","orientation":"vertical","controls":[{"id":"l4lgo4yb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL4) or PARENT_VIT_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL4"}}]},{"id":"question-l8m03w7m","componentType":"Question","page":"3.332","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))","type":"VTL"},"components":[{"id":"l8m03w7m","componentType":"Radio","mandatory":false,"page":"3.332","orientation":"vertical","controls":[{"id":"l8m03w7m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL4) or PARENT_VECU_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL4"}}]},{"id":"question-l4lh1a42","componentType":"Question","page":"3.333","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" est-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"components":[{"id":"l4lh1a42","componentType":"Radio","mandatory":false,"page":"3.333","orientation":"vertical","controls":[{"id":"l4lh1a42-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL4) or DC_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL4"}}]},{"id":"question-l4lhbfxh","componentType":"Question","page":"3.334","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" est-\" || if SEXE_ENFAIL4=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL4=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4lh0mk3","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if (SEXE_ENFAIL4=\"1\" or isnull(SEXE_ENFAIL4)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL4) || (\" est\") || (if (SEXE_ENFAIL4 = \"1\" or nvl(SEXE_ENFAIL4,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")","type":"VTL"},"components":[{"id":"l4lhbfxh","componentType":"InputNumber","mandatory":false,"page":"3.334","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhbfxh-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL4)) and (0>AG_DC_ENFAIL4 or 95AG_DC_ENFAIL4)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhbfxh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL4))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhbfxh-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL4)) and not (isnull(AG_DC_ENFAIL4)) and cast(AG_DC_ENFAIL4,integer) > cast(AG_ENFAIL4,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL4"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lho0e2","componentType":"Question","page":"3.335","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" a-t-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"components":[{"id":"l4lho0e2","componentType":"InputNumber","mandatory":false,"page":"3.335","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lho0e2-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL4)) and (0>AG_DEPART_ENFAIL4 or 95AG_DEPART_ENFAIL4)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lho0e2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL4))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lho0e2-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL4)) and not(isnull(AG_ENFAIL4)) and cast(AG_DEPART_ENFAIL4,integer) > cast(AG_ENFAIL4,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL4"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lj5kv6","componentType":"Question","page":"3.336","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"components":[{"id":"l4lj5kv6","componentType":"Radio","mandatory":false,"page":"3.336","orientation":"vertical","controls":[{"id":"l4lj5kv6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL4) or PARENT_FREQ_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL4"}}]},{"id":"question-l4lj0iea","componentType":"Question","page":"3.337","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai71ft1","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"components":[{"id":"l4lj0iea","componentType":"Radio","mandatory":false,"page":"3.337","orientation":"vertical","controls":[{"id":"l4lj0iea-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL4) or FR_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL4"}}]},{"id":"question-l4onwhrf","componentType":"Question","page":"3.338","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37btifk","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))","type":"VTL"},"components":[{"id":"l4onwhrf","componentType":"Suggester","mandatory":false,"page":"3.338","maxLength":20,"controls":[{"id":"l4onwhrf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL4) or COM_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL4"}}]},{"id":"question-l4oo4x1t","componentType":"Question","page":"3.339","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4pa6ogq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))","type":"VTL"},"components":[{"id":"l4oo4x1t","componentType":"Suggester","mandatory":false,"page":"3.339","maxLength":20,"controls":[{"id":"l4oo4x1t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL4) or DEP_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL4"}}]},{"id":"question-l4oo1817","componentType":"Question","page":"3.340","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paauej","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")","type":"VTL"},"components":[{"id":"l4oo1817","componentType":"Suggester","mandatory":false,"page":"3.340","maxLength":20,"controls":[{"id":"l4oo1817-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL4) or PAY_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL4"}}]},{"id":"question-l4lixcs2","componentType":"Question","page":"3.341","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (cast(ANAI_ENFAIL4,integer) <= 2012)","type":"VTL"},"components":[{"id":"l4lixcs2","componentType":"Radio","mandatory":false,"page":"3.341","orientation":"vertical","controls":[{"id":"l4lixcs2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL4) or LOG_ENFAIL4 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL4"}}]},{"id":"question-l4lms9a0","componentType":"Question","page":"3.342","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","type":"VTL"},"components":[{"id":"l4lms9a0","componentType":"Radio","mandatory":false,"page":"3.342","orientation":"vertical","controls":[{"id":"l4lms9a0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL4) or AUT_PAR_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL4"}}]},{"id":"question-l4ljmpiu","componentType":"Question","page":"3.343","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljmpiu","componentType":"Radio","mandatory":false,"page":"3.343","orientation":"vertical","controls":[{"id":"l4ljmpiu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL4) or DORT_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL4"}}]},{"id":"question-l4o7jdze","componentType":"Question","page":"3.344","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL4) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","type":"VTL"},"components":[{"id":"l4o7jdze","componentType":"Radio","mandatory":false,"page":"3.344","orientation":"vertical","controls":[{"id":"l4o7jdze-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL4) or SEP_AUT_PAR_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL4"}}]},{"id":"question-l4lmvah7","componentType":"Question","page":"3.345","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))","type":"VTL"},"components":[{"id":"l4lmvah7","componentType":"Radio","mandatory":false,"page":"3.345","orientation":"vertical","controls":[{"id":"l4lmvah7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL4) or RESID_ENFAIL4)=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL4"}}]},{"id":"question-l4ljjvig","componentType":"Question","page":"3.346","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljjvig","componentType":"Radio","mandatory":false,"page":"3.346","orientation":"vertical","controls":[{"id":"l4ljjvig-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL4) or SANTE_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL4"}}]},{"id":"question-lvgpyw4o","componentType":"Question","page":"3.347","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL4,\"\")=\"\") then (if SEXE_ENFAIL4=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL4=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL4) || \" vit-\" || (if SEXE_ENFAIL4=\"1\" then \"il\" else if SEXE_ENFAIL4=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgpyw4o","componentType":"Radio","mandatory":false,"page":"3.347","orientation":"vertical","controls":[{"id":"lvgpyw4o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL4) or ASE_ENFAIL4=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL4"}}]},{"id":"ljof7iet","componentType":"Subsequence","goToPage":"3.348","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre cinquième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"}},{"id":"question-l4lgayon","componentType":"Question","page":"3.348","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre cinquième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lgayon","componentType":"Input","mandatory":false,"page":"3.348","maxLength":249,"controls":[{"id":"l4lgayon-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL5) or PRENOM_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL5"}}]},{"id":"question-l4lgep4c","componentType":"Question","page":"3.349","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL5) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lgep4c","componentType":"Radio","mandatory":false,"page":"3.349","orientation":"vertical","controls":[{"id":"l4lgep4c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL5) or SEXE_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL5"}}]},{"id":"question-l4lgp1ft","componentType":"Question","page":"3.350","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lgp1ft","componentType":"Datepicker","mandatory":false,"page":"3.350","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l4lgp1ft-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL5)) and (cast(ANAI_ENFAIL5, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgp1ft-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL5) or ANAI_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgp1ft-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL5)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL5,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lgp1ft-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL5)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL5,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL5"}}]},{"id":"question-l4lgnphx","componentType":"Question","page":"3.351","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" est-\" || (if SEXE_ENFAIL5=\"1\" then \"il né\" else if SEXE_ENFAIL5=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4pabnh2","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lgnphx","componentType":"Radio","mandatory":false,"page":"3.351","orientation":"vertical","controls":[{"id":"l4lgnphx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL5) or NEFRANCE_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL5"}}]},{"id":"question-lv6h7z1u","componentType":"Question","page":"3.352","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" a-t-\" || (if SEXE_ENFAIL5=\"1\" then \"il été adopté\" else if SEXE_ENFAIL5=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6h7z1u","componentType":"Radio","mandatory":false,"page":"3.352","orientation":"vertical","controls":[{"id":"lv6h7z1u-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL5"}}]},{"id":"question-lv6hzzia","componentType":"Question","page":"3.353","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" a-t-\" || (if SEXE_ENFAIL5=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL5=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5 =\"1\")","type":"VTL"},"components":[{"id":"lv6hzzia","componentType":"Datepicker","mandatory":false,"page":"3.353","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6hzzia-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL5)) and (cast(ANADOPT_ENFAIL5, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6hzzia-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL5) or ANADOPT_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6hzzia-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL5)) and not(isnull(ANAI_ENFAIL5)) and cast(ANADOPT_ENFAIL5,integer) < cast(ANAI_ENFAIL5,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6hzzia-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL5)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL5,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6hzzia-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL5)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL5,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL5"}}]},{"id":"question-l4lh672z","componentType":"Question","page":"3.354","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6st8x","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL5=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lh672z","componentType":"Radio","mandatory":false,"page":"3.354","orientation":"vertical","controls":[{"id":"l4lh672z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL5) or PARENT_VIT_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL5"}}]},{"id":"question-l8m0ld6c","componentType":"Question","page":"3.355","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))","type":"VTL"},"components":[{"id":"l8m0ld6c","componentType":"Radio","mandatory":false,"page":"3.355","orientation":"vertical","controls":[{"id":"l8m0ld6c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL5) or PARENT_VECU_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL5"}}]},{"id":"question-l4lhcdf6","componentType":"Question","page":"3.356","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" est-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"components":[{"id":"l4lhcdf6","componentType":"Radio","mandatory":false,"page":"3.356","orientation":"vertical","controls":[{"id":"l4lhcdf6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL5) or DC_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL5"}}]},{"id":"question-l4lh8c72","componentType":"Question","page":"3.357","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" est-\" || if SEXE_ENFAIL5=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL5=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4lh2kwz","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if (SEXE_ENFAIL5=\"1\" or isnull(SEXE_ENFAIL5)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL5) || (\" est\") || (if (SEXE_ENFAIL5 = \"1\" or nvl(SEXE_ENFAIL5,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")","type":"VTL"},"components":[{"id":"l4lh8c72","componentType":"InputNumber","mandatory":false,"page":"3.357","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lh8c72-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL5)) and (0>AG_DC_ENFAIL5 or 95AG_DC_ENFAIL5)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lh8c72-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL5))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lh8c72-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL5)) and not (isnull(AG_DC_ENFAIL5)) and cast(AG_DC_ENFAIL5,integer) > cast(AG_ENFAIL5,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL5"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lhn614","componentType":"Question","page":"3.358","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" a-t-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"components":[{"id":"l4lhn614","componentType":"InputNumber","mandatory":false,"page":"3.358","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l4lhn614-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL5)) and (0>AG_DEPART_ENFAIL5 or 95AG_DEPART_ENFAIL5)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhn614-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL5))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4lhn614-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL5)) and not(isnull(AG_ENFAIL5)) and cast(AG_DEPART_ENFAIL5,integer) > cast(AG_ENFAIL5,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL5"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l4lj98cz","componentType":"Question","page":"3.359","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"components":[{"id":"l4lj98cz","componentType":"Radio","mandatory":false,"page":"3.359","orientation":"vertical","controls":[{"id":"l4lj98cz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL5) or PARENT_FREQ_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL5"}}]},{"id":"question-l4lijtvo","componentType":"Question","page":"3.360","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai73fre","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"components":[{"id":"l4lijtvo","componentType":"Radio","mandatory":false,"page":"3.360","orientation":"vertical","controls":[{"id":"l4lijtvo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL5) or FR_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL5"}}]},{"id":"question-l4oo41q4","componentType":"Question","page":"3.361","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bjdsq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))","type":"VTL"},"components":[{"id":"l4oo41q4","componentType":"Suggester","mandatory":false,"page":"3.361","maxLength":20,"controls":[{"id":"l4oo41q4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL5) or COM_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL5"}}]},{"id":"question-l4oo7lwi","componentType":"Question","page":"3.362","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paeclu","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))","type":"VTL"},"components":[{"id":"l4oo7lwi","componentType":"Suggester","mandatory":false,"page":"3.362","maxLength":20,"controls":[{"id":"l4oo7lwi-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL5) or DEP_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL5"}}]},{"id":"question-l4oo5bj9","componentType":"Question","page":"3.363","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4paiwz0","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")","type":"VTL"},"components":[{"id":"l4oo5bj9","componentType":"Suggester","mandatory":false,"page":"3.363","maxLength":20,"controls":[{"id":"l4oo5bj9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL5) or PAY_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL5"}}]},{"id":"question-l4lizygc","componentType":"Question","page":"3.364","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (cast(ANAI_ENFAIL5,integer) <= 2012)","type":"VTL"},"components":[{"id":"l4lizygc","componentType":"Radio","mandatory":false,"page":"3.364","orientation":"vertical","controls":[{"id":"l4lizygc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL5) or LOG_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL5"}}]},{"id":"question-l4lmc52p","componentType":"Question","page":"3.365","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","type":"VTL"},"components":[{"id":"l4lmc52p","componentType":"Radio","mandatory":false,"page":"3.365","orientation":"vertical","controls":[{"id":"l4lmc52p-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL5) or AUT_PAR_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL5"}}]},{"id":"question-l4ljxer7","componentType":"Question","page":"3.366","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljxer7","componentType":"Radio","mandatory":false,"page":"3.366","orientation":"vertical","controls":[{"id":"l4ljxer7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL5) or DORT_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL5"}}]},{"id":"question-l4o7vzru","componentType":"Question","page":"3.367","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL5) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","type":"VTL"},"components":[{"id":"l4o7vzru","componentType":"Radio","mandatory":false,"page":"3.367","orientation":"vertical","controls":[{"id":"l4o7vzru-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL5) or SEP_AUT_PAR_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL5"}}]},{"id":"question-l4lms6u4","componentType":"Question","page":"3.368","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))","type":"VTL"},"components":[{"id":"l4lms6u4","componentType":"Radio","mandatory":false,"page":"3.368","orientation":"vertical","controls":[{"id":"l4lms6u4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL5) or RESID_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL5"}}]},{"id":"question-l4ljcdar","componentType":"Question","page":"3.369","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"components":[{"id":"l4ljcdar","componentType":"Radio","mandatory":false,"page":"3.369","orientation":"vertical","controls":[{"id":"l4ljcdar-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL5) or SANTE_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL5"}}]},{"id":"question-lvgq0pjg","componentType":"Question","page":"3.370","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL5,\"\")=\"\") then (if SEXE_ENFAIL5=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL5=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL5) || \" vit-\" || (if SEXE_ENFAIL5=\"1\" then \"il\" else if SEXE_ENFAIL5=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgq0pjg","componentType":"Radio","mandatory":false,"page":"3.370","orientation":"vertical","controls":[{"id":"lvgq0pjg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL5) or ASE_ENFAIL5=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL5"}}]},{"id":"ljoezdxm","componentType":"Subsequence","goToPage":"3.371","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre sixième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"}},{"id":"question-l8oign0h","componentType":"Question","page":"3.371","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre sixième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8oign0h","componentType":"Input","mandatory":false,"page":"3.371","maxLength":249,"controls":[{"id":"l8oign0h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL6) or PRENOM_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL6"}}]},{"id":"question-l8oi92w4","componentType":"Question","page":"3.372","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL6) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8oi92w4","componentType":"Radio","mandatory":false,"page":"3.372","orientation":"vertical","controls":[{"id":"l8oi92w4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL6) or SEXE_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL6"}}]},{"id":"question-l8oi7q9f","componentType":"Question","page":"3.373","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8oi7q9f","componentType":"Datepicker","mandatory":false,"page":"3.373","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8oi7q9f-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL6)) and (cast(ANAI_ENFAIL6, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8oi7q9f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL6) or ANAI_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8oi7q9f-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL6)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL6,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8oi7q9f-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL6)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL6,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL6"}}]},{"id":"question-l8oientz","componentType":"Question","page":"3.374","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" est-\" || (if SEXE_ENFAIL6=\"1\" then \"il né\" else if SEXE_ENFAIL6=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8oifpiy","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8oientz","componentType":"Radio","mandatory":false,"page":"3.374","orientation":"vertical","controls":[{"id":"l8oientz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL6) or NEFRANCE_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL6"}}]},{"id":"question-lv6i7gwi","componentType":"Question","page":"3.375","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" a-t-\" || (if SEXE_ENFAIL6=\"1\" then \"il été adopté\" else if SEXE_ENFAIL6=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6i7gwi","componentType":"Radio","mandatory":false,"page":"3.375","orientation":"vertical","controls":[{"id":"lv6i7gwi-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL6"}}]},{"id":"question-lv6imul3","componentType":"Question","page":"3.376","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" a-t-\" || (if SEXE_ENFAIL6=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL6=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6 =\"1\")","type":"VTL"},"components":[{"id":"lv6imul3","componentType":"Datepicker","mandatory":false,"page":"3.376","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6imul3-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL6)) and (cast(ANADOPT_ENFAIL6, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6imul3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL6) or ANADOPT_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6imul3-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL6)) and not(isnull(ANAI_ENFAIL6)) and cast(ANADOPT_ENFAIL6,integer) < cast(ANAI_ENFAIL6,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6imul3-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL6)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL6,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6imul3-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL6)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL6,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL6"}}]},{"id":"question-l8oidc2m","componentType":"Question","page":"3.377","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6ylje","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL6=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8oidc2m","componentType":"Radio","mandatory":false,"page":"3.377","orientation":"vertical","controls":[{"id":"l8oidc2m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL6) or PARENT_VIT_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL6"}}]},{"id":"question-l8oib75g","componentType":"Question","page":"3.378","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))","type":"VTL"},"components":[{"id":"l8oib75g","componentType":"Radio","mandatory":false,"page":"3.378","orientation":"vertical","controls":[{"id":"l8oib75g-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL6) or PARENT_VECU_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL6"}}]},{"id":"question-l8ohus0v","componentType":"Question","page":"3.379","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" est-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") ||\" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"components":[{"id":"l8ohus0v","componentType":"Radio","mandatory":false,"page":"3.379","orientation":"vertical","controls":[{"id":"l8ohus0v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL6) or DC_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL6"}}]},{"id":"question-l8ohrpn7","componentType":"Question","page":"3.380","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" est-\" || if SEXE_ENFAIL6=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL6=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8ohgdgh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if (SEXE_ENFAIL6=\"1\" or isnull(SEXE_ENFAIL6)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL6) || (\" est\") || (if (SEXE_ENFAIL6 = \"1\" or nvl(SEXE_ENFAIL6,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")","type":"VTL"},"components":[{"id":"l8ohrpn7","componentType":"InputNumber","mandatory":false,"page":"3.380","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8ohrpn7-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL6)) and (0>AG_DC_ENFAIL6 or 95AG_DC_ENFAIL6)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ohrpn7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL6))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ohrpn7-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL6)) and not (isnull(AG_DC_ENFAIL6)) and cast(AG_DC_ENFAIL6,integer) > cast(AG_ENFAIL6,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL6"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8ohwpt9","componentType":"Question","page":"3.381","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" a-t-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"components":[{"id":"l8ohwpt9","componentType":"InputNumber","mandatory":false,"page":"3.381","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8ohwpt9-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL6)) and (0>AG_DEPART_ENFAIL6 or 95AG_DEPART_ENFAIL6)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ohwpt9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL6))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ohwpt9-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL6)) and not(isnull(AG_ENFAIL6)) and cast(AG_DEPART_ENFAIL6,integer) > cast(AG_ENFAIL6,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL6"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8oh46rn","componentType":"Question","page":"3.382","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"components":[{"id":"l8oh46rn","componentType":"Radio","mandatory":false,"page":"3.382","orientation":"vertical","controls":[{"id":"l8oh46rn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL6) or PARENT_FREQ_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL6"}}]},{"id":"question-l8ogysyp","componentType":"Question","page":"3.383","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai78xq9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"components":[{"id":"l8ogysyp","componentType":"Radio","mandatory":false,"page":"3.383","orientation":"vertical","controls":[{"id":"l8ogysyp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL6) or FR_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL6"}}]},{"id":"question-l8ogqig3","componentType":"Question","page":"3.384","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bq99r","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))","type":"VTL"},"components":[{"id":"l8ogqig3","componentType":"Suggester","mandatory":false,"page":"3.384","maxLength":20,"controls":[{"id":"l8ogqig3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL6) or COM_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL6"}}]},{"id":"question-l8ogp9jo","componentType":"Question","page":"3.385","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8ogoo1k","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))","type":"VTL"},"components":[{"id":"l8ogp9jo","componentType":"Suggester","mandatory":false,"page":"3.385","maxLength":20,"controls":[{"id":"l8ogp9jo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL6) or DEP_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL6"}}]},{"id":"question-l8ogpnbn","componentType":"Question","page":"3.386","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8ogttr2","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")","type":"VTL"},"components":[{"id":"l8ogpnbn","componentType":"Suggester","mandatory":false,"page":"3.386","maxLength":20,"controls":[{"id":"l8ogpnbn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL6) or PAY_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL6"}}]},{"id":"question-l8ogukpt","componentType":"Question","page":"3.387","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (cast(ANAI_ENFAIL6,integer) <= 2012)","type":"VTL"},"components":[{"id":"l8ogukpt","componentType":"Radio","mandatory":false,"page":"3.387","orientation":"vertical","controls":[{"id":"l8ogukpt-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL6) or LOG_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL6"}}]},{"id":"question-l8ob0dk4","componentType":"Question","page":"3.388","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","type":"VTL"},"components":[{"id":"l8ob0dk4","componentType":"Radio","mandatory":false,"page":"3.388","orientation":"vertical","controls":[{"id":"l8ob0dk4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL6) or AUT_PAR_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL6"}}]},{"id":"question-l8oarkxm","componentType":"Question","page":"3.389","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8oarkxm","componentType":"Radio","mandatory":false,"page":"3.389","orientation":"vertical","controls":[{"id":"l8oarkxm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL6) or DORT_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL6"}}]},{"id":"question-l8oaqbj5","componentType":"Question","page":"3.390","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL6) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","type":"VTL"},"components":[{"id":"l8oaqbj5","componentType":"Radio","mandatory":false,"page":"3.390","orientation":"vertical","controls":[{"id":"l8oaqbj5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL6) or SEP_AUT_PAR_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL6"}}]},{"id":"question-l8oanpzw","componentType":"Question","page":"3.391","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))","type":"VTL"},"components":[{"id":"l8oanpzw","componentType":"Radio","mandatory":false,"page":"3.391","orientation":"vertical","controls":[{"id":"l8oanpzw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL6) or RESID_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL6"}}]},{"id":"question-l8oasgat","componentType":"Question","page":"3.392","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8oasgat","componentType":"Radio","mandatory":false,"page":"3.392","orientation":"vertical","controls":[{"id":"l8oasgat-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL6) or SANTE_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL6"}}]},{"id":"question-lvgqbpim","componentType":"Question","page":"3.393","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL6,\"\")=\"\") then (if SEXE_ENFAIL6=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL6=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL6) || \" vit-\" || (if SEXE_ENFAIL6=\"1\" then \"il\" else if SEXE_ENFAIL6=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.\r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgqbpim","componentType":"Radio","mandatory":false,"page":"3.393","orientation":"vertical","controls":[{"id":"lvgqbpim-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL6) or ASE_ENFAIL6=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL6"}}]},{"id":"ljof8bti","componentType":"Subsequence","goToPage":"3.394","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre septième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"}},{"id":"question-l8ok9kmj","componentType":"Question","page":"3.394","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre septième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8ok9kmj","componentType":"Input","mandatory":false,"page":"3.394","maxLength":249,"controls":[{"id":"l8ok9kmj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL7) or PRENOM_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL7"}}]},{"id":"question-l8okbmv3","componentType":"Question","page":"3.395","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL7) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8okbmv3","componentType":"Radio","mandatory":false,"page":"3.395","orientation":"vertical","controls":[{"id":"l8okbmv3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL7) or SEXE_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL7"}}]},{"id":"question-l8okh65e","componentType":"Question","page":"3.396","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8okh65e","componentType":"Datepicker","mandatory":false,"page":"3.396","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8okh65e-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL7)) and (cast(ANAI_ENFAIL7, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8okh65e-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL7) or ANAI_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8okh65e-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL7)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL7,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8okh65e-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL7)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL7,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL7"}}]},{"id":"question-l8okc5z9","componentType":"Question","page":"3.397","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" est-\" || (if SEXE_ENFAIL7=\"1\" then \"il né\" else if SEXE_ENFAIL7=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8ok97f5","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8okc5z9","componentType":"Radio","mandatory":false,"page":"3.397","orientation":"vertical","controls":[{"id":"l8okc5z9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL7) or NEFRANCE_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL7"}}]},{"id":"question-lv6hwis8","componentType":"Question","page":"3.398","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" a-t-\" || (if SEXE_ENFAIL7=\"1\" then \"il été adopté\" else if SEXE_ENFAIL7=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6hwis8","componentType":"Radio","mandatory":false,"page":"3.398","orientation":"vertical","controls":[{"id":"lv6hwis8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL7"}}]},{"id":"question-lv6kasxf","componentType":"Question","page":"3.399","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" a-t-\" || (if SEXE_ENFAIL7=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL7=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7 =\"1\")","type":"VTL"},"components":[{"id":"lv6kasxf","componentType":"Datepicker","mandatory":false,"page":"3.399","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6kasxf-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL7)) and (cast(ANADOPT_ENFAIL7, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kasxf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL7) or ANADOPT_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kasxf-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL7)) and not(isnull(ANAI_ENFAIL7)) and cast(ANADOPT_ENFAIL7,integer) < cast(ANAI_ENFAIL7,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kasxf-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL7)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL7,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kasxf-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL7)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANADOPT_ENFAIL7,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL7"}}]},{"id":"question-l8okdoof","componentType":"Question","page":"3.400","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6vlgi","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL7=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8okdoof","componentType":"Radio","mandatory":false,"page":"3.400","orientation":"vertical","controls":[{"id":"l8okdoof-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL7) or PARENT_VIT_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL7"}}]},{"id":"question-l8ok0d4y","componentType":"Question","page":"3.401","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))","type":"VTL"},"components":[{"id":"l8ok0d4y","componentType":"Radio","mandatory":false,"page":"3.401","orientation":"vertical","controls":[{"id":"l8ok0d4y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL7) or PARENT_VECU_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL7"}}]},{"id":"question-l8ok0acp","componentType":"Question","page":"3.402","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" est-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"components":[{"id":"l8ok0acp","componentType":"Radio","mandatory":false,"page":"3.402","orientation":"vertical","controls":[{"id":"l8ok0acp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL7) or DC_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL7"}}]},{"id":"question-l8ojs3vl","componentType":"Question","page":"3.403","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" est-\" || if SEXE_ENFAIL7=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL7=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8ojoix6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if (SEXE_ENFAIL7=\"1\" or isnull(SEXE_ENFAIL7)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL7) || (\" est\") || (if (SEXE_ENFAIL7 = \"1\" or nvl(SEXE_ENFAIL7,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")","type":"VTL"},"components":[{"id":"l8ojs3vl","componentType":"InputNumber","mandatory":false,"page":"3.403","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8ojs3vl-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL7)) and (0>AG_DC_ENFAIL7 or 95AG_DC_ENFAIL7)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ojs3vl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL7))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ojs3vl-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL7)) and not (isnull(AG_DC_ENFAIL7)) and cast(AG_DC_ENFAIL7,integer) > cast(AG_ENFAIL7,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL7"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8ojuhud","componentType":"Question","page":"3.404","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" a-t-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"components":[{"id":"l8ojuhud","componentType":"InputNumber","mandatory":false,"page":"3.404","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8ojuhud-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL7)) and (0>AG_DEPART_ENFAIL7 or 95AG_DEPART_ENFAIL7)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ojuhud-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL7))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ojuhud-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL7)) and not(isnull(AG_ENFAIL7)) and cast(AG_DEPART_ENFAIL7,integer) > cast(AG_ENFAIL7,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL7"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8ojmjws","componentType":"Question","page":"3.405","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"components":[{"id":"l8ojmjws","componentType":"Radio","mandatory":false,"page":"3.405","orientation":"vertical","controls":[{"id":"l8ojmjws-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL7) or PARENT_FREQ_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL7"}}]},{"id":"question-l8oj98gw","componentType":"Question","page":"3.406","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai6ugn5","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"components":[{"id":"l8oj98gw","componentType":"Radio","mandatory":false,"page":"3.406","orientation":"vertical","controls":[{"id":"l8oj98gw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL7) or FR_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL7"}}]},{"id":"question-l8ojczfv","componentType":"Question","page":"3.407","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bxb48","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))","type":"VTL"},"components":[{"id":"l8ojczfv","componentType":"Suggester","mandatory":false,"page":"3.407","maxLength":20,"controls":[{"id":"l8ojczfv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL7) or COM_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL7"}}]},{"id":"question-l8ojb4ub","componentType":"Question","page":"3.408","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8ojdq5t","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))","type":"VTL"},"components":[{"id":"l8ojb4ub","componentType":"Suggester","mandatory":false,"page":"3.408","maxLength":20,"controls":[{"id":"l8ojb4ub-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL7) or DEP_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL7"}}]},{"id":"question-l8ojif3m","componentType":"Question","page":"3.409","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8oj5v82","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")","type":"VTL"},"components":[{"id":"l8ojif3m","componentType":"Suggester","mandatory":false,"page":"3.409","maxLength":20,"controls":[{"id":"l8ojif3m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_ENFAIL7) or PAY_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL7"}}]},{"id":"question-l8oja1pz","componentType":"Question","page":"3.410","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (cast(ANAI_ENFAIL7,integer) <= 2012)","type":"VTL"},"components":[{"id":"l8oja1pz","componentType":"Radio","mandatory":false,"page":"3.410","orientation":"vertical","controls":[{"id":"l8oja1pz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL7) or LOG_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL7"}}]},{"id":"question-l8oiinpy","componentType":"Question","page":"3.411","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","type":"VTL"},"components":[{"id":"l8oiinpy","componentType":"Radio","mandatory":false,"page":"3.411","orientation":"vertical","controls":[{"id":"l8oiinpy-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL7) or AUT_PAR_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL7"}}]},{"id":"question-l8oj67fo","componentType":"Question","page":"3.412","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8oj67fo","componentType":"Radio","mandatory":false,"page":"3.412","orientation":"vertical","controls":[{"id":"l8oj67fo-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL7) or DORT_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL7"}}]},{"id":"question-l8oiu9ax","componentType":"Question","page":"3.413","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL7) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","type":"VTL"},"components":[{"id":"l8oiu9ax","componentType":"Radio","mandatory":false,"page":"3.413","orientation":"vertical","controls":[{"id":"l8oiu9ax-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL7) or SEP_AUT_PAR_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL7"}}]},{"id":"question-l8oicj6e","componentType":"Question","page":"3.414","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))","type":"VTL"},"components":[{"id":"l8oicj6e","componentType":"Radio","mandatory":false,"page":"3.414","orientation":"vertical","controls":[{"id":"l8oicj6e-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL7) or RESID_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL7"}}]},{"id":"question-l8oizp0r","componentType":"Question","page":"3.415","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8oizp0r","componentType":"Radio","mandatory":false,"page":"3.415","orientation":"vertical","controls":[{"id":"l8oizp0r-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL7) or SANTE_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL7"}}]},{"id":"question-lvgq4gkg","componentType":"Question","page":"3.416","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL7,\"\")=\"\") then (if SEXE_ENFAIL7=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL7=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL7) || \" vit-\" || (if SEXE_ENFAIL7=\"1\" then \"il\" else if SEXE_ENFAIL7=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgq4gkg","componentType":"Radio","mandatory":false,"page":"3.416","orientation":"vertical","controls":[{"id":"lvgq4gkg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL7) or ASE_ENFAIL7=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL7"}}]},{"id":"ljofiex8","componentType":"Subsequence","goToPage":"3.417","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre huitième enfant qui ne vit pas avec vous ou qui est décédé(e)\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"}},{"id":"question-l8olci32","componentType":"Question","page":"3.417","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", comment s'appelle votre huitième enfant qui ne vit pas avec vous ou qui est décédé(e) [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre enfant.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8olci32","componentType":"Input","mandatory":false,"page":"3.417","maxLength":249,"controls":[{"id":"l8olci32-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_ENFAIL8) or PRENOM_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_ENFAIL8"}}]},{"id":"question-l8olbhxj","componentType":"Question","page":"3.418","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then \"cet(te) enfant\" else PRENOM_ENFAIL8) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8olbhxj","componentType":"Radio","mandatory":false,"page":"3.418","orientation":"vertical","controls":[{"id":"l8olbhxj-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_ENFAIL8) or SEXE_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Masculin\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Féminin\"","type":"VTL|MD"}}],"response":{"name":"SEXE_ENFAIL8"}}]},{"id":"question-l8ol9xy3","componentType":"Question","page":"3.419","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" [?](. 'Pourquoi cette question ?\r\nPour reconstruire les grandes étapes de la vie familiale.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8ol9xy3","componentType":"Datepicker","mandatory":false,"page":"3.419","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l8ol9xy3-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_ENFAIL8)) and (cast(ANAI_ENFAIL8, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ol9xy3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_ENFAIL8) or ANAI_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ol9xy3-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL8)) and not(isnull(ANAIS)) and (ANAIS + 15 > cast(ANAI_ENFAIL8,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ol9xy3-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_ENFAIL8)) and not(isnull(ANAIS)) and cast(ANAI_ENFAIL8,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_ENFAIL8"}}]},{"id":"question-l8ola1mr","componentType":"Question","page":"3.420","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" est-\" || (if SEXE_ENFAIL8=\"1\" then \"il né\" else if SEXE_ENFAIL8=\"2\" then \"elle née\" else \"il/elle né(e)\") || \" en France [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8okzirz","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8ola1mr","componentType":"Radio","mandatory":false,"page":"3.420","orientation":"vertical","controls":[{"id":"l8ola1mr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NEFRANCE_ENFAIL8) or NEFRANCE_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NEFRANCE_ENFAIL8"}}]},{"id":"question-lv6igxed","componentType":"Question","page":"3.421","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" a-t-\" || (if SEXE_ENFAIL8=\"1\" then \"il été adopté\" else if SEXE_ENFAIL8=\"2\" then \"elle été adoptée\" else \"il/elle été adopté(e)\") || \" [?](. 'Pourquoi cette question ?\r\nPour décrire les enfants qui ont été adoptés. \r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0)","type":"VTL"},"components":[{"id":"lv6igxed","componentType":"Radio","mandatory":false,"page":"3.421","orientation":"vertical","controls":[{"id":"lv6igxed-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ADOPT_ENFAIL8"}}]},{"id":"question-lv6khz5j","componentType":"Question","page":"3.422","label":{"value":"\"En quelle année \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" a-t-\" || (if SEXE_ENFAIL8=\"1\" then \"il été adopté ?\" else if SEXE_ENFAIL8=\"2\" then \"elle été adoptée ?\" else \"il/elle été adopté(e) ?\") ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8 =\"1\")","type":"VTL"},"components":[{"id":"lv6khz5j","componentType":"Datepicker","mandatory":false,"page":"3.422","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"lv6khz5j-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANADOPT_ENFAIL8)) and (cast(ANADOPT_ENFAIL8, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6khz5j-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANADOPT_ENFAIL8) or ANADOPT_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6khz5j-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL8)) and not(isnull(ANAI_ENFAIL8)) and cast(ANADOPT_ENFAIL8,integer) < cast(ANAI_ENFAIL8,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6khz5j-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL8)) and not(isnull(ANAIS)) and cast(ANADOPT_ENFAIL8,integer) < cast(ANAIS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année d'adoption de votre enfant antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6khz5j-CI-3","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANADOPT_ENFAIL8)) and not(isnull(ANAIS)) and (cast(ANAIS,integer) + 15 > cast(ANADOPT_ENFAIL8,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et l'année d'adoption de votre enfant. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANADOPT_ENFAIL8"}}]},{"id":"question-l8okz45l","componentType":"Question","page":"3.423","label":{"value":"\"L'autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-il/elle avec vous [?](. 'Pourquoi cette question ?\r\nCette information est essentielle pour mesurer la diversité des familles. \r\nElle permet en particulier d’identifier les enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0b6z62i","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if ADOPT_ENFAIL8=\"1\" then \"L'autre parent est celui qui a élevé l'enfant et non pas son parent biologique.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8okz45l","componentType":"Radio","mandatory":false,"page":"3.423","orientation":"vertical","controls":[{"id":"l8okz45l-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VIT_ENFAIL8) or PARENT_VIT_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui, il/elle vit avec vous\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non, il/elle vit ailleurs\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Non, il/elle est décédé(e)\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Il n'y a pas d'autre parent\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VIT_ENFAIL8"}}]},{"id":"question-l8ol369l","componentType":"Question","page":"3.424","label":{"value":"\"Avez-vous déjà vécu avec l'autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants dont les parents ne vivent pas ensemble.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))","type":"VTL"},"components":[{"id":"l8ol369l","componentType":"Radio","mandatory":false,"page":"3.424","orientation":"vertical","controls":[{"id":"l8ol369l-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_VECU_ENFAIL8) or PARENT_VECU_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PARENT_VECU_ENFAIL8"}}]},{"id":"question-l8ole120","componentType":"Question","page":"3.425","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" est-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour mieux connaître l’histoire de chaque enfant.\r\nCette information est essentielle pour mesurer la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"components":[{"id":"l8ole120","componentType":"Radio","mandatory":false,"page":"3.425","orientation":"vertical","controls":[{"id":"l8ole120-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DC_ENFAIL8) or DC_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DC_ENFAIL8"}}]},{"id":"question-l8olcd8n","componentType":"Question","page":"3.426","label":{"value":"\"A quel âge \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" est-\" || if SEXE_ENFAIL8=\"1\" then \"il décédé ?\" else if SEXE_ENFAIL8=\"2\" then \"elle décédée ?\" else \"il/elle décédé(e) ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8oktakr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Notez 0 si \"|| (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if (SEXE_ENFAIL8=\"1\" or isnull(SEXE_ENFAIL8)) then \"cet enfant\" else \"cette enfant\") else PRENOM_ENFAIL8) || (\" est\") || (if (SEXE_ENFAIL8 = \"1\" or nvl(SEXE_ENFAIL8,\"\") = \"\") then \" décédé\" else \" décédée\") || (\" avant un an.\") ","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")","type":"VTL"},"components":[{"id":"l8olcd8n","componentType":"InputNumber","mandatory":false,"page":"3.426","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8olcd8n-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DC_ENFAIL8)) and (0>AG_DC_ENFAIL8 or 95AG_DC_ENFAIL8)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8olcd8n-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DC_ENFAIL8))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8olcd8n-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_ENFAIL8)) and not (isnull(AG_DC_ENFAIL8)) and cast(AG_DC_ENFAIL8,integer) > cast(AG_ENFAIL8,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au décès de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DC_ENFAIL8"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8ol84b7","componentType":"Question","page":"3.427","label":{"value":"\"A quel âge environ \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" a-t-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" cessé de vivre avec vous [?](. 'Pourquoi cette question ? \r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"components":[{"id":"l8ol84b7","componentType":"InputNumber","mandatory":false,"page":"3.427","min":0.0,"max":95.0,"decimals":0,"controls":[{"id":"l8ol84b7-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEPART_ENFAIL8)) and (0>AG_DEPART_ENFAIL8 or 95AG_DEPART_ENFAIL8)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ol84b7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEPART_ENFAIL8))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l8ol84b7-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_DEPART_ENFAIL8)) and not(isnull(AG_ENFAIL8)) and cast(AG_DEPART_ENFAIL8,integer) > cast(AG_ENFAIL8,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge au départ de votre enfant supérieur à son âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEPART_ENFAIL8"},"description":{"value":"Format attendu : un nombre entre 0 et 95","type":"TXT"}}]},{"id":"question-l8okx7cd","componentType":"Question","page":"3.428","label":{"value":"\"A quelle fréquence êtes-vous en contact avec \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" (en face à face, téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okx7cd","componentType":"Radio","mandatory":false,"page":"3.428","orientation":"vertical","controls":[{"id":"l8okx7cd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PARENT_FREQ_ENFAIL8) or PARENT_FREQ_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"PARENT_FREQ_ENFAIL8"}}]},{"id":"question-l8okpxv8","componentType":"Question","page":"3.429","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" en France actuellement [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai7cpw5","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okpxv8","componentType":"Radio","mandatory":false,"page":"3.429","orientation":"vertical","controls":[{"id":"l8okpxv8-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_ENFAIL8) or FR_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_ENFAIL8"}}]},{"id":"question-l8okjfla","componentType":"Question","page":"3.430","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bww1o","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okjfla","componentType":"Suggester","mandatory":false,"page":"3.430","maxLength":20,"controls":[{"id":"l8okjfla-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_ENFAIL8) or COM_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_ENFAIL8"}}]},{"id":"question-l8okue2t","componentType":"Question","page":"3.431","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8okk3ew","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okue2t","componentType":"Suggester","mandatory":false,"page":"3.431","maxLength":20,"controls":[{"id":"l8okue2t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_ENFAIL8) or DEP_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_ENFAIL8"}}]},{"id":"question-l8okxgwv","componentType":"Question","page":"3.432","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l8okt75e","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")","type":"VTL"},"components":[{"id":"l8okxgwv","componentType":"Suggester","mandatory":false,"page":"3.432","maxLength":20,"controls":[{"id":"l8okxgwv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnul(PAY_ENFAIL8) or PAY_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_ENFAIL8"}}]},{"id":"question-l8oksuft","componentType":"Question","page":"3.433","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" dans son propre logement ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (cast(ANAI_ENFAIL8,integer) <= 2012)","type":"VTL"},"components":[{"id":"l8oksuft","componentType":"Radio","mandatory":false,"page":"3.433","orientation":"vertical","controls":[{"id":"l8oksuft-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_ENFAIL8) or LOG_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LOG_ENFAIL8"}}]},{"id":"question-l8okked6","componentType":"Question","page":"3.434","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" chez son autre parent [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okked6","componentType":"Radio","mandatory":false,"page":"3.434","orientation":"vertical","controls":[{"id":"l8okked6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AUT_PAR_ENFAIL8) or AUT_PAR_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"AUT_PAR_ENFAIL8"}}]},{"id":"question-l8okkkef","componentType":"Question","page":"3.435","label":{"value":"\"Arrive-t-il à \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" de dormir chez vous [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8okkkef","componentType":"Radio","mandatory":false,"page":"3.435","orientation":"vertical","controls":[{"id":"l8okkkef-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DORT_ENFAIL8) or DORT_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DORT_ENFAIL8"}}]},{"id":"question-l8okfvhy","componentType":"Question","page":"3.436","label":{"value":"\"Vous êtes-vous séparé\" || (if (TYPE_QUEST = \"2\") then \"e\" else \"\") || \" de l'autre parent de \" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"cette enfant\" else \"cet(te) enfant\") else PRENOM_ENFAIL8) || \" [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","type":"VTL"},"components":[{"id":"l8okfvhy","componentType":"Radio","mandatory":false,"page":"3.436","orientation":"vertical","controls":[{"id":"l8okfvhy-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEP_AUT_PAR_ENFAIL8) or SEP_AUT_PAR_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SEP_AUT_PAR_ENFAIL8"}}]},{"id":"question-l8okioqc","componentType":"Question","page":"3.437","label":{"value":"\"Quel a été le mode de résidence fixé par décision de justice [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le mode de vie des enfants de parents séparés.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))","type":"VTL"},"components":[{"id":"l8okioqc","componentType":"Radio","mandatory":false,"page":"3.437","orientation":"vertical","controls":[{"id":"l8okioqc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(RESID_ENFAIL8) or RESID_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Pas de décision de justice\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"La moitié du temps chez chaque parent\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Principalement chez vous\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Principalement chez son autre parent\"","type":"VTL|MD"}}],"response":{"name":"RESID_ENFAIL8"}}]},{"id":"question-l8oklb21","componentType":"Question","page":"3.438","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous pour des raisons de santé [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"components":[{"id":"l8oklb21","componentType":"Radio","mandatory":false,"page":"3.438","orientation":"vertical","controls":[{"id":"l8oklb21-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SANTE_ENFAIL8) or SANTE_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"SANTE_ENFAIL8"}}]},{"id":"question-lvgq7nb7","componentType":"Question","page":"3.439","label":{"value":"\"\" || (if (nvl(PRENOM_ENFAIL8,\"\")=\"\") then (if SEXE_ENFAIL8=\"1\" then \"Cet enfant\" else if SEXE_ENFAIL8=\"2\" then \"Cette enfant\" else \"Cet(te) enfant\") else PRENOM_ENFAIL8) || \" vit-\" || (if SEXE_ENFAIL8=\"1\" then \"il\" else if SEXE_ENFAIL8=\"2\" then \"elle\" else \"il/elle\") || \" ailleurs que chez vous à la suite d'une décision de l'aide sociale à l'enfance ou du juge des enfants [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants. \r\nEn particulier, pour mieux connaître les familles dont un des enfants vit ailleurs à la suite d’une décision administrative ou judiciaire.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"components":[{"id":"lvgq7nb7","componentType":"Radio","mandatory":false,"page":"3.439","orientation":"vertical","controls":[{"id":"lvgq7nb7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ASE_ENFAIL8) or ASE_ENFAIL8=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"\r\n\r\n\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ASE_ENFAIL8"}}]},{"id":"l1f6bztr","componentType":"Sequence","page":"3.440","label":{"value":"\"VIII - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", vos petits-enfants\" ","type":"VTL"},"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur vos éventuels petits-enfants, pour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s).\" ","type":"VTL|MD"}},{"id":"question-l1f6a3qv","componentType":"Question","page":"3.441","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous des petits-enfants (enfants de vos enfants) [?](. 'Pourquoi cette question ?\r\nPour connaître le nombre de grands-parents.\r\nL’enquête Familles est la seule source qui permet d’avoir cette information.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","type":"VTL"},"components":[{"id":"l1f6a3qv","componentType":"Radio","mandatory":false,"page":"3.441","orientation":"vertical","controls":[{"id":"l1f6a3qv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PETIT_ENF) or PETIT_ENF=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PETIT_ENF"}}]},{"id":"question-l1f6dz1j","componentType":"Question","page":"3.442","label":{"value":"\"Combien de petits-enfants avez-vous en tout ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"components":[{"id":"l1f6dz1j","componentType":"InputNumber","mandatory":false,"page":"3.442","min":1.0,"max":40.0,"decimals":0,"controls":[{"id":"l1f6dz1j-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_PETIT_ENF)) and (1>NB_PETIT_ENF or 40NB_PETIT_ENF)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1f6dz1j-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_PETIT_ENF))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante au bon déroulement du questionnaire. Merci d'indiquer le nombre attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_PETIT_ENF"},"description":{"value":"Format attendu : un nombre entre 1 et 40","type":"TXT"}}]},{"id":"question-l1f69ivh","componentType":"Question","page":"3.443","label":{"value":"\"\" || (if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Quel âge a l'aîné(e)\" else \"Quel âge a-t-il/elle\") || \" [?](. 'Pourquoi cette question ?\r\nPour savoir à quel âge on devient grand-parent. \r\nL’enquête Familles est la seule source qui permet d’avoir cette information.')\" ","type":"VTL|MD"},"declarations":[{"id":"l1f62ww0","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"S'il/elle a moins d'un an, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"components":[{"id":"l1f69ivh","componentType":"InputNumber","mandatory":false,"page":"3.443","min":0.0,"max":80.0,"decimals":0,"controls":[{"id":"l1f69ivh-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_PETIT_ENF)) and (0>AG_PETIT_ENF or 80AG_PETIT_ENF)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1f69ivh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_PETIT_ENF))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1f69ivh-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AG_PETIT_ENF)) and not(isnull(AGE)) and (cast(AGE,integer) - 35 < cast(AG_PETIT_ENF,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre âge et celui de votre petit-enfant ou l'aîné(e) de vos petits-enfants. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_PETIT_ENF"},"description":{"value":"Format attendu : un nombre entre 0 et 80","type":"TXT"}}]},{"id":"question-l1g3hka7","componentType":"Question","page":"3.444","label":{"value":"\"En moyenne, à quelle fréquence voyez-vous \" || (if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"vos petits-enfants\" else \"votre petit-enfant\") || \" (en face à face) [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s).')\" ","type":"VTL|MD"},"declarations":[{"id":"l1g3k3v5","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"\" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Plusieurs réponses possibles si vous avez plusieurs petits-enfants.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"components":[{"id":"l1g3hka7","componentType":"CheckboxGroup","page":"3.444","orientation":"vertical","controls":[{"id":"l1g3hka7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(FREQ_VU_PETIT_ENF1, false) = false and nvl(FREQ_VU_PETIT_ENF2, false) = false and nvl(FREQ_VU_PETIT_ENF3, false) = false and nvl(FREQ_VU_PETIT_ENF4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1g3hka7-QOP-lyset8xu","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"},"response":{"name":"FREQ_VU_PETIT_ENF1"}},{"id":"l1g3hka7-QOP-lysf9ivz","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"},"response":{"name":"FREQ_VU_PETIT_ENF2"}},{"id":"l1g3hka7-QOP-lysexinp","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"},"response":{"name":"FREQ_VU_PETIT_ENF3"}},{"id":"l1g3hka7-QOP-lysfb2lu","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"},"response":{"name":"FREQ_VU_PETIT_ENF4"}}]}]},{"id":"question-l1f4yrno","componentType":"Question","page":"3.445","label":{"value":"\"En moyenne, à quelle fréquence communiquez-vous à distance avec \" || (if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"vos petits-enfants\" else \"votre petit-enfant\") || \" (téléphone, mail, SMS, appel vidéo...) [?](. 'Pourquoi cette question ? \r\nPour connaître les relations entre les grands-parents et leur(s) petit(s)-enfant(s).')\" ","type":"VTL|MD"},"declarations":[{"id":"l1g3h5xf","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"\" || if (cast(NB_PETIT_ENF,integer)>1 or isnull(NB_PETIT_ENF)) then \"Plusieurs réponses possibles si vous avez plusieurs petits-enfants.\" else \"\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"components":[{"id":"l1f4yrno","componentType":"CheckboxGroup","page":"3.445","orientation":"vertical","controls":[{"id":"l1f4yrno-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(FREQ_CONT_PETIT_ENF1, false) = false and nvl(FREQ_CONT_PETIT_ENF2, false) = false and nvl(FREQ_CONT_PETIT_ENF3, false) = false and nvl(FREQ_CONT_PETIT_ENF4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1f4yrno-QOP-lysew1yw","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"},"response":{"name":"FREQ_CONT_PETIT_ENF1"}},{"id":"l1f4yrno-QOP-lysf8y6x","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"},"response":{"name":"FREQ_CONT_PETIT_ENF2"}},{"id":"l1f4yrno-QOP-lysf9t6e","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"},"response":{"name":"FREQ_CONT_PETIT_ENF3"}},{"id":"l1f4yrno-QOP-lysf9j6m","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"},"response":{"name":"FREQ_CONT_PETIT_ENF4"}}]}]},{"id":"l1g7w78w","componentType":"Sequence","page":"3.446","label":{"value":"\"IX - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre famille (vivant ou non avec vous) et votre entourage\" ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur les aides apportées ou reçues de votre famille (vivant ou non avec vous) et sur votre entourage, pour connaître les solidarités familiales.\" ","type":"VTL|MD"}},{"id":"question-l1g87t8t","componentType":"Question","page":"3.447","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", en raison de leur état de santé, d'un handicap ou d'une difficulté liée à un âge avancé, apportez-vous régulièrement une aide à une ou plusieurs personnes de votre famille (parent(s)\" || (if (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") then \", conjoint(e)\" else \"\") || \",\" || (if (isnull(ENF) or ENF=\"1\") then \" enfant(s)...)\" else \" ...)\") || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les aides au sein de la famille.')\" ","type":"VTL|MD"},"declarations":[{"id":"l1g850jr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1g87t8t","componentType":"CheckboxGroup","page":"3.447","orientation":"vertical","controls":[{"id":"l1g87t8t-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(AIDE_APPORT1, false) = false and nvl(AIDE_APPORT2, false) = false and nvl(AIDE_APPORT3, false) = false and nvl(AIDE_APPORT4, false) = false and nvl(AIDE_APPORT5, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g87t8t-CI-1","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(AIDE_APPORT1,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT2,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT3,false)=true and nvl(AIDE_APPORT5,false)=true) or (nvl(AIDE_APPORT4,false)=true and nvl(AIDE_APPORT5,false)=true))","type":"VTL"},"errorMessage":{"value":"\"Vous ne pouvez pas cocher ''Non'' et une autre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1g87t8t-QOP-m0ks2t7e","label":{"value":"\"Oui, une aide pour les tâches quotidiennes\"","type":"VTL|MD"},"response":{"name":"AIDE_APPORT1"}},{"id":"l1g87t8t-QOP-m0krzzyv","label":{"value":"\"Oui, une aide financière ou matérielle\"","type":"VTL|MD"},"response":{"name":"AIDE_APPORT2"}},{"id":"l1g87t8t-QOP-m0kscf0p","label":{"value":"\"Oui, un soutien moral\"","type":"VTL|MD"},"response":{"name":"AIDE_APPORT3"}},{"id":"l1g87t8t-QOP-m0ks1bw3","label":{"value":"\"Oui, vous êtes\" || (if (TYPE_QUEST =\"1\") then \" tuteur ou curateur \" else \" tutrice ou curatrice\") ","type":"VTL|MD"},"response":{"name":"AIDE_APPORT4"}},{"id":"l1g87t8t-QOP-m0ksa9qw","label":{"value":"\"Non, aucune aide de ce type\"","type":"VTL|MD"},"response":{"name":"AIDE_APPORT5"}}]}]},{"id":"question-l1ggssgl","componentType":"Question","page":"3.448","label":{"value":"\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"l1ggjolj","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l1ggssgl","componentType":"CheckboxGroup","page":"3.448","orientation":"vertical","controls":[{"id":"l1ggssgl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_1A1, false) = false and nvl(QUI_AID_APP_1A2, false) = false and nvl(QUI_AID_APP_1A3, false) = false and nvl(QUI_AID_APP_1A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1ggssgl-QOP-m23czf6s","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1A1"}},{"id":"l1ggssgl-QOP-m23cq2u1","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1A2"}},{"id":"l1ggssgl-QOP-m23cod6m","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1A3"}},{"id":"l1ggssgl-QOP-m23ch75l","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1A4"}}]}]},{"id":"question-lwhm7k7c","componentType":"Question","page":"3.449","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwjdktjr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_1A4)","type":"VTL"},"components":[{"id":"lwhm7k7c","componentType":"Input","mandatory":false,"page":"3.449","maxLength":249,"response":{"name":"QUI_AID_APP_1AD"}}]},{"id":"question-lw7u5rox","componentType":"Question","page":"3.450","label":{"value":"\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7u9156","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7u5rox","componentType":"CheckboxGroup","page":"3.450","orientation":"vertical","controls":[{"id":"lw7u5rox-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_1B1, false) = false and nvl(QUI_AID_APP_1B2, false) = false and nvl(QUI_AID_APP_1B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7u5rox-QOP-m23cqwzh","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1B1"}},{"id":"lw7u5rox-QOP-m23cy792","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1B2"}},{"id":"lw7u5rox-QOP-m23cpqpj","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1B3"}}]}]},{"id":"question-lwjdc6vy","componentType":"Question","page":"3.451","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwjdh5hg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_1B3)","type":"VTL"},"components":[{"id":"lwjdc6vy","componentType":"Input","mandatory":false,"page":"3.451","maxLength":249,"response":{"name":"QUI_AID_APP_1BD"}}]},{"id":"question-lw7tzp47","componentType":"Question","page":"3.452","label":{"value":"\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7tyeij","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7tzp47","componentType":"CheckboxGroup","page":"3.452","orientation":"vertical","controls":[{"id":"lw7tzp47-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_1C1, false) = false and nvl(QUI_AID_APP_1C2, false) = false and nvl(QUI_AID_APP_1C3, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7tzp47-QOP-m23ctpym","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1C1"}},{"id":"lw7tzp47-QOP-m23chyj6","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1C2"}},{"id":"lw7tzp47-QOP-m23cjnkj","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1C3"}}]}]},{"id":"question-lwjdesu0","componentType":"Question","page":"3.453","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwjdliqx","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_1C3)","type":"VTL"},"components":[{"id":"lwjdesu0","componentType":"Input","mandatory":false,"page":"3.453","maxLength":249,"response":{"name":"QUI_AID_APP_1CD"}}]},{"id":"question-lw7u3zby","componentType":"Question","page":"3.454","label":{"value":"\"A qui apportez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7uhfpt","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7u3zby","componentType":"CheckboxGroup","page":"3.454","orientation":"vertical","controls":[{"id":"lw7u3zby-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_1D1, false) = false and nvl(QUI_AID_APP_1D2, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7u3zby-QOP-m23couft","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1D1"}},{"id":"lw7u3zby-QOP-m23coud5","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_1D2"}}]}]},{"id":"question-lwjdhxux","componentType":"Question","page":"3.455","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwjdck88","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_1D2)","type":"VTL"},"components":[{"id":"lwjdhxux","componentType":"Input","mandatory":false,"page":"3.455","maxLength":249,"response":{"name":"QUI_AID_APP_1DD"}}]},{"id":"question-l1ggm06b","componentType":"Question","page":"3.456","label":{"value":"\"A qui apportez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"l1ggq5nj","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l1ggm06b","componentType":"CheckboxGroup","page":"3.456","orientation":"vertical","controls":[{"id":"l1ggm06b-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_2A1, false) = false and nvl(QUI_AID_APP_2A2, false) = false and nvl(QUI_AID_APP_2A3, false) = false and nvl(QUI_AID_APP_2A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci de d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1ggm06b-QOP-m23cy63o","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2A1"}},{"id":"l1ggm06b-QOP-m23clw9y","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2A2"}},{"id":"l1ggm06b-QOP-m23cpj0g","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2A3"}},{"id":"l1ggm06b-QOP-m23cs9lm","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2A4"}}]}]},{"id":"question-lwjdpyys","componentType":"Question","page":"3.457","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwjdzn52","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_2A4)","type":"VTL"},"components":[{"id":"lwjdpyys","componentType":"Input","mandatory":false,"page":"3.457","maxLength":249,"response":{"name":"QUI_AID_APP_2AD"}}]},{"id":"question-lw7vzo64","componentType":"Question","page":"3.458","label":{"value":"\"A qui apportez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7vvhgi","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7vzo64","componentType":"CheckboxGroup","page":"3.458","orientation":"vertical","controls":[{"id":"lw7vzo64-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_2B1, false) = false and nvl(QUI_AID_APP_2B2, false) = false and nvl(QUI_AID_APP_2B3, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7vzo64-QOP-m23cpjyf","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2B1"}},{"id":"lw7vzo64-QOP-m23cflls","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2B2"}},{"id":"lw7vzo64-QOP-m23cm1g1","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2B3"}}]}]},{"id":"question-lwje55m7","componentType":"Question","page":"3.459","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwje7875","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine…\"","type":"VTL|MD"}},{"id":"lwjdyva5","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté.\"","type":"VTL|MD"}},{"id":"lwje51m9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_2B3)","type":"VTL"},"components":[{"id":"lwje55m7","componentType":"Input","mandatory":false,"page":"3.459","maxLength":249,"response":{"name":"QUI_AID_APP_2BD"}}]},{"id":"question-lw7w4b79","componentType":"Question","page":"3.460","label":{"value":"\"A qui apportez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7wa2u6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7w4b79","componentType":"CheckboxGroup","page":"3.460","orientation":"vertical","controls":[{"id":"lw7w4b79-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_2C1, false) = false and nvl(QUI_AID_APP_2C2, false) = false and nvl(QUI_AID_APP_2C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7w4b79-QOP-m23cwdhi","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2C1"}},{"id":"lw7w4b79-QOP-m23cqhne","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2C2"}},{"id":"lw7w4b79-QOP-m23cq935","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2C3"}}]}]},{"id":"question-lwje0h9j","componentType":"Question","page":"3.461","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwje21i9","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_2C3)","type":"VTL"},"components":[{"id":"lwje0h9j","componentType":"Input","mandatory":false,"page":"3.461","maxLength":249,"response":{"name":"QUI_AID_APP_2CD"}}]},{"id":"question-lw7w7lh9","componentType":"Question","page":"3.462","label":{"value":"\"A qui apportez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7vyoea","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7w7lh9","componentType":"CheckboxGroup","page":"3.462","orientation":"vertical","controls":[{"id":"lw7w7lh9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_2D1, false) = false and nvl(QUI_AID_APP_2D2, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7w7lh9-QOP-m23cmpju","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2D1"}},{"id":"lw7w7lh9-QOP-m23ctsr1","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_2D2"}}]}]},{"id":"question-lwkqt10g","componentType":"Question","page":"3.463","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkqu2zn","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_2D2)","type":"VTL"},"components":[{"id":"lwkqt10g","componentType":"Input","mandatory":false,"page":"3.463","maxLength":249,"response":{"name":"QUI_AID_APP_2DD"}}]},{"id":"question-l1ggtznr","componentType":"Question","page":"3.464","label":{"value":"\"A qui apportez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"l1ggjqp6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l1ggtznr","componentType":"CheckboxGroup","page":"3.464","orientation":"vertical","controls":[{"id":"l1ggtznr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_3A1, false) = false and nvl(QUI_AID_APP_3A2, false) = false and nvl(QUI_AID_APP_3A3, false) = false and nvl(QUI_AID_APP_3A4, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1ggtznr-QOP-m23cnl9o","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3A1"}},{"id":"l1ggtznr-QOP-m23cnawi","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3A2"}},{"id":"l1ggtznr-QOP-m23cyjky","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3A3"}},{"id":"l1ggtznr-QOP-m23cxrro","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3A4"}}]}]},{"id":"question-lwkqxzag","componentType":"Question","page":"3.465","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkqvnxv","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_3A4)","type":"VTL"},"components":[{"id":"lwkqxzag","componentType":"Input","mandatory":false,"page":"3.465","maxLength":249,"response":{"name":"QUI_AID_APP_3AD"}}]},{"id":"question-lw7w2d1u","componentType":"Question","page":"3.466","label":{"value":"\"A qui apportez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7w6t91","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7w2d1u","componentType":"CheckboxGroup","page":"3.466","orientation":"vertical","controls":[{"id":"lw7w2d1u-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_3B1, false) = false and nvl(QUI_AID_APP_3B2, false) = false and nvl(QUI_AID_APP_3B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7w2d1u-QOP-m23cvmpn","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3B1"}},{"id":"lw7w2d1u-QOP-m23cr5wt","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3B2"}},{"id":"lw7w2d1u-QOP-m23cunxx","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3B3"}}]}]},{"id":"question-lwkqz11c","componentType":"Question","page":"3.467","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkr2tjx","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_3B3)","type":"VTL"},"components":[{"id":"lwkqz11c","componentType":"Input","mandatory":false,"page":"3.467","maxLength":249,"response":{"name":"QUI_AID_APP_3BD"}}]},{"id":"question-lw7w9t0f","componentType":"Question","page":"3.468","label":{"value":"\"A qui apportez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7wcsbh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7w9t0f","componentType":"CheckboxGroup","page":"3.468","orientation":"vertical","controls":[{"id":"lw7w9t0f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_3C1, false) = false and nvl(QUI_AID_APP_3C2, false) = false and nvl(QUI_AID_APP_3C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7w9t0f-QOP-m23cnzvc","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3C1"}},{"id":"lw7w9t0f-QOP-m23czjsl","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3C2"}},{"id":"lw7w9t0f-QOP-m23csrk4","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3C3"}}]}]},{"id":"question-lwkqzn6j","componentType":"Question","page":"3.469","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkqvrmr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_3C3)","type":"VTL"},"components":[{"id":"lwkqzn6j","componentType":"Input","mandatory":false,"page":"3.469","maxLength":249,"response":{"name":"QUI_AID_APP_3CD"}}]},{"id":"question-lw7w2fuz","componentType":"Question","page":"3.470","label":{"value":"\"A qui apportez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7wjiyq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7w2fuz","componentType":"CheckboxGroup","page":"3.470","orientation":"vertical","controls":[{"id":"lw7w2fuz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_3D1, false) = false and nvl(QUI_AID_APP_3D2, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7w2fuz-QOP-m23cjrgd","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3D1"}},{"id":"lw7w2fuz-QOP-m23cjbmj","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_3D2"}}]}]},{"id":"question-lwkr8xaw","componentType":"Question","page":"3.471","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkqx8lw","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_3D2)","type":"VTL"},"components":[{"id":"lwkr8xaw","componentType":"Input","mandatory":false,"page":"3.471","maxLength":249,"response":{"name":"QUI_AID_APP_3DD"}}]},{"id":"question-l4lf0y9m","componentType":"Question","page":"3.472","label":{"value":"\"De qui êtes-vous \" || if (TYPE_QUEST=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4lfdg0x","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l4lf0y9m","componentType":"CheckboxGroup","page":"3.472","orientation":"vertical","controls":[{"id":"l4lf0y9m-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_4A1, false) = false and nvl(QUI_AID_APP_4A2, false) = false and nvl(QUI_AID_APP_4A3, false) = false and nvl(QUI_AID_APP_4A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l4lf0y9m-QOP-m23cxxl5","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4A1"}},{"id":"l4lf0y9m-QOP-m23ci6zz","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4A2"}},{"id":"l4lf0y9m-QOP-m23cxirx","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4A3"}},{"id":"l4lf0y9m-QOP-m23cza8y","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4A4"}}]}]},{"id":"question-lwkrbrwr","componentType":"Question","page":"3.473","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwkr69jj","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_4A4)","type":"VTL"},"components":[{"id":"lwkrbrwr","componentType":"Input","mandatory":false,"page":"3.473","maxLength":249,"response":{"name":"QUI_AID_APP_4AD"}}]},{"id":"question-lw7wj733","componentType":"Question","page":"3.474","label":{"value":"\"De qui êtes-vous \" || if (TYPE_QUEST=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\" ","type":"VTL|MD"},"declarations":[{"id":"lw7wrt9b","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7wj733","componentType":"CheckboxGroup","page":"3.474","orientation":"vertical","controls":[{"id":"lw7wj733-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_4B1, false) = false and nvl(QUI_AID_APP_4B2, false) = false and nvl(QUI_AID_APP_4B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7wj733-QOP-m23cwime","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4B1"}},{"id":"lw7wj733-QOP-m23cu578","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4B2"}},{"id":"lw7wj733-QOP-m23cllwq","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4B3"}}]}]},{"id":"question-lwom09ex","componentType":"Question","page":"3.475","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwolw517","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_4B3)","type":"VTL"},"components":[{"id":"lwom09ex","componentType":"Input","mandatory":false,"page":"3.475","maxLength":249,"response":{"name":"QUI_AID_APP_4BD"}}]},{"id":"question-lw7wk34s","componentType":"Question","page":"3.476","label":{"value":"\"De qui êtes-vous \" || if (TYPE_QUEST=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\" ","type":"VTL|MD"},"declarations":[{"id":"lw7wuhf2","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7wk34s","componentType":"CheckboxGroup","page":"3.476","orientation":"vertical","controls":[{"id":"lw7wk34s-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_4C1, false) = false and nvl(QUI_AID_APP_4C2, false) = false and nvl(QUI_AID_APP_4C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7wk34s-QOP-m23ckv5p","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4C1"}},{"id":"lw7wk34s-QOP-m23cp9bk","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4C2"}},{"id":"lw7wk34s-QOP-m23cf0ox","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4C3"}}]}]},{"id":"question-lwom95wp","componentType":"Question","page":"3.477","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwom2yel","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_4C3)","type":"VTL"},"components":[{"id":"lwom95wp","componentType":"Input","mandatory":false,"page":"3.477","maxLength":249,"response":{"name":"QUI_AID_APP_4CD"}}]},{"id":"question-lw7wj3l9","componentType":"Question","page":"3.478","label":{"value":"\"De qui êtes-vous \" || if (TYPE_QUEST=\"1\") then \" tuteur ou curateur ?\" else \" tutrice ou curatrice ?\" ","type":"VTL|MD"},"declarations":[{"id":"lw7wrgir","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7wj3l9","componentType":"CheckboxGroup","page":"3.478","orientation":"vertical","controls":[{"id":"lw7wj3l9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_APP_4D1, false) = false and nvl(QUI_AID_APP_4D2, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7wj3l9-QOP-m23cpbu6","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4D1"}},{"id":"lw7wj3l9-QOP-m23ct687","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_APP_4D2"}}]}]},{"id":"question-lwolwwhx","componentType":"Question","page":"3.479","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwom8msv","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_APP_4D2)","type":"VTL"},"components":[{"id":"lwolwwhx","componentType":"Input","mandatory":false,"page":"3.479","maxLength":249,"response":{"name":"QUI_AID_APP_4DD"}}]},{"id":"question-l1g8o84g","componentType":"Question","page":"3.480","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", en raison de votre état de santé, d'un handicap\" || (if cast(AGE,integer) >=55 then \" ou d'une difficulté liée à un âge avancé\" else \"\") || \", recevez-vous régulièrement de l'aide d'une ou plusieurs personnes de votre famille (parent(s)\" || (if (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") then \", conjoint(e)\" else \"\") || \",\" || (if (isnull(ENF) or ENF=\"1\") then \" enfant(s)...)\" else \" ...)\") || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les aides au sein de la famille.')\" ","type":"VTL|MD"},"declarations":[{"id":"l1g8hmv7","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1g8o84g","componentType":"CheckboxGroup","page":"3.480","orientation":"vertical","controls":[{"id":"l1g8o84g-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(AIDE_RECUE1, false) = false and nvl(AIDE_RECUE2, false) = false and nvl(AIDE_RECUE3, false) = false and nvl(AIDE_RECUE4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g8o84g-CI-1","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(AIDE_RECUE1,false)=true and nvl(AIDE_RECUE4,false)=true) or (nvl(AIDE_RECUE2,false)=true and nvl(AIDE_RECUE4,false)=true) or (nvl(AIDE_RECUE3,false)=true and nvl(AIDE_RECUE4,false)=true))","type":"VTL"},"errorMessage":{"value":"\"Vous ne pouvez pas cocher ''Non'' et une autre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1g8o84g-QOP-lpsffede","label":{"value":"\"Oui, une aide pour les tâches quotidiennes\"","type":"VTL|MD"},"response":{"name":"AIDE_RECUE1"}},{"id":"l1g8o84g-QOP-lpsfeu8x","label":{"value":"\"Oui, une aide financière ou matérielle\"","type":"VTL|MD"},"response":{"name":"AIDE_RECUE2"}},{"id":"l1g8o84g-QOP-lpsf8tbp","label":{"value":"\"Oui, un soutien moral\"","type":"VTL|MD"},"response":{"name":"AIDE_RECUE3"}},{"id":"l1g8o84g-QOP-lpsf9f4v","label":{"value":"\"Non, aucune aide de ce type\"","type":"VTL|MD"},"response":{"name":"AIDE_RECUE4"}}]}]},{"id":"question-l1ggpjd7","componentType":"Question","page":"3.481","label":{"value":"\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"l1ggnslo","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l1ggpjd7","componentType":"CheckboxGroup","page":"3.481","orientation":"vertical","controls":[{"id":"l1ggpjd7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_1A1, false) = false and nvl(QUI_AID_REC_1A2, false) = false and nvl(QUI_AID_REC_1A3, false) = false and nvl(QUI_AID_REC_1A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1ggpjd7-QOP-m23cls04","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1A1"}},{"id":"l1ggpjd7-QOP-m23cv59e","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1A2"}},{"id":"l1ggpjd7-QOP-m23ci2xl","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1A3"}},{"id":"l1ggpjd7-QOP-m23cn8ns","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1A4"}}]}]},{"id":"question-lwom8z6i","componentType":"Question","page":"3.482","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwolyqrn","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_1A4)","type":"VTL"},"components":[{"id":"lwom8z6i","componentType":"Input","mandatory":false,"page":"3.482","maxLength":249,"response":{"name":"QUI_AID_REC_1AD"}}]},{"id":"question-lw7yo1jt","componentType":"Question","page":"3.483","label":{"value":"\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7yee2v","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7yo1jt","componentType":"CheckboxGroup","page":"3.483","orientation":"vertical","controls":[{"id":"lw7yo1jt-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_1B1, false) = false and nvl(QUI_AID_REC_1B2, false) = false and nvl(QUI_AID_REC_1B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7yo1jt-QOP-m23cezw9","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1B1"}},{"id":"lw7yo1jt-QOP-m23cycg0","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1B2"}},{"id":"lw7yo1jt-QOP-m23cwiht","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1B3"}}]}]},{"id":"question-lwom6128","componentType":"Question","page":"3.484","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomheib","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_1B3)","type":"VTL"},"components":[{"id":"lwom6128","componentType":"Input","mandatory":false,"page":"3.484","maxLength":249,"response":{"name":"QUI_AID_REC_1BD"}}]},{"id":"question-lw7y7vqk","componentType":"Question","page":"3.485","label":{"value":"\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7yl9zk","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7y7vqk","componentType":"CheckboxGroup","page":"3.485","orientation":"vertical","controls":[{"id":"lw7y7vqk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_1C1, false) = false and nvl(QUI_AID_REC_1C2, false) = false and nvl(QUI_AID_REC_1C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7y7vqk-QOP-m23cof6s","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1C1"}},{"id":"lw7y7vqk-QOP-m23cryfz","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1C2"}},{"id":"lw7y7vqk-QOP-m23chx84","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1C3"}}]}]},{"id":"question-lwomj4m6","componentType":"Question","page":"3.486","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomfh9p","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_1C3)","type":"VTL"},"components":[{"id":"lwomj4m6","componentType":"Input","mandatory":false,"page":"3.486","maxLength":249,"response":{"name":"QUI_AID_REC_1CD"}}]},{"id":"question-lw7yq0ti","componentType":"Question","page":"3.487","label":{"value":"\"De qui recevez-vous cette aide pour les tâches quotidiennes ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7y7t67","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7yq0ti","componentType":"CheckboxGroup","page":"3.487","orientation":"vertical","controls":[{"id":"lw7yq0ti-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_1D1, false) = false and nvl(QUI_AID_REC_1D2, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7yq0ti-QOP-m23cxmnn","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1D1"}},{"id":"lw7yq0ti-QOP-m23ctm1u","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_1D2"}}]}]},{"id":"question-lwom7lun","componentType":"Question","page":"3.488","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwom7phy","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_1D2)","type":"VTL"},"components":[{"id":"lwom7lun","componentType":"Input","mandatory":false,"page":"3.488","maxLength":249,"response":{"name":"QUI_AID_REC_1DD"}}]},{"id":"question-l1ggp8js","componentType":"Question","page":"3.489","label":{"value":"\"De qui recevez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"l1gglc9h","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"l1ggp8js","componentType":"CheckboxGroup","page":"3.489","orientation":"vertical","controls":[{"id":"l1ggp8js-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_2A1, false) = false and nvl(QUI_AID_REC_2A2, false) = false and nvl(QUI_AID_REC_2A3, false) = false and nvl(QUI_AID_REC_2A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1ggp8js-QOP-m23cn5of","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2A1"}},{"id":"l1ggp8js-QOP-m23cey3c","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2A2"}},{"id":"l1ggp8js-QOP-m23cjnpj","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2A3"}},{"id":"l1ggp8js-QOP-m23ciwsc","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2A4"}}]}]},{"id":"question-lwombc8x","componentType":"Question","page":"3.490","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomh51o","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_2A4)","type":"VTL"},"components":[{"id":"lwombc8x","componentType":"Input","mandatory":false,"page":"3.490","maxLength":249,"response":{"name":"QUI_AID_REC_2AD"}}]},{"id":"question-lw7yq329","componentType":"Question","page":"3.491","label":{"value":"\"De qui recevez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7ysi78","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7yq329","componentType":"CheckboxGroup","page":"3.491","orientation":"vertical","controls":[{"id":"lw7yq329-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_2B1, false) = false and nvl(QUI_AID_REC_2B2, false) = false and nvl(QUI_AID_REC_2B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7yq329-QOP-m23cvvst","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2B1"}},{"id":"lw7yq329-QOP-m23clx8q","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2B2"}},{"id":"lw7yq329-QOP-m23cpziv","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2B3"}}]}]},{"id":"question-lwomhbiy","componentType":"Question","page":"3.492","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomc7zr","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_2B3)","type":"VTL"},"components":[{"id":"lwomhbiy","componentType":"Input","mandatory":false,"page":"3.492","maxLength":249,"response":{"name":"QUI_AID_REC_2BD"}}]},{"id":"question-lw7yo7oh","componentType":"Question","page":"3.493","label":{"value":"\"De qui recevez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7yyleh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7yo7oh","componentType":"CheckboxGroup","page":"3.493","orientation":"vertical","controls":[{"id":"lw7yo7oh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_2C1, false) = false and nvl(QUI_AID_REC_2C2, false) = false and nvl(QUI_AID_REC_2C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7yo7oh-QOP-m23cmlu2","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2C1"}},{"id":"lw7yo7oh-QOP-m23chv5u","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2C2"}},{"id":"lw7yo7oh-QOP-m23cqna7","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2C3"}}]}]},{"id":"question-lwomijww","componentType":"Question","page":"3.494","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomfoi3","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_2C3)","type":"VTL"},"components":[{"id":"lwomijww","componentType":"Input","mandatory":false,"page":"3.494","maxLength":249,"response":{"name":"QUI_AID_REC_2CD"}}]},{"id":"question-lw7ypwx5","componentType":"Question","page":"3.495","label":{"value":"\"De qui recevez-vous cette aide financière ou matérielle ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7yn7me","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7ypwx5","componentType":"CheckboxGroup","page":"3.495","orientation":"vertical","controls":[{"id":"lw7ypwx5-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_2D1, false) = false and nvl(QUI_AID_REC_2D2, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7ypwx5-QOP-m23ctdx6","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2D1"}},{"id":"lw7ypwx5-QOP-m23ctlkf","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_2D2"}}]}]},{"id":"question-lwomx6w5","componentType":"Question","page":"3.496","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwomf48x","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_2D2)","type":"VTL"},"components":[{"id":"lwomx6w5","componentType":"Input","mandatory":false,"page":"3.496","maxLength":249,"response":{"name":"QUI_AID_REC_2DD"}}]},{"id":"question-l1gh36ky","componentType":"Question","page":"3.497","label":{"value":"\"De qui recevez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"l1ggm7zg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","type":"VTL"},"components":[{"id":"l1gh36ky","componentType":"CheckboxGroup","page":"3.497","orientation":"vertical","controls":[{"id":"l1gh36ky-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_3A1, false) = false and nvl(QUI_AID_REC_3A2, false) = false and nvl(QUI_AID_REC_3A3, false) = false and nvl(QUI_AID_REC_3A4, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1gh36ky-QOP-m23cib87","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3A1"}},{"id":"l1gh36ky-QOP-m23cxsfo","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3A2"}},{"id":"l1gh36ky-QOP-m23clsl9","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3A3"}},{"id":"l1gh36ky-QOP-m23czis0","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3A4"}}]}]},{"id":"question-lwonhqcb","componentType":"Question","page":"3.498","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwonnp1n","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_3A4)","type":"VTL"},"components":[{"id":"lwonhqcb","componentType":"Input","mandatory":false,"page":"3.498","maxLength":249,"response":{"name":"QUI_AID_REC_3AD"}}]},{"id":"question-lw7yqyln","componentType":"Question","page":"3.499","label":{"value":"\"De qui recevez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7z069s","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7yqyln","componentType":"CheckboxGroup","page":"3.499","orientation":"vertical","controls":[{"id":"lw7yqyln-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_3B1, false) = false and nvl(QUI_AID_REC_3B2, false) = false and nvl(QUI_AID_REC_3B3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7yqyln-QOP-m23cgm1y","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3B1"}},{"id":"lw7yqyln-QOP-m23cwosm","label":{"value":"\"\" || if (SEXE_CH=\"2\" or isnull(SEXE_CH)) and (SEXE_CF=\"1\" or isnull(SEXE_CF)) then \"Votre conjoint\" else \"Votre conjointe\" ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3B2"}},{"id":"lw7yqyln-QOP-m23cspkk","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3B3"}}]}]},{"id":"question-lwonk1pl","componentType":"Question","page":"3.500","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwontn65","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_3B3)","type":"VTL"},"components":[{"id":"lwonk1pl","componentType":"Input","mandatory":false,"page":"3.500","maxLength":249,"response":{"name":"QUI_AID_REC_3BD"}}]},{"id":"question-lw7z0jkp","componentType":"Question","page":"3.501","label":{"value":"\"De qui recevez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7z8p6k","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"components":[{"id":"lw7z0jkp","componentType":"CheckboxGroup","page":"3.501","orientation":"vertical","controls":[{"id":"lw7z0jkp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_3C1, false) = false and nvl(QUI_AID_REC_3C2, false) = false and nvl(QUI_AID_REC_3C3, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7z0jkp-QOP-m23cxwql","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3C1"}},{"id":"lw7z0jkp-QOP-m23crs3i","label":{"value":"\"\" || (if (isnull(NBENF) or NBENF > 1) then \"Vos enfants\" else \"Votre enfant\") ","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3C2"}},{"id":"lw7z0jkp-QOP-m23cvbj1","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3C3"}}]}]},{"id":"question-lwonuial","componentType":"Question","page":"3.502","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwonw0e2","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_3C3)","type":"VTL"},"components":[{"id":"lwonuial","componentType":"Input","mandatory":false,"page":"3.502","maxLength":249,"response":{"name":"QUI_AID_REC_3CD"}}]},{"id":"question-lw7z13d4","componentType":"Question","page":"3.503","label":{"value":"\"De qui recevez-vous ce soutien moral ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7yy5nw","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"components":[{"id":"lw7z13d4","componentType":"CheckboxGroup","page":"3.503","orientation":"vertical","controls":[{"id":"lw7z13d4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(QUI_AID_REC_3D1, false) = false and nvl(QUI_AID_REC_3D2, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"lw7z13d4-QOP-m23cozck","label":{"value":"\"Votre(Vos) parent(s)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3D1"}},{"id":"lw7z13d4-QOP-m23co3ul","label":{"value":"\"Un autre membre de votre famille (tante, beaux-parents, grands-parents...)\"","type":"VTL|MD"},"response":{"name":"QUI_AID_REC_3D2"}}]}]},{"id":"question-lwonmnuh","componentType":"Question","page":"3.504","label":{"value":"\"Qui est/sont cette ou ces autre(s) personne(s) pour vous ?\"","type":"VTL|MD"},"declarations":[{"id":"lwonyr58","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ecrivez en clair le(s) lien(s) de parenté. Par exemple : votre tante, vos beaux-parents, vos grands-parents, votre sœur, votre cousine...\r\nPlusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(QUI_AID_REC_3D2)","type":"VTL"},"components":[{"id":"lwonmnuh","componentType":"Input","mandatory":false,"page":"3.504","maxLength":249,"response":{"name":"QUI_AID_REC_3DD"}}]},{"id":"question-l1g8apw2","componentType":"Question","page":"3.505","label":{"value":"\"En dehors du français, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) [?](. 'Pourquoi cette question ?\r\nPour savoir si les langues parlées dans l’enfance sont utilisées dans la vie quotidienne.') \"","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1g8apw2","componentType":"Radio","mandatory":false,"page":"3.505","orientation":"vertical","controls":[{"id":"l1g8apw2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE1_ENTOUE) or LANGUE1_ENTOUE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE1_ENTOUE"}}]},{"id":"question-lw7oumzg","componentType":"Question","page":"3.506","label":{"value":"\"Quelle est cette langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw7ok0js","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(LANGUE1_ENTOUE =\"1\")","type":"VTL"},"components":[{"id":"lw7oumzg","componentType":"Suggester","mandatory":false,"page":"3.506","maxLength":20,"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE1_ENTOU"}}]},{"id":"question-lumpggg9","componentType":"Question","page":"3.507","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(LANGUE1_ENTOUE =\"1\") and (isnull(LANGUE1_ENTOU) or LANGUE1_ENTOU =\"\")","type":"VTL"},"components":[{"id":"lumpggg9","componentType":"Input","mandatory":false,"page":"3.507","maxLength":149,"controls":[{"id":"lumpggg9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE1_ENTOUL) or LANGUE1_ENTOUL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE1_ENTOUL"}}]},{"id":"question-l43tgurz","componentType":"Question","page":"3.508","label":{"value":"\"En dehors du français et de la langue déjà citée, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL)))","type":"VTL"},"components":[{"id":"l43tgurz","componentType":"Radio","mandatory":false,"page":"3.508","orientation":"vertical","controls":[{"id":"l43tgurz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_ENTOUE) or LANGUE2_ENTOUE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE2_ENTOUE"}}]},{"id":"question-lw54iesv","componentType":"Question","page":"3.509","label":{"value":"\"Quelle est cette autre langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw54qysp","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\")","type":"VTL"},"components":[{"id":"lw54iesv","componentType":"Suggester","mandatory":false,"page":"3.509","maxLength":20,"controls":[{"id":"lw54iesv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE1_ENTOU)) and not(isnull(LANGUE2_ENTOU)) and LANGUE2_ENTOU=LANGUE1_ENTOU))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE2_ENTOU"}}]},{"id":"question-lumsh65o","componentType":"Question","page":"3.510","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")","type":"VTL"},"components":[{"id":"lumsh65o","componentType":"Input","mandatory":false,"page":"3.510","maxLength":149,"controls":[{"id":"lumsh65o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_ENTOUL) or LANGUE2_ENTOUL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE2_ENTOUL"}}]},{"id":"question-lump9kgk","componentType":"Question","page":"3.511","label":{"value":"\"En dehors du français et des deux langues déjà citées, vous arrive-t-il de parler dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, italien...) avec votre famille ou votre entourage (amis, voisins, collègues, commerçants...) ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","type":"VTL"},"components":[{"id":"lump9kgk","componentType":"Radio","mandatory":false,"page":"3.511","orientation":"vertical","controls":[{"id":"lump9kgk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_ENTOUE) or LANGUE3_ENTOUE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE3_ENTOUE"}}]},{"id":"question-lw54raav","componentType":"Question","page":"3.512","label":{"value":"\"Quelle est cette autre langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw54rnpa","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste. \r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","type":"VTL"},"components":[{"id":"lw54raav","componentType":"Suggester","mandatory":false,"page":"3.512","maxLength":20,"controls":[{"id":"lw54raav-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE3_ENTOU)) and not(isnull(LANGUE2_ENTOU)) and LANGUE2_ENTOU=LANGUE3_ENTOU))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE3_ENTOU"}}]},{"id":"question-lumsobo2","componentType":"Question","page":"3.513","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))","type":"VTL"},"components":[{"id":"lumsobo2","componentType":"Input","mandatory":false,"page":"3.513","maxLength":149,"controls":[{"id":"lumsobo2-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_ENTOUL) or LANGUE3_ENTOUL=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE3_ENTOUL"}}]},{"id":"kwqfdovw","componentType":"Sequence","page":"3.514","label":{"value":"\"X - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", vos parents, encore en vie ou non (père, mère, personnes que vous considérez comme tels)\" ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur vos parents, en vie ou non (père, mère, personnes que vous considérez comme tels), pour connaître votre histoire familiale.\" ","type":"VTL|MD"}},{"id":"kwqf618x","componentType":"Subsequence","page":"3.515","goToPage":"3.515","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre parent le plus âgé\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", commençons par décrire votre parent le plus âgé, encore en vie ou non (père, mère ou personne que vous considérez comme tel).\" ","type":"VTL|MD"}},{"id":"question-l2kjnm8k","componentType":"Question","page":"3.516","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel est le prénom du premier parent que vous allez décrire [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre premier parent.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l2kjnm8k","componentType":"Input","mandatory":false,"page":"3.516","maxLength":249,"controls":[{"id":"l2kjnm8k-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_PAR1) or PRENOM_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_PAR1"}}]},{"id":"question-l2kjy49o","componentType":"Question","page":"3.517","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" [?](. 'Pourquoi cette question ?\r\nPour savoir à quel âge les parents ont leurs enfants.')\" ","type":"VTL|MD"},"declarations":[{"id":"l6c4w3ax","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Indiquez une année approximative si vous ne savez pas précisément.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l2kjy49o","componentType":"Datepicker","mandatory":false,"page":"3.517","min":"1860","max":"1992","dateFormat":"YYYY","controls":[{"id":"l2kjy49o-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_PAR1)) and (cast(ANAI_PAR1, date, \"YYYY\")cast(\"1992\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1860 et 1992.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kjy49o-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_PAR1) or ANAI_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kjy49o-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_PAR1)) and not(isnull(ANAIS)) and cast(ANAI_PAR1,integer) > ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kjy49o-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_PAR1)) and not(isnull(ANAIS)) and (cast(ANAI_PAR1,integer) + 12 > ANAIS)))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_PAR1"}}]},{"id":"question-l2kkvar7","componentType":"Question","page":"3.518","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l2kkvar7","componentType":"Radio","mandatory":false,"page":"3.518","orientation":"vertical","controls":[{"id":"l2kkvar7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull (SEXE_PAR1) or SEXE_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une femme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Un homme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_PAR1"}}]},{"id":"question-l7ywp1vk","componentType":"Question","page":"3.519","label":{"value":"\"Quel est le lieu de naissance de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"components":[{"id":"l7ywp1vk","componentType":"Radio","mandatory":false,"page":"3.519","orientation":"vertical","controls":[{"id":"l7ywp1vk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LIEUNAIS_PAR1) or LIEUNAIS_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"En France\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"A l'étranger\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne souhaite pas répondre\"","type":"VTL|MD"}}],"response":{"name":"LIEUNAIS_PAR1"}}]},{"id":"question-lyod84wr","componentType":"Question","page":"3.520","label":{"value":"\"Quel est le pays de naissance de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lyodc4o8","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (LIEUNAIS_PAR1 =\"2\")","type":"VTL"},"components":[{"id":"lyod84wr","componentType":"Suggester","mandatory":false,"page":"3.520","maxLength":20,"controls":[{"id":"lyod84wr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PNAI_PAR1) or PNAI_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PNAI_PAR1"}}]},{"id":"question-l2kk539f","componentType":"Question","page":"3.521","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" était-\" || LIBSUJETPAR1 || \" français\" || LIBSEXPAR1 || \" à la naissance [?](. 'Pourquoi cette question ?\r\nPour mieux connaître la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"components":[{"id":"l2kk539f","componentType":"Radio","mandatory":false,"page":"3.521","orientation":"vertical","controls":[{"id":"l2kk539f-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NATIO_PAR1) or NATIO_PAR1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne souhaite pas répondre\"","type":"VTL|MD"}}],"response":{"name":"NATIO_PAR1"}}]},{"id":"question-lyocgyi4","componentType":"Question","page":"3.522","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" travaille-t-\" || LIBSUJETPAR1 || \" ou a-t-\" || LIBSUJETPAR1 || \" travaillé au cours de sa vie [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"components":[{"id":"lyocgyi4","componentType":"Radio","mandatory":false,"page":"3.522","orientation":"vertical","controls":[{"id":"lyocgyi4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(TRAV_PAR1=\"\" or isnull(TRAV_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_PAR1"}}]},{"id":"question-l2kjueig","componentType":"Question","page":"3.523","label":{"value":"\"Quelle est/était la (dernière) profession principale de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4o5gqap","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","type":"VTL"},"components":[{"id":"l2kjueig","componentType":"Suggester","mandatory":false,"page":"3.523","maxLength":20,"storeName":"L_PCS_HOMMES-2-1-0","response":{"name":"PROF_PAR1H"}}]},{"id":"question-l4qzvm5v","componentType":"Question","page":"3.524","label":{"value":"\"Quelle est/était la (dernière) profession principale de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qzje64","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")","type":"VTL"},"components":[{"id":"l4qzvm5v","componentType":"Suggester","mandatory":false,"page":"3.524","maxLength":20,"storeName":"L_PCS_FEMMES-2-1-0","response":{"name":"PROF_PAR1F"}}]},{"id":"question-l45cjoj7","componentType":"Question","page":"3.525","label":{"value":"\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))","type":"VTL"},"components":[{"id":"l45cjoj7","componentType":"Input","mandatory":false,"page":"3.525","maxLength":249,"controls":[{"id":"l45cjoj7-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROF_PAR1_2) or PROF_PAR1_2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PROF_PAR1_2"}}]},{"id":"question-l2kjshy4","componentType":"Question","page":"3.526","label":{"value":"\"Quel est/était le (dernier) statut professionnel de \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))","type":"VTL"},"components":[{"id":"l2kjshy4","componentType":"Radio","mandatory":false,"page":"3.526","orientation":"vertical","controls":[{"id":"l2kjshy4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(STATUT_PAR1) or STATUT_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"A son compte (y compris gérant\" || LIBSEXPAR1 || \" de société salarié\" || LIBSEXPAR1 || \")\" ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Salarié\" || LIBSEXPAR1 || \" de la fonction publique (Etat, territoriale, hospitalière)\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Salarié\" || LIBSEXPAR1 || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Salarié\" || LIBSEXPAR1 || \" d'un particulier\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Aide familial\" || LIBSEXPAR1 || \" non rémunéré\" || LIBSEXPAR1 ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"STATUT_PAR1"}}]},{"id":"question-lpsjlk6w","componentType":"Question","page":"3.527","label":{"value":"\"En comptant \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \", combien de personnes travaillent/travaillaient dans son entreprise ?\" ","type":"VTL|MD"},"declarations":[{"id":"lpsjtgha","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","type":"VTL"},"components":[{"id":"lpsjlk6w","componentType":"Radio","mandatory":false,"page":"3.527","orientation":"vertical","controls":[{"id":"lpsjlk6w-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_IND_PAR1=\"\" or isnull(SAL_IND_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une seule personne : \" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"il\" else \"elle\") || \" travaille ou travaillait seul\" || LIBSEXPAR1 ","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":"SAL_IND_PAR1"}}]},{"id":"question-llgo5n7b","componentType":"Question","page":"3.528","label":{"value":"\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","type":"VTL"},"components":[{"id":"llgo5n7b","componentType":"Radio","mandatory":false,"page":"3.528","orientation":"vertical","controls":[{"id":"llgo5n7b-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_FP_PAR1=\"\" or isnull(SAL_FP_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXPAR1 ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXPAR1 ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Technici\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\") ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent\" || LIBSEXPAR1 || \" de catégorie D de la fonction publique\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Agent\" || LIBSEXPAR1 || \" de catégorie C de la fonction publique\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Agent\" || LIBSEXPAR1 || \" de catégorie B de la fonction publique\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Agent\" || LIBSEXPAR1 || \" de catégorie A de la fonction publique\" ","type":"VTL|MD"}},{"value":"8","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_FP_PAR1"}}]},{"id":"question-llgqspnh","componentType":"Question","page":"3.529","label":{"value":"\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")","type":"VTL"},"components":[{"id":"llgqspnh","componentType":"Radio","mandatory":false,"page":"3.529","orientation":"vertical","controls":[{"id":"llgqspnh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_ENT_PAR1) or SAL_ENT_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXPAR1 ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXPAR1 || \", technici\" || (if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\") || \" d'atelier\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Employé\" || LIBSEXPAR1 || \" de bureau, de commerce, de services\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent de maîtrise (y compris administrative ou commerciale)\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Technici\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Ingénieur\" || LIBSEXPAR1 || \", cadre d'entreprise\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_ENT_PAR1"}}]},{"id":"question-l2kk4seh","componentType":"Question","page":"3.530","label":{"value":"\"En quelle langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" vous parlait-\" || LIBSUJETPAR1 || \", quand vous étiez enfant [?](. 'Pourquoi cette question ?\r\nPour savoir comment se transmettent les langues au fil des générations.')\" ","type":"VTL|MD"},"declarations":[{"id":"laiaq49f","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l2kk4seh","componentType":"Suggester","mandatory":false,"page":"3.530","maxLength":20,"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE1_PAR1"}}]},{"id":"question-lumppr7y","componentType":"Question","page":"3.531","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(LANGUE1_PAR1) or LANGUE1_PAR1 =\"\")","type":"VTL"},"components":[{"id":"lumppr7y","componentType":"Input","mandatory":false,"page":"3.531","maxLength":149,"controls":[{"id":"lumppr7y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE1_PAR1L) or LANGUE1_PAR1L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE1_PAR1L"}}]},{"id":"question-l447j7cx","componentType":"Question","page":"3.532","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vous parlait-\" || LIBSUJETPAR1 || \" dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L)))","type":"VTL"},"components":[{"id":"l447j7cx","componentType":"Radio","mandatory":false,"page":"3.532","orientation":"vertical","controls":[{"id":"l447j7cx-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_PAR1E) or LANGUE2_PAR1E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE2_PAR1E"}}]},{"id":"question-lw6don31","componentType":"Question","page":"3.533","label":{"value":"\"Quelle est cette autre langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6dxulv","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\")","type":"VTL"},"components":[{"id":"lw6don31","componentType":"Suggester","mandatory":false,"page":"3.533","maxLength":20,"controls":[{"id":"lw6don31-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE1_PAR1)) and not(isnull(LANGUE2_PAR1)) and LANGUE2_PAR1=LANGUE1_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE2_PAR1"}}]},{"id":"question-lumsnsej","componentType":"Question","page":"3.534","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))","type":"VTL"},"components":[{"id":"lumsnsej","componentType":"Input","mandatory":false,"page":"3.534","maxLength":149,"controls":[{"id":"lumsnsej-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_PAR1L) or LANGUE2_PAR1L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE2_PAR1L"}}]},{"id":"question-lumptzfb","componentType":"Question","page":"3.535","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vous parlait-\" || LIBSUJETPAR1 || \" dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","type":"VTL"},"components":[{"id":"lumptzfb","componentType":"Radio","mandatory":false,"page":"3.535","orientation":"vertical","controls":[{"id":"lumptzfb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_PAR1E) or LANGUE3_PAR1E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE3_PAR1E"}}]},{"id":"question-lw6dyxml","componentType":"Question","page":"3.536","label":{"value":"\"Quelle est cette troisième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6dp4zm","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","type":"VTL"},"components":[{"id":"lw6dyxml","componentType":"Suggester","mandatory":false,"page":"3.536","maxLength":20,"controls":[{"id":"lw6dyxml-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE3_PAR1)) and not(isnull(LANGUE2_PAR1)) and LANGUE2_PAR1=LANGUE3_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE3_PAR1"}}]},{"id":"question-lumsdl5a","componentType":"Question","page":"3.537","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","type":"VTL"},"components":[{"id":"lumsdl5a","componentType":"Input","mandatory":false,"page":"3.537","maxLength":149,"controls":[{"id":"lumsdl5a-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_PAR1L) or LANGUE3_PAR1L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE3_PAR1L"}}]},{"id":"question-lumptuhp","componentType":"Question","page":"3.538","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vous parlait-\" || LIBSUJETPAR1 || \" dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","type":"VTL"},"components":[{"id":"lumptuhp","componentType":"Radio","mandatory":false,"page":"3.538","orientation":"vertical","controls":[{"id":"lumptuhp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_PAR1E) pr LANGUE4_PAR1E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE4_PAR1E"}}]},{"id":"question-lw6ecsey","componentType":"Question","page":"3.539","label":{"value":"\"Quelle est cette quatrième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6eje0w","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","type":"VTL"},"components":[{"id":"lw6ecsey","componentType":"Suggester","mandatory":false,"page":"3.539","maxLength":20,"controls":[{"id":"lw6ecsey-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE4_PAR1)) and not(isnull(LANGUE3_PAR1)) and LANGUE3_PAR1=LANGUE4_PAR1))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE4_PAR1"}}]},{"id":"question-lumswm4d","componentType":"Question","page":"3.540","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))","type":"VTL"},"components":[{"id":"lumswm4d","componentType":"Input","mandatory":false,"page":"3.540","maxLength":149,"controls":[{"id":"lumswm4d-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_PAR1L) or LANGUE4_PAR1L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE4_PAR1L"}}]},{"id":"question-l2kjzugb","componentType":"Question","page":"3.541","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" est-\" || LIBSUJETPAR1 || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour savoir combien d’adultes ont encore leurs parents en vie.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"components":[{"id":"l2kjzugb","componentType":"Radio","mandatory":false,"page":"3.541","orientation":"vertical","controls":[{"id":"l2kjzugb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(VIV_PAR1) or VIV_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VIV_PAR1"}}]},{"id":"question-l2kkd59n","componentType":"Question","page":"3.542","label":{"value":"\"En quelle année environ \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" est-\" || LIBSUJETPAR1 || \" décédé\" || LIBSEXPAR1 || \" [?](. 'Pourquoi cette question ? \r\nPour savoir à quel âge on devient orphelin et notamment identifier les personnes qui ont perdu leurs parents pendant leur enfance.')\" ","type":"VTL|MD"},"declarations":[{"id":"lyfjla01","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Indiquez une année approximative si vous ne savez pas précisément.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")","type":"VTL"},"components":[{"id":"l2kkd59n","componentType":"Datepicker","mandatory":false,"page":"3.542","min":"1880","max":"2025","dateFormat":"YYYY","controls":[{"id":"l2kkd59n-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_DC_PAR1)) and (cast(ANNEE_DC_PAR1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1880 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kkd59n-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_DC_PAR1) or ANNEE_DC_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kkd59n-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_DC_PAR1)) and not(isnull(ANAI_PAR1)) and cast(ANNEE_DC_PAR1,integer) < cast(ANAI_PAR1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l2kkd59n-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_DC_PAR1)) and not(isnull(ANAIS)) and (cast(ANNEE_DC_PAR1,integer) + 1) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_DC_PAR1"}}]},{"id":"question-l2kk4snz","componentType":"Question","page":"3.543","label":{"value":"\"Où vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","type":"VTL"},"components":[{"id":"l2kk4snz","componentType":"Radio","mandatory":false,"page":"3.543","orientation":"vertical","controls":[{"id":"l2kk4snz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_PAR1) or LOG_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Avec vous, dans ce logement\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ailleurs\"","type":"VTL|MD"}}],"response":{"name":"LOG_PAR1"}}]},{"id":"question-l2kkb4xa","componentType":"Question","page":"3.544","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vit-\" || LIBSUJETPAR1 || \" en France [?](. 'Pourquoi cette question ? \r\nPour connaître les relations entretenues avec ses parents, et notamment identifier les personnes dont les parents vivent loin.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai78qvl","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"components":[{"id":"l2kkb4xa","componentType":"Radio","mandatory":false,"page":"3.544","orientation":"vertical","controls":[{"id":"l2kkb4xa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_PAR1) or FR_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_PAR1"}}]},{"id":"question-l4onhpvd","componentType":"Question","page":"3.545","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bjnw8","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","type":"VTL"},"components":[{"id":"l4onhpvd","componentType":"Suggester","mandatory":false,"page":"3.545","maxLength":20,"controls":[{"id":"l4onhpvd-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_PAR1) or COM_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_PAR1"}}]},{"id":"question-l4o7ufzl","componentType":"Question","page":"3.546","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o88r3u","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","type":"VTL"},"components":[{"id":"l4o7ufzl","componentType":"Suggester","mandatory":false,"page":"3.546","maxLength":20,"controls":[{"id":"l4o7ufzl-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_PAR1) or DEP_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_PAR1"}}]},{"id":"question-l4o8eale","componentType":"Question","page":"3.547","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o8fj6f","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","type":"VTL"},"components":[{"id":"l4o8eale","componentType":"Suggester","mandatory":false,"page":"3.547","maxLength":20,"controls":[{"id":"l4o8eale-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_PAR1) or PAY_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_PAR1"}}]},{"id":"question-l1ezkqes","componentType":"Question","page":"3.548","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" vit-\" || LIBSUJETPAR1 || \" dans un établissement pour personnes âgées (EHPAD, maison de retraite,...) [?](. 'Pourquoi cette question ?\r\nPour savoir où vivent les parents d’un certain âge.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","type":"VTL"},"components":[{"id":"l1ezkqes","componentType":"Radio","mandatory":false,"page":"3.548","orientation":"vertical","controls":[{"id":"l1ezkqes-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ETAB_PAR1) or ETAB_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ETAB_PAR1"}}]},{"id":"question-l2kkeqsz","componentType":"Question","page":"3.549","label":{"value":"\"A quelle fréquence voyez-vous \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" (en face à face) [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"components":[{"id":"l2kkeqsz","componentType":"Radio","mandatory":false,"page":"3.549","orientation":"vertical","controls":[{"id":"l2kkeqsz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FREQ_VU_PAR1) or FREQ_VU_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"FREQ_VU_PAR1"}}]},{"id":"question-l2kk296y","componentType":"Question","page":"3.550","label":{"value":"\"A quelle fréquence communiquez-vous avec \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" (téléphone, mail, SMS, appel vidéo, ...) [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"components":[{"id":"l2kk296y","componentType":"Radio","mandatory":false,"page":"3.550","orientation":"vertical","controls":[{"id":"l2kk296y-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FREQ_CONT_PAR1) or FREQ_CONT_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"FREQ_CONT_PAR1"}}]},{"id":"question-l4lojzxg","componentType":"Question","page":"3.551","label":{"value":"\"Vivez-vous à moins d'une heure de chez \" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"votre parent\" else PRENOM_PAR1) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"components":[{"id":"l4lojzxg","componentType":"Radio","mandatory":false,"page":"3.551","orientation":"vertical","controls":[{"id":"l4lojzxg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROX_EGO_PAR1) or PROX_EGO_PAR1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PROX_EGO_PAR1"}}]},{"id":"question-l43yap7r","componentType":"Question","page":"3.552","label":{"value":"\"\" || (if (nvl(PRENOM_PAR1,\"\")=\"\") then \"Votre parent\" else PRENOM_PAR1) || \" a-t-\" || LIBSUJETPAR1 || \" d'autres enfants que vous qui vivent à moins d'une heure de chez\" || if (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1)) then \" lui ?\" else \" elle ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","type":"VTL"},"components":[{"id":"l43yap7r","componentType":"Radio","mandatory":false,"page":"3.552","orientation":"vertical","controls":[{"id":"l43yap7r-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROX_FRAT_PAR1) or PROX_FRAT_PAR1 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PROX_FRAT_PAR1"}}]},{"id":"question-l5axrwsa","componentType":"Question","page":"3.553","label":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", avez-vous un autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel) ?\"\r\n ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l5axrwsa","componentType":"Radio","mandatory":false,"page":"3.553","orientation":"vertical","controls":[{"id":"l5axrwsa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(EXIST_PAR2) or EXIST_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"EXIST_PAR2"}}]},{"id":"las2r756","componentType":"Subsequence","page":"3.554","goToPage":"3.554","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre autre parent\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", décrivez maintenant votre autre parent, encore en vie ou non (père, mère ou personne que vous considérez comme tel).\" ","type":"VTL|MD"}},{"id":"question-l27ijusa","componentType":"Question","page":"3.555","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", quel est le prénom de votre autre parent [?](. 'Pourquoi cette question ? \r\nPour rendre la suite du questionnaire plus simple, en personnalisant les questions avec le prénom de votre autre parent.\r\nSi vous ne souhaitez pas répondre, cliquez sur ’’Continuer’’.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"l27ijusa","componentType":"Input","mandatory":false,"page":"3.555","maxLength":249,"controls":[{"id":"l27ijusa-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PRENOM_PAR2) or PRENOM_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer le prénom attendu.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PRENOM_PAR2"}}]},{"id":"question-kwqfufye","componentType":"Question","page":"3.556","label":{"value":"\"Quelle est l'année de naissance de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour savoir à quel âge les parents ont leurs enfants.')\" ","type":"VTL|MD"},"declarations":[{"id":"l6c4ofs8","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Indiquez une année approximative si vous ne savez pas précisément.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"kwqfufye","componentType":"Datepicker","mandatory":false,"page":"3.556","min":"1860","max":"1992","dateFormat":"YYYY","controls":[{"id":"kwqfufye-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANAI_PAR2)) and (cast(ANAI_PAR2, date, \"YYYY\")cast(\"1992\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1860 et 1992.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqfufye-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANAI_PAR2) or ANAI_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqfufye-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_PAR2)) and not(isnull(ANAIS)) and (cast(ANAI_PAR2,integer) + 12 > ANAIS)))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre parent. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqfufye-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAI_PAR2)) and not(isnull(ANAIS)) and cast(ANAI_PAR2,integer) > ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de naissance de votre parent postérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANAI_PAR2"}}]},{"id":"question-l27ig4yy","componentType":"Question","page":"3.557","label":{"value":"\"Quel est le sexe de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"l27ig4yy","componentType":"Radio","mandatory":false,"page":"3.557","orientation":"vertical","controls":[{"id":"l27ig4yy-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SEXE_PAR2) or SEXE_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une femme\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Un homme\"","type":"VTL|MD"}}],"response":{"name":"SEXE_PAR2"}}]},{"id":"question-lyoc66rt","componentType":"Question","page":"3.558","label":{"value":"\"Quel est le lieu de naissance de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"components":[{"id":"lyoc66rt","componentType":"Radio","mandatory":false,"page":"3.558","orientation":"vertical","controls":[{"id":"lyoc66rt-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LIEUNAIS_PAR2) or LIEUNAIS_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"En France\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"A l'étranger\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne souhaite pas répondre\"","type":"VTL|MD"}}],"response":{"name":"LIEUNAIS_PAR2"}}]},{"id":"question-lyod9pq3","componentType":"Question","page":"3.559","label":{"value":"\"Quel est le pays de naissance de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"lyodrjfm","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")","type":"VTL"},"components":[{"id":"lyod9pq3","componentType":"Suggester","mandatory":false,"page":"3.559","maxLength":20,"controls":[{"id":"lyod9pq3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PNAI_PAR2) or PNAI_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PNAI_PAR2"}}]},{"id":"question-kwqfhhge","componentType":"Question","page":"3.560","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" était-\" || LIBSUJETPAR2 || \" français\" || LIBSEXPAR2 || \" à la naissance [?](. 'Pourquoi cette question ?\r\nPour mieux connaître la diversité des familles.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"components":[{"id":"kwqfhhge","componentType":"Radio","mandatory":false,"page":"3.560","orientation":"vertical","controls":[{"id":"kwqfhhge-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NATIO_PAR2) or NATIO_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Je ne souhaite pas répondre\"","type":"VTL|MD"}}],"response":{"name":"NATIO_PAR2"}}]},{"id":"question-l7ywxphs","componentType":"Question","page":"3.561","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" travaille-t-\" || LIBSUJETPAR2 || \" ou a-t-\" || LIBSUJETPAR2 || \" travaillé au cours de sa vie [?](. 'Pourquoi cette question ?\r\nPour éclairer les conditions de vie des enfants.')\"\r\n ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"components":[{"id":"l7ywxphs","componentType":"Radio","mandatory":false,"page":"3.561","orientation":"vertical","controls":[{"id":"l7ywxphs-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAV_PAR2) or TRAV_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAV_PAR2"}}]},{"id":"question-l1ezowxi","componentType":"Question","page":"3.562","label":{"value":"\"Quelle est/était la (dernière) profession principale de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4o51lf6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","type":"VTL"},"components":[{"id":"l1ezowxi","componentType":"Suggester","mandatory":false,"page":"3.562","maxLength":20,"storeName":"L_PCS_HOMMES-2-1-0","response":{"name":"PROF_PAR2H"}}]},{"id":"question-l4qzjbsx","componentType":"Question","page":"3.563","label":{"value":"\"Quelle est/était la (dernière) profession principale de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\" ","type":"VTL|MD"},"declarations":[{"id":"l4qzsxov","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de profession recherché et sélectionnez-le dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\r\nSaisissez bien la dernière profession connue.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"l4qzjbsx","componentType":"Suggester","mandatory":false,"page":"3.563","maxLength":20,"storeName":"L_PCS_FEMMES-2-1-0","response":{"name":"PROF_PAR2F"}}]},{"id":"question-l444t31z","componentType":"Question","page":"3.564","label":{"value":"\"Vous n'avez pas trouvé le libellé de profession recherché dans la liste. Veuillez saisir le libellé de profession le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","type":"VTL"},"components":[{"id":"l444t31z","componentType":"Input","mandatory":false,"page":"3.564","maxLength":249,"controls":[{"id":"l444t31z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROF_PAR2_2) or PROF_PAR2_2 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"PROF_PAR2_2"}}]},{"id":"question-kwqfto3c","componentType":"Question","page":"3.565","label":{"value":"\"Quel est/était le (dernier) statut professionnel de \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","type":"VTL"},"components":[{"id":"kwqfto3c","componentType":"Radio","mandatory":false,"page":"3.565","orientation":"vertical","controls":[{"id":"kwqfto3c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(STATUT_PAR2) or STATUT_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"A son compte (y compris gérant\" || LIBSEXPAR2 || \" de société salarié\" || LIBSEXPAR2 || \")\" ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Salarié\" || LIBSEXPAR2 || \" de la fonction publique (Etat, territoriale, hospitalière)\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Salarié\" || LIBSEXPAR2 || \" d'une entreprise (y compris d'une association ou de la sécurité sociale)\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Salarié\" || LIBSEXPAR2 || \" d'un particulier\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Aide familial\" || LIBSEXPAR2 || \" non rémunéré\" || LIBSEXPAR2 ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"STATUT_PAR2"}}]},{"id":"question-lptlrxcc","componentType":"Question","page":"3.566","label":{"value":"\"En comptant \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \", combien de personnes travaillent/travaillaient dans son entreprise ?\" ","type":"VTL|MD"},"declarations":[{"id":"lptlri1y","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Inclure : salariés, apprentis, stagiaires rémunérés, intérimaires, saisonniers, personnes qui travaillent sans être rémunérées avec un membre de leur famille.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"lptlrxcc","componentType":"Radio","mandatory":false,"page":"3.566","orientation":"vertical","controls":[{"id":"lptlrxcc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_IND_PAR2=\"\" or isnull(SAL_IND_PAR2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une seule personne : \" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"il\" else \"elle\") || \" travaille ou travaillait seul\" || LIBSEXPAR2 ","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":"SAL_IND_PAR2"}}]},{"id":"question-llgosp3i","componentType":"Question","page":"3.567","label":{"value":"\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre parent\" else PRENOM_PAR2) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","type":"VTL"},"components":[{"id":"llgosp3i","componentType":"Radio","mandatory":false,"page":"3.567","orientation":"vertical","controls":[{"id":"llgosp3i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(SAL_FP_PAR2=\"\" or isnull(SAL_FP_PAR2))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXPAR2 ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXPAR2 ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Technici\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent\" || LIBSEXPAR2 || \" de catégorie D de la fonction publique\" ","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Agent\" || LIBSEXPAR2 || \" de catégorie C de la fonction publique\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Agent\" || LIBSEXPAR2 || \" de catégorie B de la fonction publique\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Agent\" || LIBSEXPAR2 || \" de catégorie A de la fonction publique\" ","type":"VTL|MD"}},{"value":"8","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_FP_PAR2"}}]},{"id":"question-llgrqyqg","componentType":"Question","page":"3.568","label":{"value":"\"Dans cet emploi, \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre parent\" else PRENOM_PAR2) || \" est/était ...\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")","type":"VTL"},"components":[{"id":"llgrqyqg","componentType":"Radio","mandatory":false,"page":"3.568","orientation":"vertical","controls":[{"id":"llgrqyqg-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(SAL_ENT_PAR2) or SAL_ENT_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Manœuvre, ouvri\" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\") || \" spécialisé\" || LIBSEXPAR2 ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ouvri\" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"er\" else \"ère\") || \" qualifié\" || LIBSEXPAR2 || \", technici\" || (if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\") || \" d'atelier\" ","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Employé\" || LIBSEXPAR2 || \" de bureau, de commerce, de services\" ","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Agent de maîtrise (y compris administrative ou commerciale)\"","type":"VTL|MD"}},{"value":"5","label":{"value":"\"Technici\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \"en\" else \"enne\" ","type":"VTL|MD"}},{"value":"6","label":{"value":"\"Ingénieur\" || LIBSEXPAR2 || \", cadre d'entreprise\" ","type":"VTL|MD"}},{"value":"7","label":{"value":"\"Dans une autre situation, je ne sais pas\"","type":"VTL|MD"}}],"response":{"name":"SAL_ENT_PAR2"}}]},{"id":"question-l1ezgxe3","componentType":"Question","page":"3.569","label":{"value":"\"En quelle langue, dialecte, ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" vous parlait-\" || LIBSUJETPAR2 || \", quand vous étiez enfant [?](. 'Pourquoi cette question ?\r\nPour savoir comment se transmettent les langues au fil des générations.')\" ","type":"VTL|MD"},"declarations":[{"id":"laiap5v8","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"components":[{"id":"l1ezgxe3","componentType":"Suggester","mandatory":false,"page":"3.569","maxLength":20,"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE1_PAR2"}}]},{"id":"question-lums0dcm","componentType":"Question","page":"3.570","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(LANGUE1_PAR2))","type":"VTL"},"components":[{"id":"lums0dcm","componentType":"Input","mandatory":false,"page":"3.570","maxLength":149,"controls":[{"id":"lums0dcm-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE1_PAR2L) or LANGUE1_PAR2L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE1_PAR2L"}}]},{"id":"question-l444xjux","componentType":"Question","page":"3.571","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vous parlait-\" || LIBSUJETPAR2 || \" dans une autre langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L)))","type":"VTL"},"components":[{"id":"l444xjux","componentType":"Radio","mandatory":false,"page":"3.571","orientation":"vertical","controls":[{"id":"l444xjux-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_PAR2E) or LANGUE2_PAR2E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE2_PAR2E"}}]},{"id":"question-lw6eh4up","componentType":"Question","page":"3.572","label":{"value":"\"Quelle est cette autre langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6evsck","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","type":"VTL"},"components":[{"id":"lw6eh4up","componentType":"Suggester","mandatory":false,"page":"3.572","maxLength":20,"controls":[{"id":"lw6eh4up-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE1_PAR2)) and not(isnull(LANGUE2_PAR2)) and LANGUE2_PAR2=LANGUE1_PAR2))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE2_PAR2"}}]},{"id":"question-lumsfeeu","componentType":"Question","page":"3.573","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","type":"VTL"},"components":[{"id":"lumsfeeu","componentType":"Input","mandatory":false,"page":"3.573","maxLength":149,"controls":[{"id":"lumsfeeu-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE2_PAR2L) or LANGUE2_PAR2L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE2_PAR2L"}}]},{"id":"question-lums26pp","componentType":"Question","page":"3.574","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vous parlait-\" || LIBSUJETPAR2 || \" dans une troisième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","type":"VTL"},"components":[{"id":"lums26pp","componentType":"Radio","mandatory":false,"page":"3.574","orientation":"vertical","controls":[{"id":"lums26pp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_PAR2E) or LANGUE3_PAR2E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE3_PAR2E"}}]},{"id":"question-lw6euv9i","componentType":"Question","page":"3.575","label":{"value":"\"Quelle est cette troisième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6f4k4x","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","type":"VTL"},"components":[{"id":"lw6euv9i","componentType":"Suggester","mandatory":false,"page":"3.575","maxLength":20,"controls":[{"id":"lw6euv9i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE3_PAR2)) and not(isnull(LANGUE2_PAR2)) and LANGUE2_PAR2=LANGUE3_PAR2))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE3_PAR2"}}]},{"id":"question-lumsp0o4","componentType":"Question","page":"3.576","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","type":"VTL"},"components":[{"id":"lumsp0o4","componentType":"Input","mandatory":false,"page":"3.576","maxLength":149,"controls":[{"id":"lumsp0o4-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE3_PAR2L) or LANGUE3_PAR2L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE3_PAR2L"}}]},{"id":"question-lumrz70d","componentType":"Question","page":"3.577","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vous parlait-\" || LIBSUJETPAR2 || \" dans une quatrième langue, dialecte ou patois (kabyle, peul, breton, ch'ti, LSF, français, italien...) quand vous étiez enfant ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","type":"VTL"},"components":[{"id":"lumrz70d","componentType":"Radio","mandatory":false,"page":"3.577","orientation":"vertical","controls":[{"id":"lumrz70d-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_PAR2E) or LANGUE4_PAR2E=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"LANGUE4_PAR2E"}}]},{"id":"question-lw6er2dw","componentType":"Question","page":"3.578","label":{"value":"\"Quelle est cette quatrième langue, dialecte ou patois ?\"","type":"VTL|MD"},"declarations":[{"id":"lw6enpw6","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le libellé de la langue recherchée et sélectionnez-la dans la liste.\r\nSi vous ne le trouvez pas, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","type":"VTL"},"components":[{"id":"lw6er2dw","componentType":"Suggester","mandatory":false,"page":"3.578","maxLength":20,"controls":[{"id":"lw6er2dw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(LANGUE3_PAR2)) and not(isnull(LANGUE4_PAR2)) and LANGUE3_PAR2=LANGUE4_PAR2))","type":"VTL"},"errorMessage":{"value":"\"Vous avez sélectionné la même langue que la précédente. Merci à vous de corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_LANGUES-2-0-0","response":{"name":"LANGUE4_PAR2"}}]},{"id":"question-lumso5hv","componentType":"Question","page":"3.579","label":{"value":"\"Vous n'avez pas trouvé la langue recherchée dans la liste. Veuillez saisir le libellé de langue le plus précis et complet possible.\"","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))","type":"VTL"},"components":[{"id":"lumso5hv","componentType":"Input","mandatory":false,"page":"3.579","maxLength":149,"controls":[{"id":"lumso5hv-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LANGUE4_PAR2L) or LANGUE4_PAR2L=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"LANGUE4_PAR2L"}}]},{"id":"question-kwqhjfzk","componentType":"Question","page":"3.580","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" est-\" || LIBSUJETPAR2 || \" encore en vie [?](. 'Pourquoi cette question ?\r\nPour savoir combien d’adultes ont encore leurs parents en vie.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"components":[{"id":"kwqhjfzk","componentType":"Radio","mandatory":false,"page":"3.580","orientation":"vertical","controls":[{"id":"kwqhjfzk-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(VIV_PAR2) or VIV_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VIV_PAR2"}}]},{"id":"question-kwqg35i9","componentType":"Question","page":"3.581","label":{"value":"\"En quelle année environ \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" est-\" || LIBSUJETPAR2 || \" décédé\" || LIBSEXPAR2 || \" [?](. 'Pourquoi cette question ? \r\nPour savoir à quel âge on devient orphelin et notamment identifier les personnes qui ont perdu leurs parents pendant leur enfance.')\" ","type":"VTL|MD"},"declarations":[{"id":"lyfjyqfg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Indiquez une année approximative si vous ne savez pas précisément.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","type":"VTL"},"components":[{"id":"kwqg35i9","componentType":"Datepicker","mandatory":false,"page":"3.581","min":"1880","max":"2025","dateFormat":"YYYY","controls":[{"id":"kwqg35i9-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_DC_PAR2)) and (cast(ANNEE_DC_PAR2, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1880 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqg35i9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ANNEE_DC_PAR2) or ANNEE_DC_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'année attendue.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqg35i9-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_DC_PAR2)) and not(isnull(ANAI_PAR2)) and cast(ANNEE_DC_PAR2,integer) < cast(ANAI_PAR2,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du décès de votre parent antérieure à son année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqg35i9-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_DC_PAR2)) and not(isnull(ANAIS)) and (cast(ANNEE_DC_PAR2,integer) + 1) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année du décès de votre parent antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_DC_PAR2"}}]},{"id":"question-kwqgffvw","componentType":"Question","page":"3.582","label":{"value":"\"Où vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"declarations":[{"id":"lley7g7u","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","type":"VTL"},"components":[{"id":"kwqgffvw","componentType":"CheckboxGroup","page":"3.582","orientation":"vertical","controls":[{"id":"kwqgffvw-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"kwqgffvw-CI-1","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(LOG_PAR2A1,false)=true and nvl(LOG_PAR2A3,false)=true) or (nvl(LOG_PAR2A2,false)=true and nvl(LOG_PAR2A3,false)=true))","type":"VTL"},"errorMessage":{"value":"\"Vous ne pouvez pas cocher ''Ailleurs'' et une autre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"kwqgffvw-QOP-m0peo2kw","label":{"value":"\"Avec vous, dans ce logement\"","type":"VTL|MD"},"response":{"name":"LOG_PAR2A1"}},{"id":"kwqgffvw-QOP-m0pe8z8l","label":{"value":"\"Avec \" || (if (isnull(PRENOM_PAR1)) then \"votre autre parent\" else PRENOM_PAR1) ","type":"VTL|MD"},"response":{"name":"LOG_PAR2A2"}},{"id":"kwqgffvw-QOP-m0pefwls","label":{"value":"\"Ailleurs\"","type":"VTL|MD"},"response":{"name":"LOG_PAR2A3"}}]}]},{"id":"question-lab6xfk9","componentType":"Question","page":"3.583","label":{"value":"\"Où vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","type":"VTL"},"components":[{"id":"lab6xfk9","componentType":"Radio","mandatory":false,"page":"3.583","orientation":"vertical","controls":[{"id":"lab6xfk9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(LOG_PAR2B) or LOG_PAR2B=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Avec vous, dans ce logement\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Ailleurs\"","type":"VTL|MD"}}],"response":{"name":"LOG_PAR2B"}}]},{"id":"question-kwqgawqp","componentType":"Question","page":"3.584","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vit-\" || LIBSUJETPAR2 || \" en France [?](. 'Pourquoi cette question ? \r\nPour connaître les relations entretenues avec ses parents, et notamment identifier les personnes dont les parents vivent loin.')\" ","type":"VTL|MD"},"declarations":[{"id":"lai7elua","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Prenez en compte les frontières actuelles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"components":[{"id":"kwqgawqp","componentType":"Radio","mandatory":false,"page":"3.584","orientation":"vertical","controls":[{"id":"kwqgawqp-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FR_PAR2) or FR_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FR_PAR2"}}]},{"id":"question-l4onk34z","componentType":"Question","page":"3.585","label":{"value":"\"Dans quelle commune vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"m37bku4y","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez la commune recherchée et sélectionnez-la dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","type":"VTL"},"components":[{"id":"l4onk34z","componentType":"Suggester","mandatory":false,"page":"3.585","maxLength":20,"controls":[{"id":"l4onk34z-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(COM_PAR2) or COM_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_COMMUNES-2024","response":{"name":"COM_PAR2"}}]},{"id":"question-l4o8co0c","componentType":"Question","page":"3.586","label":{"value":"\"Dans quel département vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o87prg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le département recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","type":"VTL"},"components":[{"id":"l4o8co0c","componentType":"Suggester","mandatory":false,"page":"3.586","maxLength":20,"controls":[{"id":"l4o8co0c-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEP_PAR2) or DEP_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_DEP-1-1-0","response":{"name":"DEP_PAR2"}}]},{"id":"question-l4o8dk7q","componentType":"Question","page":"3.587","label":{"value":"\"Dans quel pays vit \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" ?\" ","type":"VTL|MD"},"declarations":[{"id":"l4o8fiwd","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Saisissez le pays recherché et sélectionnez-le dans la liste.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","type":"VTL"},"components":[{"id":"l4o8dk7q","componentType":"Suggester","mandatory":false,"page":"3.587","maxLength":20,"controls":[{"id":"l4o8dk7q-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PAY_PAR2) or PAY_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"storeName":"L_PAYS-1-2-0","response":{"name":"PAY_PAR2"}}]},{"id":"question-l2kkc8s9","componentType":"Question","page":"3.588","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" vit-\" || LIBSUJETPAR2 || \" dans un établissement pour personnes âgées (EHPAD, maison de retraite,...) [?](. 'Pourquoi cette question ?\r\nPour savoir où vivent les parents d’un certain âge.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","type":"VTL"},"components":[{"id":"l2kkc8s9","componentType":"Radio","mandatory":false,"page":"3.588","orientation":"vertical","controls":[{"id":"l2kkc8s9-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(ETAB_PAR2) or ETAB_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"ETAB_PAR2"}}]},{"id":"question-l1gl4054","componentType":"Question","page":"3.589","label":{"value":"\"A quelle fréquence voyez-vous \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" (en face à face) [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"components":[{"id":"l1gl4054","componentType":"Radio","mandatory":false,"page":"3.589","orientation":"vertical","controls":[{"id":"l1gl4054-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FREQ_VU_PAR2) or FREQ_VU_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"FREQ_VU_PAR2"}}]},{"id":"question-l1ezkbsf","componentType":"Question","page":"3.590","label":{"value":"\"A quelle fréquence communiquez-vous avec \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" (téléphone, mail, SMS, appel vidéo, ...) [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"components":[{"id":"l1ezkbsf","componentType":"Radio","mandatory":false,"page":"3.590","orientation":"vertical","controls":[{"id":"l1ezkbsf-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FREQ_CONT_PAR2) or FREQ_CONT_PAR2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Une ou plusieurs fois par semaine\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une ou plusieurs fois par mois\"","type":"VTL|MD"}},{"value":"3","label":{"value":"\"Une ou plusieurs fois par an\"","type":"VTL|MD"}},{"value":"4","label":{"value":"\"Plus rarement ou jamais\"","type":"VTL|MD"}}],"response":{"name":"FREQ_CONT_PAR2"}}]},{"id":"question-l445itcb","componentType":"Question","page":"3.591","label":{"value":"\"Vivez-vous à moins d'une heure de chez \" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"votre autre parent\" else PRENOM_PAR2) || \" [?](. 'Pourquoi cette question ?\r\nPour connaître les relations entretenues avec ses parents.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"components":[{"id":"l445itcb","componentType":"Radio","mandatory":false,"page":"3.591","orientation":"vertical","controls":[{"id":"l445itcb-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROX_EGO_PAR2) or PROX_EGO_PAR2 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PROX_EGO_PAR2"}}]},{"id":"question-l4cjeqc0","componentType":"Question","page":"3.592","label":{"value":"\"\" || (if (nvl(PRENOM_PAR2,\"\")=\"\") then \"Votre autre parent\" else PRENOM_PAR2) || \" a-t-\" || LIBSUJETPAR2 || \" d'autres enfants que vous qui vivent à moins d'une heure de chez\" || if (SEXE_PAR2=\"2\" or isnull(SEXE_PAR2)) then \" lui ?\" else \" elle ?\" ","type":"VTL|MD"},"conditionFilter":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"components":[{"id":"l4cjeqc0","componentType":"Radio","mandatory":false,"page":"3.592","orientation":"vertical","controls":[{"id":"l4cjeqc0-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(PROX_FRAT_PAR2) or PROX_FRAT_PAR2 =\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"PROX_FRAT_PAR2"}}]},{"id":"lij1g3gt","componentType":"Sequence","page":"3.593","label":{"value":"\"XI - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", votre parcours de vie\" ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions sur votre enfance et votre parcours de vie.\" ","type":"VTL|MD"}},{"id":"question-l473kp51","componentType":"Question","page":"3.594","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", combien de frère(s) (ou demi-frère(s)) avez-vous eu(s), qu'il(s) soi(en)t encore en vie ou non [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\" ","type":"VTL|MD"},"declarations":[{"id":"l8m20psg","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucun, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l473kp51","componentType":"InputNumber","mandatory":false,"page":"3.594","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l473kp51-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_FRERES)) and (0>NB_FRERES or 20NB_FRERES)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l473kp51-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_FRERES))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_FRERES"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l5ikk5zq","componentType":"Question","page":"3.595","label":{"value":"\"Votre frère (ou demi-frère) est-il encore en vie [?](. 'Pourquoi cette question ?\r\nPour connaître le réseau familial des personnes aujourd’hui.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(NB_FRERES = 1)","type":"VTL"},"components":[{"id":"l5ikk5zq","componentType":"Radio","mandatory":false,"page":"3.595","orientation":"vertical","controls":[{"id":"l5ikk5zq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_FRERES_VIV1) or NB_FRERES_VIV1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NB_FRERES_VIV1"}}]},{"id":"question-l4740wd1","componentType":"Question","page":"3.596","label":{"value":"\"Combien sont encore en vie [?](. 'Pourquoi cette question ?\r\nPour connaître le réseau familial des personnes aujourd’hui.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(NB_FRERES > 1)","type":"VTL"},"components":[{"id":"l4740wd1","componentType":"InputNumber","mandatory":false,"page":"3.596","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l4740wd1-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_FRERES_VIV)) and (0>NB_FRERES_VIV or 20NB_FRERES_VIV)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4740wd1-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_FRERES_VIV))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4740wd1-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NB_FRERES_VIV,0) > nvl(NB_FRERES,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre de frères vivants ne peut pas être supérieur au nombre total de frères.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_FRERES_VIV"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l4742c2v","componentType":"Question","page":"3.597","label":{"value":"\"Combien de soeur(s) (ou demi-soeur(s)) avez-vous eue(s), qu'elle(s) soi(en)t encore en vie ou non [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\"","type":"VTL|MD"},"declarations":[{"id":"l8m2azyh","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si aucune, notez 0.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l4742c2v","componentType":"InputNumber","mandatory":false,"page":"3.597","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l4742c2v-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_SOEURS)) and (0>NB_SOEURS or 20NB_SOEURS)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l4742c2v-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_SOEURS))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_SOEURS"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l5ikyrbc","componentType":"Question","page":"3.598","label":{"value":"\"Votre soeur (ou demi-soeur) est-elle encore en vie [?](. 'Pourquoi cette question ?\r\nPour connaître le réseau familial des personnes aujourd’hui.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(NB_SOEURS = 1)","type":"VTL"},"components":[{"id":"l5ikyrbc","componentType":"Radio","mandatory":false,"page":"3.598","orientation":"vertical","controls":[{"id":"l5ikyrbc-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_SOEURS_VIV1) or NB_SOEURS_VIV1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"NB_SOEURS_VIV1"}}]},{"id":"question-l473w273","componentType":"Question","page":"3.599","label":{"value":"\"Combien sont encore en vie [?](. 'Pourquoi cette question ?\r\nPour connaître le réseau familial des personnes aujourd’hui.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(NB_SOEURS > 1)","type":"VTL"},"components":[{"id":"l473w273","componentType":"InputNumber","mandatory":false,"page":"3.599","min":0.0,"max":20.0,"decimals":0,"controls":[{"id":"l473w273-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(NB_SOEURS_VIV)) and (0>NB_SOEURS_VIV or 20NB_SOEURS_VIV)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l473w273-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(NB_SOEURS_VIV))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l473w273-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(NB_SOEURS_VIV,0) > nvl(NB_SOEURS,0)))","type":"VTL"},"errorMessage":{"value":"\"Le nombre de soeurs vivantes ne peut pas être supérieur au nombre total de soeurs.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"NB_SOEURS_VIV"},"description":{"value":"Format attendu : un nombre entre 0 et 20","type":"TXT"}}]},{"id":"question-l1f5th3i","componentType":"Question","page":"3.600","label":{"value":"\"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", à quel âge êtes-vous parti\" || (if (TYPE_QUEST=\"2\") then \"e\" else \"\") || \" de chez \" || (if (EXIST_PAR2= \"2\") then \"votre parent\" else \"vos parents\") || \" pour la première fois [?](. 'Pourquoi cette question ?\r\nPour retracer les grandes étapes du passage à l’âge adulte.')\" ","type":"VTL|MD"},"declarations":[{"id":"l1f5lf8v","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ne comptez pas la pension ou l'internat comme un départ.\r\nIndiquez 99 ans si vous n'êtes jamais parti\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \".\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1f5th3i","componentType":"InputNumber","mandatory":false,"page":"3.600","min":0.0,"max":99.0,"decimals":0,"controls":[{"id":"l1f5th3i-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AG_DEP_PARENT)) and (0>AG_DEP_PARENT or 99AG_DEP_PARENT)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1f5th3i-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AG_DEP_PARENT))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1f5th3i-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(AG_DEP_PARENT <> 99 and not(isnull(AG_DEP_PARENT)) and not(isnull(AGE)) and cast(AG_DEP_PARENT,integer) > cast(AGE,integer))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge de départ de chez vos parents supérieur à votre âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AG_DEP_PARENT"},"description":{"value":"Format attendu : un nombre entre 0 et 99","type":"TXT"}}]},{"id":"question-l1f61fa3","componentType":"Question","page":"3.601","label":{"value":"\"Durant votre jeunesse, jusqu'à vos 18 ans, avec qui avez-vous vécu [?](. 'Pourquoi cette question ?\r\nPour connaître l’environnement familial dans lequel les personnes ont grandi.')\"","type":"VTL|MD"},"declarations":[{"id":"l1f693hk","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Décrivez toutes les situations que vous avez connues.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1f61fa3","componentType":"CheckboxGroup","page":"3.601","orientation":"vertical","controls":[{"id":"l1f61fa3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(VECU_JEUNESSE1, false) = false and nvl(VECU_JEUNESSE2, false) = false and nvl(VECU_JEUNESSE3, false) = false and nvl(VECU_JEUNESSE4, false) = false and nvl(VECU_JEUNESSE5, false) = false and nvl(VECU_JEUNESSE6, false) = false and nvl(VECU_JEUNESSE7, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1f61fa3-QOP-lv6moj96","label":{"value":"\"Vos deux parents en couple\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE1"}},{"id":"l1f61fa3-QOP-lv6mdd03","label":{"value":"\"Votre mère et son/sa conjoint(e)\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE2"}},{"id":"l1f61fa3-QOP-lv6mmx53","label":{"value":"\"Votre père et son/sa conjoint(e)\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE3"}},{"id":"l1f61fa3-QOP-lv6miqdb","label":{"value":"\"Votre mère seule\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE4"}},{"id":"l1f61fa3-QOP-lv6m53q1","label":{"value":"\"Votre père seul\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE5"}},{"id":"l1f61fa3-QOP-lv6mjy61","label":{"value":"\"Une autre personne de votre famille\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE6"}},{"id":"l1f61fa3-QOP-lv6mif9h","label":{"value":"\"En dehors de votre famille\"","type":"VTL|MD"},"response":{"name":"VECU_JEUNESSE7"}}]}]},{"id":"question-l43ttd47","componentType":"Question","page":"3.602","label":{"value":"\"Avez-vous vécu sans vos parents à la suite d'une décision du juge, de l'ASE ou de la DDASS (placement en foyer, en famille d'accueil, chez une personne de la famille ou autre) [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le parcours de vie des personnes ayant vécu sans leurs parents pendant leur enfance.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(VECU_JEUNESSE6 or VECU_JEUNESSE7)","type":"VTL"},"components":[{"id":"l43ttd47","componentType":"Radio","mandatory":false,"page":"3.602","orientation":"vertical","controls":[{"id":"l43ttd47-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(VECU_PLACE) or VECU_PLACE=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"VECU_PLACE"}}]},{"id":"question-l43u439h","componentType":"Question","page":"3.603","label":{"value":"\"Quel était le type de placement ?\"","type":"VTL|MD"},"declarations":[{"id":"l43u116f","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(VECU_PLACE =\"1\")","type":"VTL"},"components":[{"id":"l43u439h","componentType":"CheckboxGroup","page":"3.603","orientation":"vertical","controls":[{"id":"l43u439h-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(TYP_PLACE1, false) = false and nvl(TYP_PLACE2, false) = false and nvl(TYP_PLACE3, false) = false and nvl(TYP_PLACE4, false) = false))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l43u439h-QOP-lzqsmpxp","label":{"value":"\"Placement en foyer\"","type":"VTL|MD"},"response":{"name":"TYP_PLACE1"}},{"id":"l43u439h-QOP-lzqsedxr","label":{"value":"\"Placement en famille d'accueil\"","type":"VTL|MD"},"response":{"name":"TYP_PLACE2"}},{"id":"l43u439h-QOP-lzqsb3hv","label":{"value":"\"Placement chez une personne de la famille\"","type":"VTL|MD"},"response":{"name":"TYP_PLACE3"}},{"id":"l43u439h-QOP-lzqs6uxr","label":{"value":"\"Autre type de placement\"","type":"VTL|MD"},"response":{"name":"TYP_PLACE4"}}]}]},{"id":"question-l1f65zkh","componentType":"Question","page":"3.604","label":{"value":"\"Au cours de votre vie, avez-vous été hébergé\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" dans un centre d'hébergement, un hôtel social, un centre d'accueil pour demandeurs d'asile ou réfugiés, ou avez-vous vécu à la rue [?](. 'Pourquoi cette question ?\r\nPour mieux connaître le parcours de vie des personnes qui à un moment de leur vie n’ont pas eu de domicile.')\" ","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1f65zkh","componentType":"Radio","mandatory":false,"page":"3.604","orientation":"vertical","controls":[{"id":"l1f65zkh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(HEBERG) or HEBERG=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"HEBERG"}}]},{"id":"l1g3yspz","componentType":"Sequence","page":"3.605","label":{"value":"\"XII - \" || \"\" || nvl(PRENOMREP,\"Madame/Monsieur\") || \", vos études et votre vie professionnelle\" ","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"nvl(PRENOMREP,\"Madame/Monsieur\") || \", quelques questions pour finir sur vos études et votre vie professionnelle, afin de connaître la chronologie des événements entre la mise en couple, l'arrivée des enfants, la fin des études ou la date du premier emploi.\" ","type":"VTL|MD"}},{"id":"question-l1g3unwh","componentType":"Question","page":"3.606","label":{"value":"\"\" || (nvl(PRENOMREP,\"Madame/Monsieur\")) || \", avez-vous terminé vos études [?](. 'Pourquoi cette question ? \r\nPour retracer les grandes étapes du passage à l’âge adulte.')\" ","type":"VTL|MD"},"declarations":[{"id":"lletj5dq","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si vous êtes en reprise d'études après une interruption d'un an ou plus, répondez ''Oui''. \r\nSi vous êtes en année de césure ou en reprise d'études après une interruption de moins d'un an, répondez ''Non''.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l1g3unwh","componentType":"Radio","mandatory":false,"page":"3.606","orientation":"vertical","controls":[{"id":"l1g3unwh-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(FINETU) or FINETU=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"FINETU"}}]},{"id":"question-l1g3yk6q","componentType":"Question","page":"3.607","label":{"value":"\"En quelle année avez-vous terminé vos études ?\"","type":"VTL|MD"},"declarations":[{"id":"lv6l5ubb","declarationType":"INSTRUCTION","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si vous avez repris vos études après plus d'un an d'interruption, indiquez la date de votre premier arrêt. \r\nSi vous préférez donner l'âge plutôt que l'année, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(FINETU=\"1\")","type":"VTL"},"components":[{"id":"l1g3yk6q","componentType":"Datepicker","mandatory":false,"page":"3.607","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l1g3yk6q-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_FINETU)) and (cast(ANNEE_FINETU, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g3yk6q-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_FINETU)) and not(isnull(ANAIS)) and cast(ANNEE_FINETU,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de fin d'études antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g3yk6q-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAIS)) and not(isnull(ANNEE_FINETU)) and (ANAIS + 12 > cast(ANNEE_FINETU,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et votre année de fin d'études. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_FINETU"}}]},{"id":"question-lv6kuuw3","componentType":"Question","page":"3.608","label":{"value":"\"A quel âge avez-vous terminé vos études ?\"","type":"VTL|MD"},"declarations":[{"id":"m21m8r1b","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si vous avez repris vos études après plus d'un an d'interruption, indiquez votre âge lors de votre premier arrêt.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(FINETU=\"1\" and (ANNEE_FINETU =\"\" or isnull(ANNEE_FINETU)))","type":"VTL"},"components":[{"id":"lv6kuuw3","componentType":"InputNumber","mandatory":false,"page":"3.608","min":10.0,"max":100.0,"decimals":0,"controls":[{"id":"lv6kuuw3-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AGE_FINETU)) and (10>AGE_FINETU or 100AGE_FINETU)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kuuw3-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AGE_FINETU))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6kuuw3-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AGE_FINETU)) and not(isnull(AGE)) and cast(AGE_FINETU,integer) > cast(AGE,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge de fin d'études supérieur à votre âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AGE_FINETU"},"description":{"value":"Format attendu : un nombre entre 10 et 100","type":"TXT"}}]},{"id":"question-l445x7tq","componentType":"Question","page":"3.609","label":{"value":"\"Travaillez-vous actuellement [?](. 'Pourquoi cette question ? \r\nPour étudier le lien entre vie professionnelle et vie familiale.')\"","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"l445x7tq","componentType":"Radio","mandatory":false,"page":"3.609","orientation":"vertical","controls":[{"id":"l445x7tq-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(TRAVACT) or TRAVACT=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"TRAVACT"}}]},{"id":"question-l1g7pgbn","componentType":"Question","page":"3.610","label":{"value":"\"En tenant compte de votre emploi actuel, avez-vous déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage [?](. 'Pourquoi cette question ? \r\nPour étudier le lien entre vie professionnelle et vie familiale.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(TRAVACT =\"1\")","type":"VTL"},"components":[{"id":"l1g7pgbn","componentType":"Radio","mandatory":false,"page":"3.610","orientation":"vertical","controls":[{"id":"l1g7pgbn-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEJATRAV1) or DEJATRAV1=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DEJATRAV1"}}]},{"id":"question-lumnhjfi","componentType":"Question","page":"3.611","label":{"value":"\"Avez-vous cependant déjà travaillé pendant au moins trois mois de suite, y compris en apprentissage ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(isnull(TRAVACT) or TRAVACT =\"2\")","type":"VTL"},"components":[{"id":"lumnhjfi","componentType":"Radio","mandatory":false,"page":"3.611","orientation":"vertical","controls":[{"id":"lumnhjfi-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(DEJATRAV2) or DEJATRAV2=\"\")","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"}],"options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"DEJATRAV2"}}]},{"id":"question-l1g4pid1","componentType":"Question","page":"3.612","label":{"value":"\"En quelle année avez-vous commencé à travailler pendant au moins trois mois de suite, y compris en apprentissage [?](. 'Pourquoi cette question ?\r\nPour retracer les grandes étapes du passage à l’âge adulte.')\"","type":"VTL|MD"},"declarations":[{"id":"lyfjaey7","declarationType":"INSTRUCTION","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si vous préférez donner l'âge plutôt que l'année, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"components":[{"id":"l1g4pid1","componentType":"Datepicker","mandatory":false,"page":"3.612","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l1g4pid1-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_EMPLOI1)) and (cast(ANNEE_EMPLOI1, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g4pid1-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_EMPLOI1)) and not(isnull(ANAIS)) and cast(ANNEE_EMPLOI1,integer) < ANAIS))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de premier emploi antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g4pid1-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANAIS)) and not(isnull(ANNEE_EMPLOI1)) and (ANAIS + 14 > cast(ANNEE_EMPLOI1,integer))))","type":"VTL"},"errorMessage":{"value":"\"Il y a peu d'écart entre votre année de naissance et celle de votre premier emploi. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_EMPLOI1"}}]},{"id":"question-lv6l9f59","componentType":"Question","page":"3.613","label":{"value":"\"A quel âge avez-vous commencé à travailler pendant au moins trois mois de suite, y compris en apprentissage [?](. 'Pourquoi cette question ?\r\nPour retracer les grandes étapes du passage à l’âge adulte.')\"","type":"VTL|MD"},"conditionFilter":{"value":"((DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\"))","type":"VTL"},"components":[{"id":"lv6l9f59","componentType":"InputNumber","mandatory":false,"page":"3.613","min":10.0,"max":100.0,"decimals":0,"controls":[{"id":"lv6l9f59-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AGE_EMPLOI1)) and (10>AGE_EMPLOI1 or 100AGE_EMPLOI1)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6l9f59-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AGE_EMPLOI1))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6l9f59-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AGE_EMPLOI1)) and not(isnull(AGE)) and cast(AGE_EMPLOI1,integer) > cast(AGE,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge de premier emploi supérieur à votre âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AGE_EMPLOI1"},"description":{"value":"Format attendu : un nombre entre 10 et 100","type":"TXT"}}]},{"id":"question-l1g7iu0j","componentType":"Question","page":"3.614","label":{"value":"\"En quelle année avez-vous travaillé pour la dernière fois [?](. 'Pourquoi cette question ?\r\nPour étudier le lien entre vie professionnelle et vie familiale.')\"","type":"VTL|MD"},"declarations":[{"id":"lv6mopqc","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Si vous préférez donner l'âge plutôt que l'année, passez à la question suivante.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\"))","type":"VTL"},"components":[{"id":"l1g7iu0j","componentType":"Datepicker","mandatory":false,"page":"3.614","min":"1920","max":"2025","dateFormat":"YYYY","controls":[{"id":"l1g7iu0j-format-date-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(ANNEE_FINEMP)) and (cast(ANNEE_FINEMP, date, \"YYYY\")cast(\"2025\", date, \"YYYY\")))","type":"VTL"},"errorMessage":{"value":"\"La date saisie doit être comprise entre 1920 et 2025.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g7iu0j-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_FINEMP)) and not(isnull(ANAIS)) and cast(ANNEE_FINEMP,integer) < cast(ANAIS,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de cessation d'activité antérieure à votre année de naissance. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g7iu0j-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(ANNEE_FINEMP)) and not(isnull(ANNEE_EMPLOI1)) and cast(ANNEE_FINEMP,integer) < cast(ANNEE_EMPLOI1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué une année de cessation d'activité antérieure à votre année de premier emploi. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"ANNEE_FINEMP"}}]},{"id":"question-lv6m34hz","componentType":"Question","page":"3.615","label":{"value":"\"A quel âge avez-vous travaillé pour la dernière fois [?](. 'Pourquoi cette question ?\r\nPour étudier le lien entre vie professionnelle et vie familiale.')\"","type":"VTL|MD"},"conditionFilter":{"value":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))","type":"VTL"},"components":[{"id":"lv6m34hz","componentType":"InputNumber","mandatory":false,"page":"3.615","min":10.0,"max":100.0,"decimals":0,"controls":[{"id":"lv6m34hz-format-borne-inf-sup","typeOfControl":"FORMAT","criticality":"ERROR","control":{"value":"not(not(isnull(AGE_FINEMP)) and (10>AGE_FINEMP or 100AGE_FINEMP)","type":"VTL"},"errorMessage":{"value":"\"Le nombre doit comporter au maximum 0 chiffre(s) après la virgule.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6m34hz-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not(isnull(AGE_FINEMP))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer l'âge attendu.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6m34hz-CI-1","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AGE_FINEMP)) and not(isnull(AGE)) and cast(AGE_FINEMP,integer) > cast(AGE,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge de cessation d'activité supérieur à votre âge. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"lv6m34hz-CI-2","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((not(isnull(AGE_FINEMP)) and not(isnull(AGE_EMPLOI1)) and cast(AGE_FINEMP,integer) < cast(AGE_EMPLOI1,integer)))","type":"VTL"},"errorMessage":{"value":"\"Vous avez indiqué un âge de cessation d'activité inférieur à votre âge de premier emploi. Est-ce que vous confirmez ?\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"AGE_FINEMP"},"description":{"value":"Format attendu : un nombre entre 10 et 100","type":"TXT"}}]},{"id":"question-l1g7vwo6","componentType":"Question","page":"3.616","label":{"value":"\"Depuis votre premier emploi, vous avez [...](. 'Pourquoi cette question ?\r\nPour étudier le lien entre vie professionnelle et vie familiale.')\"","type":"VTL|MD"},"declarations":[{"id":"m167ldst","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"if TYPE_QUEST=\"2\" then (\"Ne comptez pas le congé maternité comme une interruption.\r\nPlusieurs réponses possibles.\") else \"Plusieurs réponses possibles.\" ","type":"VTL|MD"}}],"conditionFilter":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"components":[{"id":"l1g7vwo6","componentType":"CheckboxGroup","page":"3.616","orientation":"vertical","controls":[{"id":"l1g7vwo6-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((nvl(INTER_TRAV1, false) = false and nvl(INTER_TRAV2, false) = false and nvl(INTER_TRAV3, false) = false ))","type":"VTL"},"errorMessage":{"value":"\"Votre réponse est importante pour le bon déroulement du questionnaire. Merci d'indiquer votre choix.\"","type":"VTL|MD"},"type":"SIMPLE"},{"id":"l1g7vwo6-CI-1","typeOfControl":"CONSISTENCY","criticality":"WARN","control":{"value":"not((nvl(INTER_TRAV2,false)=true and nvl(INTER_TRAV1,false)=true) or (nvl(INTER_TRAV3,false)=true and nvl(INTER_TRAV1,false)=true))","type":"VTL"},"errorMessage":{"value":"\"Vous ne pouvez pas cocher la première réponse et une autre réponse.\"","type":"VTL|MD"},"type":"SIMPLE"}],"responses":[{"id":"l1g7vwo6-QOP-m1htommh","label":{"value":"\"...toujours travaillé sans interruption\"","type":"VTL|MD"},"response":{"name":"INTER_TRAV1"}},{"id":"l1g7vwo6-QOP-m1hty7yg","label":{"value":"\"...eu une ou plusieurs périodes de chômage d'au moins six mois\"","type":"VTL|MD"},"response":{"name":"INTER_TRAV2"}},{"id":"l1g7vwo6-QOP-m1hu4fcs","label":{"value":"\"...eu d'autres interruptions d'au moins six mois\"","type":"VTL|MD"},"response":{"name":"INTER_TRAV3"}}]}]},{"id":"question-ljwxkrnl","componentType":"Question","page":"3.617","label":{"value":"\"Pouvez-vous indiquer qui a répondu au questionnaire [?](. 'Pourquoi cette question ?\r\nPour permettre une meilleure analyse des réponses.')\"","type":"VTL|MD"},"conditionFilter":{"value":"true","type":"VTL"},"components":[{"id":"ljwxkrnl","componentType":"Radio","mandatory":false,"page":"3.617","orientation":"vertical","options":[{"value":"1","label":{"value":"\"Vous, \" || nvl(PRENOMREP,\"Madame/Monsieur\") ","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Une autre personne\"","type":"VTL|MD"}}],"response":{"name":"PRENOM_FIN"}}]},{"id":"question-lamjnyx4","componentType":"Question","page":"3.618","label":{"value":"\"Quel est le prénom de la personne qui a répondu à ce questionnaire ?\"","type":"VTL|MD"},"conditionFilter":{"value":"(PRENOM_FIN =\"2\")","type":"VTL"},"components":[{"id":"lamjnyx4","componentType":"Input","mandatory":false,"page":"3.618","maxLength":249,"response":{"name":"PRENOM_PROX"}}]},{"id":"question-ly4bmrhf","componentType":"Question","page":"3.619","label":{"value":"\"Nous vous remercions vivement pour votre réponse à l'enquête. \r\nIl est prévu de permettre à des chercheurs (sociologues ou démographes) de contacter certains répondants pour approfondir certains sujets abordés dans l’enquête. Ces entretiens auront lieu dans quelques mois. \r\nAccepteriez-vous d’être éventuellement contacté\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" pour un entretien complémentaire [?](. 'Pourquoi cette question ?\r\nPour obtenir votre accord pour pouvoir transmettre vos coordonnées à un chercheur qui souhaiterait approfondir certains thèmes de l’enquête. \r\nLes chercheurs concernés seront sélectionnés et s’engageront à respecter le secret statistique.')\" ","type":"VTL|MD"},"declarations":[{"id":"m0ksxw7d","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Ces entretiens seront réalisés dans le respect du secret statistique.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(PRENOM_FIN =\"1\")","type":"VTL"},"components":[{"id":"ly4bmrhf","componentType":"Radio","mandatory":false,"page":"3.619","orientation":"vertical","options":[{"value":"1","label":{"value":"\"Oui\"","type":"VTL|MD"}},{"value":"2","label":{"value":"\"Non\"","type":"VTL|MD"}}],"response":{"name":"POSTENQ"}}]},{"id":"question-m0ksi30t","componentType":"Question","page":"3.620","label":{"value":"\"Comment préférez-vous être contacté\" || (if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")) || \" par le chercheur ?\" ","type":"VTL|MD"},"declarations":[{"id":"m0ksxt5t","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Plusieurs réponses possibles.\r\nVos coordonnées ne seront utilisées que pour cet entretien et ne seront transmises à aucun tiers.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","type":"VTL"},"components":[{"id":"m0ksi30t","componentType":"CheckboxGroup","page":"3.620","orientation":"vertical","responses":[{"id":"m0ksi30t-QOP-m0ktcljz","label":{"value":"\"Par mail\"","type":"VTL|MD"},"response":{"name":"POSTENQ_CONT1"}},{"id":"m0ksi30t-QOP-m0kt2hbe","label":{"value":"\"Par téléphone\"","type":"VTL|MD"},"response":{"name":"POSTENQ_CONT2"}}]}]},{"id":"question-m0ksqayr","componentType":"Question","page":"3.621","label":{"value":"\"Sur quelle adresse mail souhaitez-vous que le chercheur vous écrive ?\"","type":"VTL|MD"},"declarations":[{"id":"m0ksxrza","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Votre adresse mail ne sera utilisée que pour vous contacter dans le cadre de cet entretien et ne sera transmise à aucun tiers.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT1)","type":"VTL"},"components":[{"id":"m0ksqayr","componentType":"Input","mandatory":false,"page":"3.621","maxLength":249,"controls":[{"id":"m0ksqayr-CI-0","typeOfControl":"CONSISTENCY","criticality":"INFO","control":{"value":"not((match_characters(POSTENQ_MAIL, \"^[A-Za-z0-9._+\\-\\']+@[A-Za-z0-9.\\-]+\\.[A-Za-z]{2,}$\") = false))","type":"VTL"},"errorMessage":{"value":"\"L'adresse que vous avez renseignée n'est pas une adresse électronique valide. Merci de la corriger.\"","type":"VTL|MD"},"type":"SIMPLE"}],"response":{"name":"POSTENQ_MAIL"}}]},{"id":"question-m0kss4a5","componentType":"Question","page":"3.622","label":{"value":"\"A quel(s) numéro(s) de téléphone souhaitez-vous que le chercheur vous appelle ?\"","type":"VTL|MD"},"declarations":[{"id":"m0kta94l","declarationType":"HELP","position":"AFTER_QUESTION_TEXT","label":{"value":"\"Votre(Vos) numéro(s) de téléphone ne sera(seront) utilisé(s) que pour vous contacter dans le cadre de cet entretien et ne sera(seront) transmis à aucun tiers.\"","type":"VTL|MD"}}],"conditionFilter":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT2)","type":"VTL"},"components":[{"id":"m0kss4a5","componentType":"Input","mandatory":false,"page":"3.622","maxLength":14,"response":{"name":"POSTENQ_TEL"}}]}]},{"id":"l4ctrkzx","componentType":"Sequence","page":"4","label":{"value":"\"XIII - \" || \"Validation du questionnaire\"","type":"VTL"},"conditionFilter":{"value":"true","type":"VTL"},"description":{"value":"\"Vous avez terminé de répondre au questionnaire et nous vous en remercions. \r\nPour que votre réponse soit prise en compte, n'oubliez pas de cliquer sur ''Continuer'' pour accéder à la validation finale de votre questionnaire.\"","type":"VTL|MD"}}],"suggesters":[{"name":"L_COMMUNES-2024","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_DEP-1-1-0","fields":[{"name":"label","rules":["[\\w]+"],"language":"French","min":2,"stemmer":false}],"queryParser":{"type":"tokenized","params":{"language":"French","min":2,"pattern":"[\\w.]+","stemmer":false}},"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_LANGUES-2-0-0","fields":[{"name":"label","rules":["[\\w]+"],"language":"French","min":2,"stemmer":false}],"queryParser":{"type":"tokenized","params":{"language":"French","min":2,"pattern":"[\\w.]+","stemmer":false}},"version":1},{"name":"L_PCS_HOMMES-2-1-0","fields":[{"name":"label","rules":["[\\w]+"],"language":"French","min":3,"stemmer":false,"synonyms":{"accueil":["ACCEUIL"],"fabrication":["FABRICANT"],"assenseur":["ASSENCEUR"],"abattoir":["ABATOIR","ABBATOIR","ABATOIRE","ABATTOIRE"],"distribution":["DISTRIBUTEUR"],"échafaudage":["ECHAFFAUDAGE"],"alimentaires":["ALIMANTAIRES"],"ascenseur":["ASCENCEUR"],"ingénierie":["INGENIEURIE","INGENERIE","INGIENERIE"],"agroalimentaires":["AGGROALIMANTAIRES","AGROALIMENTAIRES"],"URSSAF":["URSAF","URSAFF"],"joaillerie":["JOAILLIER"],"alimentaire":["ALIMANTAIRE"],"construction":["CONSTRUCTEUR"],"agroalimentaire":["AGGROALIMANTAIRE","AGROALIMANTAIRE"],"assenseurs":["ASSENCEURS"],"ascenseurs":["ASCENCEURS"]}}],"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_PCS_FEMMES-2-1-0","fields":[{"name":"label","rules":["[\\w]+"],"language":"French","min":3,"stemmer":false,"synonyms":{"accueil":["ACCEUIL"],"fabrication":["FABRICANT"],"assenseur":["ASSENCEUR"],"abattoir":["ABATOIR","ABBATOIR","ABATOIRE","ABATTOIRE"],"distribution":["DISTRIBUTEUR"],"échafaudage":["ECHAFFAUDAGE"],"alimentaires":["ALIMANTAIRES"],"ascenseur":["ASCENCEUR"],"ingénierie":["INGENIEURIE","INGENERIE","INGIENERIE"],"agroalimentaires":["AGGROALIMANTAIRES","AGROALIMENTAIRES"],"URSSAF":["URSAF","URSAFF"],"joaillerie":["JOAILLIER"],"alimentaire":["ALIMANTAIRE"],"construction":["CONSTRUCTEUR"],"agroalimentaire":["AGGROALIMANTAIRE","AGROALIMANTAIRE"],"assenseurs":["ASSENCEURS"],"ascenseurs":["ASCENCEURS"]}}],"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}],"variables":[{"name":"LIBSEXPAR1","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_PAR1)) then \"\" else (if (SEXE_PAR1 = \"1\") then \"e\" else \"\")","type":"VTL"},"bindingDependencies":["SEXE_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSEXPAR2","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_PAR2)) then \"\" else (if (SEXE_PAR2 = \"1\") then \"e\" else \"\")","type":"VTL"},"bindingDependencies":["SEXE_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSUJETPAR1","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_PAR1)) then \"il\" else (if (SEXE_PAR1 = \"1\") then \"elle\" else \"il\")","type":"VTL"},"bindingDependencies":["SEXE_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSUJETPAR2","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_PAR2)) then \"il\" else (if (SEXE_PAR2 = \"1\") then \"elle\" else \"il\")","type":"VTL"},"bindingDependencies":["SEXE_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSEX","variableType":"CALCULATED","expression":{"value":"if (isnull(TYPE_QUEST)) then \"\" else (if (TYPE_QUEST = \"2\") then \"e\" else \"\")","type":"VTL"},"bindingDependencies":["TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AGE","variableType":"CALCULATED","expression":{"value":"if isnull(ANAIS) then 0 else 2025 - ANAIS","type":"VTL"},"bindingDependencies":["ANAIS","VAL_ANNAISS","DATNAIS_X","RPANAISENQ"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSEXCJH","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_CH)) then \"\" else (if SEXE_CH=\"1\" then \"e\" else \"\")","type":"VTL"},"bindingDependencies":["SEXE_CH"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNAISCJ","variableType":"CALCULATED","expression":{"value":"substr(cast(DATNAIS_C,string),1,4)","type":"VTL"},"bindingDependencies":["DATNAIS_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAISS","variableType":"CALCULATED","expression":{"value":"if (nvl(VAL_ANNAISS,\"\") = \"2\") then substr(cast(DATNAIS_X,string),1,4) else RPANAISENQ","type":"VTL"},"bindingDependencies":["RPANAISENQ","VAL_ANNAISS","DATNAIS_X"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAIS","variableType":"CALCULATED","expression":{"value":"cast(ANAISS,integer)","type":"VTL"},"bindingDependencies":["ANAISS","VAL_ANNAISS","DATNAIS_X","RPANAISENQ"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL1","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL1) then 0 else 2025-cast(ANAI_ENFAIL1,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL2","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL2) then 0 else 2025-cast(ANAI_ENFAIL2,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL3","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL3) then 0 else 2025-cast(ANAI_ENFAIL3,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL4","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL4) then 0 else 2025-cast(ANAI_ENFAIL4,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL5","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL5) then 0 else 2025-cast(ANAI_ENFAIL5,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL6","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL6) then 0 else 2025-cast(ANAI_ENFAIL6,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL7","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL7) then 0 else 2025-cast(ANAI_ENFAIL7,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFAIL8","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFAIL8) then 0 else 2025-cast(ANAI_ENFAIL8,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOMREP","variableType":"CALCULATED","expression":{"value":"if (nvl(VAL_PRENOM,\"\") = \"2\") then PRENOM_X else RPPRENOM","type":"VTL"},"bindingDependencies":["RPPRENOM","VAL_PRENOM","PRENOM_X"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_C","variableType":"CALCULATED","expression":{"value":"if TYPE_QUEST=\"1\" then SEXE_CH else SEXE_CF","type":"VTL"},"bindingDependencies":["TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U1","variableType":"CALCULATED","expression":{"value":"if TYPE_QUEST=\"1\" then SEXE_U1H else SEXE_U1F","type":"VTL"},"bindingDependencies":["TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U2","variableType":"CALCULATED","expression":{"value":"if TYPE_QUEST=\"1\" then SEXE_U2H else SEXE_U2F","type":"VTL"},"bindingDependencies":["TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"LIBSEXCJF","variableType":"CALCULATED","expression":{"value":"if (isnull(SEXE_CF)) then \"\" else (if SEXE_CF=\"2\" then \"e\" else \"\")","type":"VTL"},"bindingDependencies":["SEXE_CF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG1","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG1) then 0 else 2025-cast(ANAI_ENFLOG1,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG2","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG2) then 0 else 2025-cast(ANAI_ENFLOG2,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG3","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG3) then 0 else 2025-cast(ANAI_ENFLOG3,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG4","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG4) then 0 else 2025-cast(ANAI_ENFLOG4,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG5","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG5) then 0 else 2025-cast(ANAI_ENFLOG5,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG6","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG6) then 0 else 2025-cast(ANAI_ENFLOG6,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG7","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG7) then 0 else 2025-cast(ANAI_ENFLOG7,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_ENFLOG8","variableType":"CALCULATED","expression":{"value":"if isnull(ANAI_ENFLOG8) then 0 else 2025-cast(ANAI_ENFLOG8,integer)","type":"VTL"},"bindingDependencies":["ANAI_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPTYPEQUEST","variableType":"EXTERNAL","value":null,"dimension":0},{"name":"RPLISTEPRENOMS","variableType":"EXTERNAL","value":null,"dimension":0},{"name":"RPPRENOMPAR1","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPPRENOMPAR2","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPANAISPAR1","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPANAISPAR2","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPSEXPAR1","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPSEXPAR2","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPPRENOMCONJ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPNAIPAR1","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPANAISCONJ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPPRENOM","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPNBQUEST","variableType":"EXTERNAL","value":null,"dimension":0},{"name":"RPMNAISENQ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPJNAISENQ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPANAISENQ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPNAIPAR2","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPPNAIPAR1","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPPNAIPAR2","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"RPSEXCONJ","variableType":"EXTERNAL","value":[],"iterationReference":"l4idqt1t","dimension":1},{"name":"TYPE_QUEST","variableType":"EXTERNAL","value":null,"dimension":0},{"name":"VAL_PRENOM","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_X","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VAL_ANNAISS","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DATNAIS_X","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"MINEUR","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COUPLE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RAISON_VIE_CJT","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRECIS_VIECJT","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROX_VIE_CJT","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DATNAIS_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LIEUNAIS_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DNAI_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PNAI_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_CH_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_CH_P","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_CH1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_CH2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_C2H","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"STATUT_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_IND_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_FP_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_ENT_CH","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LIEUNAIS_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DNAI_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PNAI_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_CF_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_CF_P","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_CF1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_CF2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_C2F","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"STATUT_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_IND_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_FP_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_ENT_CF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_U","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PACS","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_PACS","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"MARI","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_MARI","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEPARE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_S","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_D","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENFAV_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_VENU_C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_VENU_C","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENF21_AUTPAR_C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENF21_AUTPAR_C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENF21_AUTPAR_C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENF21_AUTPAR_C4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_UNION","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_AUT_UNION","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U1H","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U1F","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PACS_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_PACS_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"MARI_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_MARI_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEPARE_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_S_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_D_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENFAV_C_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C1_VENU_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C_VENU_U1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U2H","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_U2F","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PACS_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_PACS_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"MARI_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_MARI_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEPARE_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_S_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_D_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENFAV_C_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C1_VENU_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAV_C_VENU_U2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENF_ADOP_UN","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENF_ADOP","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_ENFL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENFE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENFL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENFE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENFL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_ENFE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_ENFL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFLOG_UN","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFLOG","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"CBENFLOG","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NBENFAIL_UN","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"CBENFAIL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FR_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_COM_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DEP_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_PAY_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_DORT_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFLOG8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NEFRANCE_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ADOPT_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANADOPT_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VIT_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_VECU_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DC_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DC_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEPART_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PARENT_FREQ_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AUT_PAR_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DORT_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEP_AUT_PAR_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"RESID_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SANTE_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ASE_ENFAIL8","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PETIT_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_PETIT_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_PETIT_ENF","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PETIT_ENF1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PETIT_ENF2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PETIT_ENF3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PETIT_ENF4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PETIT_ENF1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PETIT_ENF2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PETIT_ENF3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PETIT_ENF4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_APPORT1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_APPORT2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_APPORT3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_APPORT4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_APPORT5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_1DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_2DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_3DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_APP_4DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_RECUE1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_RECUE2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_RECUE3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AIDE_RECUE4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_1DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_2DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3A4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3AD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3B1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3B2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3B3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3BD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3C1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3C2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3C3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3CD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3D1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3D2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"QUI_AID_REC_3DD","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_ENTOUE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_ENTOU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_ENTOUL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENTOUE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENTOU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_ENTOUL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENTOUE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENTOU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_ENTOUL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LIEUNAIS_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PNAI_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NATIO_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR1H","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR1F","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR1_2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"STATUT_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_IND_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_FP_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_ENT_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_PAR1L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR1E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR1L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR1E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR1L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR1E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR1L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VIV_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_DC_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ETAB_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROX_EGO_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROX_FRAT_PAR1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"EXIST_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANAI_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SEXE_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LIEUNAIS_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PNAI_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NATIO_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAV_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR2H","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR2F","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROF_PAR2_2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"STATUT_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_IND_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_FP_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"SAL_ENT_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE1_PAR2L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR2E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE2_PAR2L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR2E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE3_PAR2L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR2E","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LANGUE4_PAR2L","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VIV_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_DC_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_PAR2A1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_PAR2A2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_PAR2A3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"LOG_PAR2B","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FR_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"COM_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEP_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PAY_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ETAB_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_VU_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FREQ_CONT_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROX_EGO_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PROX_FRAT_PAR2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_FRERES","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_FRERES_VIV1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_FRERES_VIV","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_SOEURS","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_SOEURS_VIV1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"NB_SOEURS_VIV","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AG_DEP_PARENT","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE5","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE6","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_JEUNESSE7","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"VECU_PLACE","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TYP_PLACE1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TYP_PLACE2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TYP_PLACE3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TYP_PLACE4","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"HEBERG","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FINETU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_FINETU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AGE_FINETU","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"TRAVACT","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEJATRAV1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"DEJATRAV2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_EMPLOI1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AGE_EMPLOI1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"ANNEE_FINEMP","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"AGE_FINEMP","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"INTER_TRAV1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"INTER_TRAV2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"INTER_TRAV3","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_FIN","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"PRENOM_PROX","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"POSTENQ","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"POSTENQ_CONT1","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"POSTENQ_CONT2","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"POSTENQ_MAIL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"POSTENQ_TEL","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VAL_PRENOM","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_X","variableType":"CALCULATED","expression":{"value":"(nvl(VAL_PRENOM,\"\") = \"2\")","type":"VTL"},"bindingDependencies":["VAL_PRENOM"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VAL_ANNAISS","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DATNAIS_X","variableType":"CALCULATED","expression":{"value":"(nvl(VAL_ANNAISS,\"\") = \"2\")","type":"VTL"},"bindingDependencies":["VAL_ANNAISS"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_MINEUR","variableType":"CALCULATED","expression":{"value":"(cast(ANAISS,integer) >= 2008)","type":"VTL"},"bindingDependencies":["ANAISS"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COUPLE","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RAISON_VIE_CJT","variableType":"CALCULATED","expression":{"value":"(COUPLE=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRECIS_VIECJT","variableType":"CALCULATED","expression":{"value":"(RAISON_VIE_CJT =\"3\")","type":"VTL"},"bindingDependencies":["RAISON_VIE_CJT"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROX_VIE_CJT","variableType":"CALCULATED","expression":{"value":"(COUPLE=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DATNAIS_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")","type":"VTL"},"bindingDependencies":["COUPLE","TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LIEUNAIS_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DNAI_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","LIEUNAIS_CH","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PNAI_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","LIEUNAIS_CH"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_CH_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_CH_P","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","COUPLE","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_CH1","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","SEXE_CH","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_CH2","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","type":"VTL"},"bindingDependencies":["SEXE_CH","RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_C2H","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","PROF_CH1","PROF_CH2","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_STATUT_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_IND_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","COUPLE","STATUT_CH","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_FP_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","STATUT_CH","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_ENT_CH","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")","type":"VTL"},"bindingDependencies":["STATUT_CH","RPPRENOMCONJ","RPANAISCONJ","TRAV_CH_C","COUPLE","PRENOM_C","TYPE_QUEST","ANNAISCJ","TRAV_CH_P"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LIEUNAIS_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","type":"VTL"},"bindingDependencies":["RPANAISCONJ","RPPRENOMCONJ","COUPLE","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DNAI_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","RPPRENOMCONJ","COUPLE","LIEUNAIS_CF","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PNAI_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","LIEUNAIS_CF","RPPRENOMCONJ","COUPLE","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_CF_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","RPANAISCONJ","RPPRENOMCONJ","COUPLE","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_CF_P","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","RPPRENOMCONJ","COUPLE","COUPLE","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_CF1","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","SEXE_CF","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_CF2","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","type":"VTL"},"bindingDependencies":["SEXE_CF","RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_C2F","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","PROF_CF1","PROF_CF2","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_STATUT_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_IND_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","ANNAISCJ","PRENOM_C","STATUT_CF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_FP_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","STATUT_CF","TYPE_QUEST","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_ENT_CF","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")","type":"VTL"},"bindingDependencies":["RPANAISCONJ","TRAV_CF_P","RPPRENOMCONJ","COUPLE","TRAV_CF_C","TYPE_QUEST","STATUT_CF","ANNAISCJ","PRENOM_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_U","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PACS","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_PACS","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")","type":"VTL"},"bindingDependencies":["PACS","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_MARI","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_MARI","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")","type":"VTL"},"bindingDependencies":["COUPLE","MARI"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEPARE","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","type":"VTL"},"bindingDependencies":["COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_S","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")","type":"VTL"},"bindingDependencies":["SEPARE","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_D","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")","type":"VTL"},"bindingDependencies":["SEPARE","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","type":"VTL"},"bindingDependencies":["COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENFAV_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_VENU_C1","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE","NBENFAV_C"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_VENU_C","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))","type":"VTL"},"bindingDependencies":["ENFAV_C","NBENFAV_C","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENF21_AUTPAR_C1","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENF21_AUTPAR_C2","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENF21_AUTPAR_C3","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENF21_AUTPAR_C4","variableType":"CALCULATED","expression":{"value":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C","COUPLE","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_UNION","variableType":"CALCULATED","expression":{"value":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\"))","type":"VTL"},"bindingDependencies":["COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_AUT_UNION","variableType":"CALCULATED","expression":{"value":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\")) and (AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["COUPLE","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_U1H","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION","TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_U1F","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")","type":"VTL"},"bindingDependencies":["AUT_UNION","TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PACS_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_PACS_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (PACS_U1 =\"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION","PACS_U1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_MARI_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_MARI_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (MARI_U1 =\"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION","MARI_U1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEPARE_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_S_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION","SEPARE_U1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_D_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")","type":"VTL"},"bindingDependencies":["SEPARE_U1","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENFAV_C_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\")","type":"VTL"},"bindingDependencies":["AUT_UNION","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")","type":"VTL"},"bindingDependencies":["ENFAV_C_U1","AUT_UNION","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C1_VENU_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)","type":"VTL"},"bindingDependencies":["ENFAV_C_U1","AUT_UNION","AUT_UNION","NBENFAV_C_U1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C_VENU_U1","variableType":"CALCULATED","expression":{"value":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))","type":"VTL"},"bindingDependencies":["ENFAV_C_U1","AUT_UNION","AUT_UNION","NBENFAV_C_U1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) ))","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_U2H","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","TYPE_QUEST","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_U2F","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION","TYPE_QUEST"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PACS_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_PACS_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION","PACS_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_MARI_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_MARI_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION","MARI_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEPARE_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_S_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","AUT_UNION","SEPARE_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_D_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_U2","SEPARE_U2","AUT_UNION"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENFAV_C_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_UNION","AUT_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_UNION","ENFAV_C_U2","AUT_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C1_VENU_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","AUT_UNION","NBENFAV_C_U2","ENFAV_C_U2","AUT_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAV_C_VENU_U2","variableType":"CALCULATED","expression":{"value":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))","type":"VTL"},"bindingDependencies":["NB_AUT_UNION","NBENFAV_C_U2","AUT_UNION","ENFAV_C_U2","AUT_U2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ENF","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENF","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF))","type":"VTL"},"bindingDependencies":["ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENF_ADOP_UN","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","type":"VTL"},"bindingDependencies":["NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENF_ADOP","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","type":"VTL"},"bindingDependencies":["NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_ENF","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF))","type":"VTL"},"bindingDependencies":["ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_ENFL","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (isnull(LANGUE1_ENF) or LANGUE1_ENF=\"\")","type":"VTL"},"bindingDependencies":["LANGUE1_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENFE","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL)))","type":"VTL"},"bindingDependencies":["LANGUE1_ENFL","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENF","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE1_ENFL","LANGUE2_ENFE","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENFL","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","type":"VTL"},"bindingDependencies":["LANGUE1_ENFL","LANGUE2_ENF","LANGUE2_ENFE","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENFE","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE2_ENF","LANGUE1_ENFL","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENF","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE2_ENF","LANGUE1_ENFL","LANGUE3_ENFE","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENFL","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE2_ENF","LANGUE1_ENFL","LANGUE3_ENFE","LANGUE3_ENF","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_ENFE","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE3_ENFL","LANGUE2_ENF","LANGUE3_ENF","LANGUE1_ENFL","ENF","LANGUE1_ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_ENF","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE3_ENFL","LANGUE2_ENF","LANGUE3_ENF","LANGUE1_ENFL","ENF","LANGUE1_ENF","LANGUE4_ENFE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_ENFL","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENFL","LANGUE3_ENFL","LANGUE2_ENF","LANGUE3_ENF","LANGUE1_ENFL","LANGUE4_ENF","ENF","LANGUE1_ENF","LANGUE4_ENFE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFLOG_UN","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","type":"VTL"},"bindingDependencies":["NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFLOG","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","type":"VTL"},"bindingDependencies":["NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_CBENFLOG","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1 and (NBENFLOG = \"1\" or isnull(NBENFLOG)))","type":"VTL"},"bindingDependencies":["NBENF","NBENFLOG","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NBENFAIL_UN","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1 and (NBENFLOG_UN =\"2\" or isnull(NBENFLOG_UN)))","type":"VTL"},"bindingDependencies":["NBENFLOG_UN","NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_CBENFAIL","variableType":"CALCULATED","expression":{"value":"(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENF > 1)","type":"VTL"},"bindingDependencies":["NBENF","CBENFLOG","NBENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))","type":"VTL"},"bindingDependencies":["CBENFLOG","ADOPT_ENFLOG1","NBENFLOG_UN","NBENF_ADOP_UN","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN","PARENT_FR_ENFLOG1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN","PARENT_FR_ENFLOG1","PARENT_COM_ENFLOG1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN","PARENT_FR_ENFLOG1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG1","NBENFLOG_UN","SEP_AUT_PAR_ENFLOG1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENFLOG_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2 =\"1\")","type":"VTL"},"bindingDependencies":["ADOPT_ENFLOG2","CBENFLOG","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2","PARENT_FR_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2","PARENT_FR_ENFLOG2","PARENT_COM_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2","PARENT_FR_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")","type":"VTL"},"bindingDependencies":["SEP_AUT_PAR_ENFLOG2","CBENFLOG","PARENT_VIT_ENFLOG2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG","ADOPT_ENFLOG3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG","PARENT_FR_ENFLOG3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_COM_ENFLOG3","PARENT_VIT_ENFLOG3","CBENFLOG","PARENT_FR_ENFLOG3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG3","PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG3","SEP_AUT_PAR_ENFLOG3","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","ADOPT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG4","PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG4","PARENT_COM_ENFLOG4","PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG","PARENT_FR_ENFLOG4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG4","CBENFLOG","SEP_AUT_PAR_ENFLOG4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG","ADOPT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG5","CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG5","CBENFLOG","PARENT_VIT_ENFLOG5","PARENT_COM_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5","PARENT_FR_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")","type":"VTL"},"bindingDependencies":["SEP_AUT_PAR_ENFLOG5","CBENFLOG","PARENT_VIT_ENFLOG5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","ADOPT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","PARENT_FR_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","PARENT_FR_ENFLOG6","PARENT_COM_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG","PARENT_FR_ENFLOG6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG6","SEP_AUT_PAR_ENFLOG6","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7 =\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","NBENF_ADOP","ADOPT_ENFLOG7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG","PARENT_FR_ENFLOG7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","PARENT_COM_ENFLOG7","CBENFLOG","PARENT_FR_ENFLOG7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG7","PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFLOG7","SEP_AUT_PAR_ENFLOG7","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","ADOPT_ENFLOG8","CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FR_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_COM_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG8","CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DEP_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))","type":"VTL"},"bindingDependencies":["PARENT_FR_ENFLOG8","CBENFLOG","PARENT_VIT_ENFLOG8","PARENT_COM_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_PAY_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_FR_ENFLOG8","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_DORT_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","type":"VTL"},"bindingDependencies":["CBENFLOG","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")","type":"VTL"},"bindingDependencies":["CBENFLOG","SEP_AUT_PAR_ENFLOG8","PARENT_VIT_ENFLOG8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFLOG8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","type":"VTL"},"bindingDependencies":["CBENFLOG"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP_UN","NBENFAIL_UN","NBENFAIL_UN","ADOPT_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","PARENT_VIT_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL1","CBENFAIL","NBENFAIL_UN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","FR_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","COM_ENFAIL1","DC_ENFAIL1","FR_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","FR_ENFAIL1","DC_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFAIL1","CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","type":"VTL"},"bindingDependencies":["AUT_PAR_ENFAIL1","CBENFAIL","PARENT_VIT_ENFAIL1","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","type":"VTL"},"bindingDependencies":["AUT_PAR_ENFAIL1","CBENFAIL","PARENT_VIT_ENFAIL1","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1","SEP_AUT_PAR_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL1","variableType":"CALCULATED","expression":{"value":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENFAIL_UN","DC_ENFAIL1","ANAI_ENFAIL1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2 =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","ADOPT_ENFAIL2","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"bindingDependencies":["DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"bindingDependencies":["DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","type":"VTL"},"bindingDependencies":["DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))","type":"VTL"},"bindingDependencies":["FR_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))","type":"VTL"},"bindingDependencies":["FR_ENFAIL2","DC_ENFAIL2","CBENFAIL","COM_ENFAIL2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")","type":"VTL"},"bindingDependencies":["FR_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (cast(ANAI_ENFAIL2,integer) <= 2012)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","CBENFAIL","ANAI_ENFAIL2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","type":"VTL"},"bindingDependencies":["PARENT_VIT_ENFAIL2","ANAI_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","PARENT_VIT_ENFAIL2","AUT_PAR_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","PARENT_VIT_ENFAIL2","SEP_AUT_PAR_ENFAIL2","AUT_PAR_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL2","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL2","DC_ENFAIL2","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3 =\"1\")","type":"VTL"},"bindingDependencies":["ADOPT_ENFAIL3","NBENF_ADOP","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","FR_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","COM_ENFAIL3","FR_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL3","FR_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (cast(ANAI_ENFAIL3,integer) <= 2012)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","ANAI_ENFAIL3","DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","DC_ENFAIL3","PARENT_VIT_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","AUT_PAR_ENFAIL3","DC_ENFAIL3","PARENT_VIT_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","AUT_PAR_ENFAIL3","DC_ENFAIL3","PARENT_VIT_ENFAIL3","SEP_AUT_PAR_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL3","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL3","DC_ENFAIL3","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFAIL","ADOPT_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL4","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL4","COM_ENFAIL4","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL4","DC_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (cast(ANAI_ENFAIL4,integer) <= 2012)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4","ANAI_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4","PARENT_VIT_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4","PARENT_VIT_ENFAIL4","AUT_PAR_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","SEP_AUT_PAR_ENFAIL4","ANAI_ENFAIL4","PARENT_VIT_ENFAIL4","AUT_PAR_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL4","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL4","ANAI_ENFAIL4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5 =\"1\")","type":"VTL"},"bindingDependencies":["NBENF_ADOP","CBENFAIL","ADOPT_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL5","DC_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL5","DC_ENFAIL5","COM_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL5","FR_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (cast(ANAI_ENFAIL5,integer) <= 2012)","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","ANAI_ENFAIL5","CBENFAIL","ANAI_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","ANAI_ENFAIL5","CBENFAIL","PARENT_VIT_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","ANAI_ENFAIL5","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","AUT_PAR_ENFAIL5","ANAI_ENFAIL5","CBENFAIL","PARENT_VIT_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","AUT_PAR_ENFAIL5","ANAI_ENFAIL5","CBENFAIL","PARENT_VIT_ENFAIL5","SEP_AUT_PAR_ENFAIL5"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","ANAI_ENFAIL5","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL5","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","type":"VTL"},"bindingDependencies":["DC_ENFAIL5","ANAI_ENFAIL5","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6 =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","ADOPT_ENFAIL6","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL6","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))","type":"VTL"},"bindingDependencies":["COM_ENFAIL6","CBENFAIL","FR_ENFAIL6","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","FR_ENFAIL6","DC_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (cast(ANAI_ENFAIL6,integer) <= 2012)","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL6","DC_ENFAIL6","ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL6","DC_ENFAIL6","ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6","ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL6","DC_ENFAIL6","ANAI_ENFAIL6","AUT_PAR_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL6","SEP_AUT_PAR_ENFAIL6","DC_ENFAIL6","ANAI_ENFAIL6","AUT_PAR_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6","ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL6","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL6","ANAI_ENFAIL6"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7 =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP","ADOPT_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")","type":"VTL"},"bindingDependencies":["CBENFAIL","DC_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","CBENFAIL","FR_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","COM_ENFAIL7","CBENFAIL","FR_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL7","CBENFAIL","FR_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (cast(ANAI_ENFAIL7,integer) <= 2012)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7","DC_ENFAIL7","CBENFAIL","ANAI_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7","DC_ENFAIL7","PARENT_VIT_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7","DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","type":"VTL"},"bindingDependencies":["AUT_PAR_ENFAIL7","ANAI_ENFAIL7","DC_ENFAIL7","CBENFAIL","PARENT_VIT_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))","type":"VTL"},"bindingDependencies":["AUT_PAR_ENFAIL7","ANAI_ENFAIL7","DC_ENFAIL7","SEP_AUT_PAR_ENFAIL7","CBENFAIL","PARENT_VIT_ENFAIL7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7","DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL7","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","type":"VTL"},"bindingDependencies":["ANAI_ENFAIL7","DC_ENFAIL7","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NEFRANCE_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ADOPT_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0)","type":"VTL"},"bindingDependencies":["CBENFAIL","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANADOPT_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8 =\"1\")","type":"VTL"},"bindingDependencies":["CBENFAIL","ADOPT_ENFAIL8","NBENF_ADOP"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VIT_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_VECU_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))","type":"VTL"},"bindingDependencies":["CBENFAIL","PARENT_VIT_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DC_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","type":"VTL"},"bindingDependencies":["CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DC_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEPART_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PARENT_FREQ_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL","FR_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","CBENFAIL","FR_ENFAIL8","COM_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")","type":"VTL"},"bindingDependencies":["DC_ENFAIL8","FR_ENFAIL8","CBENFAIL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (cast(ANAI_ENFAIL8,integer) <= 2012)","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL8","DC_ENFAIL8","ANAI_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AUT_PAR_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL8","DC_ENFAIL8","PARENT_VIT_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DORT_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL8","DC_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEP_AUT_PAR_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","type":"VTL"},"bindingDependencies":["CBENFAIL","AUT_PAR_ENFAIL8","ANAI_ENFAIL8","PARENT_VIT_ENFAIL8","DC_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_RESID_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))","type":"VTL"},"bindingDependencies":["CBENFAIL","AUT_PAR_ENFAIL8","ANAI_ENFAIL8","PARENT_VIT_ENFAIL8","SEP_AUT_PAR_ENFAIL8","DC_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SANTE_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL8","DC_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ASE_ENFAIL8","variableType":"CALCULATED","expression":{"value":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","type":"VTL"},"bindingDependencies":["CBENFAIL","ANAI_ENFAIL8","DC_ENFAIL8"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PETIT_ENF","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","type":"VTL"},"bindingDependencies":["AGE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_PETIT_ENF","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_PETIT_ENF","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PETIT_ENF1","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PETIT_ENF2","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PETIT_ENF3","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PETIT_ENF4","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PETIT_ENF1","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PETIT_ENF2","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PETIT_ENF3","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PETIT_ENF4","variableType":"CALCULATED","expression":{"value":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","type":"VTL"},"bindingDependencies":["AGE","PETIT_ENF","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_APPORT1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_APPORT2","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_APPORT3","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_APPORT4","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_APPORT5","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1A1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1A2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1A3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1A4","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_1A4)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_1A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1B1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1B2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1B3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_1B3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_1B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1C1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1C2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1C3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_1C3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_1C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1D1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1D2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_1DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_1D2)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_1D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2A1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT2","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2A2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT2","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2A3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT2","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2A4","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT2","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_2A4)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_2A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2B1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_APPORT2","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2B2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_APPORT2","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2B3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_APPORT2","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_2B3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_2B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2C1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2C2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2C3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_APPORT2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_2C3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_2C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2D1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2D2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_2DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_2D2)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_2D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3A1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3A2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3A3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3A4","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_APPORT3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_3A4)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_3A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3B1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3B2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3B3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_3B3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_3B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3C1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3C2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3C3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_3C3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_3C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3D1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT3","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3D2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT3","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_3DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_3D2)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_3D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4A1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4A2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4A3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4A4","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["ENF","COUPLE","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_4A4)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_4A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4B1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4B2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4B3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_4B3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_4B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4C1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4C2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4C3","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_APPORT4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_4C3)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_4C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4D1","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT4","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4D2","variableType":"CALCULATED","expression":{"value":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_APPORT4","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_APP_4DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_APP_4D2)","type":"VTL"},"bindingDependencies":["QUI_AID_APP_4D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_RECUE1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_RECUE2","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_RECUE3","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AIDE_RECUE4","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1A1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1A2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1A3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1A4","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_1A4)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_1A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1B1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_RECUE1","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1B2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_RECUE1","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1B3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["ENF","AIDE_RECUE1","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_1B3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_1B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1C1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_RECUE1","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1C2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_RECUE1","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1C3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_RECUE1","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_1C3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_1C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1D1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1D2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE1","ENF","COUPLE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_1DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_1D2)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_1D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2A1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2A2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2A3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2A4","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_2A4)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_2A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2B1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2B2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2B3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_2B3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_2B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2C1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2C2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2C3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_2C3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_2C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2D1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2D2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE2","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_2DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_2D2)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_2D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3A1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3A2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3A3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3A4","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3AD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_3A4)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_3A4"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3B1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3B2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3B3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["AIDE_RECUE3","COUPLE","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3BD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_3B3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_3B3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3C1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3C2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3C3","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","type":"VTL"},"bindingDependencies":["COUPLE","ENF","AIDE_RECUE3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3CD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_3C3)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_3C3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3D1","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_RECUE3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3D2","variableType":"CALCULATED","expression":{"value":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","type":"VTL"},"bindingDependencies":["COUPLE","AIDE_RECUE3","ENF"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_QUI_AID_REC_3DD","variableType":"CALCULATED","expression":{"value":"(QUI_AID_REC_3D2)","type":"VTL"},"bindingDependencies":["QUI_AID_REC_3D2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_ENTOUE","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_ENTOU","variableType":"CALCULATED","expression":{"value":"(LANGUE1_ENTOUE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE1_ENTOUE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_ENTOUL","variableType":"CALCULATED","expression":{"value":"(LANGUE1_ENTOUE =\"1\") and (isnull(LANGUE1_ENTOU) or LANGUE1_ENTOU =\"\")","type":"VTL"},"bindingDependencies":["LANGUE1_ENTOUE","LANGUE1_ENTOU"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENTOUE","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL)))","type":"VTL"},"bindingDependencies":["LANGUE1_ENTOU","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENTOU","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENTOUE","LANGUE1_ENTOU","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_ENTOUL","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENTOUE","LANGUE1_ENTOU","LANGUE2_ENTOU","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENTOUE","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","type":"VTL"},"bindingDependencies":["LANGUE2_ENTOU","LANGUE1_ENTOU","LANGUE2_ENTOUL","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENTOU","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_ENTOU","LANGUE3_ENTOUE","LANGUE1_ENTOU","LANGUE2_ENTOUL","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_ENTOUL","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))","type":"VTL"},"bindingDependencies":["LANGUE3_ENTOU","LANGUE2_ENTOU","LANGUE3_ENTOUE","LANGUE1_ENTOU","LANGUE2_ENTOUL","LANGUE1_ENTOUL"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_PAR1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_PAR1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_PAR1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LIEUNAIS_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PNAI_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (LIEUNAIS_PAR1 =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","LIEUNAIS_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NATIO_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR1H","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","SEXE_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR1F","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","SEXE_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR1_2","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","PROF_PAR1F","RPPRENOMPAR1","RPANAISPAR1","PROF_PAR1H"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_STATUT_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_IND_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","RPPRENOMPAR1","RPANAISPAR1","STATUT_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_FP_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","STATUT_PAR1","TRAV_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_ENT_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","TRAV_PAR1","RPPRENOMPAR1","RPANAISPAR1","STATUT_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_PAR1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_PAR1L","variableType":"CALCULATED","expression":{"value":"(isnull(LANGUE1_PAR1) or LANGUE1_PAR1 =\"\")","type":"VTL"},"bindingDependencies":["LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR1E","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L)))","type":"VTL"},"bindingDependencies":["LANGUE1_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR1","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE1_PAR1L","LANGUE1_PAR1","LANGUE2_PAR1E"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR1L","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))","type":"VTL"},"bindingDependencies":["LANGUE1_PAR1L","LANGUE2_PAR1","LANGUE1_PAR1","LANGUE2_PAR1E"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR1E","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE1_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR1","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE3_PAR1E","LANGUE1_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR1L","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE3_PAR1E","LANGUE3_PAR1","LANGUE1_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR1E","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE1_PAR1L","LANGUE3_PAR1","LANGUE3_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR1","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE1_PAR1L","LANGUE3_PAR1","LANGUE4_PAR1E","LANGUE3_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR1L","variableType":"CALCULATED","expression":{"value":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE1_PAR1L","LANGUE4_PAR1","LANGUE3_PAR1","LANGUE4_PAR1E","LANGUE3_PAR1L","LANGUE1_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VIV_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_DC_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","VIV_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","LOG_PAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","LOG_PAR1","FR_PAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","LOG_PAR1","FR_PAR1","VIV_PAR1","COM_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","LOG_PAR1","VIV_PAR1","FR_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ETAB_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","LOG_PAR1","ANAI_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","LOG_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","LOG_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROX_EGO_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","LOG_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROX_FRAT_PAR1","variableType":"CALCULATED","expression":{"value":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","type":"VTL"},"bindingDependencies":["PRENOM_PAR1","ANAI_PAR1","RPPRENOMPAR1","RPANAISPAR1","VIV_PAR1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_EXIST_PAR2","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANAI_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SEXE_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LIEUNAIS_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PNAI_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","RPPRENOMPAR2","RPANAISPAR2","LIEUNAIS_PAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NATIO_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAV_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR2H","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","SEXE_PAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR2F","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","SEXE_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROF_PAR2_2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","type":"VTL"},"bindingDependencies":["PROF_PAR2F","PRENOM_PAR2","PROF_PAR2H","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_STATUT_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_IND_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2","STATUT_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_FP_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","type":"VTL"},"bindingDependencies":["STATUT_PAR2","PRENOM_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_SAL_ENT_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")","type":"VTL"},"bindingDependencies":["PRENOM_PAR2","TRAV_PAR2","RPPRENOMPAR2","RPANAISPAR2","STATUT_PAR2","EXIST_PAR2","ANAI_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\")","type":"VTL"},"bindingDependencies":["EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE1_PAR2L","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(LANGUE1_PAR2))","type":"VTL"},"bindingDependencies":["LANGUE1_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR2E","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L)))","type":"VTL"},"bindingDependencies":["LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_PAR2E","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE2_PAR2L","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR2E","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR2E","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","type":"VTL"},"bindingDependencies":["LANGUE2_PAR2","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE2_PAR2","LANGUE1_PAR2","LANGUE3_PAR2E","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE3_PAR2L","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","type":"VTL"},"bindingDependencies":["LANGUE3_PAR2","LANGUE2_PAR2","LANGUE1_PAR2","LANGUE3_PAR2E","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR2E","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","type":"VTL"},"bindingDependencies":["LANGUE3_PAR2L","LANGUE2_PAR2","LANGUE3_PAR2","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","type":"VTL"},"bindingDependencies":["LANGUE3_PAR2L","LANGUE2_PAR2","LANGUE4_PAR2E","LANGUE3_PAR2","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LANGUE4_PAR2L","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))","type":"VTL"},"bindingDependencies":["LANGUE3_PAR2L","LANGUE2_PAR2","LANGUE4_PAR2E","LANGUE3_PAR2","LANGUE1_PAR2","EXIST_PAR2","LANGUE1_PAR2L","LANGUE4_PAR2","LANGUE2_PAR2L"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VIV_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","PRENOM_PAR2","ANAI_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_DC_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","PRENOM_PAR2","ANAI_PAR2","VIV_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_PAR2A1","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","type":"VTL"},"bindingDependencies":["VIV_PAR1","RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_PAR2A2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","type":"VTL"},"bindingDependencies":["VIV_PAR1","RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_PAR2A3","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","type":"VTL"},"bindingDependencies":["VIV_PAR1","RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_LOG_PAR2B","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","VIV_PAR1","EXIST_PAR2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FR_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_COM_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","FR_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEP_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","COM_PAR2","EXIST_PAR2","FR_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PAY_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","FR_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ETAB_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_VU_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FREQ_CONT_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROX_EGO_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PROX_FRAT_PAR2","variableType":"CALCULATED","expression":{"value":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","type":"VTL"},"bindingDependencies":["RPPRENOMPAR2","RPANAISPAR2","VIV_PAR2","PRENOM_PAR2","ANAI_PAR2","LOG_PAR2B","EXIST_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_FRERES","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_FRERES_VIV1","variableType":"CALCULATED","expression":{"value":"(NB_FRERES = 1)","type":"VTL"},"bindingDependencies":["NB_FRERES"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_FRERES_VIV","variableType":"CALCULATED","expression":{"value":"(NB_FRERES > 1)","type":"VTL"},"bindingDependencies":["NB_FRERES"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_SOEURS","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_SOEURS_VIV1","variableType":"CALCULATED","expression":{"value":"(NB_SOEURS = 1)","type":"VTL"},"bindingDependencies":["NB_SOEURS"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_NB_SOEURS_VIV","variableType":"CALCULATED","expression":{"value":"(NB_SOEURS > 1)","type":"VTL"},"bindingDependencies":["NB_SOEURS"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AG_DEP_PARENT","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE1","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE2","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE3","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE4","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE5","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE6","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_JEUNESSE7","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_VECU_PLACE","variableType":"CALCULATED","expression":{"value":"(VECU_JEUNESSE6 or VECU_JEUNESSE7)","type":"VTL"},"bindingDependencies":["VECU_JEUNESSE6","VECU_JEUNESSE7"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TYP_PLACE1","variableType":"CALCULATED","expression":{"value":"(VECU_PLACE =\"1\")","type":"VTL"},"bindingDependencies":["VECU_PLACE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TYP_PLACE2","variableType":"CALCULATED","expression":{"value":"(VECU_PLACE =\"1\")","type":"VTL"},"bindingDependencies":["VECU_PLACE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TYP_PLACE3","variableType":"CALCULATED","expression":{"value":"(VECU_PLACE =\"1\")","type":"VTL"},"bindingDependencies":["VECU_PLACE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TYP_PLACE4","variableType":"CALCULATED","expression":{"value":"(VECU_PLACE =\"1\")","type":"VTL"},"bindingDependencies":["VECU_PLACE"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_HEBERG","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_FINETU","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_FINETU","variableType":"CALCULATED","expression":{"value":"(FINETU=\"1\")","type":"VTL"},"bindingDependencies":["FINETU"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AGE_FINETU","variableType":"CALCULATED","expression":{"value":"(FINETU=\"1\" and (ANNEE_FINETU =\"\" or isnull(ANNEE_FINETU)))","type":"VTL"},"bindingDependencies":["ANNEE_FINETU","FINETU"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_TRAVACT","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEJATRAV1","variableType":"CALCULATED","expression":{"value":"(TRAVACT =\"1\")","type":"VTL"},"bindingDependencies":["TRAVACT"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_DEJATRAV2","variableType":"CALCULATED","expression":{"value":"(isnull(TRAVACT) or TRAVACT =\"2\")","type":"VTL"},"bindingDependencies":["TRAVACT"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_EMPLOI1","variableType":"CALCULATED","expression":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AGE_EMPLOI1","variableType":"CALCULATED","expression":{"value":"((DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\"))","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2","ANNEE_EMPLOI1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_ANNEE_FINEMP","variableType":"CALCULATED","expression":{"value":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\"))","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2","TRAVACT"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_AGE_FINEMP","variableType":"CALCULATED","expression":{"value":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))","type":"VTL"},"bindingDependencies":["TRAVACT","ANNEE_FINEMP","DEJATRAV1","DEJATRAV2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_INTER_TRAV1","variableType":"CALCULATED","expression":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_INTER_TRAV2","variableType":"CALCULATED","expression":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_INTER_TRAV3","variableType":"CALCULATED","expression":{"value":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","type":"VTL"},"bindingDependencies":["DEJATRAV1","DEJATRAV2"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_FIN","variableType":"CALCULATED","expression":{"value":"true","type":"VTL"},"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_PRENOM_PROX","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"2\")","type":"VTL"},"bindingDependencies":["PRENOM_FIN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_POSTENQ","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"1\")","type":"VTL"},"bindingDependencies":["PRENOM_FIN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_POSTENQ_CONT1","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","type":"VTL"},"bindingDependencies":["POSTENQ","PRENOM_FIN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_POSTENQ_CONT2","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","type":"VTL"},"bindingDependencies":["POSTENQ","PRENOM_FIN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_POSTENQ_MAIL","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT1)","type":"VTL"},"bindingDependencies":["POSTENQ","PRENOM_FIN","POSTENQ_CONT1"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"FILTER_RESULT_POSTENQ_TEL","variableType":"CALCULATED","expression":{"value":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT2)","type":"VTL"},"bindingDependencies":["POSTENQ_CONT2","POSTENQ","PRENOM_FIN"],"shapeFrom":["VAL_PRENOM","PRENOM_X","VAL_ANNAISS","DATNAIS_X","MINEUR"],"iterationReference":"l4idqt1t","dimension":1},{"name":"B_PRENOMREP_PROGRESS","variableType":"COLLECTED","values":{"PREVIOUS":[],"COLLECTED":[],"FORCED":[],"EDITED":[],"INPUTTED":[]},"iterationReference":"l4idqt1t","dimension":1}],"cleaning":{"VAL_PRENOM":{"PRENOM_X":"(nvl(VAL_PRENOM,\"\") = \"2\")"},"VAL_ANNAISS":{"DATNAIS_X":"(nvl(VAL_ANNAISS,\"\") = \"2\")","MINEUR":"(cast(ANAISS,integer) >= 2008)","PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","NB_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","AG_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"DATNAIS_X":{"MINEUR":"(cast(ANAISS,integer) >= 2008)","PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","NB_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","AG_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"COUPLE":{"RAISON_VIE_CJT":"(COUPLE=\"2\")","PROX_VIE_CJT":"(COUPLE=\"2\")","PRENOM_C":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","DATNAIS_C":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","SEXE_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\")","LIEUNAIS_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","PNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")","TRAV_CH_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CH_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","STATUT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")","SEXE_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\")","LIEUNAIS_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","PNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")","TRAV_CF_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CF_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","STATUT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")","ANNEE_U":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","PACS":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","ANNEE_PACS":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")","MARI":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","ANNEE_MARI":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")","SEPARE":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","ANNEE_S":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")","ANNEE_D":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")","VECU_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\")","ENFAV_C":"(COUPLE<>\"4\" and not(isnull(COUPLE)))","NBENFAV_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")","NBENFAV_VENU_C1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)","NBENFAV_VENU_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))","ENF21_AUTPAR_C1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C3":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C4":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","AUT_UNION":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\"))","NB_AUT_UNION":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\")) and (AUT_UNION = \"1\")","QUI_AID_APP_1A1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A4":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1B1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1C1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C3":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1D1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_1D2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_2A1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A4":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2B1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2C1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C3":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2D1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_2D2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_3A1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A4":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3B1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3C1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C3":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3D1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_3D2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_4A1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A4":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4B1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4C1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C3":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4D1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_4D2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_1A1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A4":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1B1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1C1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C3":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1D1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_1D2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_2A1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A4":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2B1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2C1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C3":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2D1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_2D2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_3A1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A4":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3B1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3C1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C3":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3D1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_3D2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"RAISON_VIE_CJT":{"PRECIS_VIECJT":"(RAISON_VIE_CJT =\"3\")"},"PRENOM_C":{"LIEUNAIS_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","PNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")","TRAV_CH_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CH_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","STATUT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")","LIEUNAIS_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","PNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")","TRAV_CF_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CF_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","STATUT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")"},"DATNAIS_C":{"LIEUNAIS_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","PNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")","TRAV_CH_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CH_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","STATUT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")","LIEUNAIS_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer))","DNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","PNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")","TRAV_CF_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"1\" or COUPLE=\"2\")","TRAV_CF_P":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (COUPLE=\"3\")","PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","STATUT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")"},"LIEUNAIS_CH":{"DNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"1\")","PNAI_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CH =\"2\")"},"SEXE_CH":{"PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")"},"TRAV_CH_C":{"PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","STATUT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")"},"TRAV_CH_P":{"PROF_CH1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH = \"2\" or isnull(SEXE_CH))","PROF_CH2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (SEXE_CH =\"1\")","PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))","STATUT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P)))","SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")"},"PROF_CH1":{"PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))"},"PROF_CH2":{"PROF_C2H":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (isnull(PROF_CH1) and isnull(PROF_CH2))"},"STATUT_CH":{"SAL_IND_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"1\")","SAL_FP_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"2\")","SAL_ENT_CH":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"1\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CH_P =\"1\" and isnull(TRAV_CH_C)) or (isnull(TRAV_CH_C) and isnull(TRAV_CH_P)) or (TRAV_CH_C =\"1\" and isnull(TRAV_CH_P))) and (STATUT_CH =\"3\")"},"LIEUNAIS_CF":{"DNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"1\")","PNAI_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and (LIEUNAIS_CF =\"2\")"},"SEXE_CF":{"PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")"},"TRAV_CF_C":{"PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","STATUT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")"},"TRAV_CF_P":{"PROF_CF1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"1\" or isnull(SEXE_CF))","PROF_CF2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (SEXE_CF = \"2\")","PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))","STATUT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P)))","SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")"},"PROF_CF1":{"PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))"},"PROF_CF2":{"PROF_C2F":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (isnull(PROF_CF1) and isnull(PROF_CF2))"},"STATUT_CF":{"SAL_IND_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"1\")","SAL_FP_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"2\")","SAL_ENT_CF":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (TYPE_QUEST =\"2\") and (isnull(PRENOM_C) or isnull(RPPRENOMCONJ) or replace(upper(RPPRENOMCONJ),\" \",\"\") <> replace(upper(PRENOM_C),\" \",\"\") or isnull(RPANAISCONJ) or cast(RPANAISCONJ,integer) <> cast(ANNAISCJ,integer)) and ((TRAV_CF_P =\"1\" and isnull(TRAV_CF_C)) or (isnull(TRAV_CF_C) and isnull(TRAV_CF_P)) or (TRAV_CF_C =\"1\" and isnull(TRAV_CF_P))) and (STATUT_CF =\"3\")"},"PACS":{"ANNEE_PACS":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (PACS =\"1\")"},"MARI":{"ANNEE_MARI":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (MARI =\"1\")"},"SEPARE":{"ANNEE_S":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"1\")","ANNEE_D":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (COUPLE =\"3\") and (SEPARE =\"2\")"},"ENFAV_C":{"NBENFAV_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\")","NBENFAV_VENU_C1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)","NBENFAV_VENU_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))","ENF21_AUTPAR_C1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C2":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C3":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")","ENF21_AUTPAR_C4":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and ((COUPLE=\"1\" or COUPLE=\"2\") and ENFAV_C=\"1\")"},"NBENFAV_C":{"NBENFAV_VENU_C1":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C=1)","NBENFAV_VENU_C":"(COUPLE<>\"4\" and not(isnull(COUPLE))) and (ENFAV_C=\"1\") and (NBENFAV_C >1 or isnull(NBENFAV_C))"},"AUT_UNION":{"NB_AUT_UNION":"((COUPLE=\"1\" or COUPLE=\"2\" or COUPLE=\"3\")) and (AUT_UNION = \"1\")","PRENOM_U1":"(AUT_UNION = \"1\")","SEXE_U1H":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"1\")","SEXE_U1F":"(AUT_UNION = \"1\") and (TYPE_QUEST =\"2\")","ANNEE_U1":"(AUT_UNION = \"1\")","PACS_U1":"(AUT_UNION = \"1\")","ANNEE_PACS_U1":"(AUT_UNION = \"1\") and (PACS_U1 =\"1\")","MARI_U1":"(AUT_UNION = \"1\")","ANNEE_MARI_U1":"(AUT_UNION = \"1\") and (MARI_U1 =\"1\")","SEPARE_U1":"(AUT_UNION = \"1\")","ANNEE_S_U1":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")","ANNEE_D_U1":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")","ENFAV_C_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\")","NBENFAV_C_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")","NBENFAV_C1_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)","NBENFAV_C_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))","AUT_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) ))","PRENOM_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","SEXE_U2H":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")","SEXE_U2F":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")","ANNEE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")","MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")","SEPARE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_S_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","ANNEE_D_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")","ENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","NBENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","NBENFAV_C1_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","NBENFAV_C_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))"},"PACS_U1":{"ANNEE_PACS_U1":"(AUT_UNION = \"1\") and (PACS_U1 =\"1\")"},"MARI_U1":{"ANNEE_MARI_U1":"(AUT_UNION = \"1\") and (MARI_U1 =\"1\")"},"SEPARE_U1":{"ANNEE_S_U1":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"1\")","ANNEE_D_U1":"(AUT_UNION = \"1\") and (SEPARE_U1 =\"2\")"},"ENFAV_C_U1":{"NBENFAV_C_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\")","NBENFAV_C1_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)","NBENFAV_C_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))"},"NBENFAV_C_U1":{"NBENFAV_C1_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1=1)","NBENFAV_C_VENU_U1":"(AUT_UNION = \"1\") and (AUT_UNION = \"1\") and (ENFAV_C_U1 =\"1\") and (NBENFAV_C_U1 > 1 or isnull(NBENFAV_C_U1))"},"NB_AUT_UNION":{"AUT_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) ))","PRENOM_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","SEXE_U2H":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")","SEXE_U2F":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")","ANNEE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")","MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")","SEPARE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_S_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","ANNEE_D_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")","ENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","NBENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","NBENFAV_C1_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","NBENFAV_C_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))"},"AUT_U2":{"PRENOM_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","SEXE_U2H":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"1\")","SEXE_U2F":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (TYPE_QUEST =\"2\")","ANNEE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")","MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")","SEPARE_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","ANNEE_S_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","ANNEE_D_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")","ENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\")","NBENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","NBENFAV_C1_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","NBENFAV_C_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))"},"PACS_U2":{"ANNEE_PACS_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (PACS_U2 =\"1\")"},"MARI_U2":{"ANNEE_MARI_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (MARI_U2 =\"1\")"},"SEPARE_U2":{"ANNEE_S_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"1\")","ANNEE_D_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (SEPARE_U2 =\"2\")"},"ENFAV_C_U2":{"NBENFAV_C_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\")","NBENFAV_C1_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","NBENFAV_C_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))"},"NBENFAV_C_U2":{"NBENFAV_C1_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2=1)","NBENFAV_C_VENU_U2":"((AUT_UNION = \"1\") and (NB_AUT_UNION >= 2 or isnull(NB_AUT_UNION) )) and (AUT_U2=\"1\") and (ENFAV_C_U2 =\"1\") and (NBENFAV_C_U2 > 1 or isnull(NBENFAV_C_U2))"},"ENF":{"NBENF":"(ENF =\"1\" or isnull(ENF))","NBENF_ADOP_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","NBENF_ADOP":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","LANGUE1_ENF":"(ENF =\"1\" or isnull(ENF))","LANGUE1_ENFL":"(ENF =\"1\" or isnull(ENF)) and (isnull(LANGUE1_ENF) or LANGUE1_ENF=\"\")","LANGUE2_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL)))","LANGUE2_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","LANGUE2_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","LANGUE3_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")","NBENFLOG_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","NBENFLOG":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","CBENFLOG":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1 and (NBENFLOG = \"1\" or isnull(NBENFLOG)))","NBENFAIL_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1 and (NBENFLOG_UN =\"2\" or isnull(NBENFLOG_UN)))","CBENFAIL":"(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENF > 1)","PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\"))","NB_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","AG_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","QUI_AID_APP_1A1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A4":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1B1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1C1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C3":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1D1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_1D2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_2A1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A4":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2B1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2C1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C3":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2D1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_2D2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_3A1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A4":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3B1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3C1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C3":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3D1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_3D2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_4A1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A4":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4B1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4C1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C3":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4D1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_4D2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_1A1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A4":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1B1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1C1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C3":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1D1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_1D2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_2A1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A4":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2B1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2C1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C3":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2D1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_2D2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_3A1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A4":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3B1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3C1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C3":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3D1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_3D2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"NBENF":{"NBENF_ADOP_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","NBENF_ADOP":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","NBENFLOG_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1)","NBENFLOG":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1)","CBENFLOG":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1 and (NBENFLOG = \"1\" or isnull(NBENFLOG)))","NBENFAIL_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1 and (NBENFLOG_UN =\"2\" or isnull(NBENFLOG_UN)))","CBENFAIL":"(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENF > 1)"},"LANGUE1_ENF":{"LANGUE1_ENFL":"(ENF =\"1\" or isnull(ENF)) and (isnull(LANGUE1_ENF) or LANGUE1_ENF=\"\")","LANGUE2_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL)))","LANGUE2_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","LANGUE2_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","LANGUE3_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE1_ENFL":{"LANGUE2_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL)))","LANGUE2_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","LANGUE2_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","LANGUE3_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE2_ENFE":{"LANGUE2_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\")","LANGUE2_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")"},"LANGUE2_ENF":{"LANGUE2_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (LANGUE2_ENFE =\"1\") and (isnull(LANGUE2_ENF) or LANGUE2_ENF =\"\")","LANGUE3_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE2_ENFL":{"LANGUE3_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL)))","LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE3_ENFE":{"LANGUE3_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\")","LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")"},"LANGUE3_ENF":{"LANGUE3_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (LANGUE3_ENFE =\"1\") and (isnull(LANGUE3_ENF) or LANGUE3_ENF =\"\")","LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE3_ENFL":{"LANGUE4_ENFE":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL)))","LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE4_ENFE":{"LANGUE4_ENF":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\")","LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"LANGUE4_ENF":{"LANGUE4_ENFL":"(ENF =\"1\" or isnull(ENF)) and (not(isnull(LANGUE1_ENF)) or not(isnull(LANGUE1_ENFL))) and (not(isnull(LANGUE2_ENF)) or not(isnull(LANGUE2_ENFL))) and (not(isnull(LANGUE3_ENF)) or not(isnull(LANGUE3_ENFL))) and (LANGUE4_ENFE =\"1\") and (isnull(LANGUE4_ENF) or LANGUE4_ENF =\"\")"},"NBENFLOG":{"CBENFLOG":"(ENF =\"1\" or isnull(ENF)) and (NBENF > 1 and (NBENFLOG = \"1\" or isnull(NBENFLOG)))"},"NBENFLOG_UN":{"NBENFAIL_UN":"(ENF =\"1\" or isnull(ENF)) and (NBENF = 1 and (NBENFLOG_UN =\"2\" or isnull(NBENFLOG_UN)))","PRENOM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","SEXE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ANAI_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","NEFRANCE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (NBENF_ADOP >0)","ANADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))","PARENT_VIT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","PARENT_FR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_COM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","PARENT_DEP_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","PARENT_PAY_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")","PARENT_FREQ_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_DORT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_VECU_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","SEP_AUT_PAR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","RESID_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")","SANTE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ASE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")"},"CBENFLOG":{"CBENFAIL":"(ENF =\"1\" or isnull(ENF)) and ((nvl(CBENFLOG,0) < nvl(NBENF,0)) or isnull(CBENFLOG) or isnull(NBENF)) and (NBENF > 1)","PRENOM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","SEXE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ANAI_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","NEFRANCE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (NBENF_ADOP >0)","ANADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))","PARENT_VIT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","PARENT_FR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_COM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","PARENT_DEP_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","PARENT_PAY_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")","PARENT_FREQ_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_DORT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_VECU_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","SEP_AUT_PAR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","RESID_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")","SANTE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","ASE_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\")","PRENOM_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","SEXE_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","ANAI_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","NEFRANCE_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","ADOPT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0)","ANADOPT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2 =\"1\")","PARENT_VIT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","PARENT_FR_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_COM_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))","PARENT_DEP_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))","PARENT_PAY_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")","PARENT_FREQ_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_DORT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_VECU_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","SEP_AUT_PAR_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","RESID_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")","SANTE_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","ASE_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2)","PRENOM_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","SEXE_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","ANAI_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","NEFRANCE_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","ADOPT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0)","ANADOPT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3 =\"1\")","PARENT_VIT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","PARENT_FR_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_COM_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))","PARENT_DEP_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))","PARENT_PAY_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")","PARENT_FREQ_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_DORT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_VECU_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","SEP_AUT_PAR_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","RESID_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")","SANTE_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","ASE_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3)","PRENOM_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","SEXE_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","ANAI_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","NEFRANCE_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","ADOPT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0)","ANADOPT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4 =\"1\")","PARENT_VIT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","PARENT_FR_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_COM_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))","PARENT_DEP_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))","PARENT_PAY_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")","PARENT_FREQ_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_DORT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_VECU_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","SEP_AUT_PAR_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","RESID_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")","SANTE_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","ASE_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4)","PRENOM_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","SEXE_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","ANAI_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","NEFRANCE_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","ADOPT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0)","ANADOPT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5 =\"1\")","PARENT_VIT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","PARENT_FR_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_COM_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))","PARENT_DEP_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))","PARENT_PAY_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")","PARENT_FREQ_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_DORT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_VECU_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","SEP_AUT_PAR_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","RESID_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")","SANTE_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","ASE_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5)","PRENOM_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","SEXE_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","ANAI_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","NEFRANCE_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","ADOPT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0)","ANADOPT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6 =\"1\")","PARENT_VIT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","PARENT_FR_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_COM_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))","PARENT_DEP_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))","PARENT_PAY_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")","PARENT_FREQ_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_DORT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_VECU_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","SEP_AUT_PAR_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","RESID_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")","SANTE_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","ASE_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6)","PRENOM_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","SEXE_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","ANAI_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","NEFRANCE_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","ADOPT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0)","ANADOPT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7 =\"1\")","PARENT_VIT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","PARENT_FR_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_COM_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))","PARENT_DEP_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))","PARENT_PAY_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")","PARENT_FREQ_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_DORT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_VECU_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","SEP_AUT_PAR_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","RESID_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")","SANTE_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","ASE_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7)","PRENOM_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","SEXE_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","ANAI_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","NEFRANCE_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","ADOPT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0)","ANADOPT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8 =\"1\")","PARENT_VIT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","PARENT_FR_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_COM_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))","PARENT_DEP_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))","PARENT_PAY_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")","PARENT_FREQ_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_DORT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_VECU_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","SEP_AUT_PAR_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","RESID_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")","SANTE_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)","ASE_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8)"},"NBENF_ADOP":{"ADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (NBENF_ADOP >0)","ADOPT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0)","ANADOPT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2 =\"1\")","ADOPT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0)","ANADOPT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3 =\"1\")","ADOPT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0)","ANADOPT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4 =\"1\")","ADOPT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0)","ANADOPT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5 =\"1\")","ADOPT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0)","ANADOPT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6 =\"1\")","ADOPT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0)","ANADOPT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7 =\"1\")","ADOPT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0)","ANADOPT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8 =\"1\")","ADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (NBENF_ADOP >0)","ADOPT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0)","ANADOPT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2 =\"1\")","ADOPT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0)","ANADOPT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3 =\"1\")","ADOPT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0)","ANADOPT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4 =\"1\")","ADOPT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0)","ANADOPT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5 =\"1\")","ADOPT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0)","ANADOPT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6 =\"1\")","ADOPT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0)","ANADOPT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7 =\"1\")","ADOPT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0)","ANADOPT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8 =\"1\")"},"NBENF_ADOP_UN":{"ANADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))","ANADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))"},"ADOPT_ENFLOG1":{"ANADOPT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and ((ADOPT_ENFLOG1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFLOG_UN=\"1\"))"},"PARENT_VIT_ENFLOG1":{"PARENT_FR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_COM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","PARENT_DEP_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","PARENT_PAY_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")","PARENT_FREQ_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_DORT_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","PARENT_VECU_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","SEP_AUT_PAR_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1))","RESID_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")"},"PARENT_FR_ENFLOG1":{"PARENT_COM_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1))","PARENT_DEP_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))","PARENT_PAY_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"2\")"},"PARENT_COM_ENFLOG1":{"PARENT_DEP_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (PARENT_FR_ENFLOG1 =\"1\" or isnull(PARENT_FR_ENFLOG1)) and (PARENT_COM_ENFLOG1 =\"\" or isnull(PARENT_COM_ENFLOG1))"},"SEP_AUT_PAR_ENFLOG1":{"RESID_ENFLOG1":"((not(isnull(CBENFLOG)) and CBENFLOG >= 1) or NBENFLOG_UN=\"1\") and (PARENT_VIT_ENFLOG1 =\"2\" or isnull(PARENT_VIT_ENFLOG1)) and (SEP_AUT_PAR_ENFLOG1=\"1\")"},"ADOPT_ENFLOG2":{"ANADOPT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG2) or ADOPT_ENFLOG2 =\"1\")"},"PARENT_VIT_ENFLOG2":{"PARENT_FR_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_COM_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))","PARENT_DEP_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))","PARENT_PAY_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")","PARENT_FREQ_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_DORT_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","PARENT_VECU_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","SEP_AUT_PAR_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2))","RESID_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")"},"PARENT_FR_ENFLOG2":{"PARENT_COM_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2))","PARENT_DEP_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))","PARENT_PAY_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"2\")"},"PARENT_COM_ENFLOG2":{"PARENT_DEP_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (PARENT_FR_ENFLOG2 =\"1\" or isnull(PARENT_FR_ENFLOG2)) and (PARENT_COM_ENFLOG2 =\"\" or isnull(PARENT_COM_ENFLOG2))"},"SEP_AUT_PAR_ENFLOG2":{"RESID_ENFLOG2":"(not(isnull(CBENFLOG)) and CBENFLOG >= 2) and (PARENT_VIT_ENFLOG2 =\"2\" or isnull(PARENT_VIT_ENFLOG2)) and (SEP_AUT_PAR_ENFLOG2=\"1\")"},"ADOPT_ENFLOG3":{"ANADOPT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG3) or ADOPT_ENFLOG3 =\"1\")"},"PARENT_VIT_ENFLOG3":{"PARENT_FR_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_COM_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))","PARENT_DEP_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))","PARENT_PAY_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")","PARENT_FREQ_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_DORT_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","PARENT_VECU_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","SEP_AUT_PAR_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3))","RESID_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")"},"PARENT_FR_ENFLOG3":{"PARENT_COM_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3))","PARENT_DEP_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))","PARENT_PAY_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"2\")"},"PARENT_COM_ENFLOG3":{"PARENT_DEP_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (PARENT_FR_ENFLOG3 =\"1\" or isnull(PARENT_FR_ENFLOG3)) and (PARENT_COM_ENFLOG3 =\"\" or isnull(PARENT_COM_ENFLOG3))"},"SEP_AUT_PAR_ENFLOG3":{"RESID_ENFLOG3":"(not(isnull(CBENFLOG)) and CBENFLOG >= 3) and (PARENT_VIT_ENFLOG3 =\"2\" or isnull(PARENT_VIT_ENFLOG3)) and (SEP_AUT_PAR_ENFLOG3=\"1\")"},"ADOPT_ENFLOG4":{"ANADOPT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG4) or ADOPT_ENFLOG4 =\"1\")"},"PARENT_VIT_ENFLOG4":{"PARENT_FR_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_COM_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))","PARENT_DEP_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))","PARENT_PAY_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")","PARENT_FREQ_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_DORT_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","PARENT_VECU_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","SEP_AUT_PAR_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4))","RESID_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")"},"PARENT_FR_ENFLOG4":{"PARENT_COM_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4))","PARENT_DEP_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))","PARENT_PAY_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"2\")"},"PARENT_COM_ENFLOG4":{"PARENT_DEP_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (PARENT_FR_ENFLOG4 =\"1\" or isnull(PARENT_FR_ENFLOG4)) and (PARENT_COM_ENFLOG4 =\"\" or isnull(PARENT_COM_ENFLOG4))"},"SEP_AUT_PAR_ENFLOG4":{"RESID_ENFLOG4":"(not(isnull(CBENFLOG)) and CBENFLOG >= 4) and (PARENT_VIT_ENFLOG4 =\"2\" or isnull(PARENT_VIT_ENFLOG4)) and (SEP_AUT_PAR_ENFLOG4=\"1\")"},"ADOPT_ENFLOG5":{"ANADOPT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG5) or ADOPT_ENFLOG5 =\"1\")"},"PARENT_VIT_ENFLOG5":{"PARENT_FR_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_COM_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))","PARENT_DEP_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))","PARENT_PAY_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")","PARENT_FREQ_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_DORT_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","PARENT_VECU_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","SEP_AUT_PAR_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5))","RESID_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")"},"PARENT_FR_ENFLOG5":{"PARENT_COM_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5))","PARENT_DEP_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))","PARENT_PAY_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"2\")"},"PARENT_COM_ENFLOG5":{"PARENT_DEP_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (PARENT_FR_ENFLOG5 =\"1\" or isnull(PARENT_FR_ENFLOG5)) and (PARENT_COM_ENFLOG5 =\"\" or isnull(PARENT_COM_ENFLOG5))"},"SEP_AUT_PAR_ENFLOG5":{"RESID_ENFLOG5":"(not(isnull(CBENFLOG)) and CBENFLOG >= 5) and (PARENT_VIT_ENFLOG5 =\"2\" or isnull(PARENT_VIT_ENFLOG5)) and (SEP_AUT_PAR_ENFLOG5=\"1\")"},"ADOPT_ENFLOG6":{"ANADOPT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG6) or ADOPT_ENFLOG6 =\"1\")"},"PARENT_VIT_ENFLOG6":{"PARENT_FR_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_COM_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))","PARENT_DEP_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))","PARENT_PAY_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")","PARENT_FREQ_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_DORT_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","PARENT_VECU_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","SEP_AUT_PAR_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6))","RESID_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")"},"PARENT_FR_ENFLOG6":{"PARENT_COM_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6))","PARENT_DEP_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))","PARENT_PAY_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"2\")"},"PARENT_COM_ENFLOG6":{"PARENT_DEP_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (PARENT_FR_ENFLOG6 =\"1\" or isnull(PARENT_FR_ENFLOG6)) and (PARENT_COM_ENFLOG6 =\"\" or isnull(PARENT_COM_ENFLOG6))"},"SEP_AUT_PAR_ENFLOG6":{"RESID_ENFLOG6":"(not(isnull(CBENFLOG)) and CBENFLOG >= 6) and (PARENT_VIT_ENFLOG6 =\"2\" or isnull(PARENT_VIT_ENFLOG6)) and (SEP_AUT_PAR_ENFLOG6=\"1\")"},"ADOPT_ENFLOG7":{"ANADOPT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG7) or ADOPT_ENFLOG7 =\"1\")"},"PARENT_VIT_ENFLOG7":{"PARENT_FR_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_COM_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))","PARENT_DEP_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))","PARENT_PAY_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")","PARENT_FREQ_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_DORT_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","PARENT_VECU_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","SEP_AUT_PAR_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7))","RESID_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")"},"PARENT_FR_ENFLOG7":{"PARENT_COM_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7))","PARENT_DEP_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))","PARENT_PAY_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"2\")"},"PARENT_COM_ENFLOG7":{"PARENT_DEP_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (PARENT_FR_ENFLOG7=\"1\" or isnull(PARENT_FR_ENFLOG7)) and (PARENT_COM_ENFLOG7 =\"\" or isnull(PARENT_COM_ENFLOG7))"},"SEP_AUT_PAR_ENFLOG7":{"RESID_ENFLOG7":"(not(isnull(CBENFLOG)) and CBENFLOG >= 7) and (PARENT_VIT_ENFLOG7 =\"2\" or isnull(PARENT_VIT_ENFLOG7)) and (SEP_AUT_PAR_ENFLOG7=\"1\")"},"ADOPT_ENFLOG8":{"ANADOPT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFLOG8) or ADOPT_ENFLOG8 =\"1\")"},"PARENT_VIT_ENFLOG8":{"PARENT_FR_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_COM_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))","PARENT_DEP_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))","PARENT_PAY_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")","PARENT_FREQ_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_DORT_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","PARENT_VECU_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","SEP_AUT_PAR_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8))","RESID_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")"},"PARENT_FR_ENFLOG8":{"PARENT_COM_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8))","PARENT_DEP_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))","PARENT_PAY_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"2\")"},"PARENT_COM_ENFLOG8":{"PARENT_DEP_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (PARENT_FR_ENFLOG8=\"1\" or isnull(PARENT_FR_ENFLOG8)) and (PARENT_COM_ENFLOG8 =\"\" or isnull(PARENT_COM_ENFLOG8))"},"SEP_AUT_PAR_ENFLOG8":{"RESID_ENFLOG8":"(not(isnull(CBENFLOG)) and CBENFLOG >= 8) and (PARENT_VIT_ENFLOG8 =\"2\" or isnull(PARENT_VIT_ENFLOG8)) and (SEP_AUT_PAR_ENFLOG8=\"1\")"},"NBENFAIL_UN":{"PRENOM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","SEXE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","ANAI_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","NEFRANCE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","ADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (NBENF_ADOP >0)","ANADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))","PARENT_VIT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","PARENT_VECU_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))","DC_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","AG_DC_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1 =\"2\")","AG_DEPART_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","PARENT_FREQ_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","FR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","COM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","DEP_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","PAY_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")","LOG_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","DORT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","SANTE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","ASE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)"},"CBENFAIL":{"PRENOM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","SEXE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","ANAI_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","NEFRANCE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","ADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (NBENF_ADOP >0)","ANADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))","PARENT_VIT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","PARENT_VECU_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))","DC_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\")","AG_DC_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1 =\"2\")","AG_DEPART_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","PARENT_FREQ_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","FR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","COM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","DEP_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","PAY_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")","LOG_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","DORT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","SANTE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","ASE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","PRENOM_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","SEXE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","ANAI_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","NEFRANCE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","ADOPT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0)","ANADOPT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2 =\"1\")","PARENT_VIT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","PARENT_VECU_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))","DC_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2)","AG_DC_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")","AG_DEPART_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","PARENT_FREQ_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","FR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","COM_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))","DEP_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))","PAY_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")","LOG_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (cast(ANAI_ENFAIL2,integer) <= 2012)","AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","DORT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","SEP_AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))","SANTE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","ASE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","PRENOM_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","SEXE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","ANAI_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","NEFRANCE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","ADOPT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0)","ANADOPT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3 =\"1\")","PARENT_VIT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","PARENT_VECU_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))","DC_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3)","AG_DC_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")","AG_DEPART_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","PARENT_FREQ_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","FR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","COM_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))","DEP_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))","PAY_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")","LOG_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (cast(ANAI_ENFAIL3,integer) <= 2012)","AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","DORT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","SEP_AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))","SANTE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","ASE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","PRENOM_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","SEXE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","ANAI_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","NEFRANCE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","ADOPT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0)","ANADOPT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4 =\"1\")","PARENT_VIT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","PARENT_VECU_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))","DC_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4)","AG_DC_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")","AG_DEPART_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","PARENT_FREQ_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","FR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","COM_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))","DEP_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))","PAY_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")","LOG_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (cast(ANAI_ENFAIL4,integer) <= 2012)","AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","DORT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","SEP_AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))","SANTE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","ASE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","PRENOM_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","SEXE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","ANAI_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","NEFRANCE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","ADOPT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0)","ANADOPT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5 =\"1\")","PARENT_VIT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","PARENT_VECU_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))","DC_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5)","AG_DC_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")","AG_DEPART_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","PARENT_FREQ_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","FR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","COM_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))","DEP_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))","PAY_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")","LOG_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (cast(ANAI_ENFAIL5,integer) <= 2012)","AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","DORT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","SEP_AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))","SANTE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","ASE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","PRENOM_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","SEXE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","ANAI_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","NEFRANCE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","ADOPT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0)","ANADOPT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6 =\"1\")","PARENT_VIT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","PARENT_VECU_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))","DC_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6)","AG_DC_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")","AG_DEPART_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","PARENT_FREQ_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","FR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","COM_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))","DEP_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))","PAY_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")","LOG_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (cast(ANAI_ENFAIL6,integer) <= 2012)","AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","DORT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","SEP_AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))","SANTE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","ASE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","PRENOM_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","SEXE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","ANAI_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","NEFRANCE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","ADOPT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0)","ANADOPT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7 =\"1\")","PARENT_VIT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","PARENT_VECU_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))","DC_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7)","AG_DC_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")","AG_DEPART_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","PARENT_FREQ_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","FR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","COM_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))","DEP_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))","PAY_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")","LOG_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (cast(ANAI_ENFAIL7,integer) <= 2012)","AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","DORT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","SEP_AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))","SANTE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","ASE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","PRENOM_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","SEXE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","ANAI_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","NEFRANCE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","ADOPT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0)","ANADOPT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8 =\"1\")","PARENT_VIT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","PARENT_VECU_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))","DC_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8)","AG_DC_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")","AG_DEPART_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","PARENT_FREQ_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","FR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","COM_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))","DEP_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))","PAY_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")","LOG_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (cast(ANAI_ENFAIL8,integer) <= 2012)","AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","DORT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","SEP_AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))","SANTE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","ASE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)"},"ADOPT_ENFAIL1":{"ANADOPT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((ADOPT_ENFAIL1 =\"1\") or (NBENF_ADOP_UN =\"1\" and NBENFAIL_UN =\"1\"))"},"PARENT_VIT_ENFAIL1":{"PARENT_VECU_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (PARENT_VIT_ENFAIL1=\"2\" or PARENT_VIT_ENFAIL1=\"3\" or isnull( PARENT_VIT_ENFAIL1))","AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))"},"DC_ENFAIL1":{"AG_DC_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1 =\"2\")","AG_DEPART_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","PARENT_FREQ_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","FR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1))","COM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","DEP_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","PAY_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")","LOG_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","DORT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","SANTE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","ASE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)"},"FR_ENFAIL1":{"COM_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1))","DEP_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))","PAY_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"2\")"},"COM_ENFAIL1":{"DEP_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and (DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and (FR_ENFAIL1 =\"1\" or isnull(FR_ENFAIL1)) and (COM_ENFAIL1 =\"\" or isnull(COM_ENFAIL1))"},"ANAI_ENFAIL1":{"LOG_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (cast(ANAI_ENFAIL1,integer) <= 2012)","AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and (PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\" or isnull(PARENT_VIT_ENFAIL1))","DORT_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))","SANTE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)","ASE_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005)"},"AUT_PAR_ENFAIL1":{"SEP_AUT_PAR_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1)))","RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))"},"SEP_AUT_PAR_ENFAIL1":{"RESID_ENFAIL1":"((not(isnull(CBENFAIL)) and CBENFAIL >= 1) or NBENFAIL_UN =\"1\") and ((DC_ENFAIL1=\"1\" or isnull(DC_ENFAIL1)) and cast(ANAI_ENFAIL1,integer) >= 2005) and ((PARENT_VIT_ENFAIL1<>\"3\" or PARENT_VIT_ENFAIL1<>\"5\"or isnull(PARENT_VIT_ENFAIL1)) and (AUT_PAR_ENFAIL1=\"1\" or isnull(AUT_PAR_ENFAIL1))) and (SEP_AUT_PAR_ENFAIL1 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL1))"},"ADOPT_ENFAIL2":{"ANADOPT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL2) or ADOPT_ENFAIL2 =\"1\")"},"PARENT_VIT_ENFAIL2":{"PARENT_VECU_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (PARENT_VIT_ENFAIL2 =\"2\" or PARENT_VIT_ENFAIL2 =\"3\" or isnull( PARENT_VIT_ENFAIL2))","AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","SEP_AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))"},"DC_ENFAIL2":{"AG_DC_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"2\")","AG_DEPART_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","PARENT_FREQ_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","FR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2))","COM_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))","DEP_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))","PAY_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")","LOG_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (cast(ANAI_ENFAIL2,integer) <= 2012)","AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","DORT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","SEP_AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))","SANTE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","ASE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)"},"FR_ENFAIL2":{"COM_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2))","DEP_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))","PAY_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"2\")"},"COM_ENFAIL2":{"DEP_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and (DC_ENFAIL2 =\"1\" or isnull(DC_ENFAIL2)) and (FR_ENFAIL2 =\"1\" or isnull(FR_ENFAIL2)) and (COM_ENFAIL2 =\"\" or isnull(COM_ENFAIL2))"},"ANAI_ENFAIL2":{"LOG_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (cast(ANAI_ENFAIL2,integer) <= 2012)","AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and (PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2))","DORT_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","SEP_AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))","SANTE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)","ASE_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005)"},"AUT_PAR_ENFAIL2":{"SEP_AUT_PAR_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2)))","RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))"},"SEP_AUT_PAR_ENFAIL2":{"RESID_ENFAIL2":"(not(isnull(CBENFAIL)) and CBENFAIL >= 2) and ((DC_ENFAIL2=\"1\" or isnull(DC_ENFAIL2)) and cast(ANAI_ENFAIL2,integer) >= 2005) and ((PARENT_VIT_ENFAIL2<>\"3\" or PARENT_VIT_ENFAIL2<>\"5\" or isnull(PARENT_VIT_ENFAIL2)) and (AUT_PAR_ENFAIL2=\"1\" or isnull(AUT_PAR_ENFAIL2))) and (SEP_AUT_PAR_ENFAIL2 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL2))"},"ADOPT_ENFAIL3":{"ANADOPT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL3) or ADOPT_ENFAIL3 =\"1\")"},"PARENT_VIT_ENFAIL3":{"PARENT_VECU_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (PARENT_VIT_ENFAIL3 =\"2\" or PARENT_VIT_ENFAIL3 =\"3\" or isnull( PARENT_VIT_ENFAIL3))","AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","SEP_AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))"},"DC_ENFAIL3":{"AG_DC_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"2\")","AG_DEPART_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","PARENT_FREQ_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","FR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3))","COM_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))","DEP_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))","PAY_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")","LOG_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (cast(ANAI_ENFAIL3,integer) <= 2012)","AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","DORT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","SEP_AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))","SANTE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","ASE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)"},"FR_ENFAIL3":{"COM_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3))","DEP_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))","PAY_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"2\")"},"COM_ENFAIL3":{"DEP_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and (DC_ENFAIL3 =\"1\" or isnull(DC_ENFAIL3)) and (FR_ENFAIL3 =\"1\" or isnull(FR_ENFAIL3)) and (COM_ENFAIL3 =\"\" or isnull(COM_ENFAIL3))"},"ANAI_ENFAIL3":{"LOG_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (cast(ANAI_ENFAIL3,integer) <= 2012)","AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and (PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3))","DORT_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","SEP_AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))","SANTE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)","ASE_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005)"},"AUT_PAR_ENFAIL3":{"SEP_AUT_PAR_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3)))","RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))"},"SEP_AUT_PAR_ENFAIL3":{"RESID_ENFAIL3":"(not(isnull(CBENFAIL)) and CBENFAIL >= 3) and ((DC_ENFAIL3=\"1\" or isnull(DC_ENFAIL3)) and cast(ANAI_ENFAIL3,integer) >= 2005) and ((PARENT_VIT_ENFAIL3<>\"3\" or PARENT_VIT_ENFAIL3<>\"5\" or isnull(PARENT_VIT_ENFAIL3)) and (AUT_PAR_ENFAIL3=\"1\" or isnull(AUT_PAR_ENFAIL3))) and (SEP_AUT_PAR_ENFAIL3 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL3))"},"ADOPT_ENFAIL4":{"ANADOPT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL4) or ADOPT_ENFAIL4 =\"1\")"},"PARENT_VIT_ENFAIL4":{"PARENT_VECU_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (PARENT_VIT_ENFAIL4 =\"2\" or PARENT_VIT_ENFAIL4 =\"3\" or isnull( PARENT_VIT_ENFAIL4))","AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","SEP_AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))"},"DC_ENFAIL4":{"AG_DC_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"2\")","AG_DEPART_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","PARENT_FREQ_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","FR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4))","COM_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))","DEP_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))","PAY_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")","LOG_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (cast(ANAI_ENFAIL4,integer) <= 2012)","AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","DORT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","SEP_AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))","SANTE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","ASE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)"},"FR_ENFAIL4":{"COM_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4))","DEP_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))","PAY_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"2\")"},"COM_ENFAIL4":{"DEP_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and (DC_ENFAIL4 =\"1\" or isnull(DC_ENFAIL4)) and (FR_ENFAIL4 =\"1\" or isnull(FR_ENFAIL4)) and (COM_ENFAIL4 =\"\" or isnull(COM_ENFAIL4))"},"ANAI_ENFAIL4":{"LOG_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (cast(ANAI_ENFAIL4,integer) <= 2012)","AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and (PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4))","DORT_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","SEP_AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))","SANTE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)","ASE_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005)"},"AUT_PAR_ENFAIL4":{"SEP_AUT_PAR_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4)))","RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))"},"SEP_AUT_PAR_ENFAIL4":{"RESID_ENFAIL4":"(not(isnull(CBENFAIL)) and CBENFAIL >= 4) and ((DC_ENFAIL4=\"1\" or isnull(DC_ENFAIL4)) and cast(ANAI_ENFAIL4,integer) >= 2005) and ((PARENT_VIT_ENFAIL4<>\"3\" or PARENT_VIT_ENFAIL4<>\"5\" or isnull(PARENT_VIT_ENFAIL4)) and (AUT_PAR_ENFAIL4=\"1\" or isnull(AUT_PAR_ENFAIL4))) and (SEP_AUT_PAR_ENFAIL4 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL4))"},"ADOPT_ENFAIL5":{"ANADOPT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL5) or ADOPT_ENFAIL5 =\"1\")"},"PARENT_VIT_ENFAIL5":{"PARENT_VECU_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (PARENT_VIT_ENFAIL5 =\"2\" or PARENT_VIT_ENFAIL5 =\"3\" or isnull( PARENT_VIT_ENFAIL5))","AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","SEP_AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))"},"DC_ENFAIL5":{"AG_DC_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"2\")","AG_DEPART_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","PARENT_FREQ_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","FR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5))","COM_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))","DEP_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))","PAY_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")","LOG_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (cast(ANAI_ENFAIL5,integer) <= 2012)","AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","DORT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","SEP_AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))","SANTE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","ASE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)"},"FR_ENFAIL5":{"COM_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5))","DEP_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))","PAY_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"2\")"},"COM_ENFAIL5":{"DEP_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and (DC_ENFAIL5 =\"1\" or isnull(DC_ENFAIL5)) and (FR_ENFAIL5 =\"1\" or isnull(FR_ENFAIL5)) and (COM_ENFAIL5 =\"\" or isnull(COM_ENFAIL5))"},"ANAI_ENFAIL5":{"LOG_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (cast(ANAI_ENFAIL5,integer) <= 2012)","AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and (PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5))","DORT_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","SEP_AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))","SANTE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)","ASE_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005)"},"AUT_PAR_ENFAIL5":{"SEP_AUT_PAR_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5)))","RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))"},"SEP_AUT_PAR_ENFAIL5":{"RESID_ENFAIL5":"(not(isnull(CBENFAIL)) and CBENFAIL >= 5) and ((DC_ENFAIL5=\"1\" or isnull(DC_ENFAIL5)) and cast(ANAI_ENFAIL5,integer) >= 2005) and ((PARENT_VIT_ENFAIL5<>\"3\" or PARENT_VIT_ENFAIL5<>\"5\" or isnull(PARENT_VIT_ENFAIL5)) and (AUT_PAR_ENFAIL5=\"1\" or isnull(AUT_PAR_ENFAIL5))) and (SEP_AUT_PAR_ENFAIL5 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL5))"},"ADOPT_ENFAIL6":{"ANADOPT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL6) or ADOPT_ENFAIL6 =\"1\")"},"PARENT_VIT_ENFAIL6":{"PARENT_VECU_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (PARENT_VIT_ENFAIL6 =\"2\" or PARENT_VIT_ENFAIL6 =\"3\" or isnull( PARENT_VIT_ENFAIL6))","AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","SEP_AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))"},"DC_ENFAIL6":{"AG_DC_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"2\")","AG_DEPART_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","PARENT_FREQ_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","FR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6))","COM_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))","DEP_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))","PAY_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")","LOG_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (cast(ANAI_ENFAIL6,integer) <= 2012)","AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","DORT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","SEP_AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))","SANTE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","ASE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)"},"FR_ENFAIL6":{"COM_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6))","DEP_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))","PAY_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"2\")"},"COM_ENFAIL6":{"DEP_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and (DC_ENFAIL6 =\"1\" or isnull(DC_ENFAIL6)) and (FR_ENFAIL6 =\"1\" or isnull(FR_ENFAIL6)) and (COM_ENFAIL6 =\"\" or isnull(COM_ENFAIL6))"},"ANAI_ENFAIL6":{"LOG_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (cast(ANAI_ENFAIL6,integer) <= 2012)","AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and (PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6))","DORT_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","SEP_AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))","SANTE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)","ASE_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005)"},"AUT_PAR_ENFAIL6":{"SEP_AUT_PAR_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6)))","RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))"},"SEP_AUT_PAR_ENFAIL6":{"RESID_ENFAIL6":"(not(isnull(CBENFAIL)) and CBENFAIL >= 6) and ((DC_ENFAIL6=\"1\" or isnull(DC_ENFAIL6)) and cast(ANAI_ENFAIL6,integer) >= 2005) and ((PARENT_VIT_ENFAIL6<>\"3\" or PARENT_VIT_ENFAIL6<>\"5\" or isnull(PARENT_VIT_ENFAIL6)) and (AUT_PAR_ENFAIL6=\"1\" or isnull(AUT_PAR_ENFAIL6))) and (SEP_AUT_PAR_ENFAIL6 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL6))"},"ADOPT_ENFAIL7":{"ANADOPT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL7) or ADOPT_ENFAIL7 =\"1\")"},"PARENT_VIT_ENFAIL7":{"PARENT_VECU_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (PARENT_VIT_ENFAIL7 =\"2\" or PARENT_VIT_ENFAIL7 =\"3\" or isnull( PARENT_VIT_ENFAIL7))","AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","SEP_AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))"},"DC_ENFAIL7":{"AG_DC_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"2\")","AG_DEPART_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","PARENT_FREQ_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","FR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7))","COM_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))","DEP_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))","PAY_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")","LOG_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (cast(ANAI_ENFAIL7,integer) <= 2012)","AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","DORT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","SEP_AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))","SANTE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","ASE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)"},"FR_ENFAIL7":{"COM_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7))","DEP_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))","PAY_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"2\")"},"COM_ENFAIL7":{"DEP_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and (DC_ENFAIL7 =\"1\" or isnull(DC_ENFAIL7)) and (FR_ENFAIL7 =\"1\" or isnull(FR_ENFAIL7)) and (COM_ENFAIL7 =\"\" or isnull(COM_ENFAIL7))"},"ANAI_ENFAIL7":{"LOG_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (cast(ANAI_ENFAIL7,integer) <= 2012)","AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and (PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7))","DORT_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","SEP_AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))","SANTE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)","ASE_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005)"},"AUT_PAR_ENFAIL7":{"SEP_AUT_PAR_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7)))","RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))"},"SEP_AUT_PAR_ENFAIL7":{"RESID_ENFAIL7":"(not(isnull(CBENFAIL)) and CBENFAIL >= 7) and ((DC_ENFAIL7=\"1\" or isnull(DC_ENFAIL7)) and cast(ANAI_ENFAIL7,integer) >= 2005) and ((PARENT_VIT_ENFAIL7<>\"3\" or PARENT_VIT_ENFAIL7<>\"5\" or isnull(PARENT_VIT_ENFAIL7)) and (AUT_PAR_ENFAIL7=\"1\" or isnull(AUT_PAR_ENFAIL7))) and (SEP_AUT_PAR_ENFAIL7 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL7))"},"ADOPT_ENFAIL8":{"ANADOPT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (NBENF_ADOP >0) and (isnull(ADOPT_ENFAIL8) or ADOPT_ENFAIL8 =\"1\")"},"PARENT_VIT_ENFAIL8":{"PARENT_VECU_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (PARENT_VIT_ENFAIL8 =\"2\" or PARENT_VIT_ENFAIL8 =\"3\" or isnull( PARENT_VIT_ENFAIL8))","AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","SEP_AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))"},"DC_ENFAIL8":{"AG_DC_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"2\")","AG_DEPART_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","PARENT_FREQ_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","FR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8))","COM_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))","DEP_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))","PAY_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")","LOG_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (cast(ANAI_ENFAIL8,integer) <= 2012)","AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","DORT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","SEP_AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))","SANTE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","ASE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)"},"FR_ENFAIL8":{"COM_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8))","DEP_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))","PAY_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"2\")"},"COM_ENFAIL8":{"DEP_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and (DC_ENFAIL8 =\"1\" or isnull(DC_ENFAIL8)) and (FR_ENFAIL8 =\"1\" or isnull(FR_ENFAIL8)) and (COM_ENFAIL8 =\"\" or isnull(COM_ENFAIL8))"},"ANAI_ENFAIL8":{"LOG_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (cast(ANAI_ENFAIL8,integer) <= 2012)","AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and (PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8))","DORT_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","SEP_AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))","SANTE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)","ASE_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005)"},"AUT_PAR_ENFAIL8":{"SEP_AUT_PAR_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8)))","RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))"},"SEP_AUT_PAR_ENFAIL8":{"RESID_ENFAIL8":"(not(isnull(CBENFAIL)) and CBENFAIL >= 8) and ((DC_ENFAIL8=\"1\" or isnull(DC_ENFAIL8)) and cast(ANAI_ENFAIL8,integer) >= 2005) and ((PARENT_VIT_ENFAIL8<>\"3\" or PARENT_VIT_ENFAIL8<>\"5\" or isnull(PARENT_VIT_ENFAIL8)) and (AUT_PAR_ENFAIL8=\"1\" or isnull(AUT_PAR_ENFAIL8))) and (SEP_AUT_PAR_ENFAIL8 =\"1\" or isnull(SEP_AUT_PAR_ENFAIL8))"},"PETIT_ENF":{"NB_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","AG_PETIT_ENF":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"ANAIS":{"FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"RPANAISENQ":{"FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"AGE":{"FREQ_VU_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_VU_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF1":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF2":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF3":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")","FREQ_CONT_PETIT_ENF4":"(cast (AGE, integer) >= 35 and (isnull(ENF) or ENF =\"1\")) and (PETIT_ENF =\"1\")"},"AIDE_APPORT1":{"QUI_AID_APP_1A1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1A4":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1B1":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B2":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1B3":"(AIDE_APPORT1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_1C1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1C3":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_1D1":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_1D2":"(AIDE_APPORT1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_APP_1A4":{"QUI_AID_APP_1AD":"(QUI_AID_APP_1A4)"},"QUI_AID_APP_1B3":{"QUI_AID_APP_1BD":"(QUI_AID_APP_1B3)"},"QUI_AID_APP_1C3":{"QUI_AID_APP_1CD":"(QUI_AID_APP_1C3)"},"QUI_AID_APP_1D2":{"QUI_AID_APP_1DD":"(QUI_AID_APP_1D2)"},"AIDE_APPORT2":{"QUI_AID_APP_2A1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2A4":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2B1":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B2":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2B3":"(AIDE_APPORT2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_2C1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2C3":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_2D1":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_2D2":"(AIDE_APPORT2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_APP_2A4":{"QUI_AID_APP_2AD":"(QUI_AID_APP_2A4)"},"QUI_AID_APP_2B3":{"QUI_AID_APP_2BD":"(QUI_AID_APP_2B3)"},"QUI_AID_APP_2C3":{"QUI_AID_APP_2CD":"(QUI_AID_APP_2C3)"},"QUI_AID_APP_2D2":{"QUI_AID_APP_2DD":"(QUI_AID_APP_2D2)"},"AIDE_APPORT3":{"QUI_AID_APP_3A1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3A4":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3B1":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B2":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3B3":"(AIDE_APPORT3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_3C1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3C3":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_3D1":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_3D2":"(AIDE_APPORT3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_APP_3A4":{"QUI_AID_APP_3AD":"(QUI_AID_APP_3A4)"},"QUI_AID_APP_3B3":{"QUI_AID_APP_3BD":"(QUI_AID_APP_3B3)"},"QUI_AID_APP_3C3":{"QUI_AID_APP_3CD":"(QUI_AID_APP_3C3)"},"QUI_AID_APP_3D2":{"QUI_AID_APP_3DD":"(QUI_AID_APP_3D2)"},"AIDE_APPORT4":{"QUI_AID_APP_4A1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4A4":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4B1":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B2":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4B3":"(AIDE_APPORT4 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_APP_4C1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4C3":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_APP_4D1":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_APP_4D2":"(AIDE_APPORT4 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_APP_4A4":{"QUI_AID_APP_4AD":"(QUI_AID_APP_4A4)"},"QUI_AID_APP_4B3":{"QUI_AID_APP_4BD":"(QUI_AID_APP_4B3)"},"QUI_AID_APP_4C3":{"QUI_AID_APP_4CD":"(QUI_AID_APP_4C3)"},"QUI_AID_APP_4D2":{"QUI_AID_APP_4DD":"(QUI_AID_APP_4D2)"},"AIDE_RECUE1":{"QUI_AID_REC_1A1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1A4":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1B1":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B2":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1B3":"(AIDE_RECUE1 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_1C1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1C3":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_1D1":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_1D2":"(AIDE_RECUE1 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_REC_1A4":{"QUI_AID_REC_1AD":"(QUI_AID_REC_1A4)"},"QUI_AID_REC_1B3":{"QUI_AID_REC_1BD":"(QUI_AID_REC_1B3)"},"QUI_AID_REC_1C3":{"QUI_AID_REC_1CD":"(QUI_AID_REC_1C3)"},"QUI_AID_REC_1D2":{"QUI_AID_REC_1DD":"(QUI_AID_REC_1D2)"},"AIDE_RECUE2":{"QUI_AID_REC_2A1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2A4":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2B1":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B2":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2B3":"(AIDE_RECUE2 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_2C1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2C3":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_2D1":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_2D2":"(AIDE_RECUE2 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_REC_2A4":{"QUI_AID_REC_2AD":"(QUI_AID_REC_2A4)"},"QUI_AID_REC_2B3":{"QUI_AID_REC_2BD":"(QUI_AID_REC_2B3)"},"QUI_AID_REC_2C3":{"QUI_AID_REC_2CD":"(QUI_AID_REC_2C3)"},"QUI_AID_REC_2D2":{"QUI_AID_REC_2DD":"(QUI_AID_REC_2D2)"},"AIDE_RECUE3":{"QUI_AID_REC_3A1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3A4":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and (ENF=\"1\" or isnull(ENF))) and (AIDE_RECUE3)","QUI_AID_REC_3B1":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B2":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3B3":"(AIDE_RECUE3 and (isnull(COUPLE) or COUPLE=\"1\" or COUPLE=\"2\") and ENF=\"2\")","QUI_AID_REC_3C1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3C3":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and (ENF=\"1\" or isnull(ENF)))","QUI_AID_REC_3D1":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")","QUI_AID_REC_3D2":"(AIDE_RECUE3 and (COUPLE=\"3\" or COUPLE=\"4\") and ENF=\"2\")"},"QUI_AID_REC_3A4":{"QUI_AID_REC_3AD":"(QUI_AID_REC_3A4)"},"QUI_AID_REC_3B3":{"QUI_AID_REC_3BD":"(QUI_AID_REC_3B3)"},"QUI_AID_REC_3C3":{"QUI_AID_REC_3CD":"(QUI_AID_REC_3C3)"},"QUI_AID_REC_3D2":{"QUI_AID_REC_3DD":"(QUI_AID_REC_3D2)"},"LANGUE1_ENTOUE":{"LANGUE1_ENTOU":"(LANGUE1_ENTOUE =\"1\")","LANGUE1_ENTOUL":"(LANGUE1_ENTOUE =\"1\") and (isnull(LANGUE1_ENTOU) or LANGUE1_ENTOU =\"\")"},"LANGUE1_ENTOU":{"LANGUE1_ENTOUL":"(LANGUE1_ENTOUE =\"1\") and (isnull(LANGUE1_ENTOU) or LANGUE1_ENTOU =\"\")","LANGUE2_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL)))","LANGUE2_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\")","LANGUE2_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")","LANGUE3_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","LANGUE3_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"LANGUE1_ENTOUL":{"LANGUE2_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL)))","LANGUE2_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\")","LANGUE2_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")","LANGUE3_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","LANGUE3_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"LANGUE2_ENTOUE":{"LANGUE2_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\")","LANGUE2_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")"},"LANGUE2_ENTOU":{"LANGUE2_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (LANGUE2_ENTOUE =\"1\") and (isnull(LANGUE2_ENTOU) or LANGUE2_ENTOU =\"\")","LANGUE3_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","LANGUE3_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"LANGUE2_ENTOUL":{"LANGUE3_ENTOUE":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL)))","LANGUE3_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"LANGUE3_ENTOUE":{"LANGUE3_ENTOU":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\")","LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"LANGUE3_ENTOU":{"LANGUE3_ENTOUL":"(not(isnull(LANGUE1_ENTOU)) or not(isnull(LANGUE1_ENTOUL))) and (not(isnull(LANGUE2_ENTOU)) or not(isnull(LANGUE2_ENTOUL))) and (LANGUE3_ENTOUE =\"1\") and (isnull(LANGUE3_ENTOU))"},"PRENOM_PAR1":{"LIEUNAIS_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","PNAI_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (LIEUNAIS_PAR1 =\"2\")","NATIO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","TRAV_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","PROF_PAR1H":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","PROF_PAR1F":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")","PROF_PAR1_2":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))","STATUT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))","SAL_IND_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","SAL_FP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","SAL_ENT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")","VIV_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","ANNEE_DC_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")","LOG_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","FR_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","COM_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","PAY_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","ETAB_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","FREQ_VU_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","FREQ_CONT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_EGO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_FRAT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))"},"ANAI_PAR1":{"LIEUNAIS_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","PNAI_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (LIEUNAIS_PAR1 =\"2\")","NATIO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","TRAV_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","PROF_PAR1H":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","PROF_PAR1F":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")","PROF_PAR1_2":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))","STATUT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))","SAL_IND_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","SAL_FP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","SAL_ENT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")","VIV_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer))","ANNEE_DC_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")","LOG_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","FR_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","COM_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","PAY_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","ETAB_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","FREQ_VU_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","FREQ_CONT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_EGO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_FRAT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))"},"LIEUNAIS_PAR1":{"PNAI_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (LIEUNAIS_PAR1 =\"2\")"},"SEXE_PAR1":{"PROF_PAR1H":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","PROF_PAR1F":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")"},"TRAV_PAR1":{"PROF_PAR1H":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"2\" or isnull(SEXE_PAR1))","PROF_PAR1F":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (SEXE_PAR1=\"1\")","PROF_PAR1_2":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))","STATUT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1))","SAL_IND_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","SAL_FP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","SAL_ENT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")"},"PROF_PAR1H":{"PROF_PAR1_2":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))"},"PROF_PAR1F":{"PROF_PAR1_2":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (isnull(PROF_PAR1F) and isnull(PROF_PAR1H))"},"STATUT_PAR1":{"SAL_IND_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"1\")","SAL_FP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"2\")","SAL_ENT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (TRAV_PAR1 =\"1\" or isnull(TRAV_PAR1)) and (STATUT_PAR1 =\"3\")"},"LANGUE1_PAR1":{"LANGUE1_PAR1L":"(isnull(LANGUE1_PAR1) or LANGUE1_PAR1 =\"\")","LANGUE2_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L)))","LANGUE2_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\")","LANGUE2_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))","LANGUE3_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","LANGUE3_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE1_PAR1L":{"LANGUE2_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L)))","LANGUE2_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\")","LANGUE2_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))","LANGUE3_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","LANGUE3_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE2_PAR1E":{"LANGUE2_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\")","LANGUE2_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))"},"LANGUE2_PAR1":{"LANGUE2_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (LANGUE2_PAR1E =\"1\") and (isnull(LANGUE2_PAR1))","LANGUE3_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","LANGUE3_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE2_PAR1L":{"LANGUE3_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L)))","LANGUE3_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE3_PAR1E":{"LANGUE3_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\")","LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))"},"LANGUE3_PAR1":{"LANGUE3_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (LANGUE3_PAR1E =\"1\") and (isnull(LANGUE3_PAR1))","LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE3_PAR1L":{"LANGUE4_PAR1E":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L)))","LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE4_PAR1E":{"LANGUE4_PAR1":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\")","LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"LANGUE4_PAR1":{"LANGUE4_PAR1L":"(not(isnull(LANGUE1_PAR1)) or not(isnull(LANGUE1_PAR1L))) and (not(isnull(LANGUE2_PAR1)) or not(isnull(LANGUE2_PAR1L))) and (not(isnull(LANGUE3_PAR1)) or not(isnull(LANGUE3_PAR1L))) and (LANGUE4_PAR1E =\"1\") and (isnull(LANGUE4_PAR1))"},"VIV_PAR1":{"ANNEE_DC_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1 =\"2\")","LOG_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","FR_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","COM_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","PAY_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","ETAB_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","FREQ_VU_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","FREQ_CONT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_EGO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_FRAT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1))","LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2B":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")"},"LOG_PAR1":{"FR_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","COM_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","PAY_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")","ETAB_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (cast(ANAI_PAR1,integer)<=1974)","FREQ_VU_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","FREQ_CONT_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))","PROX_EGO_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1))"},"FR_PAR1":{"COM_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1))","DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))","PAY_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"2\")"},"COM_PAR1":{"DEP_PAR1":"(isnull(RPPRENOMPAR1) or isnull(PRENOM_PAR1) or replace(upper(RPPRENOMPAR1),\" \",\"\") <> replace(upper(PRENOM_PAR1),\" \",\"\") or cast(RPANAISPAR1,integer) <> cast(ANAI_PAR1, integer)) and (VIV_PAR1=\"1\" or isnull(VIV_PAR1)) and (LOG_PAR1 =\"2\" or isnull(LOG_PAR1)) and (FR_PAR1 =\"1\" or isnull(FR_PAR1)) and (COM_PAR1 =\"\" or isnull(COM_PAR1))"},"EXIST_PAR2":{"PRENOM_PAR2":"(EXIST_PAR2 =\"1\")","ANAI_PAR2":"(EXIST_PAR2 =\"1\")","SEXE_PAR2":"(EXIST_PAR2 =\"1\")","LIEUNAIS_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PNAI_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")","NATIO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","TRAV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PROF_PAR2H":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","PROF_PAR2F":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","STATUT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","SAL_IND_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","SAL_FP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","SAL_ENT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")","LANGUE1_PAR2":"(EXIST_PAR2 =\"1\")","LANGUE1_PAR2L":"(EXIST_PAR2 =\"1\") and (isnull(LANGUE1_PAR2))","LANGUE2_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L)))","LANGUE2_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","LANGUE2_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","LANGUE3_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))","VIV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","ANNEE_DC_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2B":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"PRENOM_PAR2":{"LIEUNAIS_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PNAI_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")","NATIO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","TRAV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PROF_PAR2H":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","PROF_PAR2F":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","STATUT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","SAL_IND_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","SAL_FP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","SAL_ENT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")","VIV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","ANNEE_DC_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2B":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"ANAI_PAR2":{"LIEUNAIS_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PNAI_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")","NATIO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","TRAV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","PROF_PAR2H":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","PROF_PAR2F":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","STATUT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","SAL_IND_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","SAL_FP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","SAL_ENT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")","VIV_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer))","ANNEE_DC_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2B":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"LIEUNAIS_PAR2":{"PNAI_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (LIEUNAIS_PAR2 =\"2\")"},"SEXE_PAR2":{"PROF_PAR2H":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","PROF_PAR2F":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")"},"TRAV_PAR2":{"PROF_PAR2H":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"2\" or isnull(SEXE_PAR2))","PROF_PAR2F":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (SEXE_PAR2 =\"1\")","PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))","STATUT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2))","SAL_IND_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","SAL_FP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","SAL_ENT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")"},"PROF_PAR2H":{"PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))"},"PROF_PAR2F":{"PROF_PAR2_2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (isnull(PROF_PAR2F) and isnull(PROF_PAR2H))"},"STATUT_PAR2":{"SAL_IND_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"1\")","SAL_FP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"2\")","SAL_ENT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (TRAV_PAR2 =\"1\" or isnull(TRAV_PAR2)) and (STATUT_PAR2 =\"3\")"},"LANGUE1_PAR2":{"LANGUE1_PAR2L":"(EXIST_PAR2 =\"1\") and (isnull(LANGUE1_PAR2))","LANGUE2_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L)))","LANGUE2_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","LANGUE2_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","LANGUE3_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE1_PAR2L":{"LANGUE2_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L)))","LANGUE2_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","LANGUE2_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","LANGUE3_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE2_PAR2E":{"LANGUE2_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\")","LANGUE2_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))"},"LANGUE2_PAR2":{"LANGUE2_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (LANGUE2_PAR2E =\"1\") and (isnull(LANGUE2_PAR2))","LANGUE3_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE2_PAR2L":{"LANGUE3_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L)))","LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE3_PAR2E":{"LANGUE3_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\")","LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))"},"LANGUE3_PAR2":{"LANGUE3_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (LANGUE3_PAR2E =\"1\") and (isnull(LANGUE3_PAR2))","LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE3_PAR2L":{"LANGUE4_PAR2E":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L)))","LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE4_PAR2E":{"LANGUE4_PAR2":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\")","LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"LANGUE4_PAR2":{"LANGUE4_PAR2L":"(EXIST_PAR2 =\"1\") and (not(isnull(LANGUE1_PAR2)) or not(isnull(LANGUE1_PAR2L))) and (not(isnull(LANGUE2_PAR2)) or not(isnull(LANGUE2_PAR2L))) and (not(isnull(LANGUE3_PAR2)) or not(isnull(LANGUE3_PAR2L))) and (LANGUE4_PAR2E =\"1\") and (isnull(LANGUE4_PAR2))"},"VIV_PAR2":{"ANNEE_DC_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"2\")","LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2B":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"2\")","FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"RPPRENOMPAR2":{"LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))"},"RPANAISPAR2":{"LOG_PAR2A1":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))","LOG_PAR2A3":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and (VIV_PAR1 =\"1\" or isnull(VIV_PAR1))"},"LOG_PAR2A1":{"FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"LOG_PAR2A2":{"FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"LOG_PAR2A3":{"FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"LOG_PAR2B":{"FR_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")","ETAB_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (cast(ANAI_PAR2,integer)<=1974)","FREQ_VU_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","FREQ_CONT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_EGO_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))","PROX_FRAT_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false)))"},"FR_PAR2":{"COM_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2))","DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))","PAY_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"2\")"},"COM_PAR2":{"DEP_PAR2":"(EXIST_PAR2 =\"1\") and (isnull(RPPRENOMPAR2) or isnull(PRENOM_PAR2) or replace(upper(RPPRENOMPAR2),\" \",\"\") <> replace(upper(PRENOM_PAR2),\" \",\"\") or cast(RPANAISPAR2,integer) <> cast(ANAI_PAR2, integer)) and (VIV_PAR2 =\"1\" or isnull(VIV_PAR2)) and ((LOG_PAR2A3 and isnull(LOG_PAR2B)) or (LOG_PAR2B =\"2\" and (nvl(LOG_PAR2A1, false) = false and nvl(LOG_PAR2A2, false) = false and nvl(LOG_PAR2A3, false) = false))) and (FR_PAR2 =\"1\" or isnull(FR_PAR2)) and (COM_PAR2 =\"\" or isnull(COM_PAR2))"},"NB_FRERES":{"NB_FRERES_VIV1":"(NB_FRERES = 1)","NB_FRERES_VIV":"(NB_FRERES > 1)"},"NB_SOEURS":{"NB_SOEURS_VIV1":"(NB_SOEURS = 1)","NB_SOEURS_VIV":"(NB_SOEURS > 1)"},"VECU_JEUNESSE6":{"VECU_PLACE":"(VECU_JEUNESSE6 or VECU_JEUNESSE7)"},"VECU_JEUNESSE7":{"VECU_PLACE":"(VECU_JEUNESSE6 or VECU_JEUNESSE7)"},"VECU_PLACE":{"TYP_PLACE1":"(VECU_PLACE =\"1\")","TYP_PLACE2":"(VECU_PLACE =\"1\")","TYP_PLACE3":"(VECU_PLACE =\"1\")","TYP_PLACE4":"(VECU_PLACE =\"1\")"},"FINETU":{"ANNEE_FINETU":"(FINETU=\"1\")","AGE_FINETU":"(FINETU=\"1\" and (ANNEE_FINETU =\"\" or isnull(ANNEE_FINETU)))"},"ANNEE_FINETU":{"AGE_FINETU":"(FINETU=\"1\" and (ANNEE_FINETU =\"\" or isnull(ANNEE_FINETU)))"},"TRAVACT":{"DEJATRAV1":"(TRAVACT =\"1\")","DEJATRAV2":"(isnull(TRAVACT) or TRAVACT =\"2\")","ANNEE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\"))","AGE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))"},"DEJATRAV1":{"ANNEE_EMPLOI1":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","AGE_EMPLOI1":"((DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\"))","ANNEE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\"))","AGE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))","INTER_TRAV1":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","INTER_TRAV2":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","INTER_TRAV3":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")"},"DEJATRAV2":{"ANNEE_EMPLOI1":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","AGE_EMPLOI1":"((DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\"))","ANNEE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\"))","AGE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))","INTER_TRAV1":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","INTER_TRAV2":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")","INTER_TRAV3":"(DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\")"},"ANNEE_EMPLOI1":{"AGE_EMPLOI1":"((DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (isnull(ANNEE_EMPLOI1) or ANNEE_EMPLOI1=\"\"))"},"ANNEE_FINEMP":{"AGE_FINEMP":"(TRAVACT=\"2\" and (DEJATRAV1 =\"1\" or DEJATRAV2 =\"1\") and (ANNEE_FINEMP =\"\" or isnull(ANNEE_FINEMP)))"},"PRENOM_FIN":{"PRENOM_PROX":"(PRENOM_FIN =\"2\")","POSTENQ":"(PRENOM_FIN =\"1\")","POSTENQ_CONT1":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","POSTENQ_CONT2":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","POSTENQ_MAIL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT1)","POSTENQ_TEL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT2)"},"POSTENQ":{"POSTENQ_CONT1":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","POSTENQ_CONT2":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\")","POSTENQ_MAIL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT1)","POSTENQ_TEL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT2)"},"POSTENQ_CONT1":{"POSTENQ_MAIL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT1)"},"POSTENQ_CONT2":{"POSTENQ_TEL":"(PRENOM_FIN =\"1\") and (POSTENQ =\"1\") and (POSTENQ_CONT2)"}},"resizing":{"VAL_PRENOM":{"size":"count(VAL_PRENOM)","variables":["COUPLE","RAISON_VIE_CJT","PRECIS_VIECJT","PROX_VIE_CJT","PRENOM_C","DATNAIS_C","SEXE_CH","LIEUNAIS_CH","DNAI_CH","PNAI_CH","TRAV_CH_C","TRAV_CH_P","PROF_CH1","PROF_CH2","PROF_C2H","STATUT_CH","SAL_IND_CH","SAL_FP_CH","SAL_ENT_CH","SEXE_CF","LIEUNAIS_CF","DNAI_CF","PNAI_CF","TRAV_CF_C","TRAV_CF_P","PROF_CF1","PROF_CF2","PROF_C2F","STATUT_CF","SAL_IND_CF","SAL_FP_CF","SAL_ENT_CF","ANNEE_U","PACS","ANNEE_PACS","MARI","ANNEE_MARI","SEPARE","ANNEE_S","ANNEE_D","VECU_C","ENFAV_C","NBENFAV_C","NBENFAV_VENU_C1","NBENFAV_VENU_C","ENF21_AUTPAR_C1","ENF21_AUTPAR_C2","ENF21_AUTPAR_C3","ENF21_AUTPAR_C4","AUT_UNION","NB_AUT_UNION","PRENOM_U1","SEXE_U1H","SEXE_U1F","ANNEE_U1","PACS_U1","ANNEE_PACS_U1","MARI_U1","ANNEE_MARI_U1","SEPARE_U1","ANNEE_S_U1","ANNEE_D_U1","ENFAV_C_U1","NBENFAV_C_U1","NBENFAV_C1_VENU_U1","NBENFAV_C_VENU_U1","AUT_U2","PRENOM_U2","SEXE_U2H","SEXE_U2F","ANNEE_U2","PACS_U2","ANNEE_PACS_U2","MARI_U2","ANNEE_MARI_U2","SEPARE_U2","ANNEE_S_U2","ANNEE_D_U2","ENFAV_C_U2","NBENFAV_C_U2","NBENFAV_C1_VENU_U2","NBENFAV_C_VENU_U2","ENF","NBENF","NBENF_ADOP_UN","NBENF_ADOP","LANGUE1_ENF","LANGUE1_ENFL","LANGUE2_ENFE","LANGUE2_ENF","LANGUE2_ENFL","LANGUE3_ENFE","LANGUE3_ENF","LANGUE3_ENFL","LANGUE4_ENFE","LANGUE4_ENF","LANGUE4_ENFL","NBENFLOG_UN","NBENFLOG","CBENFLOG","NBENFAIL_UN","CBENFAIL","PRENOM_ENFLOG1","SEXE_ENFLOG1","ANAI_ENFLOG1","NEFRANCE_ENFLOG1","ADOPT_ENFLOG1","ANADOPT_ENFLOG1","PARENT_VIT_ENFLOG1","PARENT_FR_ENFLOG1","PARENT_COM_ENFLOG1","PARENT_DEP_ENFLOG1","PARENT_PAY_ENFLOG1","PARENT_FREQ_ENFLOG1","PARENT_DORT_ENFLOG1","PARENT_VECU_ENFLOG1","SEP_AUT_PAR_ENFLOG1","RESID_ENFLOG1","SANTE_ENFLOG1","ASE_ENFLOG1","PRENOM_ENFLOG2","SEXE_ENFLOG2","ANAI_ENFLOG2","NEFRANCE_ENFLOG2","ADOPT_ENFLOG2","ANADOPT_ENFLOG2","PARENT_VIT_ENFLOG2","PARENT_FR_ENFLOG2","PARENT_COM_ENFLOG2","PARENT_DEP_ENFLOG2","PARENT_PAY_ENFLOG2","PARENT_FREQ_ENFLOG2","PARENT_DORT_ENFLOG2","PARENT_VECU_ENFLOG2","SEP_AUT_PAR_ENFLOG2","RESID_ENFLOG2","SANTE_ENFLOG2","ASE_ENFLOG2","PRENOM_ENFLOG3","SEXE_ENFLOG3","ANAI_ENFLOG3","NEFRANCE_ENFLOG3","ADOPT_ENFLOG3","ANADOPT_ENFLOG3","PARENT_VIT_ENFLOG3","PARENT_FR_ENFLOG3","PARENT_COM_ENFLOG3","PARENT_DEP_ENFLOG3","PARENT_PAY_ENFLOG3","PARENT_FREQ_ENFLOG3","PARENT_DORT_ENFLOG3","PARENT_VECU_ENFLOG3","SEP_AUT_PAR_ENFLOG3","RESID_ENFLOG3","SANTE_ENFLOG3","ASE_ENFLOG3","PRENOM_ENFLOG4","SEXE_ENFLOG4","ANAI_ENFLOG4","NEFRANCE_ENFLOG4","ADOPT_ENFLOG4","ANADOPT_ENFLOG4","PARENT_VIT_ENFLOG4","PARENT_FR_ENFLOG4","PARENT_COM_ENFLOG4","PARENT_DEP_ENFLOG4","PARENT_PAY_ENFLOG4","PARENT_FREQ_ENFLOG4","PARENT_DORT_ENFLOG4","PARENT_VECU_ENFLOG4","SEP_AUT_PAR_ENFLOG4","RESID_ENFLOG4","SANTE_ENFLOG4","ASE_ENFLOG4","PRENOM_ENFLOG5","SEXE_ENFLOG5","ANAI_ENFLOG5","NEFRANCE_ENFLOG5","ADOPT_ENFLOG5","ANADOPT_ENFLOG5","PARENT_VIT_ENFLOG5","PARENT_FR_ENFLOG5","PARENT_COM_ENFLOG5","PARENT_DEP_ENFLOG5","PARENT_PAY_ENFLOG5","PARENT_FREQ_ENFLOG5","PARENT_DORT_ENFLOG5","PARENT_VECU_ENFLOG5","SEP_AUT_PAR_ENFLOG5","RESID_ENFLOG5","SANTE_ENFLOG5","ASE_ENFLOG5","PRENOM_ENFLOG6","SEXE_ENFLOG6","ANAI_ENFLOG6","NEFRANCE_ENFLOG6","ADOPT_ENFLOG6","ANADOPT_ENFLOG6","PARENT_VIT_ENFLOG6","PARENT_FR_ENFLOG6","PARENT_COM_ENFLOG6","PARENT_DEP_ENFLOG6","PARENT_PAY_ENFLOG6","PARENT_FREQ_ENFLOG6","PARENT_DORT_ENFLOG6","PARENT_VECU_ENFLOG6","SEP_AUT_PAR_ENFLOG6","RESID_ENFLOG6","SANTE_ENFLOG6","ASE_ENFLOG6","PRENOM_ENFLOG7","SEXE_ENFLOG7","ANAI_ENFLOG7","NEFRANCE_ENFLOG7","ADOPT_ENFLOG7","ANADOPT_ENFLOG7","PARENT_VIT_ENFLOG7","PARENT_FR_ENFLOG7","PARENT_COM_ENFLOG7","PARENT_DEP_ENFLOG7","PARENT_PAY_ENFLOG7","PARENT_FREQ_ENFLOG7","PARENT_DORT_ENFLOG7","PARENT_VECU_ENFLOG7","SEP_AUT_PAR_ENFLOG7","RESID_ENFLOG7","SANTE_ENFLOG7","ASE_ENFLOG7","PRENOM_ENFLOG8","SEXE_ENFLOG8","ANAI_ENFLOG8","NEFRANCE_ENFLOG8","ADOPT_ENFLOG8","ANADOPT_ENFLOG8","PARENT_VIT_ENFLOG8","PARENT_FR_ENFLOG8","PARENT_COM_ENFLOG8","PARENT_DEP_ENFLOG8","PARENT_PAY_ENFLOG8","PARENT_FREQ_ENFLOG8","PARENT_DORT_ENFLOG8","PARENT_VECU_ENFLOG8","SEP_AUT_PAR_ENFLOG8","RESID_ENFLOG8","SANTE_ENFLOG8","ASE_ENFLOG8","PRENOM_ENFAIL1","SEXE_ENFAIL1","ANAI_ENFAIL1","NEFRANCE_ENFAIL1","ADOPT_ENFAIL1","ANADOPT_ENFAIL1","PARENT_VIT_ENFAIL1","PARENT_VECU_ENFAIL1","DC_ENFAIL1","AG_DC_ENFAIL1","AG_DEPART_ENFAIL1","PARENT_FREQ_ENFAIL1","FR_ENFAIL1","COM_ENFAIL1","DEP_ENFAIL1","PAY_ENFAIL1","LOG_ENFAIL1","AUT_PAR_ENFAIL1","DORT_ENFAIL1","SEP_AUT_PAR_ENFAIL1","RESID_ENFAIL1","SANTE_ENFAIL1","ASE_ENFAIL1","PRENOM_ENFAIL2","SEXE_ENFAIL2","ANAI_ENFAIL2","NEFRANCE_ENFAIL2","ADOPT_ENFAIL2","ANADOPT_ENFAIL2","PARENT_VIT_ENFAIL2","PARENT_VECU_ENFAIL2","DC_ENFAIL2","AG_DC_ENFAIL2","AG_DEPART_ENFAIL2","PARENT_FREQ_ENFAIL2","FR_ENFAIL2","COM_ENFAIL2","DEP_ENFAIL2","PAY_ENFAIL2","LOG_ENFAIL2","AUT_PAR_ENFAIL2","DORT_ENFAIL2","SEP_AUT_PAR_ENFAIL2","RESID_ENFAIL2","SANTE_ENFAIL2","ASE_ENFAIL2","PRENOM_ENFAIL3","SEXE_ENFAIL3","ANAI_ENFAIL3","NEFRANCE_ENFAIL3","ADOPT_ENFAIL3","ANADOPT_ENFAIL3","PARENT_VIT_ENFAIL3","PARENT_VECU_ENFAIL3","DC_ENFAIL3","AG_DC_ENFAIL3","AG_DEPART_ENFAIL3","PARENT_FREQ_ENFAIL3","FR_ENFAIL3","COM_ENFAIL3","DEP_ENFAIL3","PAY_ENFAIL3","LOG_ENFAIL3","AUT_PAR_ENFAIL3","DORT_ENFAIL3","SEP_AUT_PAR_ENFAIL3","RESID_ENFAIL3","SANTE_ENFAIL3","ASE_ENFAIL3","PRENOM_ENFAIL4","SEXE_ENFAIL4","ANAI_ENFAIL4","NEFRANCE_ENFAIL4","ADOPT_ENFAIL4","ANADOPT_ENFAIL4","PARENT_VIT_ENFAIL4","PARENT_VECU_ENFAIL4","DC_ENFAIL4","AG_DC_ENFAIL4","AG_DEPART_ENFAIL4","PARENT_FREQ_ENFAIL4","FR_ENFAIL4","COM_ENFAIL4","DEP_ENFAIL4","PAY_ENFAIL4","LOG_ENFAIL4","AUT_PAR_ENFAIL4","DORT_ENFAIL4","SEP_AUT_PAR_ENFAIL4","RESID_ENFAIL4","SANTE_ENFAIL4","ASE_ENFAIL4","PRENOM_ENFAIL5","SEXE_ENFAIL5","ANAI_ENFAIL5","NEFRANCE_ENFAIL5","ADOPT_ENFAIL5","ANADOPT_ENFAIL5","PARENT_VIT_ENFAIL5","PARENT_VECU_ENFAIL5","DC_ENFAIL5","AG_DC_ENFAIL5","AG_DEPART_ENFAIL5","PARENT_FREQ_ENFAIL5","FR_ENFAIL5","COM_ENFAIL5","DEP_ENFAIL5","PAY_ENFAIL5","LOG_ENFAIL5","AUT_PAR_ENFAIL5","DORT_ENFAIL5","SEP_AUT_PAR_ENFAIL5","RESID_ENFAIL5","SANTE_ENFAIL5","ASE_ENFAIL5","PRENOM_ENFAIL6","SEXE_ENFAIL6","ANAI_ENFAIL6","NEFRANCE_ENFAIL6","ADOPT_ENFAIL6","ANADOPT_ENFAIL6","PARENT_VIT_ENFAIL6","PARENT_VECU_ENFAIL6","DC_ENFAIL6","AG_DC_ENFAIL6","AG_DEPART_ENFAIL6","PARENT_FREQ_ENFAIL6","FR_ENFAIL6","COM_ENFAIL6","DEP_ENFAIL6","PAY_ENFAIL6","LOG_ENFAIL6","AUT_PAR_ENFAIL6","DORT_ENFAIL6","SEP_AUT_PAR_ENFAIL6","RESID_ENFAIL6","SANTE_ENFAIL6","ASE_ENFAIL6","PRENOM_ENFAIL7","SEXE_ENFAIL7","ANAI_ENFAIL7","NEFRANCE_ENFAIL7","ADOPT_ENFAIL7","ANADOPT_ENFAIL7","PARENT_VIT_ENFAIL7","PARENT_VECU_ENFAIL7","DC_ENFAIL7","AG_DC_ENFAIL7","AG_DEPART_ENFAIL7","PARENT_FREQ_ENFAIL7","FR_ENFAIL7","COM_ENFAIL7","DEP_ENFAIL7","PAY_ENFAIL7","LOG_ENFAIL7","AUT_PAR_ENFAIL7","DORT_ENFAIL7","SEP_AUT_PAR_ENFAIL7","RESID_ENFAIL7","SANTE_ENFAIL7","ASE_ENFAIL7","PRENOM_ENFAIL8","SEXE_ENFAIL8","ANAI_ENFAIL8","NEFRANCE_ENFAIL8","ADOPT_ENFAIL8","ANADOPT_ENFAIL8","PARENT_VIT_ENFAIL8","PARENT_VECU_ENFAIL8","DC_ENFAIL8","AG_DC_ENFAIL8","AG_DEPART_ENFAIL8","PARENT_FREQ_ENFAIL8","FR_ENFAIL8","COM_ENFAIL8","DEP_ENFAIL8","PAY_ENFAIL8","LOG_ENFAIL8","AUT_PAR_ENFAIL8","DORT_ENFAIL8","SEP_AUT_PAR_ENFAIL8","RESID_ENFAIL8","SANTE_ENFAIL8","ASE_ENFAIL8","PETIT_ENF","NB_PETIT_ENF","AG_PETIT_ENF","FREQ_VU_PETIT_ENF1","FREQ_VU_PETIT_ENF2","FREQ_VU_PETIT_ENF3","FREQ_VU_PETIT_ENF4","FREQ_CONT_PETIT_ENF1","FREQ_CONT_PETIT_ENF2","FREQ_CONT_PETIT_ENF3","FREQ_CONT_PETIT_ENF4","AIDE_APPORT1","AIDE_APPORT2","AIDE_APPORT3","AIDE_APPORT4","AIDE_APPORT5","QUI_AID_APP_1A1","QUI_AID_APP_1A2","QUI_AID_APP_1A3","QUI_AID_APP_1A4","QUI_AID_APP_1AD","QUI_AID_APP_1B1","QUI_AID_APP_1B2","QUI_AID_APP_1B3","QUI_AID_APP_1BD","QUI_AID_APP_1C1","QUI_AID_APP_1C2","QUI_AID_APP_1C3","QUI_AID_APP_1CD","QUI_AID_APP_1D1","QUI_AID_APP_1D2","QUI_AID_APP_1DD","QUI_AID_APP_2A1","QUI_AID_APP_2A2","QUI_AID_APP_2A3","QUI_AID_APP_2A4","QUI_AID_APP_2AD","QUI_AID_APP_2B1","QUI_AID_APP_2B2","QUI_AID_APP_2B3","QUI_AID_APP_2BD","QUI_AID_APP_2C1","QUI_AID_APP_2C2","QUI_AID_APP_2C3","QUI_AID_APP_2CD","QUI_AID_APP_2D1","QUI_AID_APP_2D2","QUI_AID_APP_2DD","QUI_AID_APP_3A1","QUI_AID_APP_3A2","QUI_AID_APP_3A3","QUI_AID_APP_3A4","QUI_AID_APP_3AD","QUI_AID_APP_3B1","QUI_AID_APP_3B2","QUI_AID_APP_3B3","QUI_AID_APP_3BD","QUI_AID_APP_3C1","QUI_AID_APP_3C2","QUI_AID_APP_3C3","QUI_AID_APP_3CD","QUI_AID_APP_3D1","QUI_AID_APP_3D2","QUI_AID_APP_3DD","QUI_AID_APP_4A1","QUI_AID_APP_4A2","QUI_AID_APP_4A3","QUI_AID_APP_4A4","QUI_AID_APP_4AD","QUI_AID_APP_4B1","QUI_AID_APP_4B2","QUI_AID_APP_4B3","QUI_AID_APP_4BD","QUI_AID_APP_4C1","QUI_AID_APP_4C2","QUI_AID_APP_4C3","QUI_AID_APP_4CD","QUI_AID_APP_4D1","QUI_AID_APP_4D2","QUI_AID_APP_4DD","AIDE_RECUE1","AIDE_RECUE2","AIDE_RECUE3","AIDE_RECUE4","QUI_AID_REC_1A1","QUI_AID_REC_1A2","QUI_AID_REC_1A3","QUI_AID_REC_1A4","QUI_AID_REC_1AD","QUI_AID_REC_1B1","QUI_AID_REC_1B2","QUI_AID_REC_1B3","QUI_AID_REC_1BD","QUI_AID_REC_1C1","QUI_AID_REC_1C2","QUI_AID_REC_1C3","QUI_AID_REC_1CD","QUI_AID_REC_1D1","QUI_AID_REC_1D2","QUI_AID_REC_1DD","QUI_AID_REC_2A1","QUI_AID_REC_2A2","QUI_AID_REC_2A3","QUI_AID_REC_2A4","QUI_AID_REC_2AD","QUI_AID_REC_2B1","QUI_AID_REC_2B2","QUI_AID_REC_2B3","QUI_AID_REC_2BD","QUI_AID_REC_2C1","QUI_AID_REC_2C2","QUI_AID_REC_2C3","QUI_AID_REC_2CD","QUI_AID_REC_2D1","QUI_AID_REC_2D2","QUI_AID_REC_2DD","QUI_AID_REC_3A1","QUI_AID_REC_3A2","QUI_AID_REC_3A3","QUI_AID_REC_3A4","QUI_AID_REC_3AD","QUI_AID_REC_3B1","QUI_AID_REC_3B2","QUI_AID_REC_3B3","QUI_AID_REC_3BD","QUI_AID_REC_3C1","QUI_AID_REC_3C2","QUI_AID_REC_3C3","QUI_AID_REC_3CD","QUI_AID_REC_3D1","QUI_AID_REC_3D2","QUI_AID_REC_3DD","LANGUE1_ENTOUE","LANGUE1_ENTOU","LANGUE1_ENTOUL","LANGUE2_ENTOUE","LANGUE2_ENTOU","LANGUE2_ENTOUL","LANGUE3_ENTOUE","LANGUE3_ENTOU","LANGUE3_ENTOUL","PRENOM_PAR1","ANAI_PAR1","SEXE_PAR1","LIEUNAIS_PAR1","PNAI_PAR1","NATIO_PAR1","TRAV_PAR1","PROF_PAR1H","PROF_PAR1F","PROF_PAR1_2","STATUT_PAR1","SAL_IND_PAR1","SAL_FP_PAR1","SAL_ENT_PAR1","LANGUE1_PAR1","LANGUE1_PAR1L","LANGUE2_PAR1E","LANGUE2_PAR1","LANGUE2_PAR1L","LANGUE3_PAR1E","LANGUE3_PAR1","LANGUE3_PAR1L","LANGUE4_PAR1E","LANGUE4_PAR1","LANGUE4_PAR1L","VIV_PAR1","ANNEE_DC_PAR1","LOG_PAR1","FR_PAR1","COM_PAR1","DEP_PAR1","PAY_PAR1","ETAB_PAR1","FREQ_VU_PAR1","FREQ_CONT_PAR1","PROX_EGO_PAR1","PROX_FRAT_PAR1","EXIST_PAR2","PRENOM_PAR2","ANAI_PAR2","SEXE_PAR2","LIEUNAIS_PAR2","PNAI_PAR2","NATIO_PAR2","TRAV_PAR2","PROF_PAR2H","PROF_PAR2F","PROF_PAR2_2","STATUT_PAR2","SAL_IND_PAR2","SAL_FP_PAR2","SAL_ENT_PAR2","LANGUE1_PAR2","LANGUE1_PAR2L","LANGUE2_PAR2E","LANGUE2_PAR2","LANGUE2_PAR2L","LANGUE3_PAR2E","LANGUE3_PAR2","LANGUE3_PAR2L","LANGUE4_PAR2E","LANGUE4_PAR2","LANGUE4_PAR2L","VIV_PAR2","ANNEE_DC_PAR2","LOG_PAR2A1","LOG_PAR2A2","LOG_PAR2A3","LOG_PAR2B","FR_PAR2","COM_PAR2","DEP_PAR2","PAY_PAR2","ETAB_PAR2","FREQ_VU_PAR2","FREQ_CONT_PAR2","PROX_EGO_PAR2","PROX_FRAT_PAR2","NB_FRERES","NB_FRERES_VIV1","NB_FRERES_VIV","NB_SOEURS","NB_SOEURS_VIV1","NB_SOEURS_VIV","AG_DEP_PARENT","VECU_JEUNESSE1","VECU_JEUNESSE2","VECU_JEUNESSE3","VECU_JEUNESSE4","VECU_JEUNESSE5","VECU_JEUNESSE6","VECU_JEUNESSE7","VECU_PLACE","TYP_PLACE1","TYP_PLACE2","TYP_PLACE3","TYP_PLACE4","HEBERG","FINETU","ANNEE_FINETU","AGE_FINETU","TRAVACT","DEJATRAV1","DEJATRAV2","ANNEE_EMPLOI1","AGE_EMPLOI1","ANNEE_FINEMP","AGE_FINEMP","INTER_TRAV1","INTER_TRAV2","INTER_TRAV3","PRENOM_FIN","PRENOM_PROX","POSTENQ","POSTENQ_CONT1","POSTENQ_CONT2","POSTENQ_MAIL","POSTENQ_TEL"]}}} \ No newline at end of file