<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Group</LimeSurveyDocType>
 <DBVersion>359</DBVersion>
 <languages>
  <language>en</language>
 </languages>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[80509]]></gid>
    <sid><![CDATA[384793]]></sid>
    <group_name><![CDATA[G1]]></group_name>
    <group_order><![CDATA[0]]></group_order>
    <description/>
    <language><![CDATA[en]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[2332470]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[checkbox1]]></title>
    <question><![CDATA[<h1>Please list five entries and select<strong> at least one</strong> standout category.<br /> </h1>
]]></question>
    <preg/>
    <help><![CDATA[<link href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" /><script src="//code.jquery.com/jquery-1.10.2.js"></script><script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="/resources/demos/style.css" rel="stylesheet" /><script>
$(document).ready(function() {
  
  var url="/upload/surveys/384793/files/name.js.js";
  $.when(
    //then load the JavaScript file
    $.getScript(url),
    $.Deferred(function( deferred ){
            $( deferred.resolve );
        })
  ).done(function(){
                $('td.answer_cell_1 > input[type="text"]').autocomplete({
                    source: function(request, response) {
        var term = request.term;  // request.term = user query
        var data = handleAutocomplete(term); //your custom handling
                      data.sort(function(a,b) {
    a = a.toLowerCase();
    b = b.toLowerCase();
    if( a == b) return 0;
    return a < b ? -1 : 1;
});
        response(data.slice(0,10));
    }
});

function recursiveListUpdate(autofill, keywords) {
    newList = [];
    autofill.forEach(function(element) {
        if (element.toLowerCase().indexOf(keywords[counter].toLowerCase())>= 0) {
            newList.push(decodeURI(element)); //if any %20, etc symbols
        }
    });
    counter++;
    if (counter == keywords.length) {
        return newList;
    }
    return recursiveListUpdate(newList, keywords);
}

function handleAutocomplete(term) {
    var str = term; // get the "keywords"
    var keywordsFromNameInput = str.split(" "); // split them into a list
    counter = 0 ; // set counter for keywords.length
    // recursively get new list that contains the given keywords no matter the order
    return recursiveListUpdate(autofill, keywordsFromNameInput);
}

  $.ui.autocomplete.prototype._renderItem = function (ul, item) {
        var t = String(item.value).replace(
                new RegExp(this.term, "gi"),
                "<strong>$&</strong>");
        return $("<li></li>")
            .data("item.autocomplete", item)
            .append("<a>" + t + "</a>")
            .appendTo(ul);
    };
});
});
</script>
<link href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" /><script src="//code.jquery.com/jquery-1.10.2.js"></script><script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="/resources/demos/style.css" rel="stylesheet" /><script>
$(document).ready(function() {
  var url="/upload/surveys/384793/files/city.js.js";
  $.when(
    //then load the JavaScript file
    $.getScript(url),
    $.Deferred(function( deferred ){
            $( deferred.resolve );
        })
  ).done(function(){
                $('td.answer_cell_2 > input[type="text"]').autocomplete({
                    source: function(request, response) {
        var term = request.term;  // request.term = user query
        var data = handleAutocomplete(term); //your custom handling
                      data.sort(function(a,b) {
    a = a.toLowerCase();
    b = b.toLowerCase();
    if( a == b) return 0;
    return a < b ? -1 : 1;
});
        response(data.slice(0,10));
    }
});

function recursiveListUpdate(allcities, keywords) {
    newList = [];
    allcities.forEach(function(element) {
        if (element.toLowerCase().indexOf(keywords[counter].toLowerCase())>= 0) {
            newList.push(decodeURI(element)); //if any %20, etc symbols
        }
    });
    counter++;
    if (counter == keywords.length) {
        return newList;
    }
    return recursiveListUpdate(newList, keywords);
}

function handleAutocomplete(term) {
    var str = term; // get the "keywords"
    var keywordsFromNameInput = str.split(" "); // split them into a list
    counter =0 ; // set counter for keywords.length
    // recursively get new list that contains the given keywords no matter the order
    return recursiveListUpdate(city, keywordsFromNameInput);
}

  $.ui.autocomplete.prototype._renderItem = function (ul, item) {
        var t = String(item.value).replace(
                new RegExp(this.term, "gi"),
                "<strong>$&</strong>");
        return $("<li></li>")
            .data("item.autocomplete", item)
            .append("<a>" + t + "</a>")
            .appendTo(ul);
    };
});
});
</script><script>
</script>
<link href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" /><script src="//code.jquery.com/jquery-1.10.2.js"></script><script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="/resources/demos/style.css" rel="stylesheet" /><script>
$(document).ready(function() {
  var url="/upload/surveys/384793/files/country.js.js";
  $.when(
    //then load the JavaScript file
    $.getScript(url),
    $.Deferred(function( deferred ){
            $( deferred.resolve );
        })
  ).done(function(){
                $('td.answer_cell_3 > input[type="text"]').autocomplete({
                    source: function(request, response) {
        var term = request.term;  // request.term = user query
        var data = handleAutocomplete(term); //your custom handling
                      data.sort(function(a,b) {
    a = a.toLowerCase();
    b = b.toLowerCase();
    if( a == b) return 0;
    return a < b ? -1 : 1;
});
        response(data.slice(0,10));
    }
});

function recursiveListUpdate(allcities, keywords) {
    newList = [];
    allcities.forEach(function(element) {
        if (element.toLowerCase().indexOf(keywords[counter].toLowerCase())>= 0) {
            newList.push(decodeURI(element)); //if any %20, etc symbols
        }
    });
    counter++;
    if (counter == keywords.length) {
        return newList;
    }
    return recursiveListUpdate(newList, keywords);
}

function handleAutocomplete(term) {
    var str = term; // get the "keywords"
    var keywordsFromNameInput = str.split(" "); // split them into a list
    counter =0 ; // set counter for keywords.length
    // recursively get new list that contains the given keywords no matter the order
    return recursiveListUpdate(country, keywordsFromNameInput);
}

  $.ui.autocomplete.prototype._renderItem = function (ul, item) {
        var t = String(item.value).replace(
                new RegExp(this.term, "gi"),
                "<strong>$&</strong>");
        return $("<li></li>")
            .data("item.autocomplete", item)
            .append("<a>" + t + "</a>")
            .appendTo(ul);
    };
});
});
</script><script>
$(document).on('ready pjax:scriptcomplete',function(){
		var thisQuestion = $('#question{2332470}');
  // Hide the text inputs
			$('.answer-item.answer_cell_4 input:text', thisQuestion).css({
				'position': 'absolute',
				'left': '-9999em'
			});
  
			// Insert checkboxes
			$('.answer-item.answer_cell_4', thisQuestion).each(function(i) {
				var thisSGQ = $('input:text:eq(0)', this).attr('id').replace(/answer/, '');
				$('label', this).before('<input class="" id="inserted_'+thisSGQ+'" value="NA" type="checkbox" name="inserted_'+thisSGQ+'" />');
				if($('input:text:eq(0)', this).val() == 1) {
					$('input:checkbox:eq(0)', this).prop('checked', true);
				}
				$('label:eq(0)', this).attr('for', 'inserted_'+thisSGQ+'');
			}).removeClass('text-item').addClass('checkbox-item custom-checkbox-item exclusive-item');
		  
			// Listener on the checkboxes
			$('.custom-checkbox-item input[type="checkbox"]', thisQuestion).on('change', function(e) {
				var thisRow = $(this).closest('tr.subquestion-list');
				var thisCell = $(this).closest('td.answer-item');
				if($(this).is(':checked')) {
					$('input[type="text"]', thisCell).val('1');
					$('.non-exclusive-item input[type="text"]', thisRow).val('');
				}
				else {
					$('input[type="text"]', thisCell).val('');
				}
	});	

		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});

		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script><script>

$(document).on('ready pjax:scriptcomplete',function(){
		var thisQuestion = $('#question{2332470}');
  // Hide the text inputs
			$('.answer-item.answer_cell_5 input:text', thisQuestion).css({
				'position': 'absolute',
				'left': '-9999em'
			});
  
			// Insert checkboxes
			$('.answer-item.answer_cell_5', thisQuestion).each(function(i) {
				var thisSGQ = $('input:text:eq(0)', this).attr('id').replace(/answer/, '');
				$('label', this).before('<input class="" id="inserted_'+thisSGQ+'" value="NA" type="checkbox" name="inserted_'+thisSGQ+'" />');
				if($('input:text:eq(0)', this).val() == 1) {
					$('input:checkbox:eq(0)', this).prop('checked', true);
				}
				$('label:eq(0)', this).attr('for', 'inserted_'+thisSGQ+'');
			}).removeClass('text-item').addClass('checkbox-item custom-checkbox-item exclusive-item');
		  
			// Listener on the checkboxes
			$('.custom-checkbox-item input[type="checkbox"]', thisQuestion).on('change', function(e) {
				var thisRow = $(this).closest('tr.subquestion-list');
				var thisCell = $(this).closest('td.answer-item');
				if($(this).is(':checked')) {
					$('input[type="text"]', thisCell).val('1');
					$('.non-exclusive-item input[type="text"]', thisRow).val('');
				}
				else {
					$('input[type="text"]', thisCell).val('');
				}
	});	

		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});

		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script><script>
$(document).on('ready pjax:scriptcomplete',function(){
		var thisQuestion = $('#question{2332470}');
  // Hide the text inputs
			$('.answer-item.answer_cell_6 input:text', thisQuestion).css({
				'position': 'absolute',
				'left': '-9999em'
			});
  
			// Insert checkboxes
			$('.answer-item.answer_cell_6', thisQuestion).each(function(i) {
				var thisSGQ = $('input:text:eq(0)', this).attr('id').replace(/answer/, '');
				$('label', this).before('<input class="" id="inserted_'+thisSGQ+'" value="NA" type="checkbox" name="inserted_'+thisSGQ+'" />');
				if($('input:text:eq(0)', this).val() == 1) {
					$('input:checkbox:eq(0)', this).prop('checked', true);
				}
				$('label:eq(0)', this).attr('for', 'inserted_'+thisSGQ+'');
			}).removeClass('text-item').addClass('checkbox-item custom-checkbox-item exclusive-item');
		  
			// Listener on the checkboxes
			$('.custom-checkbox-item input[type="checkbox"]', thisQuestion).on('change', function(e) {
				var thisRow = $(this).closest('tr.subquestion-list');
				var thisCell = $(this).closest('td.answer-item');
				if($(this).is(':checked')) {
					$('input[type="text"]', thisCell).val('1');
					$('.non-exclusive-item input[type="text"]', thisRow).val('');
				}
				else {
					$('input[type="text"]', thisCell).val('');
				}
	});	

		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});

		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script><script>

$(document).on('ready pjax:scriptcomplete',function(){
		var thisQuestion = $('#question{2332470}');
  // Hide the text inputs
			$('.answer-item.answer_cell_7 input:text', thisQuestion).css({
				'position': 'absolute',
				'left': '-9999em'
			});
  
			// Insert checkboxes
			$('.answer-item.answer_cell_7', thisQuestion).each(function(i) {
				var thisSGQ = $('input:text:eq(0)', this).attr('id').replace(/answer/, '');
				$('label', this).before('<input class="" id="inserted_'+thisSGQ+'" value="NA" type="checkbox" name="inserted_'+thisSGQ+'" />');
				if($('input:text:eq(0)', this).val() == 1) {
					$('input:checkbox:eq(0)', this).prop('checked', true);
				}
				$('label:eq(0)', this).attr('for', 'inserted_'+thisSGQ+'');
			}).removeClass('text-item').addClass('checkbox-item custom-checkbox-item exclusive-item');
		  
			// Listener on the checkboxes
			$('.custom-checkbox-item input[type="checkbox"]', thisQuestion).on('change', function(e) {
				var thisRow = $(this).closest('tr.subquestion-list');
				var thisCell = $(this).closest('td.answer-item');
				if($(this).is(':checked')) {
					$('input[type="text"]', thisCell).val('1');
					$('.non-exclusive-item input[type="text"]', thisRow).val('');
				}
				else {
					$('input[type="text"]', thisCell).val('');
				}
	});	

		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});

		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script><script>
$(document).on('ready pjax:scriptcomplete',function(){
		var thisQuestion = $('#question{2332470}');
  // Hide the text inputs
			$('.answer-item.answer_cell_8 input:text', thisQuestion).css({
				'position': 'absolute',
				'left': '-9999em'
			});
  
			// Insert checkboxes
			$('.answer-item.answer_cell_8', thisQuestion).each(function(i) {
				var thisSGQ = $('input:text:eq(0)', this).attr('id').replace(/answer/, '');
				$('label', this).before('<input class="" id="inserted_'+thisSGQ+'" value="NA" type="checkbox" name="inserted_'+thisSGQ+'" />');
				if($('input:text:eq(0)', this).val() == 1) {
					$('input:checkbox:eq(0)', this).prop('checked', true);
				}
				$('label:eq(0)', this).attr('for', 'inserted_'+thisSGQ+'');
			}).removeClass('text-item').addClass('checkbox-item custom-checkbox-item exclusive-item');
		  
			// Listener on the checkboxes
			$('.custom-checkbox-item input[type="checkbox"]', thisQuestion).on('change', function(e) {
				var thisRow = $(this).closest('tr.subquestion-list');
				var thisCell = $(this).closest('td.answer-item');
				if($(this).is(':checked')) {
					$('input[type="text"]', thisCell).val('1');
					$('.non-exclusive-item input[type="text"]', thisRow).val('');
				}
				else {
					$('input[type="text"]', thisCell).val('');
				}
	});	

		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});

		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script><script>]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[L]]></type>
    <title><![CDATA[other2]]></title>
    <question><![CDATA[<strong>What do you like to do?</strong>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[Y]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
  </rows>
 </questions>
 <subquestions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Entry 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332471]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Recommendation 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332476]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[Name of dentist]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Entry 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332472]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[Recommendation 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332477]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[City]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Entry 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Country]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332473]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[Recommendation 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332478]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[State]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Entry 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Cat1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332474]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Recommendation 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332479]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[Specialty]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Entry 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Cat2]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332475]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Recommendation 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332480]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[Rank]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Cat3]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332481]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[Interconnectivity]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Cat4]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332482]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[Robotic Surgery]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[de]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Cat5]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[es]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[it]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[ja]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[2332483]]></qid>
    <parent_qid><![CDATA[2332470]]></parent_qid>
    <sid><![CDATA[384793]]></sid>
    <gid><![CDATA[80509]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[8]]></title>
    <question><![CDATA[Telemedicine]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[pt-BR]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
  </rows>
 </subquestions>
 <answers>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>code</fieldname>
   <fieldname>answer</fieldname>
   <fieldname>sortorder</fieldname>
   <fieldname>assessment_value</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <code><![CDATA[1]]></code>
    <answer><![CDATA[Paint]]></answer>
    <sortorder><![CDATA[1]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <code><![CDATA[2]]></code>
    <answer><![CDATA[Read]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <code><![CDATA[3]]></code>
    <answer><![CDATA[Write]]></answer>
    <sortorder><![CDATA[3]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <code><![CDATA[4]]></code>
    <answer><![CDATA[Dance]]></answer>
    <sortorder><![CDATA[4]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[2332511]]></qid>
    <code><![CDATA[5]]></code>
    <answer><![CDATA[none of the above]]></answer>
    <sortorder><![CDATA[5]]></sortorder>
    <assessment_value><![CDATA[0]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
  </rows>
 </answers>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[2332470]]></qid>
    <attribute><![CDATA[answer_width]]></attribute>
    <value><![CDATA[16]]></value>
   </row>
   <row>
    <qid><![CDATA[2332470]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
  </rows>
 </question_attributes>
</document>
