Export responses cleaned by the cleaning sytem
curl --request POST \
--url https://responses.sightx.io/responses-capture-service/v1/recycleBin/export \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "{{projectId}}"
}
'import requests
url = "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export"
payload = { "projectId": "{{projectId}}" }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({projectId: '{{projectId}}'})
};
fetch('https://responses.sightx.io/responses-capture-service/v1/recycleBin/export', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'projectId' => '{{projectId}}'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export"
payload := strings.NewReader("{\n \"projectId\": \"{{projectId}}\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://responses.sightx.io/responses-capture-service/v1/recycleBin/export")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"{{projectId}}\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://responses.sightx.io/responses-capture-service/v1/recycleBin/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"{{projectId}}\"\n}"
response = http.request(request)
puts response.read_body"PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000docProps/core.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<cp:coreProperties xmlns:cp=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:dcterms=\"http://purl.org/dc/terms/\" xmlns:dcmitype=\"http://purl.org/dc/dcmitype/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000docProps/app.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <Application>SheetJS</Application>\n <HeadingPairs>\n <vt:vector size=\"2\" baseType=\"variant\">\n <vt:variant>\n <vt:lpstr>Worksheets</vt:lpstr>\n </vt:variant>\n <vt:variant>\n <vt:i4>1</vt:i4>\n </vt:variant>\n </vt:vector>\n </HeadingPairs>\n <TitlesOfParts>\n <vt:vector size=\"1\" baseType=\"lpstr\">\n <vt:lpstr>Responses</vt:lpstr>\n </vt:vector>\n </TitlesOfParts>\n</Properties>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000xl/workbook.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<workbook xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <workbookPr codeName=\"ThisWorkbook\"/>\n <sheets>\n <sheet name=\"Responses\" sheetId=\"1\" r:id=\"rId1\"/>\n </sheets>\n</workbook>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S4\u0015r���\u0000\u0000��\u0000\u0000\u0018\u0000\u0000\u0000xl/worksheets/sheet1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <sheetPr codeName=\"Responses\"/>\n <dimension ref=\"A1:NK2\"/>\n <sheetViews>\n <sheetView workbookViewId=\"0\"/>\n </sheetViews>\n <sheetData>\n <row r=\"1\">\n <c r=\"G1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"H1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"I1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"J1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"K1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"L1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"M1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"N1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"O1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"P1\" t=\"str\">\n <v>Q3</v>\n </c>\n <c r=\"Q1\" t=\"str\">\n <v>Q4</v>\n </c>\n <c r=\"R1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"S1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"T1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"U1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"V1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"W1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"X1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"Y1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"Z1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AA1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AB1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AC1\" t=\"str\">\n <v>Q7</v>\n </c>\n <c r=\"AD1\" t=\"str\">\n <v>Q8</v>\n </c>\n <c r=\"AE1\" t=\"str\">\n <v>Q9</v>\n </c>\n <c r=\"AF1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AG1\" t=\"str\">\n <v>Q10</v>\n </c>\n <c r=\"AH1\" t=\"str\">\n <v>Q11</v>\n </c>\n <c r=\"AI1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AJ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AK1\" t=\"str\">\n <v>Q12</v>\n </c>\n <c r=\"AL1\" t=\"str\">\n <v>Q12</v>\n </c>\n <c r=\"AM1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AN1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AO1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AP1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AQ1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AR1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AS1\" t=\"str\">\n <v>Q15</v>\n </c>\n <c r=\"AT1\" t=\"str\">\n <v>Q16</v>\n </c>\n <c r=\"AU1\" t=\"str\">\n <v>Q17</v>\n </c>\n <c r=\"AV1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AW1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AX1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AY1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AZ1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"BA1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BB1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BC1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BD1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BE1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BF1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BG1\" t=\"str\">\n <v>Q20</v>\n </c>\n <c r=\"BH1\" t=\"str\">\n <v>Q21</v>\n </c>\n <c r=\"BI1\" t=\"str\">\n <v>Q22</v>\n </c>\n <c r=\"BJ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BK1\" t=\"str\">\n <v>Q23</v>\n </c>\n <c r=\"BL1\" t=\"str\">\n <v>Q24</v>\n </c>\n <c r=\"BM1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BN1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BO1\" t=\"str\">\n <v>Q25</v>\n </c>\n <c r=\"BP1\" t=\"str\">\n <v>Q25</v>\n </c>\n <c r=\"BQ1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BR1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BS1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BT1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BU1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BV1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BW1\" t=\"str\">\n <v>Q28</v>\n </c>\n <c r=\"BX1\" t=\"str\">\n <v>Q29</v>\n </c>\n <c r=\"BY1\" t=\"str\">\n <v>Q30</v>\n </c>\n <c r=\"BZ1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CA1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CB1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CC1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CD1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CE1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CF1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CG1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CH1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CI1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CJ1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CK1\" t=\"str\">\n <v>Q33</v>\n </c>\n <c r=\"CL1\" t=\"str\">\n <v>Q34</v>\n </c>\n <c r=\"CM1\" t=\"str\">\n <v>Q35</v>\n </c>\n <c r=\"CN1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CO1\" t=\"str\">\n <v>Q36</v>\n </c>\n <c r=\"CP1\" t=\"str\">\n <v>Q37</v>\n </c>\n <c r=\"CQ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CR1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CS1\" t=\"str\">\n <v>Q38</v>\n </c>\n <c r=\"CT1\" t=\"str\">\n <v>Q38</v>\n </c>\n <c r=\"CU1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CV1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CW1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CX1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"CY1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"CZ1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"DA1\" t=\"str\">\n <v>Q41</v>\n </c>\n <c r=\"DB1\" t=\"str\">\n <v>Q42</v>\n </c>\n <c r=\"DC1\" t=\"str\">\n <v>Q43</v>\n </c>\n <c r=\"DD1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DE1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DF1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DG1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DH1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DI1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DJ1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DK1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DL1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DM1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DN1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DO1\" t=\"str\">\n <v>Q46</v>\n </c>\n <c r=\"DP1\" t=\"str\">\n <v>Q47</v>\n </c>\n <c r=\"DQ1\" t=\"str\">\n <v>Q48</v>\n </c>\n <c r=\"DR1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DS1\" t=\"str\">\n <v>Q49</v>\n </c>\n <c r=\"DT1\" t=\"str\">\n <v>Q50</v>\n </c>\n <c r=\"DU1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DV1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DW1\" t=\"str\">\n <v>Q51</v>\n </c>\n <c r=\"DX1\" t=\"str\">\n <v>Q51</v>\n </c>\n <c r=\"DY1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"DZ1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"EA1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"EB1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"EC1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"ED1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"EE1\" t=\"str\">\n <v>Q54</v>\n </c>\n <c r=\"EF1\" t=\"str\">\n <v>Q55</v>\n </c>\n <c r=\"EG1\" t=\"str\">\n <v>Q56</v>\n </c>\n <c r=\"EH1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EI1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EJ1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EK1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EL1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EM1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EN1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EO1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EP1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EQ1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"ER1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"ES1\" t=\"str\">\n <v>Q59</v>\n </c>\n <c r=\"ET1\" t=\"str\">\n <v>Q60</v>\n </c>\n <c r=\"EU1\" t=\"str\">\n <v>Q61</v>\n </c>\n <c r=\"EV1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"EW1\" t=\"str\">\n <v>Q62</v>\n </c>\n <c r=\"EX1\" t=\"str\">\n <v>Q63</v>\n </c>\n <c r=\"EY1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"EZ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"FA1\" t=\"str\">\n <v>Q64</v>\n </c>\n <c r=\"FB1\" t=\"str\">\n <v>Q64</v>\n </c>\n <c r=\"FC1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FD1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FE1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FF1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FG1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FH1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FI1\" t=\"str\">\n <v>Q67</v>\n </c>\n <c r=\"FJ1\" t=\"str\">\n <v>Q68</v>\n </c>\n <c r=\"FK1\" t=\"str\">\n <v>Q69</v>\n </c>\n <c r=\"FL1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FM1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FN1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FO1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FP1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FQ1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FR1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FS1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FT1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FU1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FV1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FW1\" t=\"str\">\n <v>Q72</v>\n </c>\n <c r=\"FX1\" t=\"str\">\n <v>Q73</v>\n </c>\n <c r=\"FY1\" t=\"str\">\n <v>Q74</v>\n </c>\n <c r=\"FZ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GA1\" t=\"str\">\n <v>Q75</v>\n </c>\n <c r=\"GB1\" t=\"str\">\n <v>Q76</v>\n </c>\n <c r=\"GC1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GD1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GE1\" t=\"str\">\n <v>Q77</v>\n </c>\n <c r=\"GF1\" t=\"str\">\n <v>Q77</v>\n </c>\n <c r=\"GG1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GH1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GI1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GJ1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GK1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GL1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GM1\" t=\"str\">\n <v>Q80</v>\n </c>\n <c r=\"GN1\" t=\"str\">\n <v>Q81</v>\n </c>\n <c r=\"GO1\" t=\"str\">\n <v>Q82</v>\n </c>\n <c r=\"GP1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GQ1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GR1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GS1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GT1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GU1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GV1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GW1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GX1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GY1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GZ1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"HA1\" t=\"str\">\n <v>Q85</v>\n </c>\n <c r=\"HB1\" t=\"str\">\n <v>Q86</v>\n </c>\n <c r=\"HC1\" t=\"str\">\n <v>Q87</v>\n </c>\n <c r=\"HD1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HE1\" t=\"str\">\n <v>Q88</v>\n </c>\n <c r=\"HF1\" t=\"str\">\n <v>Q89</v>\n </c>\n <c r=\"HG1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HH1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HI1\" t=\"str\">\n <v>Q90</v>\n </c>\n <c r=\"HJ1\" t=\"str\">\n <v>Q90</v>\n </c>\n <c r=\"HK1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HL1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HM1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HN1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HO1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HP1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HQ1\" t=\"str\">\n <v>Q93</v>\n </c>\n <c r=\"HR1\" t=\"str\">\n <v>Q94</v>\n </c>\n <c r=\"HS1\" t=\"str\">\n <v>Q95</v>\n </c>\n <c r=\"HT1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HU1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HV1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HW1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HX1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HY1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"HZ1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IA1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IB1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IC1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"ID1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IE1\" t=\"str\">\n <v>Q98</v>\n </c>\n <c r=\"IF1\" t=\"str\">\n <v>Q99</v>\n </c>\n <c r=\"IG1\" t=\"str\">\n <v>Q100</v>\n </c>\n <c r=\"IH1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"II1\" t=\"str\">\n <v>Q101</v>\n </c>\n <c r=\"IJ1\" t=\"str\">\n <v>Q102</v>\n </c>\n <c r=\"IK1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"IL1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"IM1\" t=\"str\">\n <v>Q103</v>\n </c>\n <c r=\"IN1\" t=\"str\">\n <v>Q103</v>\n </c>\n <c r=\"IO1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IP1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IQ1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IR1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IS1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IT1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IU1\" t=\"str\">\n <v>Q106</v>\n </c>\n <c r=\"IV1\" t=\"str\">\n <v>Q107</v>\n </c>\n <c r=\"IW1\" t=\"str\">\n <v>Q108</v>\n </c>\n <c r=\"IX1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"IY1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"IZ1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JA1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JB1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JC1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JD1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JE1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JF1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JG1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JH1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JI1\" t=\"str\">\n <v>Q111</v>\n </c>\n <c r=\"JJ1\" t=\"str\">\n <v>Q112</v>\n </c>\n <c r=\"JK1\" t=\"str\">\n <v>Q113</v>\n </c>\n <c r=\"JL1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JM1\" t=\"str\">\n <v>Q114</v>\n </c>\n <c r=\"JN1\" t=\"str\">\n <v>Q115</v>\n </c>\n <c r=\"JO1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JP1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JQ1\" t=\"str\">\n <v>Q116</v>\n </c>\n <c r=\"JR1\" t=\"str\">\n <v>Q116</v>\n </c>\n <c r=\"JS1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JT1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JU1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JV1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JW1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JX1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JY1\" t=\"str\">\n <v>Q119</v>\n </c>\n <c r=\"JZ1\" t=\"str\">\n <v>Q120</v>\n </c>\n <c r=\"KA1\" t=\"str\">\n <v>Q121</v>\n </c>\n <c r=\"KB1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KC1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KD1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KE1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KF1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KG1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KH1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KI1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KJ1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KK1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KL1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KM1\" t=\"str\">\n <v>Q124</v>\n </c>\n <c r=\"KN1\" t=\"str\">\n <v>Q125</v>\n </c>\n <c r=\"KO1\" t=\"str\">\n <v>Q126</v>\n </c>\n <c r=\"KP1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KQ1\" t=\"str\">\n <v>Q127</v>\n </c>\n <c r=\"KR1\" t=\"str\">\n <v>Q128</v>\n </c>\n <c r=\"KS1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KT1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KU1\" t=\"str\">\n <v>Q129</v>\n </c>\n <c r=\"KV1\" t=\"str\">\n <v>Q129</v>\n </c>\n <c r=\"KW1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KX1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KY1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KZ1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LA1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LB1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LC1\" t=\"str\">\n <v>Q132</v>\n </c>\n <c r=\"LD1\" t=\"str\">\n <v>Q133</v>\n </c>\n <c r=\"LE1\" t=\"str\">\n <v>Q134</v>\n </c>\n <c r=\"LF1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LG1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LH1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LI1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LJ1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LK1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LL1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LM1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LN1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LO1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LP1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LQ1\" t=\"str\">\n <v>Q137</v>\n </c>\n <c r=\"LR1\" t=\"str\">\n <v>Q138</v>\n </c>\n <c r=\"LS1\" t=\"str\">\n <v>Q139</v>\n </c>\n <c r=\"LT1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LU1\" t=\"str\">\n <v>Q140</v>\n </c>\n <c r=\"LV1\" t=\"str\">\n <v>Q141</v>\n </c>\n <c r=\"LW1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LX1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LY1\" t=\"str\">\n <v>Q142</v>\n </c>\n <c r=\"LZ1\" t=\"str\">\n <v>Q142</v>\n </c>\n <c r=\"MA1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MB1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MC1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MD1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"ME1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"MF1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"MG1\" t=\"str\">\n <v>Q145</v>\n </c>\n <c r=\"MH1\" t=\"str\">\n <v>Q146</v>\n </c>\n <c r=\"MI1\" t=\"str\">\n <v>Q147</v>\n </c>\n <c r=\"MJ1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MK1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"ML1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MM1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MN1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MO1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MP1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MQ1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MR1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MS1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MT1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MU1\" t=\"str\">\n <v>Q150</v>\n </c>\n <c r=\"MV1\" t=\"str\">\n <v>Q151</v>\n </c>\n <c r=\"MW1\" t=\"str\">\n <v>Q152</v>\n </c>\n <c r=\"MX1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"MY1\" t=\"str\">\n <v>Q153</v>\n </c>\n <c r=\"MZ1\" t=\"str\">\n <v>Q154</v>\n </c>\n <c r=\"NA1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"NB1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"NC1\" t=\"str\">\n <v>Q155</v>\n </c>\n <c r=\"ND1\" t=\"str\">\n <v>Q155</v>\n </c>\n <c r=\"NE1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NF1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NG1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NH1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NI1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NJ1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NK1\" t=\"str\">\n <v>Q158</v>\n </c>\n </row>\n <row r=\"2\">\n <c r=\"A2\" t=\"str\">\n <v>ID</v>\n </c>\n <c r=\"B2\" t=\"str\">\n <v>Campaign</v>\n </c>\n <c r=\"C2\" t=\"str\">\n <v>Date</v>\n </c>\n <c r=\"D2\" t=\"str\">\n <v>IP</v>\n </c>\n <c r=\"E2\" t=\"str\">\n <v>Country</v>\n </c>\n <c r=\"F2\" t=\"str\">\n <v>City</v>\n </c>\n <c r=\"G2\" t=\"str\">\n <v xml:space=\"preserve\">What brands do you prefer? :: Nike </v>\n </c>\n <c r=\"H2\" t=\"str\">\n <v xml:space=\"preserve\">What brands do you prefer? :: Adidas </v>\n </c>\n <c r=\"I2\" t=\"str\">\n <v>What brands do you prefer? :: New Balance</v>\n </c>\n <c r=\"J2\" t=\"str\">\n <v>What brands do you prefer? :: Puma</v>\n </c>\n <c r=\"K2\" t=\"str\">\n <v>What brands do you prefer? :: Other</v>\n </c>\n <c r=\"L2\" t=\"str\">\n <v>What brands do you prefer? :: None of the Above</v>\n </c>\n <c r=\"M2\" t=\"str\">\n <v>How often do you practice these activities? :: Surf</v>\n </c>\n <c r=\"N2\" t=\"str\">\n <v>How often do you practice these activities? :: Soccer</v>\n </c>\n <c r=\"O2\" t=\"str\">\n <v>How often do you practice these activities? :: Basketball</v>\n </c>\n <c r=\"P2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"Q2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"R2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"S2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"T2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"U2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"V2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"W2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"X2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"Y2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"Z2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"AA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"AB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"AC2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AD2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AE2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AF2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AG2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AH2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AI2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AJ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AK2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"AL2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"AM2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"AN2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"AO2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"AP2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"AQ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"AR2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"AS2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AT2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AU2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AV2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"AW2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"AX2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"AY2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"AZ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"BA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"BB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"BC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"BD2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"BE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"BF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"BG2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BH2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BI2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BJ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BK2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BL2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BM2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BN2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BO2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"BP2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"BQ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"BR2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"BS2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"BT2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"BU2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"BV2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"BW2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BX2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BY2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BZ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"CA2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"CB2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"CC2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"CD2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"CE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"CF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"CG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"CH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"CI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"CJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"CK2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CL2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CM2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CN2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CO2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CP2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CQ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CR2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CS2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"CT2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"CU2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"CV2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"CW2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"CX2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"CY2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"CZ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"DA2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DB2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DC2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DD2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"DE2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"DF2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"DG2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"DH2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"DI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"DJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"DK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"DL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"DM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"DN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"DO2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DP2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DQ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DR2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DS2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DT2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DU2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DV2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DW2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"DX2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"DY2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"DZ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"EA2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"EB2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"EC2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"ED2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"EE2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EF2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EG2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EH2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"EI2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"EJ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"EK2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"EL2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"EM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"EN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"EO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"EP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"EQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"ER2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"ES2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"ET2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EU2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EV2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EW2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EX2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EY2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EZ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FA2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"FB2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"FC2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"FD2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"FE2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"FF2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"FG2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"FH2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"FI2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FJ2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FK2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FL2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"FM2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"FN2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"FO2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"FP2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"FQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"FR2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"FS2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"FT2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"FU2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"FV2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"FW2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FX2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FY2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FZ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GA2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GB2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GC2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GD2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GE2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"GF2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"GG2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"GH2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"GI2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"GJ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"GK2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"GL2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"GM2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GN2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GO2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GP2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"GQ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"GR2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"GS2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"GT2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"GU2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"GV2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"GW2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"GX2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"GY2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"GZ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"HA2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HB2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HC2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HD2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HE2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HF2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HG2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HH2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HI2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"HJ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"HK2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"HL2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"HM2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"HN2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"HO2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"HP2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"HQ2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HR2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HS2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HT2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"HU2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"HV2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"HW2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"HX2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"HY2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"HZ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"IA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"IB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"IC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"ID2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"IE2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IF2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IG2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IH2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"II2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IJ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IK2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IL2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IM2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"IN2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"IO2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"IP2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"IQ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"IR2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"IS2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"IT2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"IU2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IV2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IW2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IX2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"IY2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"IZ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"JA2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"JB2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"JC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"JD2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"JE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"JF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"JG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"JH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"JI2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JJ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JK2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JL2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JM2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JN2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JO2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JP2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JQ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"JR2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"JS2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"JT2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"JU2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"JV2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"JW2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"JX2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"JY2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JZ2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KA2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KB2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"KC2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"KD2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"KE2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"KF2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"KG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"KH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"KI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"KJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"KK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"KL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"KM2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KN2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KO2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KP2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KQ2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KR2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KS2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KT2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KU2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"KV2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"KW2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"KX2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"KY2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"KZ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"LA2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"LB2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"LC2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LD2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LE2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LF2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"LG2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"LH2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"LI2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"LJ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"LK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"LL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"LM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"LN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"LO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"LP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"LQ2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LR2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LS2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LT2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LU2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LV2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LW2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LX2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LY2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"LZ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"MA2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"MB2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"MC2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"MD2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"ME2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"MF2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"MG2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MH2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MI2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MJ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"MK2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"ML2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"MM2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"MN2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"MO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"MP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"MQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"MR2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"MS2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"MT2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"MU2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MV2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MW2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MX2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MY2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MZ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NA2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NB2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NC2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"ND2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"NE2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"NF2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"NG2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"NH2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"NI2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"NJ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"NK2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n </row>\n </sheetData>\n</worksheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000xl/theme/theme1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<a:theme xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" name=\"Office Theme\">\n <a:themeElements>\n <a:clrScheme name=\"Office\">\n <a:dk1>\n <a:sysClr val=\"windowText\" lastClr=\"000000\"/>\n </a:dk1>\n <a:lt1>\n <a:sysClr val=\"window\" lastClr=\"FFFFFF\"/>\n </a:lt1>\n <a:dk2>\n <a:srgbClr val=\"1F497D\"/>\n </a:dk2>\n <a:lt2>\n <a:srgbClr val=\"EEECE1\"/>\n </a:lt2>\n <a:accent1>\n <a:srgbClr val=\"4F81BD\"/>\n </a:accent1>\n <a:accent2>\n <a:srgbClr val=\"C0504D\"/>\n </a:accent2>\n <a:accent3>\n <a:srgbClr val=\"9BBB59\"/>\n </a:accent3>\n <a:accent4>\n <a:srgbClr val=\"8064A2\"/>\n </a:accent4>\n <a:accent5>\n <a:srgbClr val=\"4BACC6\"/>\n </a:accent5>\n <a:accent6>\n <a:srgbClr val=\"F79646\"/>\n </a:accent6>\n <a:hlink>\n <a:srgbClr val=\"0000FF\"/>\n </a:hlink>\n <a:folHlink>\n <a:srgbClr val=\"800080\"/>\n </a:folHlink>\n </a:clrScheme>\n <a:fontScheme name=\"Office\">\n <a:majorFont>\n <a:latin typeface=\"Cambria\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Times New Roman\"/>\n <a:font script=\"Hebr\" typeface=\"Times New Roman\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"MoolBoran\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Times New Roman\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:majorFont>\n <a:minorFont>\n <a:latin typeface=\"Calibri\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Arial\"/>\n <a:font script=\"Hebr\" typeface=\"Arial\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"DaunPenh\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Arial\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:minorFont>\n </a:fontScheme>\n <a:fmtScheme name=\"Office\">\n <a:fillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"35000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"37000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"15000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"1\"/>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"100000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"130000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"0\"/>\n </a:gradFill>\n </a:fillStyleLst>\n <a:lnStyleLst>\n <a:ln w=\"9525\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"95000\"/>\n <a:satMod val=\"105000\"/>\n </a:schemeClr>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"25400\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"38100\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n </a:lnStyleLst>\n <a:effectStyleLst>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"38000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n <a:scene3d>\n <a:camera prst=\"orthographicFront\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"0\"/>\n </a:camera>\n <a:lightRig rig=\"threePt\" dir=\"t\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"1200000\"/>\n </a:lightRig>\n </a:scene3d>\n <a:sp3d>\n <a:bevelT w=\"63500\" h=\"25400\"/>\n </a:sp3d>\n </a:effectStyle>\n </a:effectStyleLst>\n <a:bgFillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"40000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"40000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"45000\"/>\n <a:shade val=\"99000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"20000\"/>\n <a:satMod val=\"255000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"-80000\" r=\"50000\" b=\"180000\"/>\n </a:path>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"80000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"30000\"/>\n <a:satMod val=\"200000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"50000\" r=\"50000\" b=\"50000\"/>\n </a:path>\n </a:gradFill>\n </a:bgFillStyleLst>\n </a:fmtScheme>\n </a:themeElements>\n <a:objectDefaults>\n <a:spDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"3\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"lt1\"/>\n </a:fontRef>\n </a:style>\n </a:spDef>\n <a:lnDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"0\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"tx1\"/>\n </a:fontRef>\n </a:style>\n </a:lnDef>\n </a:objectDefaults>\n <a:extraClrSchemeLst/>\n</a:theme>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000xl/styles.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <numFmts count=\"1\">\n <numFmt numFmtId=\"56\" formatCode=\""上午/下午 "hh"時"mm"分"ss"秒 "\"/>\n </numFmts>\n <fonts count=\"1\">\n <font>\n <sz val=\"12\"/>\n <color theme=\"1\"/>\n <name val=\"Calibri\"/>\n <family val=\"2\"/>\n <scheme val=\"minor\"/>\n </font>\n </fonts>\n <fills count=\"2\">\n <fill>\n <patternFill patternType=\"none\"/>\n </fill>\n <fill>\n <patternFill patternType=\"gray125\"/>\n </fill>\n </fills>\n <borders count=\"1\">\n <border>\n <left/>\n <right/>\n <top/>\n <bottom/>\n <diagonal/>\n </border>\n </borders>\n <cellStyleXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/>\n </cellStyleXfs>\n <cellXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\"/>\n </cellXfs>\n <cellStyles count=\"1\">\n <cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/>\n </cellStyles>\n <dxfs count=\"0\"/>\n <tableStyles count=\"0\" defaultTableStyle=\"TableStyleMedium9\" defaultPivotStyle=\"PivotStyleMedium4\"/>\n</styleSheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000[Content_Types].xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Default Extension=\"bin\" ContentType=\"application/vnd.ms-excel.sheet.binary.macroEnabled.main\"/>\n <Default Extension=\"vml\" ContentType=\"application/vnd.openxmlformats-officedocument.vmlDrawing\"/>\n <Default Extension=\"bmp\" ContentType=\"image/bmp\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"gif\" ContentType=\"image/gif\"/>\n <Default Extension=\"emf\" ContentType=\"image/x-emf\"/>\n <Default Extension=\"wmf\" ContentType=\"image/x-wmf\"/>\n <Default Extension=\"jpg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"tif\" ContentType=\"image/tiff\"/>\n <Default Extension=\"tiff\" ContentType=\"image/tiff\"/>\n <Default Extension=\"pdf\" ContentType=\"application/pdf\"/>\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/xl/workbook.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\"/>\n <Override PartName=\"/xl/worksheets/sheet1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\"/>\n <Override PartName=\"/xl/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/xl/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/docProps/app.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.extended-properties+xml\"/>\n</Types>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000_rels/.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\" Target=\"docProps/core.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\" Target=\"docProps/app.xml\"/>\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"xl/workbook.xml\"/>\n</Relationships>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000xl/_rels/workbook.xml.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\" Target=\"worksheets/sheet1.xml\"/>\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\" Target=\"theme/theme1.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\" Target=\"styles.xml\"/>\n</Relationships>PK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000docProps/core.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0001\u0000\u0000docProps/app.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0003\u0000\u0000xl/workbook.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S4\u0015r���\u0000\u0000��\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u0005\u0000\u0000xl/worksheets/sheet1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000t\u0004\u0001\u0000xl/theme/theme1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\"\u0001\u0000xl/styles.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b'\u0001\u0000[Content_Types].xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000i.\u0001\u0000_rels/.relsPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�0\u0001\u0000xl/_rels/workbook.xml.relsPK\u0005\u0006\u0000\u0000\u0000\u0000\t\u0000\t\u0000>\u0002\u0000\u0000C3\u0001\u0000\u0000\u0000"Responses / Cleaning System
Export responses cleaned by the cleaning sytem
Description
Exports the responses previously cleaned by the cleaning system.
Body
{
"projectId": string
}
where:
projectId: The id of the project. Required.
Response
200 OK
Excel File.
400 Bad Request
ProjectId is missing.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.
POST
/
responses-capture-service
/
v1
/
recycleBin
/
export
Export responses cleaned by the cleaning sytem
curl --request POST \
--url https://responses.sightx.io/responses-capture-service/v1/recycleBin/export \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "{{projectId}}"
}
'import requests
url = "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export"
payload = { "projectId": "{{projectId}}" }
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({projectId: '{{projectId}}'})
};
fetch('https://responses.sightx.io/responses-capture-service/v1/recycleBin/export', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'projectId' => '{{projectId}}'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://responses.sightx.io/responses-capture-service/v1/recycleBin/export"
payload := strings.NewReader("{\n \"projectId\": \"{{projectId}}\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://responses.sightx.io/responses-capture-service/v1/recycleBin/export")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"{{projectId}}\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://responses.sightx.io/responses-capture-service/v1/recycleBin/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"{{projectId}}\"\n}"
response = http.request(request)
puts response.read_body"PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000docProps/core.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<cp:coreProperties xmlns:cp=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:dcterms=\"http://purl.org/dc/terms/\" xmlns:dcmitype=\"http://purl.org/dc/dcmitype/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"/>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000docProps/app.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <Application>SheetJS</Application>\n <HeadingPairs>\n <vt:vector size=\"2\" baseType=\"variant\">\n <vt:variant>\n <vt:lpstr>Worksheets</vt:lpstr>\n </vt:variant>\n <vt:variant>\n <vt:i4>1</vt:i4>\n </vt:variant>\n </vt:vector>\n </HeadingPairs>\n <TitlesOfParts>\n <vt:vector size=\"1\" baseType=\"lpstr\">\n <vt:lpstr>Responses</vt:lpstr>\n </vt:vector>\n </TitlesOfParts>\n</Properties>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000xl/workbook.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<workbook xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <workbookPr codeName=\"ThisWorkbook\"/>\n <sheets>\n <sheet name=\"Responses\" sheetId=\"1\" r:id=\"rId1\"/>\n </sheets>\n</workbook>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S4\u0015r���\u0000\u0000��\u0000\u0000\u0018\u0000\u0000\u0000xl/worksheets/sheet1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">\n <sheetPr codeName=\"Responses\"/>\n <dimension ref=\"A1:NK2\"/>\n <sheetViews>\n <sheetView workbookViewId=\"0\"/>\n </sheetViews>\n <sheetData>\n <row r=\"1\">\n <c r=\"G1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"H1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"I1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"J1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"K1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"L1\" t=\"str\">\n <v>Q1</v>\n </c>\n <c r=\"M1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"N1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"O1\" t=\"str\">\n <v>Q2</v>\n </c>\n <c r=\"P1\" t=\"str\">\n <v>Q3</v>\n </c>\n <c r=\"Q1\" t=\"str\">\n <v>Q4</v>\n </c>\n <c r=\"R1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"S1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"T1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"U1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"V1\" t=\"str\">\n <v>Q5</v>\n </c>\n <c r=\"W1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"X1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"Y1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"Z1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AA1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AB1\" t=\"str\">\n <v>Q6</v>\n </c>\n <c r=\"AC1\" t=\"str\">\n <v>Q7</v>\n </c>\n <c r=\"AD1\" t=\"str\">\n <v>Q8</v>\n </c>\n <c r=\"AE1\" t=\"str\">\n <v>Q9</v>\n </c>\n <c r=\"AF1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AG1\" t=\"str\">\n <v>Q10</v>\n </c>\n <c r=\"AH1\" t=\"str\">\n <v>Q11</v>\n </c>\n <c r=\"AI1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AJ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"AK1\" t=\"str\">\n <v>Q12</v>\n </c>\n <c r=\"AL1\" t=\"str\">\n <v>Q12</v>\n </c>\n <c r=\"AM1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AN1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AO1\" t=\"str\">\n <v>Q13</v>\n </c>\n <c r=\"AP1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AQ1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AR1\" t=\"str\">\n <v>Q14</v>\n </c>\n <c r=\"AS1\" t=\"str\">\n <v>Q15</v>\n </c>\n <c r=\"AT1\" t=\"str\">\n <v>Q16</v>\n </c>\n <c r=\"AU1\" t=\"str\">\n <v>Q17</v>\n </c>\n <c r=\"AV1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AW1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AX1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AY1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"AZ1\" t=\"str\">\n <v>Q18</v>\n </c>\n <c r=\"BA1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BB1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BC1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BD1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BE1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BF1\" t=\"str\">\n <v>Q19</v>\n </c>\n <c r=\"BG1\" t=\"str\">\n <v>Q20</v>\n </c>\n <c r=\"BH1\" t=\"str\">\n <v>Q21</v>\n </c>\n <c r=\"BI1\" t=\"str\">\n <v>Q22</v>\n </c>\n <c r=\"BJ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BK1\" t=\"str\">\n <v>Q23</v>\n </c>\n <c r=\"BL1\" t=\"str\">\n <v>Q24</v>\n </c>\n <c r=\"BM1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BN1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"BO1\" t=\"str\">\n <v>Q25</v>\n </c>\n <c r=\"BP1\" t=\"str\">\n <v>Q25</v>\n </c>\n <c r=\"BQ1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BR1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BS1\" t=\"str\">\n <v>Q26</v>\n </c>\n <c r=\"BT1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BU1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BV1\" t=\"str\">\n <v>Q27</v>\n </c>\n <c r=\"BW1\" t=\"str\">\n <v>Q28</v>\n </c>\n <c r=\"BX1\" t=\"str\">\n <v>Q29</v>\n </c>\n <c r=\"BY1\" t=\"str\">\n <v>Q30</v>\n </c>\n <c r=\"BZ1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CA1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CB1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CC1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CD1\" t=\"str\">\n <v>Q31</v>\n </c>\n <c r=\"CE1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CF1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CG1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CH1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CI1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CJ1\" t=\"str\">\n <v>Q32</v>\n </c>\n <c r=\"CK1\" t=\"str\">\n <v>Q33</v>\n </c>\n <c r=\"CL1\" t=\"str\">\n <v>Q34</v>\n </c>\n <c r=\"CM1\" t=\"str\">\n <v>Q35</v>\n </c>\n <c r=\"CN1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CO1\" t=\"str\">\n <v>Q36</v>\n </c>\n <c r=\"CP1\" t=\"str\">\n <v>Q37</v>\n </c>\n <c r=\"CQ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CR1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"CS1\" t=\"str\">\n <v>Q38</v>\n </c>\n <c r=\"CT1\" t=\"str\">\n <v>Q38</v>\n </c>\n <c r=\"CU1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CV1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CW1\" t=\"str\">\n <v>Q39</v>\n </c>\n <c r=\"CX1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"CY1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"CZ1\" t=\"str\">\n <v>Q40</v>\n </c>\n <c r=\"DA1\" t=\"str\">\n <v>Q41</v>\n </c>\n <c r=\"DB1\" t=\"str\">\n <v>Q42</v>\n </c>\n <c r=\"DC1\" t=\"str\">\n <v>Q43</v>\n </c>\n <c r=\"DD1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DE1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DF1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DG1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DH1\" t=\"str\">\n <v>Q44</v>\n </c>\n <c r=\"DI1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DJ1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DK1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DL1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DM1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DN1\" t=\"str\">\n <v>Q45</v>\n </c>\n <c r=\"DO1\" t=\"str\">\n <v>Q46</v>\n </c>\n <c r=\"DP1\" t=\"str\">\n <v>Q47</v>\n </c>\n <c r=\"DQ1\" t=\"str\">\n <v>Q48</v>\n </c>\n <c r=\"DR1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DS1\" t=\"str\">\n <v>Q49</v>\n </c>\n <c r=\"DT1\" t=\"str\">\n <v>Q50</v>\n </c>\n <c r=\"DU1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DV1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"DW1\" t=\"str\">\n <v>Q51</v>\n </c>\n <c r=\"DX1\" t=\"str\">\n <v>Q51</v>\n </c>\n <c r=\"DY1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"DZ1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"EA1\" t=\"str\">\n <v>Q52</v>\n </c>\n <c r=\"EB1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"EC1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"ED1\" t=\"str\">\n <v>Q53</v>\n </c>\n <c r=\"EE1\" t=\"str\">\n <v>Q54</v>\n </c>\n <c r=\"EF1\" t=\"str\">\n <v>Q55</v>\n </c>\n <c r=\"EG1\" t=\"str\">\n <v>Q56</v>\n </c>\n <c r=\"EH1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EI1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EJ1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EK1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EL1\" t=\"str\">\n <v>Q57</v>\n </c>\n <c r=\"EM1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EN1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EO1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EP1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"EQ1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"ER1\" t=\"str\">\n <v>Q58</v>\n </c>\n <c r=\"ES1\" t=\"str\">\n <v>Q59</v>\n </c>\n <c r=\"ET1\" t=\"str\">\n <v>Q60</v>\n </c>\n <c r=\"EU1\" t=\"str\">\n <v>Q61</v>\n </c>\n <c r=\"EV1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"EW1\" t=\"str\">\n <v>Q62</v>\n </c>\n <c r=\"EX1\" t=\"str\">\n <v>Q63</v>\n </c>\n <c r=\"EY1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"EZ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"FA1\" t=\"str\">\n <v>Q64</v>\n </c>\n <c r=\"FB1\" t=\"str\">\n <v>Q64</v>\n </c>\n <c r=\"FC1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FD1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FE1\" t=\"str\">\n <v>Q65</v>\n </c>\n <c r=\"FF1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FG1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FH1\" t=\"str\">\n <v>Q66</v>\n </c>\n <c r=\"FI1\" t=\"str\">\n <v>Q67</v>\n </c>\n <c r=\"FJ1\" t=\"str\">\n <v>Q68</v>\n </c>\n <c r=\"FK1\" t=\"str\">\n <v>Q69</v>\n </c>\n <c r=\"FL1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FM1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FN1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FO1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FP1\" t=\"str\">\n <v>Q70</v>\n </c>\n <c r=\"FQ1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FR1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FS1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FT1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FU1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FV1\" t=\"str\">\n <v>Q71</v>\n </c>\n <c r=\"FW1\" t=\"str\">\n <v>Q72</v>\n </c>\n <c r=\"FX1\" t=\"str\">\n <v>Q73</v>\n </c>\n <c r=\"FY1\" t=\"str\">\n <v>Q74</v>\n </c>\n <c r=\"FZ1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GA1\" t=\"str\">\n <v>Q75</v>\n </c>\n <c r=\"GB1\" t=\"str\">\n <v>Q76</v>\n </c>\n <c r=\"GC1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GD1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"GE1\" t=\"str\">\n <v>Q77</v>\n </c>\n <c r=\"GF1\" t=\"str\">\n <v>Q77</v>\n </c>\n <c r=\"GG1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GH1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GI1\" t=\"str\">\n <v>Q78</v>\n </c>\n <c r=\"GJ1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GK1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GL1\" t=\"str\">\n <v>Q79</v>\n </c>\n <c r=\"GM1\" t=\"str\">\n <v>Q80</v>\n </c>\n <c r=\"GN1\" t=\"str\">\n <v>Q81</v>\n </c>\n <c r=\"GO1\" t=\"str\">\n <v>Q82</v>\n </c>\n <c r=\"GP1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GQ1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GR1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GS1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GT1\" t=\"str\">\n <v>Q83</v>\n </c>\n <c r=\"GU1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GV1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GW1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GX1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GY1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"GZ1\" t=\"str\">\n <v>Q84</v>\n </c>\n <c r=\"HA1\" t=\"str\">\n <v>Q85</v>\n </c>\n <c r=\"HB1\" t=\"str\">\n <v>Q86</v>\n </c>\n <c r=\"HC1\" t=\"str\">\n <v>Q87</v>\n </c>\n <c r=\"HD1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HE1\" t=\"str\">\n <v>Q88</v>\n </c>\n <c r=\"HF1\" t=\"str\">\n <v>Q89</v>\n </c>\n <c r=\"HG1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HH1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"HI1\" t=\"str\">\n <v>Q90</v>\n </c>\n <c r=\"HJ1\" t=\"str\">\n <v>Q90</v>\n </c>\n <c r=\"HK1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HL1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HM1\" t=\"str\">\n <v>Q91</v>\n </c>\n <c r=\"HN1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HO1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HP1\" t=\"str\">\n <v>Q92</v>\n </c>\n <c r=\"HQ1\" t=\"str\">\n <v>Q93</v>\n </c>\n <c r=\"HR1\" t=\"str\">\n <v>Q94</v>\n </c>\n <c r=\"HS1\" t=\"str\">\n <v>Q95</v>\n </c>\n <c r=\"HT1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HU1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HV1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HW1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HX1\" t=\"str\">\n <v>Q96</v>\n </c>\n <c r=\"HY1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"HZ1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IA1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IB1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IC1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"ID1\" t=\"str\">\n <v>Q97</v>\n </c>\n <c r=\"IE1\" t=\"str\">\n <v>Q98</v>\n </c>\n <c r=\"IF1\" t=\"str\">\n <v>Q99</v>\n </c>\n <c r=\"IG1\" t=\"str\">\n <v>Q100</v>\n </c>\n <c r=\"IH1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"II1\" t=\"str\">\n <v>Q101</v>\n </c>\n <c r=\"IJ1\" t=\"str\">\n <v>Q102</v>\n </c>\n <c r=\"IK1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"IL1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"IM1\" t=\"str\">\n <v>Q103</v>\n </c>\n <c r=\"IN1\" t=\"str\">\n <v>Q103</v>\n </c>\n <c r=\"IO1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IP1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IQ1\" t=\"str\">\n <v>Q104</v>\n </c>\n <c r=\"IR1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IS1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IT1\" t=\"str\">\n <v>Q105</v>\n </c>\n <c r=\"IU1\" t=\"str\">\n <v>Q106</v>\n </c>\n <c r=\"IV1\" t=\"str\">\n <v>Q107</v>\n </c>\n <c r=\"IW1\" t=\"str\">\n <v>Q108</v>\n </c>\n <c r=\"IX1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"IY1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"IZ1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JA1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JB1\" t=\"str\">\n <v>Q109</v>\n </c>\n <c r=\"JC1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JD1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JE1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JF1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JG1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JH1\" t=\"str\">\n <v>Q110</v>\n </c>\n <c r=\"JI1\" t=\"str\">\n <v>Q111</v>\n </c>\n <c r=\"JJ1\" t=\"str\">\n <v>Q112</v>\n </c>\n <c r=\"JK1\" t=\"str\">\n <v>Q113</v>\n </c>\n <c r=\"JL1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JM1\" t=\"str\">\n <v>Q114</v>\n </c>\n <c r=\"JN1\" t=\"str\">\n <v>Q115</v>\n </c>\n <c r=\"JO1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JP1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"JQ1\" t=\"str\">\n <v>Q116</v>\n </c>\n <c r=\"JR1\" t=\"str\">\n <v>Q116</v>\n </c>\n <c r=\"JS1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JT1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JU1\" t=\"str\">\n <v>Q117</v>\n </c>\n <c r=\"JV1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JW1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JX1\" t=\"str\">\n <v>Q118</v>\n </c>\n <c r=\"JY1\" t=\"str\">\n <v>Q119</v>\n </c>\n <c r=\"JZ1\" t=\"str\">\n <v>Q120</v>\n </c>\n <c r=\"KA1\" t=\"str\">\n <v>Q121</v>\n </c>\n <c r=\"KB1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KC1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KD1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KE1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KF1\" t=\"str\">\n <v>Q122</v>\n </c>\n <c r=\"KG1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KH1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KI1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KJ1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KK1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KL1\" t=\"str\">\n <v>Q123</v>\n </c>\n <c r=\"KM1\" t=\"str\">\n <v>Q124</v>\n </c>\n <c r=\"KN1\" t=\"str\">\n <v>Q125</v>\n </c>\n <c r=\"KO1\" t=\"str\">\n <v>Q126</v>\n </c>\n <c r=\"KP1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KQ1\" t=\"str\">\n <v>Q127</v>\n </c>\n <c r=\"KR1\" t=\"str\">\n <v>Q128</v>\n </c>\n <c r=\"KS1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KT1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"KU1\" t=\"str\">\n <v>Q129</v>\n </c>\n <c r=\"KV1\" t=\"str\">\n <v>Q129</v>\n </c>\n <c r=\"KW1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KX1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KY1\" t=\"str\">\n <v>Q130</v>\n </c>\n <c r=\"KZ1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LA1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LB1\" t=\"str\">\n <v>Q131</v>\n </c>\n <c r=\"LC1\" t=\"str\">\n <v>Q132</v>\n </c>\n <c r=\"LD1\" t=\"str\">\n <v>Q133</v>\n </c>\n <c r=\"LE1\" t=\"str\">\n <v>Q134</v>\n </c>\n <c r=\"LF1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LG1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LH1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LI1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LJ1\" t=\"str\">\n <v>Q135</v>\n </c>\n <c r=\"LK1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LL1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LM1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LN1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LO1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LP1\" t=\"str\">\n <v>Q136</v>\n </c>\n <c r=\"LQ1\" t=\"str\">\n <v>Q137</v>\n </c>\n <c r=\"LR1\" t=\"str\">\n <v>Q138</v>\n </c>\n <c r=\"LS1\" t=\"str\">\n <v>Q139</v>\n </c>\n <c r=\"LT1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LU1\" t=\"str\">\n <v>Q140</v>\n </c>\n <c r=\"LV1\" t=\"str\">\n <v>Q141</v>\n </c>\n <c r=\"LW1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LX1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"LY1\" t=\"str\">\n <v>Q142</v>\n </c>\n <c r=\"LZ1\" t=\"str\">\n <v>Q142</v>\n </c>\n <c r=\"MA1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MB1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MC1\" t=\"str\">\n <v>Q143</v>\n </c>\n <c r=\"MD1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"ME1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"MF1\" t=\"str\">\n <v>Q144</v>\n </c>\n <c r=\"MG1\" t=\"str\">\n <v>Q145</v>\n </c>\n <c r=\"MH1\" t=\"str\">\n <v>Q146</v>\n </c>\n <c r=\"MI1\" t=\"str\">\n <v>Q147</v>\n </c>\n <c r=\"MJ1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MK1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"ML1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MM1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MN1\" t=\"str\">\n <v>Q148</v>\n </c>\n <c r=\"MO1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MP1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MQ1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MR1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MS1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MT1\" t=\"str\">\n <v>Q149</v>\n </c>\n <c r=\"MU1\" t=\"str\">\n <v>Q150</v>\n </c>\n <c r=\"MV1\" t=\"str\">\n <v>Q151</v>\n </c>\n <c r=\"MW1\" t=\"str\">\n <v>Q152</v>\n </c>\n <c r=\"MX1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"MY1\" t=\"str\">\n <v>Q153</v>\n </c>\n <c r=\"MZ1\" t=\"str\">\n <v>Q154</v>\n </c>\n <c r=\"NA1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"NB1\" t=\"str\">\n <v></v>\n </c>\n <c r=\"NC1\" t=\"str\">\n <v>Q155</v>\n </c>\n <c r=\"ND1\" t=\"str\">\n <v>Q155</v>\n </c>\n <c r=\"NE1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NF1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NG1\" t=\"str\">\n <v>Q156</v>\n </c>\n <c r=\"NH1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NI1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NJ1\" t=\"str\">\n <v>Q157</v>\n </c>\n <c r=\"NK1\" t=\"str\">\n <v>Q158</v>\n </c>\n </row>\n <row r=\"2\">\n <c r=\"A2\" t=\"str\">\n <v>ID</v>\n </c>\n <c r=\"B2\" t=\"str\">\n <v>Campaign</v>\n </c>\n <c r=\"C2\" t=\"str\">\n <v>Date</v>\n </c>\n <c r=\"D2\" t=\"str\">\n <v>IP</v>\n </c>\n <c r=\"E2\" t=\"str\">\n <v>Country</v>\n </c>\n <c r=\"F2\" t=\"str\">\n <v>City</v>\n </c>\n <c r=\"G2\" t=\"str\">\n <v xml:space=\"preserve\">What brands do you prefer? :: Nike </v>\n </c>\n <c r=\"H2\" t=\"str\">\n <v xml:space=\"preserve\">What brands do you prefer? :: Adidas </v>\n </c>\n <c r=\"I2\" t=\"str\">\n <v>What brands do you prefer? :: New Balance</v>\n </c>\n <c r=\"J2\" t=\"str\">\n <v>What brands do you prefer? :: Puma</v>\n </c>\n <c r=\"K2\" t=\"str\">\n <v>What brands do you prefer? :: Other</v>\n </c>\n <c r=\"L2\" t=\"str\">\n <v>What brands do you prefer? :: None of the Above</v>\n </c>\n <c r=\"M2\" t=\"str\">\n <v>How often do you practice these activities? :: Surf</v>\n </c>\n <c r=\"N2\" t=\"str\">\n <v>How often do you practice these activities? :: Soccer</v>\n </c>\n <c r=\"O2\" t=\"str\">\n <v>How often do you practice these activities? :: Basketball</v>\n </c>\n <c r=\"P2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"Q2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"R2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"S2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"T2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"U2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"V2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"W2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"X2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"Y2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"Z2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"AA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"AB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"AC2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AD2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AE2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AF2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AG2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AH2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AI2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AJ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AK2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"AL2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"AM2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"AN2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"AO2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"AP2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"AQ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"AR2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"AS2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AT2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AU2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"AV2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"AW2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"AX2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"AY2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"AZ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"BA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"BB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"BC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"BD2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"BE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"BF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"BG2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BH2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BI2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BJ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BK2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BL2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BM2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BN2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BO2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"BP2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"BQ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"BR2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"BS2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"BT2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"BU2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"BV2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"BW2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BX2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BY2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"BZ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"CA2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"CB2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"CC2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"CD2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"CE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"CF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"CG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"CH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"CI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"CJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"CK2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CL2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CM2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CN2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CO2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CP2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CQ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CR2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"CS2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"CT2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"CU2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"CV2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"CW2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"CX2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"CY2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"CZ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"DA2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DB2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DC2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DD2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"DE2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"DF2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"DG2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"DH2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"DI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"DJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"DK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"DL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"DM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"DN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"DO2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DP2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DQ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DR2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DS2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DT2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DU2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DV2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"DW2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"DX2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"DY2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"DZ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"EA2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"EB2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"EC2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"ED2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"EE2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EF2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EG2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EH2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"EI2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"EJ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"EK2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"EL2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"EM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"EN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"EO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"EP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"EQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"ER2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"ES2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"ET2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EU2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EV2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EW2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EX2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EY2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"EZ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FA2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"FB2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"FC2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"FD2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"FE2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"FF2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"FG2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"FH2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"FI2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FJ2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FK2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FL2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"FM2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"FN2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"FO2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"FP2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"FQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"FR2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"FS2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"FT2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"FU2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"FV2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"FW2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FX2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FY2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"FZ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GA2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GB2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GC2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GD2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GE2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"GF2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"GG2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"GH2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"GI2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"GJ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"GK2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"GL2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"GM2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GN2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GO2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"GP2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"GQ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"GR2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"GS2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"GT2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"GU2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"GV2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"GW2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"GX2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"GY2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"GZ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"HA2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HB2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HC2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HD2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HE2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HF2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HG2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HH2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HI2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"HJ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"HK2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"HL2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"HM2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"HN2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"HO2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"HP2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"HQ2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HR2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HS2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"HT2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"HU2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"HV2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"HW2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"HX2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"HY2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"HZ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"IA2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"IB2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"IC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"ID2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"IE2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IF2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IG2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IH2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"II2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IJ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IK2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IL2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IM2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"IN2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"IO2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"IP2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"IQ2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"IR2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"IS2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"IT2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"IU2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IV2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IW2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"IX2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"IY2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"IZ2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"JA2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"JB2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"JC2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"JD2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"JE2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"JF2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"JG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"JH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"JI2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JJ2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JK2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JL2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JM2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JN2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JO2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JP2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JQ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"JR2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"JS2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"JT2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"JU2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"JV2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"JW2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"JX2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"JY2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"JZ2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KA2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KB2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"KC2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"KD2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"KE2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"KF2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"KG2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"KH2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"KI2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"KJ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"KK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"KL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"KM2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KN2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KO2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KP2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KQ2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KR2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KS2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KT2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"KU2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"KV2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"KW2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"KX2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"KY2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"KZ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"LA2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"LB2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"LC2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LD2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LE2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LF2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"LG2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"LH2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"LI2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"LJ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"LK2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"LL2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"LM2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"LN2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"LO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"LP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"LQ2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LR2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LS2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LT2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LU2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LV2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LW2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LX2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"LY2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"LZ2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"MA2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"MB2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"MC2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"MD2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"ME2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"MF2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"MG2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MH2\" t=\"str\">\n <v xml:space=\"preserve\">What do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MI2\" t=\"str\">\n <v xml:space=\"preserve\">pick an image for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MJ2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself physically (art & crafts)</v>\n </c>\n <c r=\"MK2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've made/created myself digitally </v>\n </c>\n <c r=\"ML2\" t=\"str\">\n <v xml:space=\"preserve\">What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I've bought in store </v>\n </c>\n <c r=\"MM2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A card that I’ve selected and sent online</v>\n </c>\n <c r=\"MN2\" t=\"str\">\n <v>What’s the maximum that you're prepared to spend on buying ${SOURCE:Question Loop}cards? :: A collection or box of cards</v>\n </c>\n <c r=\"MO2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Social Justice and Civil Rights</v>\n </c>\n <c r=\"MP2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Climate Change and the Environment</v>\n </c>\n <c r=\"MQ2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Nature and Habitat Conservation</v>\n </c>\n <c r=\"MR2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Fighting Hunger</v>\n </c>\n <c r=\"MS2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Poverty</v>\n </c>\n <c r=\"MT2\" t=\"str\">\n <v>Which of the following types of charities and causes are most important to you? (choose your top 5 and then drag and drop the bars to rank them in order of importance) ${SOURCE:Question Loop} :: Political parties</v>\n </c>\n <c r=\"MU2\" t=\"str\">\n <v xml:space=\"preserve\">rate ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MV2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MW2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MX2\" t=\"str\">\n <v xml:space=\"preserve\">what do you think about ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MY2\" t=\"str\">\n <v xml:space=\"preserve\">numeric ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"MZ2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NA2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NB2\" t=\"str\">\n <v xml:space=\"preserve\">random values for ${SOURCE:Question Loop}</v>\n </c>\n <c r=\"NC2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: --</v>\n </c>\n <c r=\"ND2\" t=\"str\">\n <v>On a scale from 0-10, how likely are you to recommend ${SOURCE:Question Loop} to a friend or colleague? :: Comment</v>\n </c>\n <c r=\"NE2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v1</v>\n </c>\n <c r=\"NF2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v2</v>\n </c>\n <c r=\"NG2\" t=\"str\">\n <v>constan sum ${SOURCE:Question Loop} :: v3</v>\n </c>\n <c r=\"NH2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: design</v>\n </c>\n <c r=\"NI2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: color</v>\n </c>\n <c r=\"NJ2\" t=\"str\">\n <v>maxdiff ${SOURCE:Question Loop} :: style</v>\n </c>\n <c r=\"NK2\" t=\"str\">\n <v xml:space=\"preserve\">What is your date of birth? ${SOURCE:Question Loop}</v>\n </c>\n </row>\n </sheetData>\n</worksheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000xl/theme/theme1.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<a:theme xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" name=\"Office Theme\">\n <a:themeElements>\n <a:clrScheme name=\"Office\">\n <a:dk1>\n <a:sysClr val=\"windowText\" lastClr=\"000000\"/>\n </a:dk1>\n <a:lt1>\n <a:sysClr val=\"window\" lastClr=\"FFFFFF\"/>\n </a:lt1>\n <a:dk2>\n <a:srgbClr val=\"1F497D\"/>\n </a:dk2>\n <a:lt2>\n <a:srgbClr val=\"EEECE1\"/>\n </a:lt2>\n <a:accent1>\n <a:srgbClr val=\"4F81BD\"/>\n </a:accent1>\n <a:accent2>\n <a:srgbClr val=\"C0504D\"/>\n </a:accent2>\n <a:accent3>\n <a:srgbClr val=\"9BBB59\"/>\n </a:accent3>\n <a:accent4>\n <a:srgbClr val=\"8064A2\"/>\n </a:accent4>\n <a:accent5>\n <a:srgbClr val=\"4BACC6\"/>\n </a:accent5>\n <a:accent6>\n <a:srgbClr val=\"F79646\"/>\n </a:accent6>\n <a:hlink>\n <a:srgbClr val=\"0000FF\"/>\n </a:hlink>\n <a:folHlink>\n <a:srgbClr val=\"800080\"/>\n </a:folHlink>\n </a:clrScheme>\n <a:fontScheme name=\"Office\">\n <a:majorFont>\n <a:latin typeface=\"Cambria\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Times New Roman\"/>\n <a:font script=\"Hebr\" typeface=\"Times New Roman\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"MoolBoran\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Times New Roman\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:majorFont>\n <a:minorFont>\n <a:latin typeface=\"Calibri\"/>\n <a:ea typeface=\"\"/>\n <a:cs typeface=\"\"/>\n <a:font script=\"Jpan\" typeface=\"MS Pゴシック\"/>\n <a:font script=\"Hang\" typeface=\"맑은 고딕\"/>\n <a:font script=\"Hans\" typeface=\"宋体\"/>\n <a:font script=\"Hant\" typeface=\"新細明體\"/>\n <a:font script=\"Arab\" typeface=\"Arial\"/>\n <a:font script=\"Hebr\" typeface=\"Arial\"/>\n <a:font script=\"Thai\" typeface=\"Tahoma\"/>\n <a:font script=\"Ethi\" typeface=\"Nyala\"/>\n <a:font script=\"Beng\" typeface=\"Vrinda\"/>\n <a:font script=\"Gujr\" typeface=\"Shruti\"/>\n <a:font script=\"Khmr\" typeface=\"DaunPenh\"/>\n <a:font script=\"Knda\" typeface=\"Tunga\"/>\n <a:font script=\"Guru\" typeface=\"Raavi\"/>\n <a:font script=\"Cans\" typeface=\"Euphemia\"/>\n <a:font script=\"Cher\" typeface=\"Plantagenet Cherokee\"/>\n <a:font script=\"Yiii\" typeface=\"Microsoft Yi Baiti\"/>\n <a:font script=\"Tibt\" typeface=\"Microsoft Himalaya\"/>\n <a:font script=\"Thaa\" typeface=\"MV Boli\"/>\n <a:font script=\"Deva\" typeface=\"Mangal\"/>\n <a:font script=\"Telu\" typeface=\"Gautami\"/>\n <a:font script=\"Taml\" typeface=\"Latha\"/>\n <a:font script=\"Syrc\" typeface=\"Estrangelo Edessa\"/>\n <a:font script=\"Orya\" typeface=\"Kalinga\"/>\n <a:font script=\"Mlym\" typeface=\"Kartika\"/>\n <a:font script=\"Laoo\" typeface=\"DokChampa\"/>\n <a:font script=\"Sinh\" typeface=\"Iskoola Pota\"/>\n <a:font script=\"Mong\" typeface=\"Mongolian Baiti\"/>\n <a:font script=\"Viet\" typeface=\"Arial\"/>\n <a:font script=\"Uigh\" typeface=\"Microsoft Uighur\"/>\n <a:font script=\"Geor\" typeface=\"Sylfaen\"/>\n </a:minorFont>\n </a:fontScheme>\n <a:fmtScheme name=\"Office\">\n <a:fillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"35000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"37000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"15000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"1\"/>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"100000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"130000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"50000\"/>\n <a:shade val=\"100000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:lin ang=\"16200000\" scaled=\"0\"/>\n </a:gradFill>\n </a:fillStyleLst>\n <a:lnStyleLst>\n <a:ln w=\"9525\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"95000\"/>\n <a:satMod val=\"105000\"/>\n </a:schemeClr>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"25400\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n <a:ln w=\"38100\" cap=\"flat\" cmpd=\"sng\" algn=\"ctr\">\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:prstDash val=\"solid\"/>\n </a:ln>\n </a:lnStyleLst>\n <a:effectStyleLst>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"20000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"38000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n </a:effectStyle>\n <a:effectStyle>\n <a:effectLst>\n <a:outerShdw blurRad=\"40000\" dist=\"23000\" dir=\"5400000\" rotWithShape=\"0\">\n <a:srgbClr val=\"000000\">\n <a:alpha val=\"35000\"/>\n </a:srgbClr>\n </a:outerShdw>\n </a:effectLst>\n <a:scene3d>\n <a:camera prst=\"orthographicFront\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"0\"/>\n </a:camera>\n <a:lightRig rig=\"threePt\" dir=\"t\">\n <a:rot lat=\"0\" lon=\"0\" rev=\"1200000\"/>\n </a:lightRig>\n </a:scene3d>\n <a:sp3d>\n <a:bevelT w=\"63500\" h=\"25400\"/>\n </a:sp3d>\n </a:effectStyle>\n </a:effectStyleLst>\n <a:bgFillStyleLst>\n <a:solidFill>\n <a:schemeClr val=\"phClr\"/>\n </a:solidFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"40000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"40000\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"45000\"/>\n <a:shade val=\"99000\"/>\n <a:satMod val=\"350000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"20000\"/>\n <a:satMod val=\"255000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"-80000\" r=\"50000\" b=\"180000\"/>\n </a:path>\n </a:gradFill>\n <a:gradFill rotWithShape=\"1\">\n <a:gsLst>\n <a:gs pos=\"0\">\n <a:schemeClr val=\"phClr\">\n <a:tint val=\"80000\"/>\n <a:satMod val=\"300000\"/>\n </a:schemeClr>\n </a:gs>\n <a:gs pos=\"100000\">\n <a:schemeClr val=\"phClr\">\n <a:shade val=\"30000\"/>\n <a:satMod val=\"200000\"/>\n </a:schemeClr>\n </a:gs>\n </a:gsLst>\n <a:path path=\"circle\">\n <a:fillToRect l=\"50000\" t=\"50000\" r=\"50000\" b=\"50000\"/>\n </a:path>\n </a:gradFill>\n </a:bgFillStyleLst>\n </a:fmtScheme>\n </a:themeElements>\n <a:objectDefaults>\n <a:spDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"3\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"lt1\"/>\n </a:fontRef>\n </a:style>\n </a:spDef>\n <a:lnDef>\n <a:spPr/>\n <a:bodyPr/>\n <a:lstStyle/>\n <a:style>\n <a:lnRef idx=\"2\">\n <a:schemeClr val=\"accent1\"/>\n </a:lnRef>\n <a:fillRef idx=\"0\">\n <a:schemeClr val=\"accent1\"/>\n </a:fillRef>\n <a:effectRef idx=\"1\">\n <a:schemeClr val=\"accent1\"/>\n </a:effectRef>\n <a:fontRef idx=\"minor\">\n <a:schemeClr val=\"tx1\"/>\n </a:fontRef>\n </a:style>\n </a:lnDef>\n </a:objectDefaults>\n <a:extraClrSchemeLst/>\n</a:theme>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000xl/styles.xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">\n <numFmts count=\"1\">\n <numFmt numFmtId=\"56\" formatCode=\""上午/下午 "hh"時"mm"分"ss"秒 "\"/>\n </numFmts>\n <fonts count=\"1\">\n <font>\n <sz val=\"12\"/>\n <color theme=\"1\"/>\n <name val=\"Calibri\"/>\n <family val=\"2\"/>\n <scheme val=\"minor\"/>\n </font>\n </fonts>\n <fills count=\"2\">\n <fill>\n <patternFill patternType=\"none\"/>\n </fill>\n <fill>\n <patternFill patternType=\"gray125\"/>\n </fill>\n </fills>\n <borders count=\"1\">\n <border>\n <left/>\n <right/>\n <top/>\n <bottom/>\n <diagonal/>\n </border>\n </borders>\n <cellStyleXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/>\n </cellStyleXfs>\n <cellXfs count=\"1\">\n <xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\"/>\n </cellXfs>\n <cellStyles count=\"1\">\n <cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/>\n </cellStyles>\n <dxfs count=\"0\"/>\n <tableStyles count=\"0\" defaultTableStyle=\"TableStyleMedium9\" defaultPivotStyle=\"PivotStyleMedium4\"/>\n</styleSheet>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000[Content_Types].xml\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Types xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n <Default Extension=\"xml\" ContentType=\"application/xml\"/>\n <Default Extension=\"bin\" ContentType=\"application/vnd.ms-excel.sheet.binary.macroEnabled.main\"/>\n <Default Extension=\"vml\" ContentType=\"application/vnd.openxmlformats-officedocument.vmlDrawing\"/>\n <Default Extension=\"bmp\" ContentType=\"image/bmp\"/>\n <Default Extension=\"png\" ContentType=\"image/png\"/>\n <Default Extension=\"gif\" ContentType=\"image/gif\"/>\n <Default Extension=\"emf\" ContentType=\"image/x-emf\"/>\n <Default Extension=\"wmf\" ContentType=\"image/x-wmf\"/>\n <Default Extension=\"jpg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"jpeg\" ContentType=\"image/jpeg\"/>\n <Default Extension=\"tif\" ContentType=\"image/tiff\"/>\n <Default Extension=\"tiff\" ContentType=\"image/tiff\"/>\n <Default Extension=\"pdf\" ContentType=\"application/pdf\"/>\n <Default Extension=\"rels\" ContentType=\"application/vnd.openxmlformats-package.relationships+xml\"/>\n <Override PartName=\"/xl/workbook.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\"/>\n <Override PartName=\"/xl/worksheets/sheet1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\"/>\n <Override PartName=\"/xl/theme/theme1.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.theme+xml\"/>\n <Override PartName=\"/xl/styles.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\"/>\n <Override PartName=\"/docProps/core.xml\" ContentType=\"application/vnd.openxmlformats-package.core-properties+xml\"/>\n <Override PartName=\"/docProps/app.xml\" ContentType=\"application/vnd.openxmlformats-officedocument.extended-properties+xml\"/>\n</Types>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000_rels/.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\" Target=\"docProps/core.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\" Target=\"docProps/app.xml\"/>\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\" Target=\"xl/workbook.xml\"/>\n</Relationships>PK\u0003\u0004\n\u0000\u0000\u0000\u0000\u0000�{.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000xl/_rels/workbook.xml.rels\n<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\" Target=\"worksheets/sheet1.xml\"/>\n <Relationship Id=\"rId2\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\" Target=\"theme/theme1.xml\"/>\n <Relationship Id=\"rId3\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\" Target=\"styles.xml\"/>\n</Relationships>PK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S֒|\u0011Z\u0001\u0000\u0000Z\u0001\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000docProps/core.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S?[\u001ch5\u0002\u0000\u00005\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0001\u0000\u0000docProps/app.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S���}E\u0001\u0000\u0000E\u0001\u0000\u0000\u000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0003\u0000\u0000xl/workbook.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S4\u0015r���\u0000\u0000��\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000^\u0005\u0000\u0000xl/worksheets/sheet1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S0\u000f�k�\u001d\u0000\u0000�\u001d\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000t\u0004\u0001\u0000xl/theme/theme1.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.SU�\u0004�Z\u0004\u0000\u0000Z\u0004\u0000\u0000\r\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\"\u0001\u0000xl/styles.xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S�\u001b0\u0007\u0000\u00000\u0007\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\b'\u0001\u0000[Content_Types].xmlPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.SJj\u0011�L\u0002\u0000\u0000L\u0002\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000i.\u0001\u0000_rels/.relsPK\u0001\u0002\u0014\u0000\n\u0000\u0000\u0000\u0000\u0000�{.S�?d�-\u0002\u0000\u0000-\u0002\u0000\u0000\u001a\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�0\u0001\u0000xl/_rels/workbook.xml.relsPK\u0005\u0006\u0000\u0000\u0000\u0000\t\u0000\t\u0000>\u0002\u0000\u0000C3\u0001\u0000\u0000\u0000"Description
Exports the responses previously cleaned by the cleaning system.Body
{
"projectId": string
}
projectId: The id of the project. Required.
Response
200 OK
Excel File.
400 Bad Request
ProjectId is missing.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.
Was this page helpful?
⌘I