<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Group</LimeSurveyDocType>
 <DBVersion>164</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[956]]></gid>
    <sid><![CDATA[377832]]></sid>
    <group_name><![CDATA[Side by side]]></group_name>
    <group_order><![CDATA[2]]></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>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[6010]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[L]]></type>
    <title><![CDATA[S01Q01]]></title>
    <question><![CDATA[This is an example question that comes before the questions with an array layout.]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6016]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[01R00C00]]></title>
    <question><![CDATA[We next need to ask you about your height. Please be sure to select the <strong>correct units</strong>.]]></question>
    <preg/>
    <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>
   </row>
   <row>
    <qid><![CDATA[6014]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[01R01C01]]></title>
    <question><![CDATA[<script type="text/javascript" charset="utf-8">

        $(document).ready(function() {
                // Call the "sideBySide" function with number of rows, columns and start position
                sideBySide(2, 3, 3);
        });

        function sideBySide(rows, columns, startQuestion) {

                /*********** Display multiple questions side by side ***********/

                if ($('div.qRow1').length == 0) {

                        var rowNum = 0;
                        var colNum = 1;
                        var rowList = new Array();

                        //////// Add question classes for later use ////////

                        // Loop through all questions and add row and column specific classes
                        $('div[id^="question"]').each(function(i) {
                                if(i >= (startQuestion-1) && rowNum < rows) { // This IF condition only needed if there are questions before or following the "inline" questions
                                        $(this).addClass('qRow'+rowNum+'').addClass('qCol'+colNum+'').addClass('inlineQuestion');
                                        if(rowNum == 0 && colNum > 1) {
                                                $(this).addClass('columnLabel');
                                        }  
                                        if(rowNum > 0 && colNum == 1) {
                                                $(this).addClass('rowLabel');
                                        }
                                        else if(rowNum > 0 && colNum > 1) {
                                                $(this).addClass('questionCell');
                                        }
                                        if(colNum == columns) {
                                                rowList.push('qRow'+rowNum+'');
                                                rowNum++;
                                                colNum = 1;
                                        }
                                        else {
                                                colNum++;
                                        }
                                }
                                else {
                                        $(this).addClass('normalQuestion');
                                }
                        });

                        //////// Survey layout manipulation ////////

                        // Fix the width of the survey
                        $('table.outerframe').css({
                                'width': '900px'
                        });

                        // Wrap each "row" in a wrapper div
                        $(rowList).each(function(i) {
                                $('.'+this+'').wrapAll('<div id="inlineWrapper'+i+'" class="inlineRow" />');
                        });

                        // Style the wrapper divs
                        $('.inlineRow').css({
                                'width': '850px',
                                'margin': '0 auto 0 auto',
                                'clear': 'both'
                        });

                        $( '.inlineRow:first' ).css({
                                'margin-top': '10px'
                        });

                        // Get all the questions to sit politely side by side
                        $( '.inlineQuestion' ).css({
                                'float': 'left',
                                'height':'41px',
                                'overflow':'hidden',
                                'margin-bottom': '-8px'
                        });
                        $( '.inlineQuestion .questionhelp' ).hide();
                        $( '.inlineQuestion .survey-question-help' ).parent().hide();
                   
                        // A little space under the last row
                        $( '.inlineRow:last .inlineQuestion' ).css({
                                'margin-bottom': '10px'
                        });

                        // Any questions not displayed inline (this is only needed if there are questions following the "inline" questions)
                        $( '.normalQuestion' ).css({
                                'clear': 'both'
                        });

                        //////// Column manipulation ////////

                        // Set the column widths - can be set individually if necessary
                        // Must add up to less than 100%
                        $( '.qCol1' ).css({
                                'width': '12%'
                        });

                        $( '.qCol2, .qCol3, .qCol4, .qCol5' ).css({
                                'width': '22%'
                        });

                        //////// Question manipulation ////////

                        // Hide the answer element in boilerplate questions
                        $( 'div.boilerplate td.answer' ).parent().hide();

                        // Hide the question text elements in non-boilerplate questions
                        $('div.questionCell td.questiontext').parent().hide();

                        // Push the question tables to 100%
                        $( 'div.inlineRow table' ).css({
                                'width': '100%'
                        });

                        // Get everything to line up nicely vertically
                        $( '.inlineQuestion td.questiontext, .inlineQuestion td.answer p' ).css({
                                'text-align': 'center'
                        });

                        // Adjust cell heights so everything lines up nicely horizontally
                        $( '.inlineQuestion td.answer, .inlineQuestion td.questiontext' ).css({
                                'height':'35px',
                                'overflow':'hidden',
                                'padding':'0.5em'
                        });
                        $( '#inlineWrapper0 .inlineQuestion' ).css({ 'height':'50px' });
                        $( '#inlineWrapper0 td.questiontext' ).css({
                                'height':'50px'
                        });

                        // Yes-no question styles
                        $( 'div.yes-no ul' ).css({
                                'text-align': 'center',
                                'font-size': '90%',
                                'margin': '0',
                                'padding-bottom': '5px'
                        });
                        $( 'div.yes-no li' ).css({
                                'padding-right': '1.5em'
                        });
                        $( 'div.yes-no td.answer' ).css({
                                'padding-bottom': '0'
                        });

                        // Short-text question styles
                        $( 'div.text-short input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });

                        // Numeric question styles
                        $( 'div.numeric input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });
                        $( 'div.numeric p.tip' ).css({
                                'display': 'none'
                        });

                        // Get rid of the margins around select boxes
                        $( 'p.question' ).css({ 'margin':'0' });
                }
        }
</script>]]></question>
    <preg/>
    <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>
   </row>
   <row>
    <qid><![CDATA[5999]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[01R01C02]]></title>
    <question><![CDATA[<strong>Your height</strong>]]></question>
    <preg/>
    <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>
   </row>
   <row>
    <qid><![CDATA[6000]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[01R01C03]]></title>
    <question><![CDATA[<strong>Units</strong>]]></question>
    <preg/>
    <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>
   </row>
   <row>
    <qid><![CDATA[6015]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[01R02C01]]></title>
    <question><![CDATA[<em>Your answer:</em>]]></question>
    <preg/>
    <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>
   </row>
   <row>
    <qid><![CDATA[6008]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[01R02C02]]></title>
    <question/>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6009]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[!]]></type>
    <title><![CDATA[01R02C03]]></title>
    <question/>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6011]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[K]]></type>
    <title><![CDATA[S01Q04]]></title>
    <question><![CDATA[This is a question that comes after the questions with array layout.]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6017]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[02R00C00]]></title>
    <question><![CDATA[The following question uses a numerical input box with radio buttons beside it.]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6018]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[02R01C01]]></title>
    <question><![CDATA[<script type="text/javascript" charset="utf-8">

        $(document).ready(function() {
                // Call the "sideBySide" function with number of rows, columns and start position
                sideBySide(2, 3, 11);
        });

        function sideBySide(rows, columns, startQuestion) {

                /*********** Display multiple questions side by side ***********/

                if ($('div.qRow1').length == 0) {

                        var rowNum = 0;
                        var colNum = 1;
                        var rowList = new Array();

                        //////// Add question classes for later use ////////

                        // Loop through all questions and add row and column specific classes
                        $('div[id^="question"]').each(function(i) {
                                if(i >= (startQuestion-1) && rowNum < rows) { // This IF condition only needed if there are questions before or following the "inline" questions
                                        $(this).addClass('qRow'+rowNum+'').addClass('qCol'+colNum+'').addClass('inlineQuestion');
                                        if(rowNum == 0 && colNum > 1) {
                                                $(this).addClass('columnLabel');
                                        }  
                                        if(rowNum > 0 && colNum == 1) {
                                                $(this).addClass('rowLabel');
                                        }
                                        else if(rowNum > 0 && colNum > 1) {
                                                $(this).addClass('questionCell');
                                        }
                                        if(colNum == columns) {
                                                rowList.push('qRow'+rowNum+'');
                                                rowNum++;
                                                colNum = 1;
                                        }
                                        else {
                                                colNum++;
                                        }
                                }
                                else {
                                        $(this).addClass('normalQuestion');
                                }
                        });

                        //////// Survey layout manipulation ////////

                        // Fix the width of the survey
                        $('table.outerframe').css({
                                'width': '900px'
                        });

                        // Wrap each "row" in a wrapper div
                        $(rowList).each(function(i) {
                                $('.'+this+'').wrapAll('<div id="inlineWrapper'+i+'" class="inlineRow" />');
                        });

                        // Style the wrapper divs
                        $('.inlineRow').css({
                                'width': '850px',
                                'margin': '0 auto 0 auto',
                                'clear': 'both'
                        });

                        $( '.inlineRow:first' ).css({
                                'margin-top': '10px'
                        });

                        // Get all the questions to sit politely side by side
                        $( '.inlineQuestion' ).css({
                                'float': 'left',
                                'height':'41px',
                                'overflow':'hidden',
                                'margin-bottom': '-8px'
                        });
                        $( '.inlineQuestion .questionhelp' ).hide();
                        $( '.inlineQuestion .survey-question-help' ).parent().hide();
                   
                        // A little space under the last row
                        $( '.inlineRow:last .inlineQuestion' ).css({
                                'margin-bottom': '10px'
                        });

                        // Any questions not displayed inline (this is only needed if there are questions following the "inline" questions)
                        $( '.normalQuestion' ).css({
                                'clear': 'both'
                        });

                        //////// Column manipulation ////////

                        // Set the column widths - can be set individually if necessary
                        // Must add up to less than 100%
                        $( '.qCol1' ).css({
                                'width': '12%'
                        });

                        $( '.qCol2, .qCol3, .qCol4, .qCol5' ).css({
                                'width': '22%'
                        });

                        //////// Question manipulation ////////

                        // Hide the answer element in boilerplate questions
                        $( 'div.boilerplate td.answer' ).parent().hide();

                        // Hide the question text elements in non-boilerplate questions
                        $('div.questionCell td.questiontext').parent().hide();

                        // Push the question tables to 100%
                        $( 'div.inlineRow table' ).css({
                                'width': '100%'
                        });

                        // Get everything to line up nicely vertically
                        $( '.inlineQuestion td.questiontext, .inlineQuestion td.answer p' ).css({
                                'text-align': 'center'
                        });

                        // Adjust cell heights so everything lines up nicely horizontally
                        $( '.inlineQuestion td.answer, .inlineQuestion td.questiontext' ).css({
                                'height':'35px',
                                'overflow':'hidden',
                                'padding':'0.5em'
                        });
                        $( '#inlineWrapper0 .inlineQuestion' ).css({ 'height':'50px' });
                        $( '#inlineWrapper0 td.questiontext' ).css({
                                'height':'50px'
                        });

                        // Yes-no question styles
                        $( 'div.yes-no ul' ).css({
                                'text-align': 'center',
                                'font-size': '90%',
                                'margin': '0',
                                'padding-bottom': '5px'
                        });
                        $( 'div.yes-no li' ).css({
                                'padding-right': '1.5em'
                        });
                        $( 'div.yes-no td.answer' ).css({
                                'padding-bottom': '0'
                        });

                        // Short-text question styles
                        $( 'div.text-short input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });

                        // Numeric question styles
                        $( 'div.numeric input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });
                        $( 'div.numeric p.tip' ).css({
                                'display': 'none'
                        });

                        // Get rid of the margins around select boxes
                        $( 'p.question' ).css({ 'margin':'0' });
                }
        }
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></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>
   </row>
   <row>
    <qid><![CDATA[6019]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[02R01C02]]></title>
    <question><![CDATA[<strong>Time on medication</strong>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[11]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6020]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[02R01C03]]></title>
    <question><![CDATA[<strong>Units</strong>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[12]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6021]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[02R02C01]]></title>
    <question/>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[13]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6022]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[02R02C02]]></title>
    <question/>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[14]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[6023]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[L]]></type>
    <title><![CDATA[02R02C03]]></title>
    <question/>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[15]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </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>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[6012]]></qid>
    <parent_qid><![CDATA[6011]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ001]]></title>
    <question><![CDATA[Your weight on Saturn]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[6013]]></qid>
    <parent_qid><![CDATA[6011]]></parent_qid>
    <sid><![CDATA[377832]]></sid>
    <gid><![CDATA[956]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ002]]></title>
    <question><![CDATA[Your weight on Mars]]></question>
    <other><![CDATA[N]]></other>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </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[6010]]></qid>
    <code><![CDATA[A1]]></code>
    <answer><![CDATA[Apples]]></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[6010]]></qid>
    <code><![CDATA[A2]]></code>
    <answer><![CDATA[Oranges]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[6010]]></qid>
    <code><![CDATA[A3]]></code>
    <answer><![CDATA[Strawberries]]></answer>
    <sortorder><![CDATA[3]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[6023]]></qid>
    <code><![CDATA[A1]]></code>
    <answer><![CDATA[Weeks]]></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[6023]]></qid>
    <code><![CDATA[A2]]></code>
    <answer><![CDATA[Months]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[6023]]></qid>
    <code><![CDATA[A3]]></code>
    <answer><![CDATA[Years]]></answer>
    <sortorder><![CDATA[3]]></sortorder>
    <assessment_value><![CDATA[1]]></assessment_value>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[6009]]></qid>
    <code><![CDATA[A1]]></code>
    <answer><![CDATA[Centimetres]]></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[6009]]></qid>
    <code><![CDATA[A2]]></code>
    <answer><![CDATA[Metres]]></answer>
    <sortorder><![CDATA[2]]></sortorder>
    <assessment_value><![CDATA[1]]></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[6008]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6008]]></qid>
    <attribute><![CDATA[num_value_int_only]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6009]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6010]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6011]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6014]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6015]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6016]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6017]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6018]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6019]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6020]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6021]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6022]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[6023]]></qid>
    <attribute><![CDATA[hide_tip]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
  </rows>
 </question_attributes>
</document>
